]> git.ipfire.org Git - people/ms/u-boot.git/blob - CHANGELOG
MTD:NAND: ADD new ECC mode NAND_ECC_HW_OOB_FIRST
[people/ms/u-boot.git] / CHANGELOG
1 commit 5b2da6a309266f21cbb68f06fcfdf9ba141022e7
2 Author: Michal Simek <monstr@monstr.eu>
3 Date: Fri Aug 21 06:52:25 2009 +1000
4
5 qemu-mips: Fix Qemu website
6
7 Signed-off-by: Michal Simek <monstr@monstr.eu>
8 Signed-off-by: Michal Simek <michal.simek@petalogix.com>
9 Acked-by: Shinya Kuribayashi <skuribay@pobox.com>
10
11 commit 79f516bccc3cff5a5cd4b3dffb7d254e746fdbde
12 Author: Kim Phillips <kim.phillips@freescale.com>
13 Date: Fri Aug 21 16:34:38 2009 -0500
14
15 mpc83xx: accommodate larger kernel sizes by default
16
17 linux mpc83xx_defconfig kernels are getting bigger, accommodate for
18 their growth by adjusting default load and fdt addresses.
19
20 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21
22 commit 8eceeb7fd656d6d071c0a8b615e178aca5775fff
23 Author: Kim Phillips <kim.phillips@freescale.com>
24 Date: Fri Aug 21 16:33:15 2009 -0500
25
26 mpc83xx: mpc8377erdb - change DDR settings to those from latest bsp
27
28 when using Linus' 83xx_defconfig, the mpc8377rdb would hang at boot
29 at either:
30
31 NET: Registered protocol family 16
32
33 or the
34
35 io scheduler cfq registered
36
37 message. Fixing up these DDR settings appears to fix the problem.
38
39 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40
41 commit 27c5248dd4c9ba4a36899689595956c5e59e349a
42 Author: Kim Phillips <kim.phillips@freescale.com>
43 Date: Fri Aug 21 16:31:20 2009 -0500
44
45 mpc83xx: tqm8349 - remove pci & flash window conflict
46
47 commit 9993e196da707a0a1cd4584f1fcef12382c1c144 "mpc83xx: convert all
48 remaining boards over to 83XX_GENERIC_PCI" remapped pci windows on
49 tqm834x to make it more consistent with the other 83xx boards. During
50 that time however, the author failed to realize that FLASH_BASE was
51 occupying the same range as what PCI1_MEM_BASE was being assigned.
52
53 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54 Tested-by: Wolfgang Denk <wd@denx.de>
55
56 commit 6d2c26ac831f033b0025cfb256365a047f8dd115
57 Author: Heiko Schocher <hs@denx.de>
58 Date: Fri Aug 21 16:30:30 2009 -0500
59
60 mpc83xx: add missing CSCONFIG_ODT_WR_CFG for 832x CPUs
61
62 Signed-off-by: Heiko Schocher <hs@denx.de>
63 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64
65 commit 193b4cb3f641ed0fd9bb79b8fa4671882c50ffdb
66 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
67 Date: Fri Aug 21 16:27:05 2009 -0500
68
69 mpc83xx: mpc8349 - delete unused SYS_MID_FLASH_JUMP
70
71 This was introduced with the MPC8349EMDS board, and then copied to
72 a couple other boards by nature of being the reference implementation.
73
74 u-boot$git grep CONFIG_SYS_MID_FLASH_JUMP
75 include/configs/MPC8349EMDS.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
76 include/configs/sbc8349.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
77 include/configs/vme8349.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
78 u-boot$
79
80 It currently isn't used, so delete it before it spreads further.
81
82 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
83 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
84
85 commit c0d660fbbede322648ec79d3e39389e48f5fab24
86 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
87 Date: Fri Aug 21 16:21:58 2009 -0500
88
89 mpc83xx: sbc8349 - make enabling PCI more user friendly
90
91 Prior to this commit, to enable PCI, you had to go manually
92 edit the board config header, which isn't really user friendly.
93 This adds the typical PCI make targets to the toplevel Makefile
94 in accordance with what is being done with other boards.
95
96 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
97 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
98
99 commit a3c5057a6c05b4c7235a270486220e4511366133
100 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
101 Date: Fri Aug 7 23:37:54 2009 +0200
102
103 eeprom_m95xxx: remove unused variable i
104
105 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
106
107 commit 8cf19b9fec92d8aa22b2fe4b4e6976743b1daa51
108 Author: Ilya Yanok <yanok@emcraft.com>
109 Date: Fri Jul 17 15:02:42 2009 +0400
110
111 jffs2: some fixes to summary support
112
113 This patch fixes some issues with JFFS2 summary support in U-Boot.
114 1/ Summary support made compilation configurable (as summary support
115 considered expiremental even in Linux).
116 2/ Summary code can do unaligned 16-bit and 32-bit memory accesses.
117 We need to get data byte by byte to exclude data aborts.
118 3/ Make summary scan in two passes so we can safely fall back to full
119 scan if we found unsupported entry in the summary.
120
121 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
122
123 commit 11906936e168d12d684bb3d2930a62693ba3d84e
124 Author: Prafulla Wadaskar <prafulla@marvell.com>
125 Date: Mon Aug 10 18:55:54 2009 +0530
126
127 arm: rd6281a: Fixed NAND specific warning
128
129 It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
130 for NAND specific warning removal, same is done in this patch
131
132 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
133
134 commit b5ffb193330113d2e00489d96bf8ec1f541ed4e1
135 Author: Wolfgang Denk <wd@denx.de>
136 Date: Thu Aug 13 00:37:16 2009 +0200
137
138 TRAB: make independent of specific libgcc helper routines
139
140 The TRAB board references local libgcc helper routines
141 (lib_arm/div0.o and lib_arm/_umodsi3.o) which cause build problems
142 when we try to use the normal, compiler provided libgcc instead.
143 Removing these references allows to build both with and without the
144 local libgcc helper routines.
145
146 Signed-off-by: Wolfgang Denk <wd@denx.de>
147
148 commit 1aada9cd643567d351667138851e9231ccfa245a
149 Author: Wolfgang Denk <wd@denx.de>
150 Date: Mon Aug 17 14:00:53 2009 +0200
151
152 Fix all linker scripts for older binutils versions (pre-2.16)
153
154 Commit f62fb99941c6 fixed handling of all rodata sections by using a
155 wildcard combined with calls to ld's builtin functions SORT_BY_ALIGNMENT()
156 and SORT_BY_NAME(). Unfortunately these functions were only
157 introduced with biunutils version 2.16, so the modification broke
158 building with all tool chains using older binutils.
159
160 This patch makes it work again. This is done by omitting the use of
161 these functions for such old tool chains. This will result in
162 slightly larger target binaries, as the rodata sections are no longer
163 in optimal order alignment-wise which reauls in unused gaps, but the
164 effect was found to be insignificant - especially compared to the fact
165 that you cannot build U-Boot at all in the current state.
166
167 As ld seems to have no support for conditionals we run the linker
168 script through the C preprocessor which can be easily used to remove
169 the unwanted function calls.
170
171 Note that the C preprocessor must be run with the "-ansi" (or a
172 "-std=") option to make sure all the system-specific predefined
173 macros outside the reserved namespace are suppressed. Otherise, cpp
174 might for example substitute "powerpc" to "1", thus corrupting for
175 example "OUTPUT_ARCH(powerpc)" etc.
176
177 Signed-off-by: Wolfgang Denk <wd@denx.de>
178 Cc: Mike Frysinger <vapier@gentoo.org>
179
180 commit f772acf8a584067033eff1e231fcd1fb3a00d3d9
181 Author: Wolfgang Denk <wd@denx.de>
182 Date: Mon Aug 17 13:17:29 2009 +0200
183
184 ARM: compiler options cleanup - improve tool chain support
185
186 For some time there have been repeated reports about build problems
187 with some ARM (cross) tool chains. Especially issues about
188 (in)compatibility with the tool chain provided runtime support
189 library libgcc.a caused to add and support a private implementation
190 of such runtime support code in U-Boot. A closer look at the code
191 indicated that some of these issues are actually home-made. This
192 patch attempts to clean up some of the most obvious problems and make
193 building of U-Boot with different tool chains easier:
194
195 - Even though all ARM systems basicy used the same compiler options
196 to select a specific ABI from the tool chain, the code for this was
197 distributed over all cpu/*/config.mk files. We move this one level
198 up into lib_arm/config.mk instead.
199
200 - So far, we only checked if "-mapcs-32" was supported by the tool
201 chain; if yes, this was used, if not, "-mabi=apcs-gnu" was
202 selected, no matter if the tool chain actually understood this
203 option. There was no support for EABI conformant tool chains.
204 This patch implements the following logic:
205
206 1) If the tool chain supports
207 "-mabi=aapcs-linux -mno-thumb-interwork"
208 we use these options (EABI conformant tool chain).
209 2) Otherwise, we check first if
210 "-mapcs-32"
211 is supported, and then check for
212 "-mabi=apcs-gnu"
213 If one test succeeds, we use the first found option.
214 3) In case 2), we also test if "-mno-thumb-interwork", and use
215 this if the test succeeds. [For "-mabi=aapcs-linux" we set
216 "-mno-thumb-interwork" mandatorily.]
217
218 This way we use a similar logic for the compile options as the
219 Linux kernel does.
220
221 - Some EABI conformant tool chains cause external references to
222 utility functions like raise(); such functions are provided in the
223 new file lib_arm/eabi_compat.c
224
225 Note that lib_arm/config.mk gets parsed several times, so we must
226 make sure to add eabi_compat.o only once to the linker list.
227
228 Signed-off-by: Wolfgang Denk <wd@denx.de>
229 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
230 Cc: Dirk Behme <dirk.behme@googlemail.com>
231 Cc: Magnus Lilja <lilja.magnus@gmail.com>
232 Cc: Tom Rix <Tom.Rix@windriver.com>
233 Cc: Prafulla Wadaskar <prafulla@marvell.com>
234 Acked-by: Sergey Kubushyn <ksi@koi8.net>
235 Tested-by: Magnus Lilja <lilja.magnus@gmail.com>
236 Tested-by: Andrzej Wolski <awolski@poczta.fm>
237 Tested-by: Gaye Abdoulaye Walsimou <walsimou@walsimou.com>
238 Tested-by: Tom Rix <Tom.Rix@windriver.com>
239 Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
240
241 commit 269610f6ba2e4a7bc27d2e53d43160614016964f
242 Author: Mingkai Hu <Mingkai.hu@freescale.com>
243 Date: Thu Jul 30 17:56:51 2009 +0800
244
245 NAND boot: fix nand_load overlap issue
246
247 The code copy data from NAND flash block by block, so when
248 the data length isn't a whole-number multiple of the block
249 size, it will overlap the rest space.
250
251 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
252 Signed-off-by: Scott Wood <scottwood@freescale.com>
253
254 commit 1fc1d9aed08f2b3366d634fda6712a710b2cff9a
255 Author: Giulio Benetti <giulio.benetti@micronovasrl.com>
256 Date: Fri Jul 31 17:30:34 2009 -0500
257
258 add WATCHDOG_RESET() on nand write and read
259
260 Signed-off-by: giulio.benetti@micronovasrl.com
261 Acked-by: Wolfgang Denk <wd@denx.de>
262 Signed-off-by: Scott Wood <scottwood@freescale.com>
263
264 commit b1e849f2201bbbf3ca81fde164f154f9caf7f0e9
265 Author: Peter Tyser <ptyser@xes-inc.com>
266 Date: Wed Feb 4 15:14:05 2009 -0600
267
268 tsec: Wait for auto-negotiation to complete without link
269
270 Previously, waiting for auto-negotiation would only occur if a valid
271 link had been detected. Problems arose when attempting to use a
272 tsec immediately after bootup but before link was achieved, eg:
273 => dhcp
274 Auto-neg error, defaulting to 10BT/HD
275 eTSEC1: No link.
276 Auto-neg error, defaulting to 10BT/HD
277 eTSEC2: No link.
278 =>
279
280 With this patch applied the same operation as above resulted in:
281 => dhcp
282 Waiting for PHY auto negotiation to complete. done
283 Enet starting in 1000BT/FD
284 Speed: 1000, full duplex
285
286 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
287 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
288
289 commit 477fa6378fbd3e47a5e2e83d0dd3970d5b1c8371
290 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
291 Date: Thu Aug 20 10:14:11 2009 +0200
292
293 arm: kirkwood: See to it that sent data is 8-byte aligned
294
295 U-boot might use non-8-byte-aligned addresses for sending data, which
296 the kwgbe_send doesn't accept (bootp does this for me). This patch
297 copies the data to be sent to a malloced temporary buffer if it is
298 non-aligned.
299
300 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
301 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
302
303 commit cad713bf7548b9e90433dac8270165402a6c9cc3
304 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
305 Date: Thu Aug 20 10:13:06 2009 +0200
306
307 Wait for the link to come up on kirkwood network init
308
309 This patch makes the device wait for up to 5 seconds for the link to
310 come up, similar to what many of the other network drivers do. This
311 avoids confusing situations where, e.g., a tftp fails when initiated
312 early after U-boot has started (before the link has come up).
313
314 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
315 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
316
317 commit bb1ca3b27f7fba8c73cb10279a6a8b8b69a308ff
318 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
319 Date: Thu Aug 20 10:12:28 2009 +0200
320
321 arm:kirkwood Define kirkwood phy address magic number
322
323 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
324 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
325
326 commit f81ecb5d3300bf92d17302d3712f30585c182da9
327 Author: Timur Tabi <timur@freescale.com>
328 Date: Mon Aug 17 15:55:38 2009 -0500
329
330 e1000: fix PCI memory addressing
331
332 The Intel E1000 driver was making assumptions about the relationship between
333 some virtual, physical, and PCI addresses.
334
335 Also fix some bad usage of the DEBUGOUT macro
336
337 Signed-off-by: Timur Tabi <timur@freescale.com>
338 Acked-by: Kumar Gala <galak@kernel.crashing.org>
339 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
340
341 commit b644006e1a7baa227aedc606ecdf0bb5eeb24cab
342 Author: Ilya Yanok <yanok@emcraft.com>
343 Date: Wed Aug 12 16:42:48 2009 +0400
344
345 jffs2: clean the cache in case of malloc fails in build_lists
346
347 We should call jffs2_clean_cache() if we return from jffs2_build_lists()
348 with an error to prevent usage of incomplete lists. Also we should
349 free() a local buffer to prevent memory leaks.
350
351 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
352
353 commit 7ff66bb0be80cadd681be22a72e5eb02ee14c878
354 Author: Heiko Schocher <hs@denx.de>
355 Date: Wed Aug 12 10:17:03 2009 +0200
356
357 ppc: trigger WDT before starting Linux
358
359 Signed-off-by: Heiko Schocher <hs@denx.de>
360
361 commit 918319c705d8a3d6251919a660baef32ff3a829a
362 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
363 Date: Wed Jul 22 18:30:03 2009 +0200
364
365 Update the mtd driver name in bootargs for at91-based boards
366
367 The name of the atmel nand driver in the kernel changed from at91_nand
368 to atmel_nand back in June 2008, but the at91-based boards config files
369 still refer to at91_nand. This patch updates them with the new name
370
371 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
372
373 commit 8fa656aa5289815d942ebdc26182ccb9f2b9c86f
374 Author: Ben Goska <goskab@onid.oregonstate.edu>
375 Date: Fri Aug 14 10:03:36 2009 -0700
376
377 omap3: Fixed a problem with hwecc
378
379 In commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e there
380 was a typo that offset all the ecc registers by 4 bytes, fixed that.
381
382 Signed-off-by: Ben Goska <goskab@onid.oregonstate.edu>
383 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
384
385 commit 514bab6609acd1a2a19fdd75c2f6255178db7c96
386 Author: Stefan Roese <sr@denx.de>
387 Date: Mon Aug 17 16:57:53 2009 +0200
388
389 ppc4xx: Fix "chip_config" command for AMCC Arches
390
391 This patch fixes the "chip_config" command for I2C bootstrap EEPROM
392 configuration. First it changes the I2C bootstrap EEPROM address to
393 0x54 as this is used on Arches (instead of 0x52 on Canyonlands/
394 Glacier). Additionally, the NAND bootstrap settings are removed
395 for Arches since Arches doesn't support NAND-booting.
396
397 Signed-off-by: Stefan Roese <sr@denx.de>
398
399 commit 4af34177b657e91263919a307fd0b0865a299e52
400 Author: Wolfgang Denk <wd@denx.de>
401 Date: Sun Aug 16 23:40:13 2009 +0200
402
403 Monahans: avoid floating point calculations
404
405 Current code for the Monahans CPU defined OSCR_CLK_FREQ as 3.250 (MHz)
406 which caused floating point operations to be used. This resulted in
407 unresolved references to some FP related libgcc functions when using
408 U-Boot's private libgcc functions.
409
410 Change the code to use fixed point math only.
411
412 Signed-off-by: Wolfgang Denk <wd@denx.de>
413
414 commit e393e2e9bc5cd3d5484e193d1380e7cd7587ab5c
415 Author: Kumar Gala <galak@kernel.crashing.org>
416 Date: Fri Aug 14 16:43:22 2009 -0500
417
418 85xx: Fix addrmap to include memory
419
420 When we init the addrmap based on the TLB we will not end up getting
421 the TLB that covers memory if we are using SPD. The reason is we
422 haven't relocated at the point that we setup the memory TLB and thus it
423 will not get setup in the addrmap.
424
425 Instead we can just walk over the TLB array after we've relocated and
426 see all the TLBs that have been set and use that information to populate
427 the initial addrmap. By doing this we insure that we get the TLB
428 entries that cover memory.
429
430 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
431
432 commit 7dedefdf749ff02c1086f7ddb8cb83a77b00d030
433 Author: John Schmoller <jschmoller@xes-inc.com>
434 Date: Wed Aug 12 10:55:47 2009 -0500
435
436 flash: Fix CFI buffer size bug
437
438 Fix bug introduced by 9c048b523413ae5f3ff34e00cf57569c3368ab51.
439
440 The cfi_flash.c driver cast the flash buffer size to a uchar in
441 flash_write_cfibuffer(). On some flash parts, (tested on Numonyx
442 part PC32F512M29EWH), the buffer size is 1KB. Remove the cast to
443 uchar to enable buffer sizes to be larger.
444
445 Signed-off-by: John Schmoller <jschmoller@xes-inc.com>
446 Signed-off-by: Stefan Roese <sr@denx.de>
447
448 commit f6e3a1fa92f61083885178101e973c86b419a6f7
449 Author: Mike Frysinger <vapier@gentoo.org>
450 Date: Thu Aug 13 00:32:14 2009 -0400
451
452 trab: rename spi_init()
453
454 The local board-specific spi_init() function conflicts with the common SPI
455 layer, so rename it to something board-specific.
456
457 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
458
459 commit 253cb831f5861358a7fa673305cdf7ded1096f44
460 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
461 Date: Wed Jul 29 06:05:20 2009 -0400
462
463 zlib: add watchdog reset call
464
465 This patch adds watchdog reset call to allow its invokation during decompression
466 phase. This control was present on old zlib version and here it is
467 backported for those relevant routines. This patch is sent as a zlib separate
468 one beacuse it was not tested due to specific board lack.
469 zlib patches will be unified just in one when this will be validated through
470 tests.
471
472 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
473
474 commit dce3d797102b6618e8bdd4a09cfd35969f165d86
475 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
476 Date: Wed Jul 29 08:05:08 2009 -0400
477
478 zlib: updated to v.1.2.3
479
480 This patch updates zlib to the latest stable version.
481 Only relevant zlib parts were ported to u-boot tree, as already did for the
482 current zlib (0.95). New zlib guarantees a faster inflate performances
483 other then others improvements as explained at www.zlib.net.
484 It also includes Alessandro Rubini's patches to allow 0 as destination pointer
485 and to call watchdog reset if required by architecture.
486
487 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
488 Reviewed-by: Angelo Castello <angelo.castello@st.com>
489 Reviewed-by: Alessandro Rubini <rubini-list@gnudd.com>
490
491 commit 3426d65daab6af483b177ed502038f52ed2e5aef
492 Author: Heiko Schocher <hs@denx.de>
493 Date: Tue Aug 11 10:37:58 2009 +0200
494
495 dtt, lm81: move unneccessary printf into a debug printf
496
497 Signed-off-by: Heiko Schocher <hs@denx.de>
498
499 commit 54e399f110bbaa24e662e6dd9e88ddb86989d668
500 Author: Mark Jackson <mpfj-list@mimc.co.uk>
501 Date: Tue Aug 11 11:33:47 2009 +0100
502
503 MIMC200: reduce LCD pixclock
504
505 The initial pixclock for the MIMC200 board is wrong (and causes
506 screen corruption due to DMA underruns).
507
508 This patch simply reduces the pixel clock to fix the problem.
509
510 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
511
512 commit 1443cd7e54d6893ab7cc51d93fe7759cdaa8b31f
513 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
514 Date: Wed Jul 1 14:04:05 2009 -0400
515
516 UEC FIXED PHY: Determine fixed-phy port using UEC interface name.
517
518 Fixed a misunderstanding in the original implementation, 'devnum' that
519 was used in the cpu/ppc4xx/4xx_enet.c implementation was NOT the
520 PHY's SMI address, rather it was the number of the MAC interface on
521 the CPU. The equivalent of this for uec_phy will be the UEC number
522 stored in mii_info->dev->name. Usage example is updated for uec.
523
524 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
525 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
526
527 commit 1a9519373b977ef3f7c9563ad3acb6c6f2424657
528 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
529 Date: Wed Jul 1 14:03:15 2009 -0400
530
531 Assigned a static SMI address to all UECs TBIPA address.
532
533 It is set to 0x1F by default and can be overwritten on the board
534 header file by defining CONFIG_UTBIPAR_INIT_TBIPA. This allows
535 the CPU to simply "reserve" one SMI address instead of using
536 a different one for each UEC.
537
538 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
539 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
540
541 commit 9fd38a01cbc0ce4a8db41f72677103ed04b23db5
542 Author: Prafulla Wadaskar <prafulla@marvell.com>
543 Date: Mon Aug 10 19:43:06 2009 +0530
544
545 net: kirkwood: updates: used eth_setenv_enetaddr api
546
547 eth_setenv_enetaddr is avaible by upper layer
548 using this saves 204 bytes on total image size
549
550 used Local OUI instead of Marvell OUI for
551 random MAC address generation logic
552
553 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
554 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
555
556 commit ecbd2078a1f56c85b6c56afaaed862bf92ccd3f3
557 Author: Roy Zang <tie-fei.zang@freescale.com>
558 Date: Tue Aug 11 03:48:05 2009 +0800
559
560 Fix E1000 build warning on AP1000 board
561
562 Fix E1000 build warning on AP1000 board
563 Fix the build warning on AP1000 board:
564 e1000.c:131: warning: 'e1000_read_eeprom' used but never defined
565 e1000.c:2012: warning: 'e1000_set_phy_mode' defined but not used
566
567 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
568 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
569
570 commit b3af1d698b031e721bacaee8715d79daaf823de6
571 Author: Sandeep Paulraj <s-paulraj@ti.com>
572 Date: Mon Aug 10 12:24:40 2009 -0400
573
574 ARM: Davinci DM355: Enabling DM9000 on DM355 EVM
575
576 Due to recent changes to the NET support on U-boot, DM9000
577 is no longer detected on the DM355 EVM.
578 This minor update enables DM9000 on the DM355 EVM.
579 Tested on the DM355 EVM
580
581 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
582 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
583
584 commit 08c2df33f1cd5935938486e968696f94ad406313
585 Author: Prafulla Wadaskar <prafulla@marvell.com>
586 Date: Mon Aug 10 19:23:19 2009 +0530
587
588 net: phy: bugfixes: mv88E61xx compiler warnings fixed
589
590 1. mv88E61xx driver compiler warnings fixed
591 2. idstr if-else statements changed to switch() construct
592 and added default case too.
593 This fixed idstr may be uninitialized warning
594
595 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
596 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
597
598 commit 750326e5d540885e3ec36bda9464b8269249f6ce
599 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
600 Date: Mon Aug 10 11:00:00 2009 +0800
601
602 arm: A320: driver for FTMAC100 ethernet controller
603
604 This patch adds an FTMAC100 ethernet driver for Faraday A320 evaluation board.
605
606 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
607 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
608
609 commit f90dc43fd67eea71124b999a7d5e617d0d86795b
610 Author: Kumar Gala <galak@kernel.crashing.org>
611 Date: Mon Aug 10 16:40:55 2009 -0500
612
613 85xx: Removed BEDBUG support from FSL 85xx boards
614
615 For some reason the MPC8544 enabled BEDBUG if PCI was enabled and that
616 got copied int the MPC8536, MPC8572 and P2020 DS boards. The BEDBUG
617 support has never been made to work completely on e500/85xx so we
618 just disable it to save space and match the other FSL 85xx boards.
619
620 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
621
622 commit eb1a4d0a471505c169bef19a73a60f8641f0b875
623 Author: Wolfgang Denk <wd@denx.de>
624 Date: Mon Aug 10 10:39:12 2009 +0200
625
626 Prepare 2009.08-rc2
627
628 Update CHANGELOG
629
630 Signed-off-by: Wolfgang Denk <wd@denx.de>
631
632 commit 53cc18c71b2b920cca171874c6663e274fa80556
633 Author: Wolfgang Denk <wd@denx.de>
634 Date: Mon Aug 10 10:38:34 2009 +0200
635
636 Minor coding style cleanup.
637
638 Signed-off-by: Wolfgang Denk <wd@denx.de>
639
640 commit d371708a1beda0f529756e614af785b30461379e
641 Author: Wolfgang Denk <wd@denx.de>
642 Date: Mon Aug 10 09:59:10 2009 +0200
643
644 net/tftp.c: fix warning: pointer targets differ in signedness
645
646 tftp.c:294: warning: pointer targets in passing argument 1 of 'strlen'
647 differ in signedness
648
649 This was only visible for the utx8245 board which seems to have DEBUG
650 enabled.
651
652 Signed-off-by: Wolfgang Denk <wd@denx.de>
653
654 commit 3ed9e943fdfe51174b23989d48563b8c1b7d2ea8
655 Author: Dirk Behme <dirk.behme@googlemail.com>
656 Date: Sat Aug 8 16:06:47 2009 +0200
657
658 ARM Cortex A8: Remove bogus config.mk entries
659
660 Remove bogus config.mk entry, fix newline and remove redundant
661 omap3/config.mk
662
663 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
664
665 commit cd3dcba1422d3441503251fbc69cf2437c440781
666 Author: Dirk Behme <dirk.behme@googlemail.com>
667 Date: Sat Aug 8 12:46:09 2009 +0200
668
669 OMAP3: Fix missing GPMC_CONFIG_CS0_BASE
670
671 Applying two indepenent OMAP3 patches resulted in missing
672 GPMC_CONFIG_CS0_BASE. Patch "omap3: embedd gpmc_cs into gpmc
673 config struct" removes GPMC_CONFIG_CS0_BASE, independent patch
674 "omap3: bug fix for NOR boot support" introduces it's usage.
675 Re-introduce GPMC_CONFIG_CS0_BASE.
676
677 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
678
679 commit ba3dbaf281130029ecb970a922551902c1d80b50
680 Author: Ilya Yanok <yanok@emcraft.com>
681 Date: Mon Jun 8 04:12:49 2009 +0400
682
683 mxc-mmc: sdhc host driver for MX2 and MX3 proccessor
684
685 This is a port of Linux driver for SDHC host controller hardware
686 found on Freescale's MX2 and MX3 processors. Uses new generic MMC
687 framework (CONFIG_GENERIC_MMC) and it looks like there are some
688 problems with a framework (at least on LE cpus). Some of these
689 problems are addressed in the following patches.
690
691 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
692
693 commit 642d7b63c343633dcafc4e23a20e32604a05ff13
694 Author: Alessandro Rubini <rubini-list@gnudd.com>
695 Date: Fri Aug 7 12:35:47 2009 +0200
696
697 kirkwood/gpio.h: remove duplicate definition
698
699 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
700
701 commit 3ac374c0f0b7d856f1a43317a286f2079106bd6a
702 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
703 Date: Fri Aug 7 12:37:36 2009 +0200
704
705 Add driver for the ST M95xxx SPI EEPROM
706
707 This chip is used in a number of boards manufactured by Calao-Systems
708 which should be supported soon. This driver provides the necessary
709 spi_read and spi_write functions necessary to communicate with the chip.
710
711 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
712
713 commit 30951960bae9a2c33e324a7165962a082e913f9e
714 Author: Prafulla Wadaskar <prafulla@marvell.com>
715 Date: Fri Aug 7 22:27:32 2009 +0530
716
717 arm: Sheevaplug: Fixed NAND specific warning
718
719 It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
720 for NAND specific warning removal, same is done in this patch
721
722 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
723
724 commit 317734966e763fdee183898c0ed940c9bada2541
725 Author: Josh Boyer <jwboyer@linux.vnet.ibm.com>
726 Date: Fri Aug 7 13:53:20 2009 -0400
727
728 Dual-license IBM code contributions
729
730 It was brought to our attention that U-Boot contains code derived from the
731 IBM OpenBIOS source code originally provided with some of the older PowerPC
732 4xx development boards. As a result, the original license of this code has
733 been carried in the various files for a number of years in the U-Boot project.
734
735 IBM is dual-licensing the IBM code contributions already present in U-Boot
736 under either the terms of the GNU General Public License version 2, or the
737 original code license already present.
738
739 Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
740
741 commit cfd700be9f5ed289fd57a9bd61e266319badcb0d
742 Author: Kumar Gala <galak@kernel.crashing.org>
743 Date: Wed Aug 5 09:03:54 2009 -0500
744
745 fdt: Fix fdt_pci_dma_ranges handling of 64-bit ranges
746
747 If the size of a region equal to 4G it can't be represnted in a 32-bit
748 BAR so we should have marked that case as MEM64.
749
750 Additionally bump the number of inbound windows up to 4 to handle the
751 fact that Freescale PPCs that have an implicit window for CCSRBAR.
752
753 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
754
755 commit 59b4d7471c42e955bd9846892a0cc7478171778d
756 Author: Wolfgang Denk <wd@denx.de>
757 Date: Thu Aug 6 21:29:59 2009 +0200
758
759 ARM EABI: add new helper functions resp. function names
760
761 The ARM EABI defines new names for GCC helper functions,
762 and GCC seems to need some new functions as well.
763
764 This patch is a minimal-invasive approach to fix problems with EABI
765 conformant tool chains (to be used with "USE_PRIVATE_LIBGCC=yes").
766
767 Signed-off-by: Wolfgang Denk <wd@denx.de>
768 Tested-by: Dirk Behme <dirk.behme@googlemail.com>
769
770 commit 197324d7d998a791e5137b8176981b4af25220ae
771 Author: Peter Tyser <ptyser@xes-inc.com>
772 Date: Wed Aug 5 16:18:44 2009 -0500
773
774 hush: Fix bogus free() call
775
776 An off-by-one error in hush.c resulted in an unintentional free() call
777 every time a command was executed
778
779 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
780
781 commit ff27650bb255e2275a212357b78c3b77cbf1d2e9
782 Author: Detlev Zundel <dzu@denx.de>
783 Date: Wed Aug 5 18:37:45 2009 +0200
784
785 digsy_mtc: Update default environment
786
787 Signed-off-by: Detlev Zundel <dzu@denx.de>
788
789 commit 0b40bd439a33bde9e3cccf1acb5744225d0c6103
790 Author: Detlev Zundel <dzu@denx.de>
791 Date: Wed Aug 5 18:37:44 2009 +0200
792
793 digsy_mtc: Add delay in SPI transfers to the companion controller.
794
795 While at it, remove initialization of variables which will be set
796 before usage in all cases.
797
798 Signed-off-by: Detlev Zundel <dzu@denx.de>
799
800 commit 0bf00750e082a004e5fb058925622ae72890cc56
801 Author: Anatolij Gustschin <agust@denx.de>
802 Date: Wed Aug 5 18:37:43 2009 +0200
803
804 digsy_mtc: minor fixes for mtc command help
805
806 Add mtc state subcommand description to the
807 help of mtc command.
808
809 Remove some newlines in description of commands
810 for proper help formating.
811
812 Signed-off-by: Anatolij Gustschin <agust@denx.de>
813
814 commit 5cc69084189bf49aa99d13d57515be72d1844bdf
815 Author: Grzegorz Bernacki <gjb@semihalf.com>
816 Date: Wed Aug 5 18:37:42 2009 +0200
817
818 digsy_mtc: Add mtc state command.
819
820 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
821
822 commit 716655288a53c95fad203ebf21d0b8ffdc2f7525
823 Author: Wolfgang Denk <wd@denx.de>
824 Date: Tue Jul 28 22:35:39 2009 +0200
825
826 Partition support: remove newline from partition name
827
828 Remove bogus newline character that got added to the .name field of
829 the disk_partition_t structure.
830
831 Signed-off-by: Wolfgang Denk <wd@denx.de>
832
833 commit 3f1649fb0dfb1e5c8890de154c332c394db5cdb5
834 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
835 Date: Tue Jul 28 09:33:17 2009 +0200
836
837 Fix LZMA string.h header inclusion issue and remove unused variables.
838
839 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
840
841 commit 1c6232f1e2eae87e0e36d489611eb6891dff21e1
842 Author: Jens Scharsig <esw@bus-elektronik.de>
843 Date: Mon Jul 27 15:28:42 2009 +0200
844
845 bus_vcxk.c: fix warning: unused variable 'lineptr'
846
847 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
848
849 commit 18304f7675e84252965b4e24cba279071f1da472
850 Author: Mike Frysinger <vapier@gentoo.org>
851 Date: Fri Jul 24 17:51:27 2009 -0400
852
853 env: kill off default_environment_size
854
855 The only environment type that uses this variable is spi flash, and that is
856 only because it is reimplementing the common set_default_env() function.
857 So fix the spi flash code and kill off the default_environment_size in the
858 process.
859
860 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
861
862 commit bedd8403f77f790e9876578885eab1200ba2f8d8
863 Author: Mike Frysinger <vapier@gentoo.org>
864 Date: Thu Jul 23 16:37:48 2009 -0400
865
866 export SPI functions to standalone apps
867
868 While we're here, fix the broken #ifdef handling in _exports.h.
869
870 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
871
872 commit 3b9043a7c03290c9bdbef03848307263f5f3472c
873 Author: Penda Naveen Kumar <pnaveen@ti.com>
874 Date: Fri Jul 31 00:06:36 2009 +0530
875
876 omap3: bug fix for NOR boot support
877
878 This patch provides bug fix, when omap3 uses nor boot.
879
880 Signed-off-by: Penda Naveen Kumar<pnaveen@ti.com>
881 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
882
883 commit 61c68ae0b43bb5d6ab32958c45289aa197b1a2d1
884 Author: Michael Evans <horse_dung@hotmail.com>
885 Date: Mon Jul 13 20:13:45 2009 +0100
886
887 Fix examples for OMAP3 boards...
888
889 The attached patch corrects an error in the examples/Makefile which
890 causes the applications in the examples directory to hang on OMAP3
891 based boards. The current Makefile sets -Ttext during linking to
892 0x0c100000 which is outside of addressable SDRAM memory. The script
893 corrects the existing ifeq...else...endif logic to look at the VENDOR
894 tag rather than the CPU tag.
895
896 The patch affects the following configs: omap3_beagle_config,
897 omap3_overo_config, omap3_evm_config, omap3_pandora_config,
898 omap3_zoom1_config and omap3_zoom2_config.
899
900 Signed-off-by: Michael Evans <horse_dung@hotmail.com>
901
902 Edited commit message.
903 Signed-off-by: Wolfgang Denk <wd@denx.de>
904
905 commit a3d1421dfd0bb1a729e171f8a093ac837f92cec6
906 Author: Dirk Behme <dirk.behme@googlemail.com>
907 Date: Sat Aug 8 09:30:23 2009 +0200
908
909 omap3: use only fixed-size types inside ctrl_structs
910
911 replace variable types in ctrl_structs for omap3 by those with
912 fixed size (u8, u16, u32).
913 Additional ifndef-protection is needed by examples which do not
914 compile when including asm/types.h
915
916 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
917 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
918
919 commit 894113529e3a04871544dde977d6d7adee05d3bf
920 Author: Dirk Behme <dirk.behme@googlemail.com>
921 Date: Sat Aug 8 09:30:22 2009 +0200
922
923 omap3: replace all instances of gpmc config struct by one global
924
925 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
926 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
927
928 commit 97a099eaa48d5c762c4f73c52c3090c513b8b877
929 Author: Dirk Behme <dirk.behme@googlemail.com>
930 Date: Sat Aug 8 09:30:21 2009 +0200
931
932 omap3: remove typedefs for configuration structs
933
934 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
935 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
936
937 commit aa0707897c49c330b7d6b8d8362e44f60f224732
938 Author: Roy Zang <tie-fei.zang@freescale.com>
939 Date: Fri Jul 31 13:34:02 2009 +0800
940
941 Add Intel E1000 PCIE card support
942
943 Based on Intel PRO/1000 Network Driver 7.3.20-k2
944 Add Intel E1000 PCIE card support. The following cards are added:
945 INTEL_82571EB_COPPER
946 INTEL_82571EB_FIBER,
947 INTEL_82571EB_SERDES
948 INTEL_82571EB_QUAD_COPPER
949 INTEL_82571PT_QUAD_COPPER
950 INTEL_82571EB_QUAD_FIBER
951 INTEL_82571EB_QUAD_COPPER_LOWPROFILE
952 INTEL_82571EB_SERDES_DUAL
953 INTEL_82571EB_SERDES_QUAD
954 INTEL_82572EI_COPPER
955 INTEL_82572EI_FIBER
956 INTEL_82572EI_SERDES
957 INTEL_82572EI
958 INTEL_82573E
959 INTEL_82573E_IAMT
960 INTEL_82573L
961 INTEL_82546GB_QUAD_COPPER_KSP3
962 INTEL_80003ES2LAN_COPPER_DPT
963 INTEL_80003ES2LAN_SERDES_DPT
964 INTEL_80003ES2LAN_COPPER_SPT
965 INTEL_80003ES2LAN_SERDES_SPT
966
967 82571EB_COPPER dual ports,
968 82572EI single port,
969 82572EI_COPPER single port PCIE cards
970 and
971 82545EM_COPPER,
972 82541GI_LF
973 pci cards are tested on both P2020 board
974 and MPC8544DS board.
975
976 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
977
978 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
979
980 commit 86848a74c3c8eb2f8dd179d039ee604dc45288cf
981 Author: Mike Frysinger <vapier@gentoo.org>
982 Date: Wed Jul 15 21:31:28 2009 -0400
983
984 net: sync env ethaddr to device enetaddr in eth_init()
985
986 In the previous enetaddr refactoring, the assumption with commit 56b555a644
987 was that the eth layer would handle the env -> device enetaddr syncing.
988 This was not the case as eth_initialize() is called only once and the sync
989 occurs there. So make sure the eth_init() function does the env -> device
990 sync with every network init.
991
992 Reported-by: Andrzej Wolski <awolski@poczta.fm>
993 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
994 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
995
996 commit 0ebf04c607b54a352629dcf7e76b76f1785dae54
997 Author: Robin Getz <rgetz@blackfin.uclinux.org>
998 Date: Thu Jul 23 03:01:03 2009 -0400
999
1000 minor debug cleanups in ./net
1001
1002 Minor ./net cleanups - no functional changes
1003 - change #ifdef DEBUG printf(); #endif to just debug()
1004 - changed __FUNCTION__ to __func__
1005 - got rid of extra whitespace between function and opening brace
1006 - removed unnecessary braces on if statements
1007
1008 gcc dead code elimination should make this functionally/size equivalent
1009 when DEBUG is not defined. (confirmed on Blackfin, with gcc 4.3.3).
1010
1011 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
1012
1013 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1014
1015 commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e
1016 Author: Matthias Ludwig <mludwig@ultratronik.de>
1017 Date: Tue May 19 09:09:31 2009 +0200
1018
1019 omap3: embedd gpmc_cs into gpmc config struct
1020
1021 Embedd chip select configuration into struct for gpmc config
1022 instead of having it completely separated as suggested by
1023 Wolfgang Denk on
1024 http://lists.denx.de/pipermail/u-boot/2009-May/052247.html
1025
1026 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
1027
1028 commit 06bffc6ea52d4b390843d295d438b2037d12e5fd
1029 Author: David Brownell <david-b@pacbell.net>
1030 Date: Thu Jul 16 18:40:55 2009 -0700
1031
1032 rm9200 lowevel_init: don't touch reserved/readonly registers
1033
1034 For some reason the AT91rm9200 lowlevel init writes to a bunch of
1035 reserved or read-only addresses. All the boards seem to define the
1036 value-to-be-written values as zero ... but they shouldn't actually
1037 be writing *anything* there.
1038
1039 No documented erratum justifies these accesses. It looks like maybe
1040 some pre-release BDI-2000 setup code has been carried along by cargo
1041 cult programming since at least late 2004 (per GIT history).
1042
1043 Here's a patch disabling what seems to be bogosity. Tested on a
1044 csb337; there were no behavioral changes.
1045
1046 Signed-off-by: David Brownell <david-b@pacbell.net>
1047
1048 on RM9200ek
1049 Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1050
1051 commit 301b7db88fbdf7d118efb79b371b2527a2c31868
1052 Author: David Hunter <hunterd42@gmail.com>
1053 Date: Thu Jul 30 14:32:49 2009 -0700
1054
1055 pxa: Fix typo in GCDR(x)
1056
1057 Fix a typo in the GCDR(x) macro. It's a good thing no one was using it.
1058
1059 Signed-off-by: David Hunter <hunterd42@gmail.com>
1060
1061 commit 3c448e648221879ae0e030e94508b4f9f63b7ab8
1062 Author: Eric Benard <eric@eukrea.com>
1063 Date: Sat Jul 18 23:45:15 2009 +0200
1064
1065 Add AT91SAM9260 to at91's lowlevel_init.S
1066
1067 Needed for AT91SAM9260 NOR Boot on Eukrea's CPU9260.
1068
1069 Signed-off-by: Eric Benard <eric@eukrea.com>
1070
1071 commit 56bdfa961242fc6acaeebc800640a12b28db3899
1072 Author: Dirk Eibach <eibach@gdsys.de>
1073 Date: Thu Jul 30 09:36:33 2009 +0200
1074
1075 ppc4xx: Remove check for PPC460EX from CompactCenter
1076
1077 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
1078 Signed-off-by: Stefan Roese <sr@denx.de>
1079
1080 commit c3fa4f0c8684c862ecd3fb622fab1e17e44e82e1
1081 Author: Stefan Roese <sr@denx.de>
1082 Date: Wed Jul 29 08:46:10 2009 +0200
1083
1084 ppc4xx: Add support for PPC460EX/460GT rev B chip to AMCC Canyonlands
1085
1086 This patch is based on a diff created by Phong Vo from AMCC.
1087
1088 Signed-off-by: Phong Vo <pvo@amcc.com>
1089 Signed-off-by: Stefan Roese <sr@denx.de>
1090
1091 commit 89bcc4875007ef6608297dc11e7a0d1fbd9900d2
1092 Author: Stefan Roese <sr@denx.de>
1093 Date: Wed Jul 29 08:45:27 2009 +0200
1094
1095 ppc4xx: Add basic support for AMCC PPC460EX/460GT rev B chips
1096
1097 This patch is based on a diff created by Phong Vo from AMCC.
1098
1099 Signed-off-by: Phong Vo <pvo@amcc.com>
1100 Signed-off-by: Stefan Roese <sr@denx.de>
1101
1102 commit 82a7edc7ea8f5fe55fed4ff7e127469569e539c4
1103 Author: Stefan Roese <sr@denx.de>
1104 Date: Tue Jul 28 15:12:04 2009 +0200
1105
1106 ppc4xx: Canyonlands-NAND-boot: Support 2 Crucial 512MByte SODIMM's
1107
1108 Some Canyonlands boards are equipped with different SODIMM's. This is no
1109 problem with the "normal" NOR booting Canyonlands U-Boot, since it
1110 automatically detects the SODIMM's via SPD data and correctly configures
1111 them. But the NAND booting version is different. Here we only have 4k
1112 of image size to completely setup the hardware, including DDR2 setup.
1113 So we need to use a fixed DDR2 setup here. This doesn't work for different
1114 SODIMM's right now.
1115
1116 Currently only this Crucial SODIMM is support:
1117 CT6464AC667.8FB (dual ranked)
1118
1119 Now some boards are shipped with this SODIMM:
1120 CT6464AC667.4FE (single ranked)
1121
1122 This patch now supports both SODIMM's by configuring first for the dual
1123 ranked DIMM. A quick shows, if this module is really installed. If this test
1124 fails, the DDR2 controller is re-configured for the single
1125 ranked SODIMM.
1126
1127 Tested with those SODIMM's:
1128
1129 CT6464AC667.8FB (dual ranked)
1130 CT6464AC667.4FE (single ranked)
1131
1132 Signed-off-by: Stefan Roese <sr@denx.de>
1133
1134 commit 27dd5f8e1062684f1ba685760409d9b2ab6691bf
1135 Author: Stefan Roese <sr@denx.de>
1136 Date: Tue Jul 28 10:56:03 2009 +0200
1137
1138 ppc4xx: amcc: Move "kernel_addr_r" etc to higher locations (> 16MB)
1139
1140 This patch moves the load addresses for kernel, fdt and ramdisk to higher
1141 addresses (>= 16MB). This enables booting of bigger kernel images (e.g.
1142 lockdep enabled).
1143
1144 Signed-off-by: Stefan Roese <sr@denx.de>
1145
1146 commit 6942efc2be1b90054fa4afa5cda7023469fe08b9
1147 Author: Stefan Roese <sr@denx.de>
1148 Date: Tue Jul 28 10:50:32 2009 +0200
1149
1150 ppc4xx: amcc: Set CONFIG_SYS_BOOTMAPSZ to 16MB for big kernels
1151
1152 This patch changes CONFIG_SYS_BOOTMAPSZ from 8MB to 16MB which is the
1153 initial TLB on 40x PPC's in the Linux kernel. With this change even bigger
1154 Linux kernels (> 8MB) can be booted.
1155
1156 This patch also sets CONFIG_SYS_BOOTM_LEN to 16MB (default 8MB) to enable
1157 decompression of bigger images.
1158
1159 Signed-off-by: Stefan Roese <sr@denx.de>
1160
1161 commit 901be89a27e11b2627c132ee87c7761bd6886091
1162 Author: Heiko Schocher <hs@denx.de>
1163 Date: Tue Jul 28 14:53:44 2009 +0200
1164
1165 83xx, kmeter1, fix: update in the DTS the correct size for the first flash
1166
1167 When updating the "reg" in the "/localbus/flash@f0000000,0" node
1168 size was wrong updated for the first flash, because the total
1169 size was filled in, instead of the right size for it.
1170
1171 Signed-off-by: Heiko Schocher <hs@denx.de>
1172 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1173
1174 commit 4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d
1175 Author: Kumar Gala <kumar.gala@freescale.com>
1176 Date: Tue Jul 28 21:49:52 2009 -0500
1177
1178 Update Freescale copyrights to remove "All Rights Reserved"
1179
1180 "All Rights Reserved" conflicts with the GPL.
1181
1182 Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
1183
1184 commit bb4291e62579dbc611e84eaaf973631e0bf129c7
1185 Author: Alessandro Rubini <rubini@unipv.it>
1186 Date: Fri Jul 24 11:27:14 2009 +0200
1187
1188 arm nomadik: add i2c
1189
1190 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
1191 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
1192 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1193
1194 commit 60cbfbfd0fbebb4682f10ba96f622bfe17317598
1195 Author: Alessandro Rubini <rubini@unipv.it>
1196 Date: Fri Jul 24 11:27:03 2009 +0200
1197
1198 arm nomadik: add gpio support
1199
1200 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
1201 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
1202 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1203
1204 commit 549b98306d897ae5991362d6096a36df50efe686
1205 Author: Tom Rix <Tom.Rix@windriver.com>
1206 Date: Sun Jun 28 12:52:32 2009 -0500
1207
1208 OMAP3 Remove twl4030 defines
1209
1210 These defines have been subplanted by the equivelent defines in
1211 include/twl4030.h
1212
1213 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1214 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1215 Acked-by: Heiko Schocher <hs@denx.de>
1216
1217 commit fccc0fcaaae5154612f8259365d26d04f204859f
1218 Author: Tom Rix <Tom.Rix@windriver.com>
1219 Date: Sun Jun 28 12:52:31 2009 -0500
1220
1221 OMAP3 Move twl4030 mmc function
1222
1223 Because twl4030 now has its own device files, move and rename
1224 twl4030_mmc_config.
1225
1226 twl4030_mmc_config initializes the twl4030 power setting to
1227 the mmc device. Because it is in the twl4030 power domain, move
1228 it out of drivers/mmc/omap3_mmc.c and into drivers/power/twl4030.c.
1229
1230 The function was renamed to twl4030_power_mmc_init because all
1231 the functions in this file are to have the format
1232
1233 twl4030_power_<device>_<action>
1234
1235 In this case the suffix is mmc_init so
1236 device : mmc
1237 action : init
1238
1239 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1240 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1241 Acked-by: Heiko Schocher <hs@denx.de>
1242
1243 commit 2c15513010493435c78f83202940ac3be11de2c3
1244 Author: Tom Rix <Tom.Rix@windriver.com>
1245 Date: Sun Jun 28 12:52:30 2009 -0500
1246
1247 OMAP3 Move twl4030 power and led functions
1248
1249 Because twl4030 now has its own device files, move exiting
1250 omap3 power_init_r to a new location.
1251
1252 power_init_r is the only function in board/omap3/common.
1253 It initializes the twl4030 power for the board and enables
1254 the led.
1255
1256 The power part of the the function is moved to twl4030_power_init in
1257 drivers/power/twl4030.c The power compilation is conditional on the
1258 existing config variable CONFIG_TWL4030_POWER.
1259
1260 The led part is moved to twl4030_led_init in the new file
1261 drivers/misc/twl4030_led.c The led compilation is conditional on
1262 the new config variable CONFIG_TWL4030_LED
1263
1264 The directory board/omap3/common was removed because power_init_r
1265 was the only function in it.
1266
1267 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1268 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1269 Acked-by: Heiko Schocher <hs@denx.de>
1270
1271 commit 3cb7a4805fc8fb4c09e4801e1c7d531186f20190
1272 Author: Wolfgang Denk <wd@denx.de>
1273 Date: Tue Jul 28 22:13:52 2009 +0200
1274
1275 TQM8xx* boards: set larger SMC Rx buffer len
1276
1277 Commit 2b3f12c2 added support for configurable SMC Rx buffer length on
1278 8xx systems. Enable this feature on TQM8xx* based boards.
1279
1280 This fixes the problem that pasting text in the middle of a line
1281 (i. e. inserting in edit mode) did not work - only the first two
1282 characters got inserted, the rest was lost.
1283
1284 Signed-off-by: Wolfgang Denk <wd@denx.de>
1285
1286 commit 4b7511478b62a539e5b066d19a986b75e5d9a527
1287 Author: Wolfgang Denk <wd@denx.de>
1288 Date: Tue Jul 28 22:07:37 2009 +0200
1289
1290 Fix ext2load return code
1291
1292 Make the ext2load command return 0 on success (instead of the file
1293 length).
1294
1295 Also fix output format (get rid of random newlines) and some coding
1296 style issues (long lines etc.).
1297
1298 Signed-off-by: Wolfgang Denk <wd@denx.de>
1299
1300 commit 56fdaadc124a8ef9ec0fd8ff578233ec3b1137be
1301 Author: Weirich, Bernhard <Bernhard.Weirich@riedel.net>
1302 Date: Wed Jun 10 14:00:37 2009 +0200
1303
1304 ext2: fix inode size and calculations
1305
1306 Signed-off-by: unsik Kim <donari75@gmail.com>
1307 Signed-off-by: Bernhard Weirich <bernhard.weirich@riedel.net>
1308 Signed-off-by: Wolfgang Denk <wd@denx.de>
1309 Tested-by: Wolfgang Denk <wd@denx.de>
1310
1311 commit cd7826359ee71e8f6f3d68331930ab9cbe1c990e
1312 Author: Tom Rix <Tom.Rix@windriver.com>
1313 Date: Sun Jun 28 12:52:29 2009 -0500
1314
1315 TWL4030 Add power reset button
1316
1317 The Zoom2 power reset button is on the top right side of the
1318 main board. Press and hold for about to 8 seconds to completely
1319 reset the board.
1320
1321 Some of the beta boards have a hardware problem that prevents
1322 using this feature. If is difficult to further characterize the
1323 boards that fail. So disable resetting for all beta boards.
1324
1325 The Zoom1 reset button is the red circle on the top right,
1326 front of the board. Press and hold the button for 8 seconds to
1327 completely reset the board.
1328
1329 After analyzing beagle, it was determined that other boards
1330 that use the twl4030 for power managment can also make use
1331 this function.
1332
1333 The resetting is done by the power management part of the twl4030.
1334 Since there is no existing drivers/power, add one.
1335
1336 The compilation of power/twl4030.h is controlled by the config
1337 variable CONFIG_TWL4030_POWER
1338
1339 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1340 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1341 Acked-by: Heiko Schocher <hs@denx.de>
1342
1343 commit 8966eb4c1c2d894b2a76174ba904c26c5af815b8
1344 Author: Tom Rix <Tom.Rix@windriver.com>
1345 Date: Sun Jun 28 12:52:28 2009 -0500
1346
1347 TWL4030 Add initial support
1348
1349 The TWL4030 supplies many peripherals for OMAP3 boards. These include
1350 power management, usb and, keyboard.
1351
1352 The product description is found here:
1353
1354 http://focus.ti.com/docs/prod/folders/print/tps65950.html
1355
1356 Product reference document, tps65950.pdf, is found here:
1357
1358 http://www.ti.com/lit/gpn/tps65950
1359
1360 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1361 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1362 Acked-by: Heiko Schocher <hs@denx.de>
1363
1364 commit 7f79dfb48b7419d5caa1cf932fcff4e2fb7040af
1365 Author: Tom Rix <Tom.Rix@windriver.com>
1366 Date: Sun Jun 28 12:52:27 2009 -0500
1367
1368 OMAP I2C Fix the sampling clock.
1369
1370 This problem is seen on Zoom1 and Zoom2 in the startup and
1371 when i2c probe is used
1372
1373 Before :
1374
1375 In: serial
1376 Out: serial
1377 Err: serial
1378 timed out in wait_for_bb: I2C_STAT=1000
1379 timed out in wait_for_bb: I2C_STAT=1000
1380 timed out in wait_for_bb: I2C_STAT=1000
1381 timed out in wait_for_pin: I2C_STAT=1000
1382 I2C read: I/O error
1383 timed out in wait_for_bb: I2C_STAT=1000
1384 timed out in wait_for_bb: I2C_STAT=1000
1385 Die ID #327c00020000000004013ddd05026013
1386 Hit any key to stop autoboot: 0
1387 OMAP3 Zoom1# i2c probe
1388 Valid chip addresses:timed out in wait_for_bb: I2C_STAT=1000
1389 02 03 04 05 06 07 08 09 0A 0B 0C 0D <snip>
1390
1391 After :
1392
1393 In: serial
1394 Out: serial
1395 Err: serial
1396 Die ID #327c00020000000004013ddd05026013
1397 Hit any key to stop autoboot: 0
1398 OMAP3 Zoom1# i2c probe
1399 Valid chip addresses: 48 49 4A 4B
1400
1401 The addresses are for the twl4030.
1402
1403 The prescalar that converts the function clock to the sampling
1404 clock is hardcoded to 0. The reference manual recommends 7
1405 if the function clock is 96MHz.
1406
1407 Instead of just changing the hardcoded values, the prescalar
1408 is calculated from the value I2C_IP_CLK.
1409
1410 The i2c #defines are in kHz. The speed passed into the
1411 i2c init routine is in Hz. To be consistent, change the
1412 defines to be in Hz.
1413
1414 The timing calculations are based on what is done in the
1415 linux 2.6.30 kernel in drivers/i2c/buses/i2c_omap.c as
1416 apposed to what is done in TRM.
1417
1418 The major variables in the timing caculations are
1419 specified as #defines that can be overriden as required.
1420
1421 The variables and their defaults are
1422
1423 I2C_IP_CLK SYSTEM_CLOCK_96
1424 I2C_INTERNAL_SAMPLING_CLK 19200000
1425 I2C_FASTSPEED_SCLL_TRIM 6
1426 I2C_FASTSPEED_SCLH_TRIM 6
1427 I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM I2C_FASTSPEED_SCLL_TRIM
1428 I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM I2C_FASTSPEED_SCLH_TRIM
1429 I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM I2C_FASTSPEED_SCLL_TRIM
1430 I2C_HIGHSPEED_PHASE_TWO_SCLH I2C_FASTSPEED_SCLH_TRIM
1431
1432 This was runtime verified on Zoom1, Zoom2, Beagle and Overo.
1433 The 400kHz and 3.4M cases were verifed on test Zoom1,
1434 Zoom2, Beagle and Overo configurations.
1435
1436 Testing for omap2 will be done in a second step as Nishanth
1437 and Jean-Christophe commented.
1438
1439 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1440 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1441 Acked-by: Heiko Schocher <hs@denx.de>
1442
1443 commit 4ce5a72851ff2960543b125866c6132e0094e1ee
1444 Author: Heiko Schocher <hs@denx.de>
1445 Date: Mon Jul 20 09:59:37 2009 +0200
1446
1447 arm, i2c: added support for the TWSI I2C Interface
1448
1449 Signed-off-by: Heiko Schocher <hs@denx.de>
1450
1451 commit 042d01c72e0ea95731708dd24bb8b6cf42e75c80
1452 Author: Stefan Roese <sr@denx.de>
1453 Date: Mon Jul 27 09:13:38 2009 +0200
1454
1455 ppc4xx: Fix problem with NOR range assignment in Canyonlands ft_board_setup
1456
1457 This patch fixes the problem, that the current fdt board fixup code only
1458 set's one range, the one for NOR. By this it's overwriting the already
1459 correctly configured values done in __ft_board_setup(). Just remove this
1460 now unneeded NOR fixup and all the ranges are correctly defined.
1461
1462 Signed-off-by: Stefan Roese <sr@denx.de>
1463 Cc: Dirk Eibach <eibach@gdsys.de>
1464 Cc: Felix Radensky <felix@embedded-sol.com>
1465
1466 commit 11a1604f8d0a8d936b42f6435d004b4aa33a5d87
1467 Author: Stefan Roese <sr@denx.de>
1468 Date: Mon Jul 27 07:42:48 2009 +0200
1469
1470 ppc4xx: Add some NAND-booting bootstrap entries to Kilauea chip_config cmd
1471
1472 This patch adds some I2C bootstrap setting for NAND booting to the Kilauea
1473 chip_config command ("533-nand" and "600-nand").
1474
1475 Additionally some incorrectly indented lines are fixed.
1476
1477 Signed-off-by: Stefan Roese <sr@denx.de>
1478
1479 commit 5b34691ff87821891375b28ec5bcf5154575a735
1480 Author: Stefan Roese <sr@denx.de>
1481 Date: Mon Jul 27 07:42:37 2009 +0200
1482
1483 ppc4xx: Kilauea: Fix SDRAM init in NAND booting version
1484
1485 DDR2 Auto-calibration needs to be disabled on the NAND booting PPC4xx
1486 targets. Otherwise the configured fixed init values for some DDR2
1487 controller registers (e.g. RQDC) are not initialized at all resulting
1488 in a non working SDRAM.
1489
1490 Signed-off-by: Stefan Roese <sr@denx.de>
1491
1492 commit f3ed3c9b7441cde936d06a1ff7b1490ff0d600e6
1493 Author: Stefan Roese <sr@denx.de>
1494 Date: Mon Jul 27 10:53:43 2009 +0200
1495
1496 ppc4xx: Fix Arches DDR2 initialization
1497
1498 Testing on AMCC Arches with the latest U-Boot version yielded that DDR2
1499 initialization is currently broken. U-Boot hangs upon relocation to SDRAM
1500 or crashes with random traps. This patch fixes this problem. Arches now
1501 uses a different WRDTR and CLKTR default setting than Canyonlands/Glacier.
1502
1503 Signed-off-by: Stefan Roese <sr@denx.de>
1504
1505 commit ab4c62c1ba788bf7f673a985d99a76d9c2fd7eca
1506 Author: Dirk Eibach <eibach@gdsys.de>
1507 Date: Mon Jul 27 08:49:48 2009 +0200
1508
1509 ppc4xx: Add GDsys CompactCenter board support.
1510
1511 Board support for the Guntermann & Drunck CompactCenter and
1512 DevCon-Center.
1513 Based on the AMCC Canyonlands board support by Stefan Roese.
1514
1515 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
1516 Signed-off-by: Stefan Roese <sr@denx.de>
1517
1518 commit c2e49f706ba13213f3c8da3a33e88010214e1997
1519 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1520 Date: Sat Jul 25 06:19:12 2009 +0200
1521
1522 mpc83xx: Add esd VME8349 board support
1523
1524 This patch adds support for the esd VME8349 board equipped with the
1525 MPC8349. It's a VME PMC carrier board equipped with the Tundra
1526 TSI148 VME-bridge.
1527
1528 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1529 Signed-off-by: Stefan Roese <sr@denx.de>
1530 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1531
1532 commit fe613cdd4eb2c5b257a60d8dfb7759742318c28a
1533 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
1534 Date: Thu Jul 23 17:10:55 2009 -0400
1535
1536 sbc8349: combine HRCW flash and u-boot image flash
1537
1538 Up to this point in time, the sbc8349 board was storing the u-boot
1539 image in flash 2x. One for the HRCW value at the beginning of
1540 flash (0xff80_0000), and once close to the end of flash (0xfff8_0000)
1541 for the actual image that got executed.
1542
1543 This moves the TEXT_BASE to be the beginning of flash, which makes
1544 the second copy of the image redundant, and frees up the flash
1545 from the end of the environment storage to the end of the flash
1546 device itself.
1547
1548 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
1549 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1550
1551 commit be9b56df02168ca97562d6b9ec791136e4cd925a
1552 Author: Kim Phillips <kim.phillips@freescale.com>
1553 Date: Thu Jul 23 14:09:38 2009 -0500
1554
1555 mpc83xx: CONFIG_83XX_GENERIC_PCI is now synonymous with CONFIG_PCI; remove the former
1556
1557 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1558
1559 commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69
1560 Author: Wolfgang Denk <wd@denx.de>
1561 Date: Mon Jul 27 10:37:37 2009 +0200
1562
1563 Prepare 2009.08-rc1 (again, after fixing last minute issues).
1564
1565 Update CHANGELOG
1566
1567 Signed-off-by: Wolfgang Denk <wd@denx.de>
1568
1569 commit 9689ddcca6e01f3637b4442fa8575f29ef4d7aa3
1570 Author: Wolfgang Denk <wd@denx.de>
1571 Date: Mon Jul 27 10:06:39 2009 +0200
1572
1573 cpu/arm920t/start.S: include <common.h> to have ROUND() defined
1574
1575 Commit fcd3c87e made include/common.h usable by assembler code but
1576 failed to update cpu/arm920t/start.S
1577
1578 Signed-off-by: Wolfgang Denk <wd@denx.de>
1579
1580 commit c9ed38cb6de50fdb4aaa60b668c555002903b211
1581 Author: Wolfgang Denk <wd@denx.de>
1582 Date: Mon Jul 27 10:01:11 2009 +0200
1583
1584 at91cap9adk: fix #ifdef/#endif pairing (2nd try)
1585
1586 Commit 7024aa14 was supposed to fix the #ifdef/#endif pairing in
1587 include/configs/at91cap9adk.h, but did not cate all problems.
1588
1589 Signed-off-by: Wolfgang Denk <wd@denx.de>
1590
1591 commit fb364bec5f29164d3ee681fcd9d187be8435db12
1592 Author: Wolfgang Denk <wd@denx.de>
1593 Date: Mon Jul 27 09:58:14 2009 +0200
1594
1595 Fix include/common.h for boards with CONFIG_STATUS_LED
1596
1597 The reordering of include/common.h by commit fcd3c87e495f3c48 broke
1598 boards with status LED support, resulting in
1599 error: #error Status LED configuration missing
1600 errors. Undo this reordering to avoid this issue.
1601
1602 Signed-off-by: Wolfgang Denk <wd@denx.de>
1603
1604 commit 942828a0980b3cea7db698784cc7f6a3e7740b2b
1605 Author: Wolfgang Denk <wd@denx.de>
1606 Date: Mon Jul 27 09:19:15 2009 +0200
1607
1608 ABI: fix build problems due to now needed div64 routine.
1609
1610 Signed-off-by: Wolfgang Denk <wd@denx.de>
1611
1612 commit 85d6bf0bdc8ccad2d67a9160472f6f8c6bb482fb
1613 Author: Wolfgang Denk <wd@denx.de>
1614 Date: Mon Jul 27 08:50:59 2009 +0200
1615
1616 PMC405DE: fix out of tree building
1617
1618 Signed-off-by: Wolfgang Denk <wd@denx.de>
1619
1620 commit 10c7604d021949464b1e4ba903df95e6b2f0d2ff
1621 Author: Wolfgang Denk <wd@denx.de>
1622 Date: Mon Jul 27 00:24:55 2009 +0200
1623
1624 Prepare 2009.08-rc1
1625
1626 Update CHANGELOG, minor coding style fix.
1627
1628 Signed-off-by: Wolfgang Denk <wd@denx.de>
1629
1630 commit fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22
1631 Author: rhabarber1848@web.de <rhabarber1848@web.de>
1632 Date: Fri Jul 24 08:16:30 2009 +0200
1633
1634 add WATCHDOG_RESET to allow LZMA kernel decompression on slow machines
1635
1636 Signed-off-by: rhabarber1848@web.de
1637
1638 commit 3c972849f2becbf19c13a24f090d293f37ecf616
1639 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
1640 Date: Thu Jul 23 23:31:58 2009 +0200
1641
1642 Less verbose output when loading vxworks 6.x images
1643
1644 Loading vxWorks 5.x images resulted just into 3 or 4 lines of output.
1645 With vxWorks 6.x and the new GCC it emits about 30 lines, which is
1646 far too noisy in my opinion.
1647
1648 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
1649
1650 commit fcd3c87e495f3c48b70c919869fb1e0b93d4880b
1651 Author: Wolfgang Denk <wd@denx.de>
1652 Date: Fri Jul 24 00:17:48 2009 +0200
1653
1654 Make include/common.h usable by assembler code
1655
1656 Commit 70ebf316 factored out the ROUND() macro into include/common.h,
1657 not realizing that the primary use of this macro on AT91 systems was
1658 in start.S where common.h was not included, and could not be included
1659 because it contains a lot of C code which the assembler doesn't
1660 understand.
1661
1662 This patch wraps such code in common.h in a "#ifndef __ASSEMBLY__"
1663 construct, and then adds an include to cpu/arm926ejs/start.S thus
1664 solving the problem.
1665
1666 Signed-off-by: Wolfgang Denk <wd@denx.de>
1667
1668 commit deec15b3064d3bb0189aede3c2921fd7ee401a0f
1669 Author: Heiko Schocher <heiko.schocher@invitel.hu>
1670 Date: Thu Jul 23 13:27:04 2009 +0200
1671
1672 arm: add _lshrdi3.S
1673
1674 Signed-off-by: Heiko Schocher <hs@denx.de>
1675
1676 commit 52b1bf2c5cd2f8af880dab503d0039b35570665b
1677 Author: Wolfgang Denk <wd@denx.de>
1678 Date: Thu Jul 23 13:15:59 2009 +0200
1679
1680 Make linking against libgcc configurable
1681
1682 Many (especially ARM) tool chains seem to come with broken or
1683 otherwise unusable (for the purposes of builing U-Boot) run-time
1684 support libraries `libgcc.a'. By using the "USE_PRIVATE_LIBGCC"
1685 setting we allow to use alternative libraries instead.
1686
1687 "USE_PRIVATE_LIBGCC" can either be set as an environment variable in
1688 the shell, or as a command line argument when running "make", i. e.
1689 $ make USE_PRIVATE_LIBGCC=yes
1690 or
1691 $ USE_PRIVATE_LIBGCC=yes
1692 $ export USE_PRIVATE_LIBGCC
1693 $ make
1694
1695 The value of "USE_PRIVATE_LIBGCC" is the name of the directory which
1696 contains the alternative run-time support library `libgcc.a'. The
1697 special value "yes" selects the directory $(OBJTREE)/lib_$(ARCH) .
1698
1699 Note that not all architectures provide an alternative `libgcc.a' in
1700 their lib_$(ARCH) directories - so far, only ARM does.
1701
1702 Signed-off-by: Wolfgang Denk <wd@denx.de>
1703 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1704 Cc: Prafulla Wadaskar <prafulla@marvell.com>
1705 cc: Stefan Roese <sr@denx.de>
1706
1707 commit 479105065d965121f57b55dcfe83a940cba46ac1
1708 Author: Dirk Behme <dirk.behme@googlemail.com>
1709 Date: Wed Jul 22 17:51:56 2009 +0200
1710
1711 Use do_div from div64.h for vsprintf
1712
1713 Use do_div from div64.h for vsprintf in case of 64bit division.
1714 For 32bit division, do_div from div64.h can't be used as it
1715 needs a 64bit parameter.
1716
1717 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
1718 Acked-by: Stefan Roese <sr@denx.de>
1719 CC: Simon Kagstrom <simon.kagstrom@netinsight.net>
1720
1721 commit 48287792384a93d77d43aaaa1c06cac275bbe1bb
1722 Author: Kyungmin Park <kmpark@infradead.org>
1723 Date: Mon Jul 20 09:47:47 2009 +0900
1724
1725 Fix compiler warnings after loff_t change
1726
1727 Now 'env_addr' type is loff_t so use correct field type.
1728
1729 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1730
1731 commit 9c67352f727a5b5eff531c852f9cff59fcb17f7f
1732 Author: Wolfgang Denk <wd@denx.de>
1733 Date: Sun Jul 26 23:28:02 2009 +0200
1734
1735 Revert "ppc: Unlock cache-as-ram in a consistent manner"
1736
1737 This reverts commit 982adfc610669482a32127282fe489857a92cfe3.
1738
1739 This patch causes problems on MPC83xx boards - flash recognition stops
1740 working.
1741
1742 Signed-off-by: Wolfgang Denk <wd@denx.de>
1743
1744 commit 35cf3b57eafe3ee1f693e24267e0ecfefab60251
1745 Author: Jens Scharsig <esw@bus-elektronik.de>
1746 Date: Fri Jul 24 10:31:48 2009 +0200
1747
1748 update the EB+MCF-EV123 board support
1749
1750 This patch updates the support for EB+MCF-EV123 board and needs
1751 the [PATCH 1/2 V3] new video driver for bus vcxk framebuffers
1752
1753 * remove the board framebuffer driver
1754 * use the common bus_vcxk framebuffer driver
1755 * adds bmp support
1756 * adds splashimage support
1757 * fix serveral cosmetical errors
1758
1759 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
1760 [agust@denx.de: fixed some style issues before applying]
1761 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1762
1763 commit 04538cdb752eeea8fd23cf7ac3394439f189fb77
1764 Author: Anatolij Gustschin <agust@denx.de>
1765 Date: Sun Jul 26 12:05:25 2009 +0200
1766
1767 video: bus_vcxk.c: fix style issues added by 50217dee
1768
1769 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1770
1771 commit 50217deeb07911d686790d34d468eb9a5245f68d
1772 Author: Jens Scharsig <esw@bus-elektronik.de>
1773 Date: Fri Jul 24 10:09:02 2009 +0200
1774
1775 new video driver for bus vcxk framebuffers
1776
1777 This patch adds a new video driver
1778
1779 * adds common bus_vcxk framebuffer driver
1780
1781 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
1782 [agust@denx.de: fixed lots of style issues before applying]
1783 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1784
1785 commit 60e97419246d0a3615758ad6af40680aefb5f7f1
1786 Author: Alessandro Rubini <rubini@gnudd.com>
1787 Date: Tue Jul 21 14:09:45 2009 +0200
1788
1789 lcd.h: define extern vidinfo_t for all cases
1790
1791 include/lcd.h has different vidinfo for different platforms,
1792 and several extern declaration, but one for the default case was
1793 missing. This makes them a single extern declaration for everyone.
1794
1795 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
1796
1797 commit bcf0b5248952c6b03081dc5cc4ff9e0b2299c5fa
1798 Author: Anatolij Gustschin <agust@denx.de>
1799 Date: Sun Jul 26 11:04:59 2009 +0200
1800
1801 mimc200.c: fix too long lines added by f68378d6
1802
1803 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1804
1805 commit f68378d60a905d43155f2e89bf81999d3c93a90a
1806 Author: Mark Jackson <mpfj-list@mimc.co.uk>
1807 Date: Tue Jul 21 11:35:22 2009 +0100
1808
1809 Add LCD support to MIMC200 board
1810
1811 This patch updates the MIMC200 files to enable the LCD.
1812
1813 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
1814
1815 commit 69f32e6c24d41fcdf347ff64e9c13b25059ace58
1816 Author: Mark Jackson <mpfj-list@mimc.co.uk>
1817 Date: Tue Jul 21 11:18:44 2009 +0100
1818
1819 Add 16bit colour support in lcd.h
1820
1821 This patch adds support for LCD_COLOR16 in include/lcd.h.
1822
1823 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
1824
1825 commit bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3
1826 Author: Anatolij Gustschin <agust@denx.de>
1827 Date: Sun Jul 26 10:34:58 2009 +0200
1828
1829 lib_avr32/board.c: fix too long line added by 716ece1d
1830
1831 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1832
1833 commit 716ece1de9a7d43a61d8698ac41b71b64f66f9e9
1834 Author: Mark Jackson <mpfj-list@mimc.co.uk>
1835 Date: Tue Jul 21 11:11:37 2009 +0100
1836
1837 Add AVR32 LCD support
1838
1839 This patch adds support for the AVR32 LCD controller. This patch is
1840 based off the latest u-boot-video.
1841
1842 A quick summary of what's going on:-
1843
1844 Enable LCDC pixel clock
1845 Enable LCDC port pins
1846 Add framebuffer pointer to global_data struct
1847 Allocate framebuffer
1848
1849 To use the new code, update your board config to include something like
1850 this:-
1851
1852 #define CONFIG_LCD 1
1853
1854 #if defined(CONFIG_LCD)
1855 #define CONFIG_CMD_BMP
1856 #define CONFIG_ATMEL_LCD 1
1857 #define LCD_BPP LCD_COLOR16
1858 #define CONFIG_BMP_16BPP 1
1859 #define CONFIG_FB_ADDR 0x10600000
1860 #define CONFIG_WHITE_ON_BLACK 1
1861 #define CONFIG_VIDEO_BMP_GZIP 1
1862 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE 262144
1863 #define CONFIG_ATMEL_LCD_BGR555 1
1864 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
1865 #define CONFIG_SPLASH_SCREEN 1
1866 #endif
1867
1868 The standard U-Boot BMP and Splash-screen features should just work.
1869
1870 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
1871 [agust@denx.de: fixed some style issues]
1872 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1873
1874 commit 6111722a9281c6e04a7304d502556afff6a5a1f8
1875 Author: Alessandro Rubini <rubini@gnudd.com>
1876 Date: Sun Jul 19 17:52:27 2009 +0200
1877
1878 video: move extern declarations from C to headers
1879
1880 This moves some extern declaration from lcd.c to lcd.h, removing
1881 unneeded ifdef around a pair of them. Additionally, since
1882 gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I
1883 removed the static. The extra "#include <lcd.h>" in cmd_bmp.c is
1884 added to ensure the header is consistent with the source.
1885
1886 This has been compile-tested on both ARM (at91 boards) and PowerPC
1887 (HH405_config, TQM823L_LCD_config, mcc200_config), to test all use
1888 combinations.
1889
1890 Signed-off-by: Alessandro Rubini <rubini@gnudd.it>
1891 [agust@denx.de: removed gunzip_bmp() fixes as commit c01171ea did it]
1892 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1893
1894 commit f51e001143c58447eb50e7aefa2b09eb4cc1410c
1895 Author: Mike Frysinger <vapier@gentoo.org>
1896 Date: Thu Jul 23 16:26:58 2009 -0400
1897
1898 Blackfin: restore EVT1 handling in linker script
1899
1900 Sadly, the Blackfin linker script unification lost a small #ifdef logic
1901 needed on older parts. Restore that CONFIG_BFIN_BOOTROM_USES_EVT1 logic.
1902
1903 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1904
1905 commit f33b325af666b12eafa9ab235b2cd59832d6e51c
1906 Author: Wolfgang Denk <wd@denx.de>
1907 Date: Fri Jul 24 14:24:07 2009 +0200
1908
1909 Revert "zlib: updated to v.1.2.3"
1910
1911 This reverts commit b201171f2b4d509f3ad510b214bee70ff902e3d6.
1912
1913 The commit caused problems for example when unpacking kernel images:
1914
1915 Uncompressing Kernel Image ... Error: inflate() returned -2
1916 GUNZIP: uncompress, out-of-mem or overwrite error - must
1917 RESET board to recover
1918
1919 Conflicts:
1920
1921 include/u-boot/zlib.h
1922 lib_generic/zlib.c
1923
1924 Signed-off-by: Wolfgang Denk <wd@denx.de>
1925
1926 commit 4b1389e0ceb19e9b50b96fd3908483a6c2274fb0
1927 Author: Stefan Roese <sr@denx.de>
1928 Date: Tue Jul 21 14:06:29 2009 +0200
1929
1930 ppc4xx: Add chip_config command to AMCC Kilauea eval board
1931
1932 This patch removes the "alterpll" command and replaces it with the now
1933 ppc4xx standard "chip_config" command to configure the I2C bootstrap
1934 EEPROM.
1935
1936 Signed-off-by: Stefan Roese <sr@denx.de>
1937
1938 commit f6af8ce0c80327cb6aaa347642026ad838335c23
1939 Author: Stefan Roese <sr@denx.de>
1940 Date: Tue Jul 21 14:33:52 2009 +0200
1941
1942 ppc4xx: Fix EEPROM configuration on Kilauea
1943
1944 Kilauea has an AT24C02 EEPROM which has an 8 byte page. Without defining
1945 CONFIG_SYS_EEPROM_PAGE_WRITE_BITS to 3 the "eeprom" command doesn't
1946 work correctly.
1947
1948 Additionally the page write delay (CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
1949 is set to a more defensive value of 10ms.
1950
1951 Signed-off-by: Stefan Roese <sr@denx.de>
1952
1953 commit 99d8b23bc7e2be04fcbf49c5cec9f5ae76df290c
1954 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1955 Date: Wed Jul 22 13:56:21 2009 +0200
1956
1957 ppc4xx: Add 405EP based PMC405DE board
1958
1959 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1960 Signed-off-by: Stefan Roese <sr@denx.de>
1961
1962 commit da799f66ad1d4fc36dd20cc2d7e584493fda8546
1963 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1964 Date: Mon Jul 20 12:15:38 2009 +0200
1965
1966 ppc4xx: Add struct for 4xx GPIO controller registers
1967
1968 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1969 Signed-off-by: Stefan Roese <sr@denx.de>
1970
1971 commit 58ea142fb2e969f32306c8da1dabfaebd6fa141a
1972 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1973 Date: Wed Jul 22 17:27:56 2009 +0200
1974
1975 ppc4xx: Replace 4xx lowercase SPR references
1976
1977 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1978 Signed-off-by: Stefan Roese <sr@denx.de>
1979
1980 commit 87c0b72908e05662b8b415e26e1042f4779629da
1981 Author: Stefan Roese <sr@denx.de>
1982 Date: Mon Jul 20 06:57:27 2009 +0200
1983
1984 Add "chip_config" command for PPC4xx bootstrap configuration
1985
1986 This patch adds a generic command for programming I2C bootstrap
1987 eeproms on PPC4xx. An implementation for Canyonlands board is
1988 included.
1989
1990 The command name is intentionally chosen not to be PPC4xx specific.
1991 This way other CPU's/SoC's can implement a similar command under
1992 the same name, perhaps with a different syntax.
1993
1994 Usage on Canyonlands:
1995
1996 => chip_config
1997 Available configurations (I2C address 0x52):
1998 600-nor - NOR CPU: 600 PLB: 200 OPB: 100 EBC: 100
1999 600-nand - NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100
2000 800-nor - NOR CPU: 800 PLB: 200 OPB: 100 EBC: 100
2001 800-nand - NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100
2002 1000-nor - NOR CPU:1000 PLB: 200 OPB: 100 EBC: 100
2003 1000-nand - NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100
2004 1066-nor - NOR CPU:1066 PLB: 266 OPB: 88 EBC: 88 ***
2005 1066-nand - NAND CPU:1066 PLB: 266 OPB: 88 EBC: 88
2006 => chip_config 600-nor
2007 Using configuration:
2008 600-nor - NOR CPU: 600 PLB: 200 OPB: 100 EBC: 100
2009 done (dump via 'i2c md 52 0.1 10')
2010 Reset the board for the changes to take effect
2011
2012 Other 4xx boards will be migrated to use this command soon
2013 as well.
2014
2015 Signed-off-by: Stefan Roese <sr@denx.de>
2016 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
2017 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2018
2019 commit 10c1b218556ed9871f36bc0c407f4f2f6196353b
2020 Author: Peter Tyser <ptyser@xes-inc.com>
2021 Date: Fri Jul 17 19:01:16 2009 -0500
2022
2023 xpedite1k: Move to X-ES vendor directory
2024
2025 The XPedite1000 is an X-ES product thus it can be put in board/xes along
2026 with other X-ES boards. Along with the move, the board was renamed to
2027 XPedite1000 from XPedite1K to fit X-ES's standard naming convention.
2028 Maintainership was also transfered to Peter Tyser.
2029
2030 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2031 Signed-off-by: Stefan Roese <sr@denx.de>
2032
2033 commit 54381b79d268e1bead5d78ed8423df31a3cb0e2c
2034 Author: Peter Tyser <ptyser@xes-inc.com>
2035 Date: Fri Jul 17 19:01:15 2009 -0500
2036
2037 xpedite1k: Sync checkboard() with other X-ES boards
2038
2039 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2040 Signed-off-by: Stefan Roese <sr@denx.de>
2041
2042 commit 9b4ef1f5dc0daab64f46249a32e67279c4d44fd2
2043 Author: Peter Tyser <ptyser@xes-inc.com>
2044 Date: Fri Jul 17 19:01:14 2009 -0500
2045
2046 xpedite1k: Sync up board config options with other X-ES boards
2047
2048 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2049 Signed-off-by: Stefan Roese <sr@denx.de>
2050
2051 commit 4cdad5f43ae67e4ceeac69ef4af4392bd2f7381f
2052 Author: Peter Tyser <ptyser@xes-inc.com>
2053 Date: Fri Jul 17 19:01:13 2009 -0500
2054
2055 xpedite1k: Sync organization of board config with other X-ES boards
2056
2057 This change should have no functional effect
2058
2059 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2060 Signed-off-by: Stefan Roese <sr@denx.de>
2061
2062 commit c4ae1a0257a0f5008ee2686e8aa92fba3992f279
2063 Author: Peter Tyser <ptyser@xes-inc.com>
2064 Date: Fri Jul 17 19:01:12 2009 -0500
2065
2066 xpedite1k: Sync up commands and environment with other X-ES boards
2067
2068 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2069 Signed-off-by: Stefan Roese <sr@denx.de>
2070
2071 commit fbc7951ea84c2fe6da0f6007b672ed35bae91acb
2072 Author: Peter Tyser <ptyser@xes-inc.com>
2073 Date: Fri Jul 17 19:01:11 2009 -0500
2074
2075 xpedite1k: Disable unused ethernet port 1
2076
2077 The XPedite1000 only has 2 available ethernet ports:
2078 ppc_4xx_eth2 (EMAC2) and ppc_4xx_eth3 (EMAC3)
2079
2080 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2081 Signed-off-by: Stefan Roese <sr@denx.de>
2082
2083 commit 767e32ad369d83f55f950e6938e68b6dba7fa65f
2084 Author: Peter Tyser <ptyser@xes-inc.com>
2085 Date: Fri Jul 17 19:01:10 2009 -0500
2086
2087 xpedite1k: Store environment in flash
2088
2089 Previously an I2C EEPROM was used. The EEPROM had size, reliability,
2090 and access issues which are resolved by storing the environment in
2091 flash.
2092
2093 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2094 Signed-off-by: Stefan Roese <sr@denx.de>
2095
2096 commit b88da157f9990cd2cb081e4faea4b9581b5d0e2f
2097 Author: Peter Tyser <ptyser@xes-inc.com>
2098 Date: Fri Jul 17 19:01:09 2009 -0500
2099
2100 xpedite1k: Add support for additional GPIO pins
2101
2102 Enable GPIO pins for an I2C EEPROM write protect, a system reset pin,
2103 and a PMC #MONARCH pin. These pins are not currently used in U-Boot,
2104 but are used in OSes and may be used in U-Boot in the future.
2105
2106 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2107 Signed-off-by: Stefan Roese <sr@denx.de>
2108
2109 commit 42735815dd9ba39efe51203868aebce04053c8de
2110 Author: Peter Tyser <ptyser@xes-inc.com>
2111 Date: Fri Jul 17 19:01:08 2009 -0500
2112
2113 xpedite1k: Add support for optional flashes
2114
2115 The XPedite1000 can be built with 4 total flashes:
2116 - 512KB AMD socketed
2117 - 16MB Intel soldered
2118 - 2 x 32MB AMD MirrorBit flashes
2119
2120 Add support for the optional 2 32MB CFI-compliant AMD flashes
2121
2122 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2123 Signed-off-by: Stefan Roese <sr@denx.de>
2124
2125 commit e02990764c7415c84668823a0fc8c5b4dd8d8cf0
2126 Author: Peter Tyser <ptyser@xes-inc.com>
2127 Date: Fri Jul 17 19:01:07 2009 -0500
2128
2129 xpedite1k: Cleanup coding style
2130
2131 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2132 Signed-off-by: Stefan Roese <sr@denx.de>
2133
2134 commit 086ff34a3a7e5e595630d658c1c13778399452d1
2135 Author: Peter Tyser <ptyser@xes-inc.com>
2136 Date: Fri Jul 17 19:01:06 2009 -0500
2137
2138 xpedite1k: Remove support for reading MACs from EEPROM
2139
2140 By default, the XPedite1000 comes installed with xMon, a proprietary
2141 bootloader. xMon stores its MAC address in an onboard EEPROM. Rather
2142 than requiring a non-standard location in the EEPROM to be reserved for
2143 MAC addresses, store the MAC addresses in U-Boot's standard environment.
2144 A U-Boot application or OS application can be used to migrate xMon MAC
2145 addresses to U-Boot's environment if necessary.
2146
2147 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2148 Signed-off-by: Stefan Roese <sr@denx.de>
2149
2150 commit 108d6d0099372f9f6532c3198fbaacabc121c9b3
2151 Author: Peter Tyser <ptyser@xes-inc.com>
2152 Date: Fri Jul 17 19:01:05 2009 -0500
2153
2154 xpedite1k: Remove support for fixed SDRAM configuration
2155
2156 All XPedite1000's have SPD EEPROMs present and no fixed configuration
2157 parameters are currently defined or used
2158
2159 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2160 Signed-off-by: Stefan Roese <sr@denx.de>
2161
2162 commit c86d00a2ed923002f1ab0bfb0a925522628302e9
2163 Author: Peter Tyser <ptyser@xes-inc.com>
2164 Date: Fri Jul 17 19:01:04 2009 -0500
2165
2166 xpedite1k: Remove CONFIG_SYS_DRAM_TEST support
2167
2168 POST or command line tests provide similar functionality
2169
2170 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2171 Signed-off-by: Stefan Roese <sr@denx.de>
2172
2173 commit 11ad309c183b176d8866944026a63c0f1c626f56
2174 Author: Peter Tyser <ptyser@xes-inc.com>
2175 Date: Fri Jul 17 19:01:03 2009 -0500
2176
2177 xpedite1k: Use standard CFI flash driver
2178
2179 Using the CFI flash driver will allow write access to the 16MB Intel
2180 StrataFlash present on the XPedite1000. The 512KB socketed (non
2181 CFI-compliant flash) will no longer be writable.
2182
2183 The mapping of the 16MB Strata flash was moved to 0xff000000 and the
2184 512KB AMD socketed flash was moved to 0xfe000000.
2185
2186 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2187 Signed-off-by: Stefan Roese <sr@denx.de>
2188
2189 commit d4d2e79bb433fc7ec18c68cc49cc6b7433d1320c
2190 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2191 Date: Thu Jul 16 22:13:57 2009 +0200
2192
2193 ppc4xx: Cleanup PLU405 board code
2194
2195 Some Coding style cleanup (braces, whitespaces, long lines)
2196
2197 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2198 Signed-off-by: Stefan Roese <sr@denx.de>
2199
2200 commit b209a114829dc8a7a0e39a9335b6e4aebf9742cb
2201 Author: Dirk Eibach <eibach@gdsys.de>
2202 Date: Fri Jul 17 14:16:40 2009 +0200
2203
2204 ppc4xx: Add DL-Vision 405EP board support
2205
2206 Board support for the Guntermann & Drunck DL-Vision.
2207
2208 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
2209 Signed-off-by: Stefan Roese <sr@denx.de>
2210
2211 commit 9b1b8c8a1bf52e9b65e1958e5205838576066cbc
2212 Author: Dirk Eibach <eibach@gdsys.de>
2213 Date: Fri Jul 10 14:47:32 2009 +0200
2214
2215 ppc4xx: Fix missing freqOPB for 405EP
2216
2217 In cpu/ppc4xx/speed.c initialization of sysInfo->freqOPB for 405EP was
2218 left out for no obvious reason.
2219
2220 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
2221 Signed-off-by: Stefan Roese <sr@denx.de>
2222
2223 commit 0a371ca08908c9b2a58171223a79bffea1f7c6f5
2224 Author: Stefan Roese <sr@denx.de>
2225 Date: Tue Jul 14 15:53:08 2009 +0200
2226
2227 ppc4xx: Fix TLB reset problem with recent 44x images
2228
2229 Patch d873133f [ppc4xx: Add Sequoia RAM-booting target] broke "normal"
2230 booting on some 44x platforms. This breakage is only noticed in some
2231 cases while powercycling. As it seems, the code in question in start.S
2232 didn't invalidate TLB #0. This makes sense since this TLB is used for
2233 the bootrom mapping. With the patch mentioned above even TLB #0 got
2234 invalidated resulting in an error later on.
2235
2236 This patch now fixes this issue by only invalidating TLB #0 in the RAM-
2237 booting case.
2238
2239 Tested succesfully on Sequoia and Canyonlands.
2240
2241 Signed-off-by: Stefan Roese <sr@denx.de>
2242 Cc: Dirk Eibach <Eibach@gdsys.de>
2243
2244 commit 44259bb9e696d22bf1773181111855a29f00cf33
2245 Author: Prafulla Wadaskar <prafulla@marvell.com>
2246 Date: Fri Jul 17 19:56:30 2009 +0530
2247
2248 usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root
2249
2250 This change is cheked in Linux source and fix found to be in sync.
2251 This patch is tested for USB host interface on Kirkwood based
2252 Sheevaplug platform (ARM little endian board)
2253
2254 Risk: the impact of this patch is not validated on big endian board.
2255 This need to be checked...
2256
2257 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2258 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2259
2260 commit 28958b8bea4c66629c5a22fd3c8b0d49df90383d
2261 Author: Wolfgang Denk <wd@denx.de>
2262 Date: Thu Jul 23 22:23:23 2009 +0200
2263
2264 Coding Style cleanup; update CHANGELOG.
2265
2266 Signed-off-by: Wolfgang Denk <wd@denx.de>
2267
2268 commit 2632c008e2c2cd61fefb622ed671ea3e6bd2e2a6
2269 Author: Mike Frysinger <vapier@gentoo.org>
2270 Date: Tue Jul 21 22:59:36 2009 -0400
2271
2272 autoconf.mk: include before config.mk for top level files
2273
2274 By including autoconf.mk before config.mk, all top level files can use any
2275 config options it sets up (like <arch>_config.mk) or the Makefile itself
2276 without being forced to use lazy evaluation.
2277
2278 commit c01171eaecc963d2c1f56a0984a0cbcdd8a3ab3c
2279 Author: Mark Jackson <mpfj-list@mimc.co.uk>
2280 Date: Tue Jul 21 11:30:53 2009 +0100
2281
2282 Remove static declaration from gunzip_bmp()
2283
2284 This patch removes the static declaration from gunzip_bmp()
2285
2286 Without it, the gunzip_bmp() function is not visible to
2287 common/lcd.c and fails to compile with an error.
2288
2289 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
2290
2291 commit 2d4a43e230a3c8bfd03b9beaa0eb2a95e779c03b
2292 Author: Peter Tyser <ptyser@gmail.com>
2293 Date: Mon Jul 20 21:51:38 2009 -0500
2294
2295 cmd_tsi148: General cleanup
2296
2297 - Fix command help message
2298 - Disable DEBUG by default
2299 - Fix whitespace issues
2300 - Fix lines > 80 characters
2301
2302 Signed-off-by: Peter Tyser <ptyser@gmail.com>
2303 Acked-by: Stefan Roese <sr@denx.de>
2304
2305 commit 9aef73888509d10193615ee5cd9cf439ca44e937
2306 Author: Mike Frysinger <vapier@gentoo.org>
2307 Date: Sun Jul 19 15:17:03 2009 -0400
2308
2309 unify HOST_CFLAGS and HOSTCFLAGS
2310
2311 The top build system sets up HOSTCFLAGS a bit and exports it, but other
2312 places use HOST_CFLAGS instead. Unify the two as HOSTCFLAGS so that the
2313 values stay in sync.
2314
2315 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2316
2317 commit 2e9393f500065f940e5e4ac7fe375e4c0b77b936
2318 Author: Wolfgang Denk <wd@denx.de>
2319 Date: Thu Jul 23 21:16:59 2009 +0200
2320
2321 Update CHANGELOG
2322
2323 Signed-off-by: Wolfgang Denk <wd@denx.de>
2324
2325 commit e3b39f84e974df70065fa248f0f63993b1708c9d
2326 Author: André Schwarz <andre.schwarz@matrix-vision.de>
2327 Date: Fri Jul 17 14:50:24 2009 +0200
2328
2329 update config for mvBC-P (MPC5200)
2330
2331 This patch adds I2C support for mvBC-P and defines flash layout
2332 matching the shipped product.
2333
2334 Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
2335
2336 commit cb6d0b72c2c4f13c0075a7ae92e11682ec94a311
2337 Author: Kumar Gala <galak@kernel.crashing.org>
2338 Date: Mon Jul 13 09:24:00 2009 -0500
2339
2340 ahci: Fix gcc 4.4 compiler warning
2341
2342 ahci.c: In function 'ata_scsiop_read_capacity10':
2343 ahci.c:616: warning: dereferencing type-punned pointer will break strict-aliasing rules
2344
2345 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2346
2347 commit 51d91e1a253c97713c7f3e5c0b910a4db4979283
2348 Author: Kumar Gala <galak@kernel.crashing.org>
2349 Date: Mon Jul 13 09:23:59 2009 -0500
2350
2351 drivers/bios_emulator: Fix gcc 4.4 compiler warning
2352
2353 biosemu.c: In function 'BE_setVGA':
2354 biosemu.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules
2355
2356 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2357
2358 commit f97ec30bb3c5a4a456159eb2b75b3bc68772bf2a
2359 Author: Detlev Zundel <dzu@denx.de>
2360 Date: Mon Jul 13 16:01:19 2009 +0200
2361
2362 Re-add support for image type 'Standalone Program'
2363
2364 Support for this type was lost during the bootm refactoring.
2365
2366 Signed-off-by: Detlev Zundel <dzu@denx.de>
2367
2368 commit ca95c9df0280f40e8e4befadbaae21fa67d92331
2369 Author: Detlev Zundel <dzu@denx.de>
2370 Date: Mon Jul 13 16:01:18 2009 +0200
2371
2372 Add error checking for unsupported OS types.
2373
2374 Signed-off-by: Detlev Zundel <dzu@denx.de>
2375
2376 commit 982adfc610669482a32127282fe489857a92cfe3
2377 Author: Peter Tyser <ptyser@xes-inc.com>
2378 Date: Fri Jul 10 18:46:10 2009 -0500
2379
2380 ppc: Unlock cache-as-ram in a consistent manner
2381
2382 Previously, non-e500 architectures only unlocked their data cache which
2383 was used as early RAM when booting to Linux using the "bootm" command.
2384 This change causes all PPC boards with CONFIG_SYS_INIT_RAM_LOCK defined
2385 to unlock their data cache during U-Boot's initialization. This
2386 improves U-Boot performance and provides a common cache state when
2387 booting to different OSes.
2388
2389 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2390
2391 commit b201171f2b4d509f3ad510b214bee70ff902e3d6
2392 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
2393 Date: Thu Jul 23 04:54:45 2009 -0400
2394
2395 zlib: updated to v.1.2.3
2396
2397 This patch updates zlib to the latest stable version.
2398
2399 Only relevant zlib parts were ported to u-boot tree, as was done for
2400 the previously used version of zlib (0.95). New zlib gives faster
2401 inflate performance and other improvements, see www.zlib.net
2402
2403 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
2404 Reviewed-by: Angelo Castello <angelo.castello@st.com>
2405
2406 Edited commit message
2407
2408 Signed-off-by: Wolfgang Denk <wd@denx.de>
2409
2410 commit 97cfe86163505ea18e7ff7b71e78df5bb03dad57
2411 Author: Robin Getz <rgetz@blackfin.uclinux.org>
2412 Date: Tue Jul 21 12:15:28 2009 -0400
2413
2414 Save server's MAC address in environment
2415
2416 Linux's netconsole works much better when you can pass it the MAC address of
2417 the server. (otherwise it just uses broadcast, which everyone else on my
2418 network complains about :)
2419
2420 This sets the env var "serveraddr" (to match ethaddr), so that you can pass
2421 it to linux with whatever bootargs you want to....
2422
2423 addnetconsole=set bootargs $(bootargs) netconsole=@$(ipaddr)/eth0,@$(serverip)/$(serveraddr)
2424
2425 Signed-of-by: Robin Getz <rgetz@blackfin.uclinux.org>
2426
2427 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2428
2429 commit 0b23fb368d08c9669fac647971ff249c3f9fee8f
2430 Author: Ilya Yanok <yanok@emcraft.com>
2431 Date: Tue Jul 21 19:32:21 2009 +0400
2432
2433 fec_mxc: driver for FEC ethernet controller on i.MX27
2434
2435 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
2436 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2437
2438 commit 0544c63681d2ea3607faf374e9c56f101e365b42
2439 Author: Alessio Centazzo <centazzo@gmail.com>
2440 Date: Sat Jul 11 11:56:06 2009 -0700
2441
2442 ppc4xx: Fixed compilation warning in 4xx_enet.c
2443
2444 This patch fixes a compilation warning for some Ethernet PHY-less
2445 PPC4xx platforms (440SPE based ones) and a potential compilation
2446 error for 440SP platforms (use of undefined 'ethgroup' variable).
2447 In the original code and in case of 440SPE platforms, 'ethgroup'
2448 is initialized to -1 and never modified. Later in the function,
2449 within an #ifdef statement, an 'if statement' executes code only
2450 if 'ethgroup' is set to 4, therefore it is harmless to avoid
2451 executing the 'if statement' by removing the CONFIG_440SPE from
2452 the affected #ifdefs. In case of 440SP platforms with on-board
2453 Ethernet PHY, 'ethgroup' is undefined but used (there are not such
2454 platforms in the repository yet). All other architectures are not
2455 affected by this change.
2456
2457 Signed-off-by: Alessio Centazzo acpatin@yahoo.com
2458 Acked-by: Stefan Roese <sr@denx.de>
2459 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2460
2461 commit 09133f8580f0106429ba3600f1855bd3577ae58b
2462 Author: Michael Zaidman <michael.zaidman@gmail.com>
2463 Date: Tue Jul 14 23:37:12 2009 +0300
2464
2465 DHCP regression on 2009-06
2466
2467 Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06
2468 by initializing our IP addr to 0 in order to accept any IP addr
2469 assigned to us by the DHCP/BOOTP/RARP server.
2470
2471 Ack-by: Robin Getz <rgetz@blackfin.uclinux.org>
2472 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
2473 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2474
2475 commit 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523
2476 Author: Prafulla Wadaskar <prafulla@marvell.com>
2477 Date: Thu Jul 16 20:58:02 2009 +0530
2478
2479 net: phy: bugfixes: mv88E61xx multichip addressing support
2480
2481 With these fixes, this driver works properly for multi chip
2482 addressging mode
2483
2484 Bugfixes:
2485 1. Build error fixed for function mv88e61xx_busychk_multic-fixed
2486 2. PHY dev address error detection- fixed
2487 3. wrong busy bit was refered in function mv88e61xx_busychk -fixed
2488 4. invalid data read ptr was refered for RD_PHY in case of
2489 multichip addressing mode -fixed
2490
2491 The Multichip Address mode is tested with RD6281A board having
2492 MV88E6165 switch on it
2493
2494 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2495 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2496
2497 commit 16025ea45539219f2a7c750c6f0ae983ea5c2737
2498 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
2499 Date: Wed Jul 8 13:05:11 2009 +0200
2500
2501 arm: Kirkwood: Check the error summary bit for error detection
2502
2503 The Marvell documentation for the 88f6281 states that the error coding
2504 is only valid if the error summary and last frame bits in the transmit
2505 descriptor status field are set. This patch adds checks for these for
2506 transmit (I would get transmit errors on bootp with the current check,
2507 which I believe are spurious).
2508
2509 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
2510 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2511
2512 commit 7b05f5e027b81cd3a9a41c6c6d3fe09c72fa93f6
2513 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
2514 Date: Wed Jul 8 13:03:18 2009 +0200
2515
2516 arm: Kirkwood: Fix compiler optimization bug for kwgbe_send
2517
2518 kwgbe_send/recv both have loops waiting for the hardware to set a bit.
2519 GCC 4.3.3 cleverly optimizes the send case to ... a while(1); loop. This
2520 patch uses readl to force a read from device memory. Other volatile
2521 accesses have also been replaced with readl/writel where appropriate
2522 (as per suggestions on the U-boot mailing list).
2523
2524 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
2525 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2526
2527 commit 3f6b18ffd94621625de961bc566022b0266790f5
2528 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
2529 Date: Thu Jul 2 13:21:22 2009 -0400
2530
2531 MIIPHYBB: Return 0xFFFF if the PHY is not asserting TA.
2532
2533 This patch sets the returned value to 0xFFFF if the PHY does not exist
2534 and does not assert Transfer Acknowledge. A NULL check for the value
2535 pointer is also added for buffer overflow protection.
2536
2537 Without this patch 'mii info' will show 'phantom' devices because the
2538 value will be not be initialized and return with some random value.
2539
2540 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
2541 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2542
2543 commit 736fead8fdbf8a8407048bebc373cd551d01ec98
2544 Author: Ben Warren <biggerbadderben@gmail.com>
2545 Date: Mon Jul 20 22:01:11 2009 -0700
2546
2547 Convert SMC911X Ethernet driver to CONFIG_NET_MULTI API
2548
2549 All in-tree boards that use this controller have CONFIG_NET_MULTI added
2550 Also:
2551 - changed CONFIG_DRIVER_SMC911X* to CONFIG_SMC911X*
2552 - cleaned up line lengths
2553 - modified all boards that override weak function in this driver
2554 - added
2555
2556 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2557 Tested-by: Mike Frysinger <vapier@gentoo.org>
2558
2559 commit 3bd0a877b74b9c005ae7cb892480ccedfa308c20
2560 Author: Ben Warren <biggerbadderben@gmail.com>
2561 Date: Fri Jul 17 00:50:15 2009 -0700
2562
2563 Add warning about upcoming removal of old Ethernet API
2564
2565 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2566
2567 commit b7fe25d2a8d1cede401d09e1f9c84f8fe47bdbb1
2568 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
2569 Date: Thu Jul 2 16:15:13 2009 +0530
2570
2571 P2020RDB Added support of Vitesse PHYs VSC8641(RGMII) and VSC8221(SGMII)
2572
2573 These PHYs are on P2020RDB platform.
2574
2575 Also revamped Freescale copyright message in drivers/net/tsec.c.
2576
2577 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
2578 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2579
2580 commit 1a32bf41881b5dbe3119cb77a33572b4d462cabf
2581 Author: Robin Getz <rgetz@blackfin.uclinux.org>
2582 Date: Mon Jul 20 14:53:54 2009 -0400
2583
2584 Add DNS support
2585
2586 On 04 Oct 2008 Pieter posted a dns implementation for U-Boot.
2587
2588 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg10216.html
2589 >
2590 > DNS can be enabled by setting CFG_CMD_DNS. After performing a query,
2591 > the serverip environment var is updated.
2592 >
2593 > Probably there are some cosmetic issues with the patch. Unfortunatly I
2594 > do not have the time to correct these. So if anybody else likes DNS
2595 > support in U-Boot and has the time, feel free to patch it in the main tree.
2596
2597 Here it is again - slightly modified & smaller:
2598 - update to 2009-06 (Pieter's patch was for U-Boot 1.2.0)
2599 - README.dns is added
2600 - syntax is changed (now takes a third option, the env var to store
2601 the result in)
2602 - add a random port() function in net.c
2603 - sort Makefile in ./net/Makefile
2604 - dns just returns unless a env var is given
2605 - run through checkpatch, and clean up style issues
2606 - remove packet from stack
2607 - cleaned up some comments
2608 - failure returns much faster (if server responds, don't wait for
2609 timeout)
2610 - use built in functions (memcpy) rather than byte copy.
2611
2612 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
2613 Signed-off-by: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
2614 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2615
2616 commit 88ad3fd91c83a4343b25385fd78fd8e29ebb723f
2617 Author: Kim Phillips <kim.phillips@freescale.com>
2618 Date: Fri Jul 17 12:17:00 2009 -0500
2619
2620 net: tsec - fix dereferencing type-punned pointer will break strict-aliasing rules warning
2621
2622 fix this gcc 4.4 warning:
2623
2624 tsec.c: In function 'tsec_init':
2625 tsec.c:200: warning: dereferencing type-punned pointer will break strict-aliasing rules
2626
2627 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2628 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2629
2630 commit d9bec9f42ab34383737c8a94429aa02fe76d7946
2631 Author: Mike Frysinger <vapier@gentoo.org>
2632 Date: Sat Jul 18 21:04:08 2009 -0400
2633
2634 net: rename NetRxPkt to NetRxPacket
2635
2636 The net code is mostly consistent in using 'Packet' rather than 'Pkt', so
2637 rename the minor detractor to follow suite.
2638
2639 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2640 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2641
2642 commit 88a4c2e77cd5674db745d0c2ebbad68c9baf760c
2643 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2644 Date: Thu Jun 25 16:33:04 2009 +0900
2645
2646 sh: sh_eth: Remove garbage from printf
2647
2648 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2649 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2650 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2651
2652 commit 2ea20efa47da9d98ff38223ff51dea5439ad8708
2653 Author: Andreas Pretzsch <apr@cn-eng.de>
2654 Date: Thu Jul 9 21:50:05 2009 +0200
2655
2656 smc911x: add support for LAN9221
2657
2658 Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
2659 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2660
2661 commit 7168eba729b9e6d730db7cd1028767f7b1a6128b
2662 Author: David Brownell <david-b@pacbell.net>
2663 Date: Tue Jun 9 11:14:24 2009 -0700
2664
2665 rm9200 ethernet driver: board-specific quirk (csb337)
2666
2667 CSB337 boards originally shipped with MicroMonitor, not U-Boot;
2668 and with a version using a different convention for recording
2669 Ethernet addresses than anyone else. To avoid breaking Linux
2670 when it uses U-Boot, have it use the same convention on that
2671 hardware.
2672
2673 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2674 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2675
2676 commit 57215cd2e59fd403248df8f2f195e382900d5fc2
2677 Author: Heiko Schocher <hs@denx.de>
2678 Date: Thu Jul 16 09:58:31 2009 +0200
2679
2680 arm, kirkwood: added kw_gpio_set_valid() in gpio.h
2681
2682 Signed-off-by: Heiko Schocher <hs@denx.de>
2683
2684 commit ec16441085f471c03a8c0909579463e31e5b947a
2685 Author: Dieter Kiermaier <dk-arm-linux@gmx.de>
2686 Date: Mon Jun 29 14:45:08 2009 +0200
2687
2688 Kirkwood: add Marvell Kirkwood gpio driver
2689
2690 Signed-off-by: Dieter Kiermaier <dk-arm-linux@gmx.de>
2691 Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
2692 Tested-by: Heiko Schocher <hs@denx.de>
2693
2694 commit 688b6a0ff2dcbb0c7e63ef63cbbcc291f14f321f
2695 Author: Heiko Schocher <hs@denx.de>
2696 Date: Thu Jul 16 09:59:10 2009 +0200
2697
2698 arm, kirkwood: added KW_TWSI_BASE in kirkwood.h
2699
2700 Signed-off-by: Heiko Schocher <hs@denx.de>
2701
2702 commit fbc8365ad7ab0afd4143bdbffab2fd0b24df004f
2703 Author: Prafulla Wadaskar <prafulla@marvell.com>
2704 Date: Thu Jul 16 21:02:24 2009 +0530
2705
2706 Marvell RD6281A Board support
2707
2708 This is Marvell's 88F6281_A0 based reference design board
2709
2710 This patch is tested for-
2711 1. Boot from DRAM/NAND flash/NFS
2712 2. File transfer using tftp and loadb
2713 3. NAND flash read/write/erase
2714
2715 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2716 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2717
2718 commit 2906e6d654fcc7f2451fde225e4e8b3f20c9555f
2719 Author: Piotr Ziecik <kosmo@semihalf.com>
2720 Date: Fri Jul 17 16:35:19 2009 +0200
2721
2722 api: Fix broken build on ARM.
2723
2724 This patch fixes broken build introduced by commit
2725 84bf7ca522e94ec402a1264b01971b924b7e268f (api: remove un-needed
2726 ifdef CONFIG_API already handle by the Makefile).
2727
2728 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
2729
2730 commit 48677a1ef5f82adca49145a7baf11ece77f51945
2731 Author: Wolfgang Denk <wd@denx.de>
2732 Date: Wed Jul 22 23:53:23 2009 +0200
2733
2734 Fix "ld: cannot find -lstubs" build error
2735
2736 Commit 1bc15386 moved the examples/ to examples/standalone but failed
2737 to adapt the Makefiles that need to link against libstubs.a
2738
2739 Signed-off-by: Wolfgang Denk <wd@denx.de>
2740 Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2741
2742 commit ae71121a111ddf9dd057cacbbdd0f51054be428a
2743 Author: Wolfgang Denk <wd@denx.de>
2744 Date: Sat Jul 18 20:47:36 2009 +0200
2745
2746 at91cap9adk: fix #ifdef/#endif pairing
2747
2748 The #ifdef/#endif pairing in this file was obviously messed up.
2749
2750 Signed-off-by: Wolfgang Denk <wd@denx.de>
2751
2752 commit 6b96a20d512b04a808438553874c00cf40812c44
2753 Author: Minkyu Kang <mk7.kang@samsung.com>
2754 Date: Mon Jul 20 11:40:01 2009 +0900
2755
2756 ARM Cortex A8: Move OMAP3 specific reset handler
2757
2758 Because of the reset_cpu is soc specific, should be move to soc
2759
2760 Cc: Dirk Behme <dirk.behme@googlemail.com>
2761 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2762
2763 commit 048e7efe91f66094f868281c12e488ce2bae8976
2764 Author: Kumar Gala <galak@kernel.crashing.org>
2765 Date: Wed Jul 22 10:12:39 2009 -0500
2766
2767 85xx/86xx: Replace in8/out8 with in_8/out_8 on FSL boards
2768
2769 The pixis code used in8/out8 all over the place. Replace it with
2770 in_8/out_8 macros.
2771
2772 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2773
2774 commit 0a6d0c6320b77bd6572393a93e6b8ccdf39c7100
2775 Author: Peter Tyser <ptyser@xes-inc.com>
2776 Date: Tue Jul 21 13:51:08 2009 -0500
2777
2778 xpedite5370: Enable NAND command support
2779
2780 Use the MPC8572's eLBC to access 1 GB (or greater) onboard NAND flash
2781 via the 'nand' command.
2782
2783 Previously, the XPedite5370's NAND chip selects were properly
2784 configured, but NAND support was not enabled.
2785
2786 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2787 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2788
2789 commit 39121c0896a6760bd436d88c17892f49a97902d0
2790 Author: Peter Tyser <ptyser@xes-inc.com>
2791 Date: Tue Jul 21 13:51:07 2009 -0500
2792
2793 xes: Increase CONFIG_SYS_BOOTM_LEN to 16MB
2794
2795 Increasing CONFIG_SYS_BOOTM_LEN from 8 MB to 16 MB is necessary to
2796 support uncompressing images larger than 8 MB when using the bootm
2797 command.
2798
2799 Note that recent Linux kernels for the 85xx and 86xx map greater than
2800 16MB of memory on bootup, but we use 16MB to maintain compatibility with
2801 older Linux kernels for now.
2802
2803 Signed-off-by: Nate Case <ncase@xes-inc.com>
2804 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2805 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2806
2807 commit 58f31b602dfd52eb7836ab82caa587514e046f02
2808 Author: Peter Tyser <ptyser@xes-inc.com>
2809 Date: Sun Jul 19 19:17:41 2009 -0500
2810
2811 xpedite5370: Fix I2C GPIO initialization typo
2812
2813 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2814 Acked-by: Heiko Schocher<hs@denx.de>
2815 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2816
2817 commit 5ff821006c6e7647d183ea95817044943bb22e7e
2818 Author: Peter Tyser <ptyser@xes-inc.com>
2819 Date: Sun Jul 19 19:17:40 2009 -0500
2820
2821 xpedite5200,5370: Use buffered NOR flash writes
2822
2823 Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly
2824 improve NOR flash write speeds
2825
2826 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2827 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2828
2829 commit d9c147f371800a479a507a816b2fe572c97da197
2830 Author: Peter Tyser <ptyser@xes-inc.com>
2831 Date: Fri Jul 17 10:14:48 2009 -0500
2832
2833 85xx, 86xx: Add common board_add_ram_info()
2834
2835 Previously, 85xx and 86xx boards would display DRAM information on
2836 bootup such as:
2837
2838 ...
2839 I2C: ready
2840 DRAM:
2841 Memory controller interleaving enabled: Bank interleaving!
2842 2 GB
2843 FLASH: 256 MB
2844 ...
2845
2846 This patch moves the printing of the DRAM controller configuration to a
2847 common board_add_ram_info() function which prints out DDR type, width,
2848 CAS latency, and ECC mode. It also makes the DDR interleaving
2849 information print out in a more sane manner:
2850
2851 ...
2852 I2C: ready
2853 DRAM: 2 GB (DDR2, 64-bit, CL=4, ECC on)
2854 DDR Controller Interleaving Mode: bank
2855 FLASH: 256 MB
2856 ...
2857
2858 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2859 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2860
2861 commit 12a440ae6d09445140f1a0c2023dba76a9f1a617
2862 Author: Peter Tyser <ptyser@xes-inc.com>
2863 Date: Fri Jul 17 10:14:47 2009 -0500
2864
2865 tqm85xx: Remove board_add_ram_info()
2866
2867 This is in preparation for adding one common 8xxx board_add_ram_info()
2868 function for all 8xxx boards
2869
2870 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2871 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2872
2873 commit ed2c9488bbe389b7b25cada1e42bdae5d0976327
2874 Author: Peter Tyser <ptyser@xes-inc.com>
2875 Date: Fri Jul 17 10:14:46 2009 -0500
2876
2877 xes: Remove 8xxx board_add_ram_info() function
2878
2879 This is in preparation for adding one common 8xxx board_add_ram_info()
2880 fuction for all 8xxx boards
2881
2882 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2883 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2884
2885 commit e7ee23ec1788d8cf269a4cf6b9cd3722cbc7d592
2886 Author: Peter Tyser <ptyser@xes-inc.com>
2887 Date: Fri Jul 17 10:14:45 2009 -0500
2888
2889 86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
2890
2891 Rename sdram_mode_1 to sdram_mode and sdram_cfg_1 to sdram_cfg to match
2892 the 86xx user's manual and other Freescale architectures
2893
2894 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2895 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2896
2897 commit f6155c6fbb1d85f517b7c160570f0995ef14c43f
2898 Author: Roy Zang <tie-fei.zang@freescale.com>
2899 Date: Thu Jul 9 10:05:48 2009 +0800
2900
2901 85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards
2902
2903 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
2904 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2905
2906 commit 6bb5b412291177e6edd42f9a80e5c5afe57a6a0f
2907 Author: Kumar Gala <galak@kernel.crashing.org>
2908 Date: Tue Jul 14 22:42:01 2009 -0500
2909
2910 85xx: Report which "bank" of NOR flash we are booting from on FSL boards
2911
2912 The p2020DS, MPC8536DS, MPC8572DS, MPC8544DS boards are capable of
2913 swizzling the upper address bits of the NOR flash we boot out of which
2914 creates the concept of "virtual" banks. This is useful in that we can
2915 flash a test of image of u-boot and reset to one of the virtual banks
2916 while still maintaining a working image in "bank 0".
2917
2918 The PIXIS FPGA exposes registers on LBC which we can use to determine
2919 which "bank" we are booting out of (as well as setting which bank to
2920 boot out of).
2921
2922 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2923
2924 commit 9af9c6bdc16da53772c56b1a79c2c91701fe94e6
2925 Author: Kumar Gala <galak@kernel.crashing.org>
2926 Date: Wed Jul 15 13:45:00 2009 -0500
2927
2928 86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN
2929
2930 The MPC8641HPCN board is capable of swizzling the upper address bit of
2931 the NOR flash we boot out of which creates the concept of "virtual"
2932 banks. This is useful in that we can flash a test of image of u-boot
2933 and reset to one of the virtual banks while still maintaining a
2934 working image in "bank 0".
2935
2936 The PIXIS FPGA exposes registers on LBC which we can use to determine
2937 which "bank" we are booting out of (as well as setting which bank to
2938 boot out of).
2939
2940 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2941
2942 commit caf72ff329759b4da71352ab098537c7698c0e9f
2943 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
2944 Date: Tue Jul 21 10:45:49 2009 +0200
2945
2946 Refresh LZMA-lib to v4.65
2947
2948 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
2949
2950 commit 70ebf31633f372a24505e47846b2628e8435ea37
2951 Author: Wolfgang Denk <wd@denx.de>
2952 Date: Fri Jul 17 23:35:29 2009 +0200
2953
2954 AT91: factor out ROUND() macro
2955
2956 A large number of boards (all AT91 based) duplicated the ROUND()
2957 macro in their board specific config files. Add the definition to
2958 include/common.h and clean up the board config files.
2959
2960 Signed-off-by: Wolfgang Denk <wd@denx.de>
2961
2962 commit 89188a62333c0841a7166783d2ebdd39d7044eb2
2963 Author: Kumar Gala <galak@kernel.crashing.org>
2964 Date: Wed Jul 15 08:54:50 2009 -0500
2965
2966 85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
2967
2968 We have always mapped at least 16M in the kernel and we have seen cases
2969 with new kernel features that a kernel image needs more than 8M of
2970 memory.
2971
2972 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2973
2974 commit d4abc757c26c531293f5bbc4262ade44a317eec9
2975 Author: Peter Tyser <ptyser@xes-inc.com>
2976 Date: Mon Jul 20 19:02:21 2009 -0500
2977
2978 Move api_examples to examples/api
2979
2980 Also add a rule to remove demo.bin which was previously leftover
2981 after a "make clean"
2982
2983 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2984
2985 commit af1d7d984a23a0faa1f436ebfeb55c876b1a99e1
2986 Author: Heiko Schocher <hs@denx.de>
2987 Date: Tue Jul 21 06:37:28 2009 +0200
2988
2989 83xx, kmeter: fix compile error
2990
2991 CONFIG_SYS_MALLOC_LEN is defined in the board config, and
2992 the keymile-common.h, which collects common options used
2993 by all keymile-boards. This results in a compile error
2994 when compiling the kmeter1 board. So remove this define
2995 in the board config file.
2996
2997 Signed-off-by: Heiko Schocher <hs@denx.de>
2998
2999 commit 39df00d9aecfb465b9eec9af593f9b763fb5209a
3000 Author: Heiko Schocher <hs@denx.de>
3001 Date: Thu Jul 9 12:04:26 2009 +0200
3002
3003 i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c
3004
3005 This patch adds the possibility to call a board specific
3006 i2c bus reset routine for the fsl_i2c bus driver, and adds
3007 this option for the keymile kmeter1 board.
3008
3009 The deblock sequence for this board is implemented and
3010 tested in the following way:
3011
3012 CR = 0x20 (release SDA and SCL pin)
3013 CR = 0xa0 (start read)
3014 dummy read
3015 dummy read
3016 if 2. dummy read == 0x00
3017 3. dummy read
3018
3019 CR = 0x80 (SDA and SCL now 1 SR = 0x86)
3020 CR = 0x00 (Modul reset SR=0x81)
3021 CR = 0x80 (SDA and SCL = 1, SR = 0x81)
3022
3023 Signed-off-by: Heiko Schocher <hs@denx.de>
3024
3025 commit 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0
3026 Author: Peter Tyser <ptyser@xes-inc.com>
3027 Date: Fri Jul 10 11:03:19 2009 -0500
3028
3029 Move examples/ to examples/standalone
3030
3031 The current files in examples are all standalone application examples,
3032 so put them in their own subdirectory for organizational purposes
3033
3034 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3035
3036 commit b220c64d86f7c705a183302c3b50076d7e5d876c
3037 Author: Peter Tyser <ptyser@xes-inc.com>
3038 Date: Fri Jul 10 11:03:15 2009 -0500
3039
3040 Move architecture specific config.mk files into subdirs
3041
3042 This cleans up U-Boot's toplevel directory a bit and makes the
3043 architecture 'config.mk' file naming and location similar to board
3044 and cpu 'config.mk' files
3045
3046 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3047
3048 commit 082becd0d546399637fa94fdf9f1730a0f7bf348
3049 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
3050 Date: Fri Jul 10 18:25:34 2009 +0800
3051
3052 Add "tags" to .gitignore file.
3053
3054 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
3055 Signed-off-by: Wolfgang Denk <wd@denx.de>
3056
3057 commit dc71b248ef0d5e12b19f33c6efb873e31df91fa9
3058 Author: Heiko Schocher <hs@denx.de>
3059 Date: Thu Jul 9 12:04:18 2009 +0200
3060
3061 powerpc: updates for the keymile boards
3062
3063 - CONFIG_SYS_MAX_I2C_BUS changed to 1
3064 We use only one I2C hardwarecontroller on this boards, so
3065 change the CONFIG_SYS_MAX_I2C_BUS to 1.
3066 - common: dont print errormsg if second IVM Block lacks.
3067 - 82xx, mgcoge: fix double mtdpart entry in environment
3068 - 82xx, mgcoge: activate on second Flash the second bank.
3069 - common: CONFIG_ENV_SIZE 0x4000 for all keymile boards
3070 - common: Change malloc size to 1MByte for all Keymile boards
3071 We need a bigger malloc area for the environment support (128k)
3072 on some Keymile boards (kmeter1) and the upcoming UBI support.
3073 Change it to 1MB for all Keymile boards to be on the save side.
3074 Also define CONFIG_SYS_64BIT_VSPRINTF which is needed for
3075 UBI/UBIFS support.
3076 - Add UBI support to all Keymile boards
3077 - change manner of writing "/localbus/ranges" node
3078 instead of writting the complete "/localbus/ranges" node
3079 before booting Linux, only update the ranges entries
3080 which gets dynamical detected (size of flashes).
3081 This is needed, because keymile adds in the DTS
3082 "/localbus/ranges" node entries, which u-boot must
3083 not overwrite/delete.
3084 - kmeter, mgcoge: define 2 seperate regions needed for the Intel P30 chips
3085 The Intel P30 chip has 2 non-identical chips on
3086 one die, so we need to define 2 seperate regions
3087 that are scanned by physmap_of independantly.
3088 - kmeter1: Add MTD concat support to Keymile boards
3089 - 82xx, mgcoge: add "unlock=yes" to default environment
3090 - added CONFIG_MTD_DEVICE to get in sync with mainline code
3091
3092 Signed-off-by: Heiko Schocher <hs@denx.de>
3093 Signed-off-by: Stefan Roese <sr@denx.de>
3094
3095 commit f14d81050a9e0fa57aedb1bc746c60a07c1ad67f
3096 Author: galak <galak@ducky.am.freescale.net>
3097 Date: Tue Jul 7 15:53:21 2009 -0500
3098
3099 fsl_sata: Fix compiler warnings shown by gcc-4.4
3100
3101 Update fsl_sata to use common structures instead of casting
3102 back and forth between the fsl specific ones and the common ones
3103 (which are identical).
3104
3105 fsl_sata.c: In function 'scan_sata':
3106 fsl_sata.c:550: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
3107 fsl_sata.c:549: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
3108 fsl_sata.c:548: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
3109 fsl_sata.c:545: note: initialized from here
3110 fsl_sata.c:592: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
3111 fsl_sata.c:590: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
3112 fsl_sata.c:588: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
3113 fsl_sata.c:586: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
3114 fsl_sata.c:579: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
3115 ...
3116
3117 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3118
3119 commit 20938e54a207472a090f04f20f30c9e32b14137e
3120 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
3121 Date: Tue Jul 7 15:58:51 2009 +0200
3122
3123 Add unaligned.h for arm
3124
3125 This patch adds unaligned.h for ARM (needed to build with LZO
3126 compression). The file is taken from the linux kernel, but includes
3127 u-boot headers instead.
3128
3129 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
3130 Acked-by: Stefan Roese <sr@denx.de>
3131
3132 commit 433ea8abd6adfae3138dd4ce238237a037e1e537
3133 Author: Peter Tyser <ptyser@xes-inc.com>
3134 Date: Sun Jul 19 19:17:42 2009 -0500
3135
3136 Remove last remanants of unused CONFIG_I2C_CMD_TREE
3137
3138 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3139
3140 commit f6ca3b70949790ab5438d6c9a592216cc3616110
3141 Author: Andrzej Wolski <awolski@poczta.fm>
3142 Date: Fri Jul 17 22:26:54 2009 +0200
3143
3144 ubi: help message correction
3145
3146 Fix incorrect information about size units and correct typo.
3147
3148 Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
3149 Signed-off-by: Stefan Roese <sr@denx.de>
3150
3151 commit 22f2017c31bc682e9b15612a5c2580ab5b84418e
3152 Author: Peter Tyser <ptyser@xes-inc.com>
3153 Date: Sun Jul 19 19:17:42 2009 -0500
3154
3155 Remove last remanants of unused CONFIG_I2C_CMD_TREE
3156
3157 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3158
3159 commit f99a292aa6083057f5db8283d2ce4a2be22b8856
3160 Author: Andrzej Wolski <awolski@poczta.fm>
3161 Date: Fri Jul 17 22:26:54 2009 +0200
3162
3163 ubi: help message correction
3164
3165 Fix incorrect information about size units and correct typo.
3166
3167 Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
3168 Signed-off-by: Stefan Roese <sr@denx.de>
3169
3170 commit b86b85e2611d57d834795a92453431a1a340c3c9
3171 Author: Ilya Yanok <yanok@emcraft.com>
3172 Date: Mon Jun 29 17:53:16 2009 +0400
3173
3174 mmc: set bus width to 1 and clock to minimum early during initialization
3175
3176 We need to switch back to 1-bit before initialization or SD 2.0 cards
3177 will fail to send SCR if we've switched to 4-bit already.
3178
3179 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
3180
3181 commit cff80f2cd12bf9767509b5334ecfc90cd7de5502
3182 Author: Shinya Kuribayashi <skuribay@pobox.com>
3183 Date: Sat Jun 20 19:14:33 2009 +0900
3184
3185 config.mk: Remove unused HPATH
3186
3187 This variable is not unused anywhere.
3188
3189 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
3190
3191 commit a781de12700e2cb3d3011fc83b47f7dd8cc3c154
3192 Author: Grzegorz Bernacki <gjb@semihalf.com>
3193 Date: Wed Jun 17 16:20:14 2009 +0200
3194
3195 digsy mtc: Enable command line history.
3196
3197 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
3198
3199 commit 37566090766d61beef70c62986b90749920255d8
3200 Author: Mike Frysinger <vapier@gentoo.org>
3201 Date: Thu Jul 2 19:23:25 2009 -0400
3202
3203 compiler.h: unify system ifdef cruft here
3204
3205 Shove a lot of the HOSTCC and related #ifdef checking crap into the new
3206 compiler.h header so that we can keep all other headers nice and clean.
3207
3208 Also introduce custom uswap functions so we don't have to rely on the non
3209 standard implementations that a host may (or may not in the case of OS X)
3210 provide. This allows mkimage to finally build cleanly on an OS X system.
3211
3212 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3213
3214 commit 2a2ed845c085eb093b69fa6382fcf7534bb1f4b0
3215 Author: Kim Phillips <kim.phillips@freescale.com>
3216 Date: Mon Jun 15 11:50:40 2009 -0500
3217
3218 common: fix 'dummy' is used uninitialized in this function warning
3219
3220 fix this gcc 4.4 warning:
3221
3222 xyzModem.c: In function 'xyzModem_stream_open':
3223 xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
3224
3225 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3226
3227 commit 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460
3228 Author: Mike Frysinger <vapier@gentoo.org>
3229 Date: Sun Jun 14 23:33:14 2009 -0400
3230
3231 push CROSS_COMPILE out to $(ARCH)_config.mk
3232
3233 Each arch should handle setting a proper default CROSS_COMPILE value in
3234 their own config.mk file rather than having to maintain a large ugly list
3235 in the Makefile. By using conditional assignment, we don't have to worry
3236 about the variable already being set (env/cmdline/etc...).
3237
3238 The common config.mk file takes care of exporting CROSS_COMPILE already,
3239 and while a few variables (toolchain ones) utilize CROSS_COMPILE before
3240 including the arch config.mk, they do so with deferred assignment.
3241
3242 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3243
3244 commit 60a3f404acbf8238a3138fe1f80a6bac75da4582
3245 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3246 Date: Sat Jun 13 12:55:37 2009 +0200
3247
3248 malloc.h: protect it against multiple include
3249
3250 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3251
3252 commit 7640f41988a456a0b1f05263d2e2dc5cd7d93984
3253 Author: Wolfgang Denk <wd@denx.de>
3254 Date: Sun Jul 19 19:37:24 2009 +0200
3255
3256 Fix boards broken after removal of legacy NAND and DoC support
3257
3258 Commit 2419169f removed support for legacy NAND and disk on chip but
3259 missed to update the code for a few boards. This patch fixes the
3260 resulting build issues.
3261
3262 Signed-off-by: Wolfgang Denk <wd@denx.de>
3263
3264 commit 1a4664b53aaf23687b52d64b94be06a9aa260b86
3265 Author: Wolfgang Denk <wd@denx.de>
3266 Date: Sun Jul 19 19:32:37 2009 +0200
3267
3268 cmd_flash.c: fix fix compile error for boards with DataFlash
3269
3270 Commit 5669ed45 ("cmd_flash.c: fix warning: unused variable
3271 'addr_first'/'addr_last'") changed the #ifdef logic areound the
3272 declaration of these variables and missed a combination of settings
3273 of HAS_DATAFLASH with SYS_NO_FLASH; this patch fixes this.
3274
3275 Also spotted by Alessandro Rubini <rubini@gnudd.com>
3276
3277 Signed-off-by: Wolfgang Denk <wd@denx.de>
3278
3279 commit 341245a28830d3261c41b09d958eeea7bb93587a
3280 Author: Wolfgang Denk <wd@denx.de>
3281 Date: Sun Jul 19 12:05:15 2009 +0200
3282
3283 pcm030: fix out-of-tree building
3284
3285 Commit 0a87dd90 that was supposed to fix out-of-tree building for the
3286 pcm030 board was unfortunately incomplete.
3287
3288 Signed-off-by: Wolfgang Denk <wd@denx.de>
3289
3290 commit 8bf29b59fce8cc381114929082202d800e313ad5
3291 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
3292 Date: Tue Jul 7 13:58:51 2009 +0200
3293
3294 Add unaligned.h for arm
3295
3296 This patch adds unaligned.h for ARM (needed to build with LZO
3297 compression). The file is taken from the linux kernel, but includes
3298 u-boot headers instead.
3299
3300 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
3301 Acked-by: Stefan Roese <sr@denx.de>
3302
3303 commit e405afab1dda66c9df3733f6b779d72fc36a0162
3304 Author: Kazuaki Ichinohe <kazuichi@fsi.co.jp>
3305 Date: Fri Jun 12 18:10:12 2009 +0900
3306
3307 Canyonlands SATA harddisk driver
3308
3309 This patch adds a SATA harddisk driver for the canyonlands.
3310 This patch is kernel driver's porting.
3311 This patch corresponded to not cmd_scsi but cmd_sata.
3312 This patch divided an unused member with ifndef __U_BOOT__ in the structure.
3313
3314 [environment variable, boot script]
3315 setenv bootargs root=/dev/sda7 rw
3316 setenv bootargs ${bootargs} console=ttyS0,115200
3317 ext2load sata 0:2 0x400000 /canyonlands/uImage
3318 ext2load sata 0:2 0x800000 /canyonlands/canyonlands.dtb
3319 fdt addr 0x800000 0x4000
3320 bootm 0x400000 - 0x800000
3321
3322 If you drive SATA-2 disk on Canyonlands, you must change parts from
3323 PI2PCIE212 to PI2PCIE2212 on U25. We confirmed to boot by using
3324 following disks:
3325
3326 1.Vendor: Fujitsu Type: MHW2040BS
3327 2.Vendor: Fujitsu Type: MHW2060BK
3328 3.Vendor: HAGIWARA SYS-COM:HFD25S-032GT
3329 4.Vendor: WesternDigital Type: WD3200BJKT (CONFIG_LBA48 required)
3330 5.Vendor: WesternDigital Type: WD3200BEVT (CONFIG_LBA48 required)
3331 6.Vendor: Hitachi Type: HTS543232L9A300 (CONFIG_LBA48 required)
3332 7.Vendor: Seagate Type: ST31000333AS (CONFIG_LBA48 required)
3333 8.Vendor: Transcend Type: TS32GSSD25S-M
3334 9.Vendor: MTRON Type: MSD-SATA1525-016
3335
3336 Signed-off-by: Kazuaki Ichinohe <kazuichi at fsi.co.jp>
3337
3338 commit 52a0e2dee90c17e39634de814b16b96061cfb472
3339 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
3340 Date: Wed Jun 10 19:09:40 2009 +0200
3341
3342 Add support for the Tundra TSI148 VME-bridge
3343
3344 From: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
3345
3346 This patch adds support for the Tundra TSI148 VME-bridge. It's used on
3347 the upcoming esd VME8349 board.
3348
3349 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
3350 Signed-off-by: Stefan Roese <sr@denx.de>
3351
3352 commit 8d1fea2c4041e665c96944e3f6fcffbde55db34b
3353 Author: Mike Frysinger <vapier@gentoo.org>
3354 Date: Thu Jul 16 19:05:30 2009 -0400
3355
3356 Blackfin: bf537-{minotaur,srv1}: do not hardcode CONFIG_ETHADDR
3357
3358 MAC addresses should not be hardcoded in boards to avoid random link level
3359 conflicts.
3360
3361 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3362
3363 commit baf357050353aee30c04f3f4b868426cb54468ca
3364 Author: Mike Frysinger <vapier@gentoo.org>
3365 Date: Fri Jul 10 10:42:06 2009 -0400
3366
3367 Blackfin: bf533-stamp: back down SCLK a bit
3368
3369 While the 1.0 and 1.2 spin of the bf533-stamp boards can handle the higher
3370 SCLK speeds just fine, the 1.1 spin cannot due to the bugs introduced with
3371 the shortened SDRAM traces. So lower the SCLK speed down to a value that
3372 all three can handle.
3373
3374 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3375
3376 commit 490fe7349102012c48730f6fc14ef36c8d155068
3377 Author: Mike Frysinger <vapier@gentoo.org>
3378 Date: Thu Jul 9 20:56:56 2009 -0400
3379
3380 Blackfin: split cpu COBJS into multilines
3381
3382 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3383
3384 commit 909878fd3fda056d19b8b51a5cc51cb1c0b563d1
3385 Author: Mike Frysinger <vapier@gentoo.org>
3386 Date: Thu Jul 9 01:15:05 2009 -0400
3387
3388 Blackfin: add os log functions
3389
3390 Part of the mini Blackfin ABI with operating systems is that they can use
3391 0x4f0-0x4f8 to pass log buffers to/from bootloaders. So add support to
3392 U-Boot for reading the log buffer.
3393
3394 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3395
3396 commit 9993e196da707a0a1cd4584f1fcef12382c1c144
3397 Author: Kim Phillips <kim.phillips@freescale.com>
3398 Date: Sat Jul 18 18:42:13 2009 -0500
3399
3400 mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI
3401
3402 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3403
3404 commit d39041fcadb1231430201d298c31f6be03d654f7
3405 Author: Wolfgang Denk <wd@denx.de>
3406 Date: Sun Jul 19 01:15:52 2009 +0200
3407
3408 PATI board: fix compiler warnings
3409
3410 Fix these:
3411 pati.c: In function 'checkboard':
3412 pati.c:358: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness
3413 ../common/flash.c: In function 'write_word':
3414 ../common/flash.c:824: warning: dereferencing type-punned pointer will break strict-aliasing rules
3415 cmd_pati.c: In function 'do_pati':
3416 cmd_pati.c:279: warning: 'value' may be used uninitialized in this function
3417
3418 Signed-off-by: Wolfgang Denk <wd@denx.de>
3419
3420 commit 28c345042eafc550a34b9f52431bd4a22af6ac25
3421 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3422 Date: Sat May 16 12:14:56 2009 +0200
3423
3424 mpl: printing current stdio devices cleanup
3425
3426 Currently the mpl boards duplicate the code to print the current
3427 devices from common/console.c; use stdio_print_current_devices()
3428 instead
3429
3430 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3431
3432 Edited commit message.
3433
3434 Signed-off-by: Wolfgang Denk <wd@denx.de>
3435
3436 commit 7e3be7cf3bb344f717b6ec3d47a081269ea67ead
3437 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3438 Date: Sat May 16 12:14:55 2009 +0200
3439
3440 console: unify printing current devices
3441
3442 Create stdio_print_current_devices() for this purpose
3443
3444 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3445
3446 commit 5669ed4557edf2714203aa8625c9fcd5a753b338
3447 Author: Wolfgang Denk <wd@denx.de>
3448 Date: Sat Jul 18 23:18:14 2009 +0200
3449
3450 cmd_flash.c: fix warning: unused variable 'addr_first'/'addr_last'
3451
3452 Signed-off-by: Wolfgang Denk <wd@denx.de>
3453
3454 commit 6bb6e6c75ec4ef496f00f7f530e549d3e073c5de
3455 Author: Tom Rix <Tom.Rix@windriver.com>
3456 Date: Tue Jun 30 15:04:13 2009 -0500
3457
3458 OMAP3 Fix compiler warning for v7_flush_dcache_all
3459
3460 On build of omap3 targets in MAKEALL, the *.ERR files have
3461
3462 cpu.c: In function 'cleanup_before_linux':
3463 cpu.c:64: warning: implicit declaration of function 'v7_flush_dcache_all'
3464 cpu.c:64: warning: implicit declaration of function 'get_device_type
3465
3466 The functions v7_flush_dcache_all and get_device_type are declared
3467 in include/asm-arm/arch-omap3/sys_proto.h, so use this file to
3468 declare the functions.
3469
3470 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
3471
3472 commit dba107b967332fc8a35867f4d58038626c968800
3473 Author: Wolfgang Denk <wd@denx.de>
3474 Date: Sat Jul 18 22:09:38 2009 +0200
3475
3476 ARM: make split_by_variant.sh output more useful
3477
3478 The board/armltd/integrator/split_by_variant.sh script used to print
3479 "Configuring for integrator*p board..." no matter which board name
3480 was being compiled. This made it difficult to match MAKEALL output to
3481 board names. This patch fixes this.
3482
3483 Signed-off-by: Wolfgang Denk <wd@denx.de>
3484
3485 commit 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd
3486 Author: Wolfgang Denk <wd@denx.de>
3487 Date: Sat Jul 18 21:52:24 2009 +0200
3488
3489 NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
3490
3491 Commit 8d2effea added a warning for configurations that use NAND
3492 without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
3493 failed to fix the affected boards.
3494
3495 This patch covers the non-PPC boards that were missed in the previous
3496 patch (commit 170c1972).
3497
3498 Signed-off-by: Wolfgang Denk <wd@denx.de>
3499
3500 commit 7024aa14df2981b4e65c6189909da9aadb1c22da
3501 Author: Wolfgang Denk <wd@denx.de>
3502 Date: Sat Jul 18 20:46:38 2009 +0200
3503
3504 at91cap9adk: fix #ifdef/#endif pairing
3505
3506 The #ifdef/#endif pairing in this file was obviously messed up.
3507
3508 Signed-off-by: Wolfgang Denk <wd@denx.de>
3509
3510 commit 4abc5bffea244589fa1097e4c899a63efc609c8e
3511 Author: Prafulla Wadaskar <prafulla@marvell.com>
3512 Date: Thu Jul 16 20:58:01 2009 +0530
3513
3514 Marvell MV88F6281GTW_GE Board support
3515
3516 This is Marvell's 88F6281_A0 based custom board developed
3517 for wireless access point product
3518
3519 This patch is tested for-
3520 1. Boot from DRAM/SPI flash/NFS
3521 2. File transfer using tftp and loadb
3522 3. SPI flash read/write/erase
3523 4. Booting Linux kernel and RFS from SPI flash
3524 5. Boot from USB supported
3525
3526 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
3527 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3528
3529 commit 55dd4ba5413b14e8ee24058c89ac5c05376c331c
3530 Author: Prafulla Wadaskar <prafulla@marvell.com>
3531 Date: Thu Jul 16 20:58:00 2009 +0530
3532
3533 Marvell Sheevaplug Board support
3534
3535 Reference:
3536 http://plugcomputer.org/
3537 http://openplug.org/plugwiki/index.php/Das_U-boot_plug_support
3538
3539 This patch is tested for-
3540 1. Boot from DRAM/NAND flash
3541 2. File transfer using tftp
3542 3. NAND flash read/write/erase
3543 4. Linux kernel and RFS Boot from NAND
3544 5. Enabled USB PHY init for kernel need
3545 6. Boot from USB supported
3546
3547 Note: to boot Kirkwood kernel with USB support,
3548 you should add "usb start" in the boot sequence
3549
3550 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3551
3552 commit 0a87dd90a75d034301496285026fbd8106c7c6d5
3553 Author: Wolfgang Denk <wd@denx.de>
3554 Date: Sat Jul 18 18:00:25 2009 +0200
3555
3556 pcm030: fix out-of-tree building
3557
3558 Commit c9969947, which added support for the pcm030 board
3559 (aka phyCORE-MPC5200B-tiny), broke out-of-tree building.
3560
3561 Signed-off-by: Wolfgang Denk <wd@denx.de>
3562
3563 commit 9ff59601c71e800b9d0dfde22fa70d12c71c12b4
3564 Author: Wolfgang Denk <wd@denx.de>
3565 Date: Sat Jul 18 16:36:11 2009 +0200
3566
3567 MPC837XERDB: fix warning: "CONFIG_SYS_MONITOR_LEN" redefined
3568
3569 Signed-off-by: Wolfgang Denk <wd@denx.de>
3570
3571 commit 2b5243fc24a724e83409c0b70caa1a3180e997ae
3572 Author: Wolfgang Denk <wd@denx.de>
3573 Date: Sat Jul 18 16:13:18 2009 +0200
3574
3575 8xxx: fix warning: implicit declaration of function 'uec_standard_init'
3576
3577 Commit 8e55258f created function uec_standard_init() to initialize
3578 all UEC interfaces for 83xx and 85xx but failed to provide a
3579 prototype for it.
3580
3581 Signed-off-by: Wolfgang Denk <wd@denx.de>
3582
3583 commit 5b54df2674fdad5e7d316484c67efc68e79f3f0d
3584 Author: Wolfgang Denk <wd@denx.de>
3585 Date: Sat Jul 18 15:46:02 2009 +0200
3586
3587 MIP405T: fix compile problem
3588
3589 The "stdio/device: rework function naming convention" patch
3590 (commit 52cb4d4f) broke the MIP405T board; this patch fixes it.
3591
3592 Signed-off-by: Wolfgang Denk <wd@denx.de>
3593
3594 commit 170c19725ecd3a0e2e517dfd49979ca8822edec0
3595 Author: Wolfgang Denk <wd@denx.de>
3596 Date: Sat Jul 18 15:32:10 2009 +0200
3597
3598 NAND: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
3599
3600 Commit 8d2effea added a warning for configurations that use NAND
3601 without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
3602 failed to fix the affected boards.
3603
3604 Signed-off-by: Wolfgang Denk <wd@denx.de>
3605
3606 commit 6e897a661fb9968ce354165a12cce82e4b889e04
3607 Author: Wolfgang Denk <wd@denx.de>
3608 Date: Sat Jul 18 15:05:44 2009 +0200
3609
3610 CPCI750: fix compile problem
3611
3612 Commit bc0d3296 removed ppc_error_no.h from Marvell boards
3613 but forgot to update board/esd/cpci750/mv_eth.h
3614
3615 Signed-off-by: Wolfgang Denk <wd@denx.de>
3616
3617 commit 6aee3048348f1b19ab89156da98bfa4f7babf24b
3618 Author: Alessandro Rubini <rubini-list@gnudd.com>
3619 Date: Fri Jul 17 14:42:11 2009 +0200
3620
3621 cmd_i2c: bugfix: add missing brace
3622
3623 The sub-command parser missed a brace, so "return 0;" is always
3624 taken and no error message is diplayed if you say "i2c scan"
3625 instead of "i2c probe", for example.
3626
3627 Proper brace is added. Also, a misleading and unneeded else
3628 is removed.
3629
3630 Signed-off-by: Alessandro Rubini <rubini@gnudd.com.it>
3631
3632 commit 52cb4d4fb3487313f5a72ea740f527a4aefaa365
3633 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3634 Date: Sat May 16 12:14:54 2009 +0200
3635
3636 stdio/device: rework function naming convention
3637
3638 So far the console API uses the following naming convention:
3639
3640 ======Extract======
3641 typedef struct device_t;
3642
3643 int device_register (device_t * dev);
3644 int devices_init (void);
3645 int device_deregister(char *devname);
3646 struct list_head* device_get_list(void);
3647 device_t* device_get_by_name(char* name);
3648 device_t* device_clone(device_t *dev);
3649 =======
3650
3651 which is too generic and confusing.
3652
3653 Instead of using device_XX and device_t we change this
3654 into stdio_XX and stdio_dev
3655
3656 This will also allow to add later a generic device mechanism in order
3657 to have support for multiple devices and driver instances.
3658
3659 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3660
3661 Edited commit message.
3662
3663 Signed-off-by: Wolfgang Denk <wd@denx.de>
3664
3665 commit f732a7598fa36d48241df20b1a1f4cdbf09f75ee
3666 Author: Peter Tyser <ptyser@xes-inc.com>
3667 Date: Wed Jul 15 00:01:08 2009 -0500
3668
3669 ppc: Fix compile error for boards with CONFIG_DDR_ECC
3670
3671 A bug was introduced by commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
3672 which affected non-MPC83xx/85xx/86xx ppc boards which had CONFIG_DDR_ECC
3673 defined and resulted in errors such as:
3674
3675 Configuring for canyonlands board...
3676 fsl_dma.c:50:2: error: #error "Freescale DMA engine not supported on your
3677 processor"
3678 make[1]: *** No rule to make target `.depend', needed by `libdma.a'. Stop.
3679
3680 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3681
3682 commit 18e067de9b6ed087fa60496e64887f0b7458dbaa
3683 Author: Prafulla Wadaskar <prafulla@marvell.com>
3684 Date: Thu Jul 16 20:57:59 2009 +0530
3685
3686 include/config_cmd_default.h cleanup
3687
3688 arranged configurations in alphabetical order
3689 CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH
3690
3691 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3692
3693 commit 569460ebf14b87bd8fdb2352bde95d35ee96e13b
3694 Author: Mike Frysinger <vapier@gentoo.org>
3695 Date: Sun Jun 14 21:35:22 2009 -0400
3696
3697 sata: namespace curr_device variable
3698
3699 The curr_device variable really should be namespaced with a "sata_" prefix
3700 since it is only used by the sata code. It also avoids random conflicts
3701 with other pieces of code (like cmd_mmc):
3702 common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
3703 multiple definition of `curr_device'
3704 common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
3705
3706 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3707
3708 commit 02e22c2de1ce2312f2636fa473a60c8d8f18d8aa
3709 Author: Mike Frysinger <vapier@gentoo.org>
3710 Date: Sun Jun 14 21:35:21 2009 -0400
3711
3712 cmd_mmc: make curr_device static
3713
3714 The curr_device variable isn't used outside of cmd_mmc, so mark it static
3715 to avoid conflicts with other pieces of code (like sata which also exports
3716 a curr_device). Otherwise we end up with stuff like:
3717 common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
3718 multiple definition of `curr_device'
3719 common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
3720
3721 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3722
3723 commit 2d8d2adde3fce1152e4ad9f47238f07e70793c53
3724 Author: Mike Frysinger <vapier@gentoo.org>
3725 Date: Sun Jun 14 21:35:16 2009 -0400
3726
3727 envcrc: add missing dependencies on env storage
3728
3729 When the envcrc building was made conditional, it missed a bunch of env
3730 storage types, so add all currently supported types.
3731
3732 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3733
3734 commit 2419169f5749d7af501b3b77a5336d1d535320de
3735 Author: Scott Wood <scottwood@freescale.com>
3736 Date: Thu Jul 16 19:08:04 2009 -0500
3737
3738 Remove legacy NAND and disk on chip references from boards.
3739
3740 Signed-off-by: Scott Wood <scottwood@freescale.com>
3741
3742 commit 12e9043c7ed961b60df865f45d9a3c74d6a38199
3743 Author: Shinya Kuribayashi <skuribay@pobox.com>
3744 Date: Sat Jun 20 19:10:14 2009 +0900
3745
3746 config.mk: Remove $(PCI_CLOCK) reference
3747
3748 The following commit introduced $(PCI_CLOCK) reference so that
3749 we could tweak `PCI_66M' definition via an environment variable.
3750
3751 > commit f046ccd15c8bc9613bfd72916b761a127d36e5c6
3752 > Author: Eran Liberty <liberty@freescale.com>
3753 > Date: Thu Jul 28 10:08:46 2005 -0500
3754 >
3755 > * Patch by Eran Liberty
3756 > Add support for the Freescale MPC8349ADS board.
3757
3758 But I suggest a removal of it for the following reasons:
3759
3760 * In 2006, MPC8349ADS was merged into MPC8349EMDS port,
3761 and it seems that MPC8349EMDS port is PCI_66M free.
3762
3763 * OTOH, PCI_66M is used by MPC832XEMDS an MPC8360EMDS ports,
3764 but they don't need $(PCI_CLOCK) environment variable at all.
3765 PCI_66M is automatically configured via $(BOARD)_config names
3766 with the help of $(findstring _66_,$@).
3767
3768 * Unfortunately $(PCI_CLOCK) has been undocumented anywhere,
3769 so only a few people know the existence of it these days.
3770
3771 * Keep config.mk independent from $(BOARD) as much as possible.
3772
3773 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
3774 Acked-by: Kim Phillips <kim.phillips@freescale.com>
3775
3776 commit 3db75d9c11d37cc1d28bebd91b19f4e548b68155
3777 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3778 Date: Sat May 23 21:42:36 2009 +0200
3779
3780 fix: missing autoconfig.mk from general Makefile
3781
3782 At the first run of make we generate the autoconf.mk and
3783 autoconf.mk.dep if not already the case and we currently include only
3784 to .dep
3785
3786 In order to use these autogenerated values we need to include it also
3787 even if it's included in config.mk but it's done before their
3788 generation
3789
3790 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3791 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3792
3793 commit 1ca298ced07327749b54321815f76fcddb2f9479
3794 Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
3795 Date: Thu Jul 9 16:07:30 2009 +0200
3796
3797 Added support for splash screen positioning
3798
3799 This patch adds support splash image positioning by adding an
3800 additional variable "splashpos" to the environment. Please see
3801 README for details.
3802
3803 Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
3804 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3805 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3806
3807 commit 9d173e0233493113c9b1aa81bd2208d0057ab9db
3808 Author: Anatolij Gustschin <agust@denx.de>
3809 Date: Tue Jul 7 13:11:36 2009 +0200
3810
3811 video: mb862xx: replace printf with puts
3812
3813 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3814
3815 commit cce99b2a7dd80683d61360aee56a6ece344950b2
3816 Author: Anatolij Gustschin <agust@denx.de>
3817 Date: Tue Jul 7 13:27:07 2009 +0200
3818
3819 video: mb862xx: use macros instead of magic numbers
3820
3821 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3822
3823 commit e86528671ece6d5c1162656a37fc68a8e0bf67f8
3824 Author: Anatolij Gustschin <agust@denx.de>
3825 Date: Tue Jul 7 13:24:08 2009 +0200
3826
3827 video: mb862xx: fix coding style and remove dead code
3828
3829 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3830
3831 commit 292ed489dba8cc97b458579003a8001cd4703cd8
3832 Author: Michal Simek <monstr@monstr.eu>
3833 Date: Tue Jun 30 12:03:50 2009 +0200
3834
3835 microblaze: Remove ignored return type for __arch__swab16 function
3836
3837 This change remove compilation warnings.
3838
3839 Signed-off-by: Michal Simek <monstr@monstr.eu>
3840
3841 commit e2776587c0eac131954ae100fda89cc3e7ed8b57
3842 Author: Michal Simek <monstr@monstr.eu>
3843 Date: Tue Jun 30 12:02:45 2009 +0200
3844
3845 microblaze: Removed unused variables
3846
3847 Signed-off-by: Michal Simek <monstr@monstr.eu>
3848
3849 commit be33b046b549ad88c204c209508cd7657232ffbd
3850 Author: Scott Wood <scottwood@freescale.com>
3851 Date: Wed Apr 1 15:02:13 2009 -0500
3852
3853 Remove legacy NAND and disk on chip code.
3854
3855 Legacy NAND had been scheduled for removal. Any boards that use this
3856 were already not building in the previous release due to an #error.
3857
3858 The disk on chip code in common/cmd_doc.c relies on legacy NAND,
3859 and it has also been removed. There is newer disk on chip code
3860 in drivers/mtd/nand; someone with access to hardware and sufficient
3861 time and motivation can try to get that working, but for now disk
3862 on chip is not supported.
3863
3864 Signed-off-by: Scott Wood <scottwood@freescale.com>
3865
3866 commit fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3
3867 Author: Stefan Roese <sr@denx.de>
3868 Date: Thu Jun 4 16:40:36 2009 +0200
3869
3870 nand: Change NAND_MAX_OOBSIZE to 218 as needed for some 4k page devices
3871
3872 This is needed for the MPC512x NAND driver (fsl_nfc_nand.c) which already
3873 defines such a 4k plus 218 bytes ECC layout.
3874
3875 Signed-off-by: Stefan Roese <sr@denx.de>
3876 Cc: Scott Wood <scottwood@freescale.com>
3877 Signed-off-by: Scott Wood <scottwood@freescale.com>
3878
3879 commit f2f376ab956c17d4a0c42a993133ca25cdc87278
3880 Author: Stefan Roese <sr@denx.de>
3881 Date: Thu Jul 16 15:13:04 2009 +0200
3882
3883 nand: ndfc: Remove unnecessary #ifdef's
3884
3885 Now that the 4xx NAND driver ndfc is moved to the common NAND driver
3886 directory we don't need this #ifdef's anymore.
3887
3888 Signed-off-by: Stefan Roese <sr@denx.de>
3889 Cc: Scott Wood <scottwood@freescale.com>
3890 Signed-off-by: Scott Wood <scottwood@freescale.com>
3891
3892 commit 12582ac771b0bf3852817c3bfa4be326522a0665
3893 Author: Stefan Roese <sr@denx.de>
3894 Date: Thu Jul 16 15:12:48 2009 +0200
3895
3896 nand/ppc4xx: Move PPC4xx NAND driver to common NAND driver directory
3897
3898 Signed-off-by: Stefan Roese <sr@denx.de>
3899 Cc: Scott Wood <scottwood@freescale.com>
3900 Signed-off-by: Scott Wood <scottwood@freescale.com>
3901
3902 commit 3ebf70db5452d3d47c316ddef09f40e76553bcba
3903 Author: Valeriy Glushkov <gvv@lstec.com>
3904 Date: Tue Jul 14 13:51:10 2009 +0300
3905
3906 nand: fixed failed reads on corrected ECC errors in nand_util.c
3907
3908 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
3909 Signed-off-by: Paulraj, Sandeep <s-paulraj@ti.com>
3910 Signed-off-by: Scott Wood <scottwood@freescale.com>
3911
3912 commit ed727d394c5ab139033719772dc95dc25cfa14f7
3913 Author: David Brownell <david-b@pacbell.net>
3914 Date: Mon Jul 13 16:29:04 2009 -0700
3915
3916 Typo fix: use CONFIG_SOC_DM644X, not CONFIG_SOC_DM646.
3917
3918 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
3919 Signed-off-by: Scott Wood <scottwood@freescale.com>
3920
3921 commit 937076f84c5064f0a79105fce352ac7cf7b33643
3922 Author: Kyungmin Park <kmpark@infradead.org>
3923 Date: Sat Jul 11 16:49:55 2009 +0900
3924
3925 MTD: OneNAND: Increase the environment size to 4KiB
3926
3927 Also use mtd operation instead of onenand functions
3928
3929 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3930 Signed-off-by: Scott Wood <scottwood@freescale.com>
3931
3932 commit bfadb17f69c256196620c32164775f063a59c34f
3933 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3934 Date: Wed Jun 10 00:25:38 2009 +0400
3935
3936 mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable
3937
3938 Since we have simple hwconfig interface now, we don't need
3939 pci_external_arbiter variable any longer.
3940
3941 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3942 Acked-by: Kim Phillips <kim.phillips@freescale.com>
3943
3944 commit b8b71ffbc35fde6905e65ffdbf4e4b87efc26b7e
3945 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3946 Date: Wed Jun 10 00:25:36 2009 +0400
3947
3948 mpc83xx: MPC8315ERDB: Use hwconfig for board type selection
3949
3950 This patch simply converts the board to the hwconfig infrastructure.
3951
3952 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3953 Acked-by: Kim Phillips <kim.phillips@freescale.com>
3954
3955 commit c78c678354c8321737aa07e86831ff14176f4ed5
3956 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3957 Date: Wed Jun 10 00:25:31 2009 +0400
3958
3959 mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree
3960
3961 fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and
3962 also will fixup clock-frequency property.
3963
3964 Plus, since DR USB and eSDHC are mutually exclusive, we should
3965 only configure the eSDHC if asked through hwconfig.
3966
3967 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3968 Acked-by: Kim Phillips <kim.phillips@freescale.com>
3969
3970 commit c9646ed758804fa1fa6c1425369a4eee5d618b1d
3971 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3972 Date: Wed Jun 10 00:25:30 2009 +0400
3973
3974 mpc83xx: MPC837XERDB: Add support for FSL eSDHC
3975
3976 This patch adds support for eSDHC on MPC837XERDB boards. The WP
3977 switch doesn't seem to work on RDB boards though, the WP pin is
3978 always asserted (can see the pin state when it's in GPIO mode).
3979
3980 FSL DR USB and FSL eSDHC are mutually exclusive because of pins
3981 multiplexing, so user should specify 'esdhc' or 'dr_usb' options
3982 in the hwconfig environment variable to choose between the
3983 devices.
3984
3985 p.s.
3986 Now we're very close to a monitor len limit (196 bytes left using
3987 gcc-4.2.0), so also increase the monitor len by one sector (64 KB).
3988
3989 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3990 Acked-by: Kim Phillips <kim.phillips@freescale.com>
3991
3992 commit b33433a63fe08c9e723ea15a7c7c7143bf527c6d
3993 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3994 Date: Wed Jun 10 00:25:29 2009 +0400
3995
3996 fsl_esdhc: Add device tree fixups
3997
3998 This patch implements fdt_fixup_esdhc() function that is used to fixup
3999 the device tree.
4000
4001 The function adds status = "disabled" propery if esdhc pins muxed away,
4002 otherwise it fixups clock-frequency for esdhc nodes.
4003
4004 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4005 Acked-by: Kim Phillips <kim.phillips@freescale.com>
4006
4007 commit 93f9dcf9e8b8182e97aeb7965c687176cbd0b933
4008 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4009 Date: Wed Jun 10 00:25:27 2009 +0400
4010
4011 Add simple hwconfig infrastructure
4012
4013 This patch implements simple hwconfig infrastructure: an
4014 interface for software knobs to control a hardware.
4015
4016 This is very simple implementation, i.e. it is implemented
4017 via `hwconfig' environment variable. Later we could write
4018 some "hwconfig <enable|disable|list>" commands, ncurses
4019 interface for Award BIOS-like interface, and frame-buffer
4020 interface for AMI GUI[1] BIOS-like interface with mouse
4021 support[2].
4022
4023 Current implementation details/limitations:
4024
4025 1. Doesn't support options dependencies and mutual exclusion.
4026 We can implement this by integrating apt-get[3] into the
4027 u-boot. But I didn't bother yet.
4028
4029 2. Since we don't implement hwconfig command, i.e. we're working
4030 with the environement directly, there is no way to tell that
4031 toggling a particular option will need a reboot to take
4032 an effect. So, for now it's advised to always reboot the
4033 target after modifying hwconfig variable.
4034
4035 3. We support hwconfig options with arguments. For example,
4036
4037 set hwconfig dr_usb:mode=peripheral,phy_type=ulpi
4038
4039 That means:
4040 - dr_usb - enable Dual-Role USB controller;
4041 - dr_usb:mode=peripheral - USB in Function mode;
4042 - dr_usb:phy_type=ulpi - USB should work with ULPI PHYs;
4043
4044 The purpose of this simple implementation is to define some
4045 internal API and then we can continue improving user experience
4046 by adding more mature interface, like hwconfig command with
4047 bells and whistles. Or not adding, if we feel that current
4048 interface fits its needs.
4049
4050 [1] http://en.wikipedia.org/wiki/American_Megatrends
4051 [2] Regarding ncurses and GUI with mouse support -- I'm just
4052 kidding.
4053 [3] The comment regarding apt-get is also a joke, meaning that
4054 dependency tracking could be non-trivial. For example, for
4055 enabling HW feature X we may need to disable Y, and turn Z
4056 into reduced mode (like RMII-only interface for ethernet,
4057 no MII).
4058
4059 It's quite trivial to implement simple cases though.
4060
4061 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4062 Acked-by: Kim Phillips <kim.phillips@freescale.com>
4063
4064 commit 6c3fef28b9fff0d7f3fa4c51c3ee0ae8c2a3b043
4065 Author: Jerry Van Baren <gvb.uboot@gmail.com>
4066 Date: Wed Jul 15 20:42:59 2009 -0400
4067
4068 Improve U-Boot Porting Guide in the README
4069
4070 Update for...
4071 * BDI2000 -> BDI3000 (BDI2000 is obsolete).
4072 * Add a line to read the doc/README.* files
4073 * Fix coding standard violations
4074
4075 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
4076
4077 commit 9578718c1b085cac73017d834001bc5cb0b2f73f
4078 Author: Kim Phillips <kim.phillips@freescale.com>
4079 Date: Tue Jul 14 16:00:24 2009 -0500
4080
4081 mtd: cfi - if defined, use MAX_FLASH_BANKS_DETECT for static declarations
4082
4083 a.k.a cfi_mtd.c does as cfi_flash.c does. This also prevents
4084 the TQM834x build from doing a:
4085
4086 cfi_mtd.c:36: error: variably modified 'cfi_mtd_info' at file scope
4087 cfi_mtd.c:37: error: variably modified 'cfi_mtd_names' at file scope
4088
4089 using gcc 4.4.
4090
4091 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4092 Signed-off-by: Stefan Roese <sr@denx.de>
4093
4094 commit 4a9932a4364b548773bc131bf85e24a2ec15f2b0
4095 Author: Kim Phillips <kim.phillips@freescale.com>
4096 Date: Tue Jul 7 18:04:21 2009 -0500
4097
4098 mpc83xx: increase MONITOR_LEN to offset growing pains
4099
4100 Saving the environment leads to overwriting u-boot itself,
4101 bricking boards. Increase u-boot's image size so the environment
4102 base address doesn't end up overlapping u-boot text.
4103
4104 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4105
4106 commit c31e13260bcd048a94412a47b004386ea6112acf
4107 Author: Valeriy Glushkov <gvv@lstec.com>
4108 Date: Tue Jun 30 15:48:41 2009 +0300
4109
4110 usb: mpx8349itx: added support of loading images from USB storage (MPH/DR)
4111
4112 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
4113 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4114
4115 commit d89e1c36891de793a20a929282acc0fc7b98feac
4116 Author: Valeriy Glushkov <gvv@lstec.com>
4117 Date: Tue Jun 30 15:48:40 2009 +0300
4118
4119 usb: mpc834x: added support of the MPH USB controller in addition to the DR one
4120
4121 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
4122 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4123
4124 commit d9ac3d5a17ecef0beb70073018925e011b11684e
4125 Author: Kim Phillips <kim.phillips@freescale.com>
4126 Date: Mon Jun 15 11:51:47 2009 -0500
4127
4128 mpc83xx: set 64BIT_VSPRINTF for boards using nand_util
4129
4130 When enabling NAND support for a board, one must also define
4131 CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
4132 for correct output.
4133
4134 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4135 Cc: Dave Liu <daveliu@freescale.com>
4136 Cc: Ron Madrid <ron_madrid@sbcglobal.net>
4137 Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
4138
4139 commit 052c08916532d1d9c2f69eb9229709c7b2fc1f02
4140 Author: TsiChung Liew <tsicliew@gmail.com>
4141 Date: Wed Jul 8 07:41:24 2009 +0000
4142
4143 ColdFire: Update bootargs
4144
4145 Add a bootargs for M53017EVB and update bootargs
4146 for M54451EVB
4147
4148 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
4149
4150 commit 6e8d58d36691520f8da74cd948661d28d5a5dc66
4151 Author: TsiChung Liew <tsicliew@gmail.com>
4152 Date: Tue Jun 30 14:30:19 2009 +0000
4153
4154 Command for accessing serial flash update
4155
4156 Change strtoul number base of argv 3 from 0 to 16
4157
4158 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
4159
4160 commit ee0a8462466dd284968536eb57c6eef4be0d6aad
4161 Author: TsiChung Liew <tsicliew@gmail.com>
4162 Date: Tue Jun 30 14:18:29 2009 +0000
4163
4164 ColdFire: Add DSPI support for MCF5227x and MCF5445x
4165
4166 Remove individual CPU specific DSPI driver.
4167 Add required feature for the common DSPI driver in cpu_init and
4168 in platform configuration file.
4169
4170 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
4171
4172 commit dec61c7851baa72151ef1d3657e7bb3b68907d48
4173 Author: TsiChung Liew <tsicliew@gmail.com>
4174 Date: Tue Jun 30 14:09:47 2009 +0000
4175
4176 Coldfire: Consolidate DSPI driver
4177
4178 Unify both MCF5227x and MCF5445x DSPI driver in CPU to
4179 driver/spi folder for common use.
4180
4181 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
4182
4183 commit 11d88b26a68bd4bf98b1c962fde6257a50978231
4184 Author: TsiChung Liew <tsicliew@gmail.com>
4185 Date: Fri Jun 12 13:03:34 2009 +0000
4186
4187 ColdFire: Remove compiler warning messages
4188
4189 Remove unused variables and printf type mismatch in
4190 lib_m68k/board.c
4191
4192 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
4193
4194 commit 4567c7bff2503fb1a7c738ff9b9f0bd00d274d9a
4195 Author: TsiChung Liew <tsicliew@gmail.com>
4196 Date: Fri Jun 12 11:31:31 2009 +0000
4197
4198 ColdFire: Fix M53017EVB flash size
4199
4200 Increase the flash size from 8MB to 16MB
4201
4202 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
4203
4204 commit bf9a521529e484b15e8fdb583a607cf7945d2f6b
4205 Author: TsiChung Liew <tsicliew@gmail.com>
4206 Date: Fri Jun 12 11:29:00 2009 +0000
4207
4208 ColdFire: Add M5208EVB and MCF520x CPU support
4209
4210 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
4211
4212 commit 709b384b6493d9726dce20663ebe31bf7cab2925
4213 Author: TsiChung Liew <tsicliew@gmail.com>
4214 Date: Thu Jun 11 15:39:57 2009 +0000
4215
4216 ColdFire: Update for M54451EVB
4217
4218 Update serial boot DRAM's Internal RAM, vector table and DRAM in
4219 start.S, serial flash's read status command over SPI and NOR
4220 flash.
4221
4222 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
4223
4224 commit bbf6bbffcaf694c03504c661e58fbd1aefe5bf64
4225 Author: TsiChung Liew <tsicliew@gmail.com>
4226 Date: Thu Jun 11 12:50:05 2009 +0000
4227
4228 ColdFire: Update configuration file to use flash buffer write
4229
4230 Update M52277EVB, M53017EVB and M54455EVB platform configuration
4231 file to use flash buffer write
4232
4233 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
4234
4235 commit 7d4450a9773673052fcd7fdf0a4a88c089126ac1
4236 Author: Wolfgang Denk <wd@denx.de>
4237 Date: Sun Jun 14 20:58:53 2009 +0200
4238
4239 mpc5121ads: add JFFS2 and MTDPARTS support; adjust flash map
4240
4241 Signed-off-by: Wolfgang Denk <wd@denx.de>
4242
4243 commit 1f1f82f3de1660f398bf42bfd709b9859582ce5e
4244 Author: Wolfgang Denk <wd@denx.de>
4245 Date: Sun Jun 14 20:58:52 2009 +0200
4246
4247 aria: add JFFS2 and MTDPARTS support; adjust flash map
4248
4249 Signed-off-by: Wolfgang Denk <wd@denx.de>
4250
4251 commit a6d6d46a4fef876455e11b45ed699c0fb3bd1ca1
4252 Author: Wolfgang Denk <wd@denx.de>
4253 Date: Sun Jun 14 20:58:51 2009 +0200
4254
4255 aria: enable NAND flash support
4256
4257 Signed-off-by: Wolfgang Denk <wd@denx.de>
4258
4259 commit 13946925e850db5351982acb691d51716fc754e2
4260 Author: Wolfgang Denk <wd@denx.de>
4261 Date: Sun Jun 14 20:58:50 2009 +0200
4262
4263 MPC512x: fix typo in comment listing the NAND driver name
4264
4265 Signed-off-by: Wolfgang Denk <wd@denx.de>
4266 Cc: Stefan Roese <sr@denx.de>
4267 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4268
4269 commit 2ca6f74d09653f8041b52cafd0d650fdc2a56c51
4270 Author: Wolfgang Denk <wd@denx.de>
4271 Date: Sun Jun 14 20:58:49 2009 +0200
4272
4273 mecp5123: cleanup - remove dead code
4274
4275 Remove dead code that was obviously a left-over from copy & paste.
4276
4277 Signed-off-by: Wolfgang Denk <wd@denx.de>
4278 Cc: Stefan Roese <sr@denx.de>
4279 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4280
4281 commit 25671c8672f2d7b39555416a6b7a6b7b39b810bf
4282 Author: Wolfgang Denk <wd@denx.de>
4283 Date: Sun Jun 14 20:58:48 2009 +0200
4284
4285 aria: adjust memory controller initialization
4286
4287 Needed for Rev. 2 silicon at 400 MHz
4288
4289 Signed-off-by: Wolfgang Denk <wd@denx.de>
4290
4291 commit 7629f1c06b6dea36bbc7bf70820b824e9b6d2227
4292 Author: Wolfgang Denk <wd@denx.de>
4293 Date: Sun Jun 14 20:58:47 2009 +0200
4294
4295 MPC512x: factor out common code
4296
4297 Now that we have 3 boards for the MPC512x it turns out that they all
4298 use the very same fixed_sdram() code.
4299
4300 This patch factors out this common code into cpu/mpc512x/fixed_sdram.c
4301 and adds a new header file, include/asm-ppc/mpc512x.h, with some
4302 macros, inline functions and prototype definitions specific to MPC512x
4303 systems.
4304
4305 Signed-off-by: Wolfgang Denk <wd@denx.de>
4306 Cc: Stefan Roese <sr@denx.de>
4307 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4308
4309 commit 0549353a6ba5aa03420c0962b9072e9cf1fa49d9
4310 Author: Wolfgang Denk <wd@denx.de>
4311 Date: Sun Jun 14 20:58:46 2009 +0200
4312
4313 mecp5123: fix build error
4314
4315 The mecp5123 board did not compile because the MSCAN Clock Control
4316 Registers were missing; these got added, but as an array instead
4317 of 4 individual registers. Adapt the code so it builds.
4318
4319 Signed-off-by: Wolfgang Denk <wd@denx.de>
4320 Cc: Stefan Roese <sr@denx.de>
4321 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4322
4323 commit a9905db5d29a56aedd7db5bcb56b0385873aa6a3
4324 Author: Wolfgang Denk <wd@denx.de>
4325 Date: Sun Jun 14 20:58:45 2009 +0200
4326
4327 MPC512x: Add MSCAN1...4 Clock Control Registers
4328
4329 Signed-off-by: Wolfgang Denk <wd@denx.de>
4330 Cc: Stefan Roese <sr@denx.de>
4331 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4332
4333 commit f5489c4200b37c9a1d6dbde116f5adc0539610de
4334 Author: Wolfgang Denk <wd@denx.de>
4335 Date: Sun Jun 14 20:58:44 2009 +0200
4336
4337 MPC512x: enabling NAND support requires CONFIG_SYS_64BIT_VSPRINTF
4338
4339 When enabling NAND support for a board, one must also define
4340 CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
4341 for correct output.
4342
4343 Signed-off-by: Wolfgang Denk <wd@denx.de>
4344 Cc: Stefan Roese <sr@denx.de>
4345 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
4346
4347 commit b4db4a7638ef90cf0aacf7b954d9bf3043dda780
4348 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
4349 Date: Fri Jul 10 18:03:57 2009 +0800
4350
4351 issue write command to base for JEDEC flash
4352
4353 For JEDEC flash, we should issue word programming command relative to
4354 base address rather than sector base address. Original source makes
4355 SST Flash fails to program sectors which are not on the 0x10000 boundaries.
4356
4357 e.g.
4358 SST39LF040 uses addr1=0x5555 and addr2=0x2AAA, however, each sector
4359 is 0x1000 bytes.
4360
4361 Thus, if we issue command to "sector base (0x41000) + offset(0x5555)",
4362 it sends to 0x46555 and the chip fails to recognize that address.
4363
4364 This patch is tested with SST39LF040.
4365
4366 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
4367 Signed-off-by: Stefan Roese <sr@denx.de>
4368
4369 commit 986922714ffd21ad39f48522d285fffc7aed56b1
4370 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4371 Date: Sat May 2 11:53:50 2009 +0200
4372
4373 versatile: update config and merge to cfi flash driver
4374
4375 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4376 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
4377 Cc: Catalin Marinas <catalin.marinas@arm.com>
4378
4379 commit d6e8ed832b25d5db4fdd3fb91e73028e494dcd6e
4380 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4381 Date: Sat May 2 11:53:49 2009 +0200
4382
4383 versatile: specify the board type on the prompt
4384
4385 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4386 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
4387 Cc: Catalin Marinas <catalin.marinas@arm.com>
4388
4389 commit 5ccc2d99d61c81805348b0cd9f79731b271f7daf
4390 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
4391 Date: Thu Jun 25 17:04:15 2009 +0200
4392
4393 at91: Introduction of at91sam9g10 SOC.
4394
4395 AT91sam9g10 is an ARM 926ej-s SOC. It is an evolution of the at91sam9261 with a
4396 faster clock speed: 266/133MHz.
4397
4398 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
4399
4400 commit 22ee647380c42f44528f99b7c1b423725e542102
4401 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
4402 Date: Thu Jul 9 10:16:29 2009 +0200
4403
4404 at91: Introduction of at91sam9g45 SOC.
4405
4406 AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz.
4407 It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of
4408 peripherals.
4409
4410 The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES.
4411 On the board you can find 2 USART, USB high speed,
4412 a 480*272 LG lcd, ethernet, gpio/joystick/buttons.
4413
4414 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
4415
4416 commit c33c5990cec7ced9ef1ef148debbca34adafa12b
4417 Author: Daniel Mack <daniel@caiaq.de>
4418 Date: Tue Jun 23 17:30:05 2009 +0200
4419
4420 pxa: fix CKEN_B register bits
4421
4422 The current defition for CKEN_B register bits is nonsense. Adding 32 to
4423 the shifted value is equal to '| (1 << 5)', and this bit is marked
4424 'reserved' in the PXA docs.
4425
4426 Signed-off-by: Daniel Mack <daniel@caiaq.de>
4427
4428 commit bd876be46f28b5fc2896537f6d01353f332789f7
4429 Author: Daniel Mack <daniel@caiaq.de>
4430 Date: Tue Jun 23 17:30:04 2009 +0200
4431
4432 pxa: add clock for system bus 2 arbiter
4433
4434 This clock is needed for systems using the USB2 device unit or the 2d
4435 graphics accelerator.
4436
4437 Signed-off-by: Daniel Mack <daniel@caiaq.de>
4438
4439 commit b016000a95514c08cab50e1cba00b019c0801bc4
4440 Author: Grazvydas Ignotas <notasas@gmail.com>
4441 Date: Wed Jul 8 00:30:01 2009 +0300
4442
4443 OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh
4444
4445 Pandora is using both SDRC CSes. The MUX setting is needed
4446 for the second CS clock signal to allow the 2 RAM parts to
4447 be put in self-refresh correctly.
4448
4449 Based on similar patch for beagle and overo by
4450 Jean Pihet and Steve Sakoman.
4451
4452 commit 8672c288703f3c51c829851c8fe6608c7869faaa
4453 Author: Grazvydas Ignotas <notasas@gmail.com>
4454 Date: Wed Jul 8 00:30:00 2009 +0300
4455
4456 OMAP3 pandora: setup pulls for various GPIOs
4457
4458 Set pullups or pulldowns for GPIOs which need them.
4459 Disable them for others, which have external pulls.
4460 Also make disabled pull setting consistent (some pins had
4461 type set to "up" even if pull type selection was disabled).
4462
4463 commit 5ff78122f229946862a3f67a2f50a329e8e1bcf5
4464 Author: Grazvydas Ignotas <notasas@gmail.com>
4465 Date: Wed Jul 8 00:29:59 2009 +0300
4466
4467 OMAP3 pandora: setup pin mux for pins used on rev3 boards
4468
4469 Setup pin mux for GPIO pins connected on rev3 or later
4470 boards. Also change NUB2 IRQ pin. This should not affect
4471 older boards because they don't have any nubs (analog
4472 controllers) attached to them.
4473
4474 commit 67c97c346b27c586a7263564f7afff6d1f8d8d0a
4475 Author: Grazvydas Ignotas <notasas@gmail.com>
4476 Date: Wed Jul 8 00:29:58 2009 +0300
4477
4478 OMAP3 pandora: pin mux cleanup
4479
4480 Remove configuration of not unused pins, effectively
4481 leaving them in safe mode.
4482
4483 commit b996165f5a1623a055c03b22d64d6d5da81835d0
4484 Author: Prafulla Wadaskar <prafulla@marvell.com>
4485 Date: Mon Jul 6 15:50:47 2009 +0530
4486
4487 arm: Kirkwood: bugfix: UART1 bar correction
4488
4489 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
4490
4491 commit 50243e3e7a96a96c5418ce6c90b7252d26fdd5b0
4492 Author: Kumar Gala <galak@kernel.crashing.org>
4493 Date: Tue Jul 7 15:48:58 2009 -0500
4494
4495 usb: Fix compiler warning with gcc4.4
4496
4497 ehci-hcd.c: In function 'ehci_submit_root':
4498 ehci-hcd.c:719: warning: value computed is not used
4499 ehci-hcd.c:748: warning: value computed is not used
4500
4501 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4502 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4503
4504 commit 04366d070a1a3f7affddf15aaaea87bcf44cdbb0
4505 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4506 Date: Wed Jul 8 11:42:19 2009 +0900
4507
4508 sh: Update pci config for Renesas r7780mp board
4509
4510 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4511
4512 commit 74d9c16a681aa24bb4125191fe39dc7c75cde56a
4513 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4514 Date: Thu Jun 25 16:31:26 2009 +0900
4515
4516 sh: Add support ESPT-GIGA borad
4517
4518 ESPT-Giga is SH7763-based reference board.
4519 Board support is relatively sparse, presently supporting serial,
4520 gigabit ethernet, USB host, and MTD.
4521
4522 More information (in Japanese) available at:
4523 http://www.cente.jp/product/cente_hard/ESPT-Giga.html
4524
4525 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4526 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4527
4528 commit dae4e0148a1146a5610025ae4b445e841410b659
4529 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
4530 Date: Fri Jul 3 16:06:37 2009 +0200
4531
4532 Add ESD PCI vendor ID
4533
4534 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
4535
4536 commit 876b3cef537aab2cba8c19505db2876f6057f818
4537 Author: Peter Tyser <ptyser@xes-inc.com>
4538 Date: Mon Jun 22 18:01:41 2009 -0500
4539
4540 api_examples/Makefile: General cleanup
4541
4542 * Remove symlinking of files located outside api_examples/
4543
4544 * Auto generate dependencies for files located outside api_examples/
4545
4546 * Update names of variables to be similar to those in tools/Makefile
4547
4548 * Fix out of tree build error
4549 Dependencies are calculated for all files in the SRCS variable.
4550 Previously, the SRCS variable contained files which were symlinked
4551 into the api_examples/ directory. These symlinked files did not exist
4552 when dependencies were calculated when building out of tree. This
4553 resulted in errors such as:
4554 make[1]: *** No rule to make target `/work/wd/tmp-ppc/api_examples/.depend', needed by `_depend'. Stop.
4555 make[1]: Leaving directory `/home/wd/git/u-boot/work/api_examples'
4556 make: *** [depend] Error 2
4557
4558 Since symlinked source files are no longer used, this bug no longer
4559 exists.
4560
4561 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4562 Acked-by: Rafal Jaworowski <raj@semihalf.com>
4563
4564 commit 522f6f02adb93194e337016fe2e4e53c58d5d5ea
4565 Author: Peter Tyser <ptyser@xes-inc.com>
4566 Date: Mon Jun 22 18:01:40 2009 -0500
4567
4568 api_examples/Makefile: Get rid of unnecessary intermediate LIB target
4569
4570 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4571 Acked-by: Rafal Jaworowski <raj@semihalf.com>
4572
4573 commit 117d0ab5e6f3b3dd48fc346df4919555a78afd39
4574 Author: Peter Tyser <ptyser@xes-inc.com>
4575 Date: Mon Jun 22 18:01:39 2009 -0500
4576
4577 api_examples/Makefile: Combine ELF and BIN targets
4578
4579 Combining the two rules cleans up the Makefile a bit
4580
4581 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4582 Acked-by: Rafal Jaworowski <raj@semihalf.com>
4583
4584 commit 644cb38108b8dc22e0ef3cf5f404fe310d1995f8
4585 Author: Peter Tyser <ptyser@xes-inc.com>
4586 Date: Mon Jun 22 18:01:38 2009 -0500
4587
4588 api_examples/Makefile: Split up variable declarations
4589
4590 This cleans up the Makefile a bit and simplifies future changes
4591
4592 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4593 Acked-by: Rafal Jaworowski <raj@semihalf.com>
4594
4595 commit 890d242facc4079ed21e979ced2e8c6d6974f6d3
4596 Author: Timur Tabi <timur@freescale.com>
4597 Date: Fri Jun 19 14:10:52 2009 -0500
4598
4599 remove _IO_BASE and KSEG1ADDR from board configuration files
4600
4601 The KSEG1ADDR macro used to be necessary for the RTL8139 Ethernet
4602 driver, but the code that used that macro was removed over a year
4603 ago, so board configuration files no longer need to define it.
4604
4605 The _IO_BASE macro is also automatically defined to 0 if it isn't
4606 already set, so there's no need to define that macro either in the
4607 board configuration files.
4608
4609 Signed-off-by: Timur Tabi <timur@freescale.com>
4610 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4611 Acked-by: Andy Fleming <afleming@freescale.com>
4612 Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4613 Acked-by: Kim Phillips <kim.phillips@freescale.com>
4614
4615 commit c9969947a4687de90e2bb58e76842b491aa0e0b9
4616 Author: Jon Smirl <jonsmirl@gmail.com>
4617 Date: Sun Jun 14 18:21:28 2009 -0400
4618
4619 board support patch for phyCORE-MPC5200B-tiny
4620
4621 Add support for the Phytec phyCORE-MPC5200B-tiny.
4622 Code originally from Pengutronix.de.
4623 Created CONFIG_SYS_ATA_CS_ON_TIMER01 define for when IDE CS is on
4624 Timer 0/1
4625
4626 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
4627 Acked-by: Grant Likely <grant.likely@secretlab.ca>
4628
4629 commit 7bd49ad12cc36a4de6995ddabbc65ffa1aa1933d
4630 Author: Mike Frysinger <vapier@gentoo.org>
4631 Date: Mon Jun 15 13:37:20 2009 -0400
4632
4633 kallsyms: fix escaping of NUL char in strings
4634
4635 The current kallsyms code is using \\0 to escape the backslash in the awk
4636 code, but the shell too needs escaping. This way we make sure gcc is
4637 passed the \0. Then gcc itself will consume this as an octal, so we have
4638 to use 000 so gcc will create the final NUL.
4639
4640 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4641
4642 commit ed540f07b8ad86909704e9806c1762462cb4995a
4643 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
4644 Date: Fri Jun 26 10:18:49 2009 -0400
4645
4646 Blackfin: cm-bf561: add example settings for EXT-BF5xx-USB-ETH2 add-on
4647
4648 The cm-bf561 module can easily hook up to the EXT-BF5xx-USB-ETH2 extender
4649 board, so add a simple example of how to do that in the board config.
4650
4651 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
4652 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4653
4654 commit f8bf54b4081c3c3d518830df0017a23ec672a841
4655 Author: Mike Frysinger <vapier@gentoo.org>
4656 Date: Thu Jun 25 19:40:28 2009 -0400
4657
4658 Blackfin: blackstamp: update spi flash settings
4659
4660 The latest blackstamp boards can only run the SPI flash at 15MHz before
4661 they start to crap out, so lower the max speeds accordingly. The new SPI
4662 flash also has different sector requirements, so update the environment
4663 sizes as well.
4664
4665 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4666
4667 commit 286070ddc8339666c09bd7912e960b850a8a0318
4668 Author: Mike Frysinger <vapier@gentoo.org>
4669 Date: Mon Oct 6 03:31:52 2008 -0400
4670
4671 Blackfin: add cache_dump commands
4672
4673 A few debug-type commands used to dump the raw icache/dcache data. Useful
4674 when trying to track down cache-related bugs.
4675
4676 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4677
4678 commit 632e9b671efb0a6c900499f7a49fe5b63292b5fc
4679 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
4680 Date: Wed Jul 8 15:31:57 2009 +0200
4681
4682 ppc4xx: Set default PCI device ID for 405EP boards
4683
4684 Current code only sets the PCI vendor id to 0x1014 and
4685 leaved device id to 0x0000.
4686
4687 Ths patch ....
4688 a) uses the correct PCI_VENDOR_ID_IBM macro for this
4689 b) sets the default device ID as stated in the UM to 0x0156
4690 by using PCI_DEVICE_ID_IBM_405GP for this.
4691
4692 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
4693 Signed-off-by: Stefan Roese <sr@denx.de>
4694
4695 commit 123f102ec093fba6967066acdf9beb637df2e2d1
4696 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
4697 Date: Wed Jul 8 13:43:55 2009 +0200
4698
4699 ppc4xx: Move 405EP pci code from cpu_init_f() to __pci_pre_init()
4700
4701 This patch moves some basic PCI initialisation from the 4xx cpu_init_f()
4702 to cpu/ppc4xx/4xx_pci.c.
4703
4704 The original cpu_init_f() function enabled the 405EP's internal arbiter
4705 in all situations. Also the HCE bit in cpc0_pci is always set.
4706 The first is not really wanted for PCI adapter designs and the latter
4707 is a general bug for PCI adapter U-Boots. Because it enables
4708 PCI configuration by the system CPU even when the PCI configuration has
4709 not been setup by the 405EP. The one and only correct place is
4710 in pci_405gp_init() (see "Set HCE bit" comment).
4711
4712 So for compatibility reasons the arbiter is still enabled in any case,
4713 but from weak pci_pre_init() so that it can be replaced by board specific
4714 code.
4715
4716 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
4717 Signed-off-by: Stefan Roese <sr@denx.de>
4718
4719 commit c71103f9dc66dfcce8ad6df942364043bf27ade8
4720 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
4721 Date: Wed Jul 8 13:43:23 2009 +0200
4722
4723 ppc4xx: Make is_pci_host() available for all 440 and 405 CPUs
4724
4725 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
4726 Signed-off-by: Stefan Roese <sr@denx.de>
4727
4728 commit 1d8937a469bfeb55ca1f6d89a4e7cd2dfee3cf17
4729 Author: Prafulla Wadaskar <prafulla@marvell.com>
4730 Date: Mon Jun 29 20:56:43 2009 +0530
4731
4732 usb: add Marvell Kirkwood ehci host controller driver
4733
4734 This driver is tested on Sheevaplug platform
4735
4736 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
4737 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4738
4739 commit db7b43e4681f6f93c336132708157a8a0cca1f8b
4740 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4741 Date: Wed Jun 24 10:08:40 2009 +0530
4742
4743 mpc83xx: USB: fix: access of ehci struct elements
4744
4745 It fixes the access to the 'ehci' struct elements for mpc83xx which
4746 should have been taken care of in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
4747 Sorry about that.
4748
4749 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4750 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4751
4752 commit 08066152735417fc55a5c9de2cec0714c529e4f3
4753 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4754 Date: Fri Jun 19 17:56:00 2009 +0530
4755
4756 mpc8xxx: USB: fix: access of ehci struct elements
4757
4758 This patch fixes the access to the 'ehci' struct elements which should
4759 have been taken care off in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
4760 Sorry about that.
4761
4762 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4763 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4764
4765 commit c3a012ce65818beb274195cd47f31ed80d0fbaa5
4766 Author: Bryan Wu <bryan.wu@analog.com>
4767 Date: Tue Jun 16 05:26:27 2009 -0400
4768
4769 usb: musb: add timeout via CONFIG_MUSB_TIMEOUT
4770
4771 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
4772 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4773 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4774
4775 commit 7984967a9405672db1581402d2c2cfae268d1a67
4776 Author: Mike Frysinger <vapier@gentoo.org>
4777 Date: Tue Jun 16 05:26:25 2009 -0400
4778
4779 usb: musb: drop old musb read/write prototypes
4780
4781 These functions are no longer defined, so remove their prototypes.
4782
4783 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4784 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4785
4786 commit 4e04f16020115ab5ccf53158e100de58bcaf29bd
4787 Author: Kim Phillips <kim.phillips@freescale.com>
4788 Date: Mon Jun 15 11:50:07 2009 -0500
4789
4790 usb: fix CONFIG_SYS_MPC83xx_USB_ADDR not defined error
4791
4792 fix a stray CONFIG_MPC83XX that escaped commit
4793 0f898604945af4543c1525fc33b6bae621a3b805.
4794
4795 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4796 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4797
4798 commit bc0d3296f1780b50e6b9630aee5eb368f2afb6cb
4799 Author: Michal Simek <monstr@monstr.eu>
4800 Date: Tue Jun 30 23:47:30 2009 +1000
4801
4802 asm-generic: Consolidate errno.h to asm-generic/errno.h
4803
4804 This patch use blackfin errno.h implementation which
4805 correspond Linux kernel one.
4806
4807 MIPS implemetation is different that's why I keep it.
4808
4809 I removed ppc_error_no.h from Marvell boards which
4810 was the same too.
4811
4812 I have got ack from ppc40x, blackfin, arm, coldfire and avr custodians.
4813
4814 Acked-by: Stefan Roese <sr@denx.de>
4815 Signed-off-by: Michal Simek <monstr@monstr.eu>
4816
4817 commit 2896b5851f0430bf16529376a4193630e966c788
4818 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
4819 Date: Tue Jul 7 16:01:02 2009 +0200
4820
4821 Command improvements for ubifs
4822
4823 Check that an argument is passed to ubifsmount and that addresses and
4824 sizes are actually numbers for ubifsload. Also improve the instructions
4825 a bit.
4826
4827 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
4828 Signed-off-by: Stefan Roese <sr@denx.de>
4829
4830 commit 25c8f4005979ab2d190713ba341d96a5fa905cdb
4831 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
4832 Date: Tue Jul 7 16:59:46 2009 +0200
4833
4834 Handle VID header offset in ubi part command
4835
4836 The VID header offset is sometimes needed to initialize the UBI
4837 partition. This patch adds it (optionally) to the command line
4838 for the ubi part command.
4839
4840 (Lines have been properly wrapped since last version)
4841
4842 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
4843 Acked-by: Stefan Roese <sr@denx.de>
4844 Signed-off-by: Stefan Roese <sr@denx.de>
4845
4846 commit 3672cd5c3b53d219d33345eebad4e25ad5bf6d52
4847 Author: Wolfgang Denk <wd@denx.de>
4848 Date: Thu Jul 9 09:56:16 2009 +0200
4849
4850 MAINTAINERS: fix sorting, remove duplicates.
4851
4852 Signed-off-by: Wolfgang Denk <wd@denx.de>
4853
4854 commit efbf14e9a2394a154b12643d4a011994b5096b5a
4855 Author: Heiko Schocher <heiko.schocher@invitel.hu>
4856 Date: Wed Dec 10 08:27:01 2008 +0100
4857
4858 all platforms: make show_boot_progress() work again
4859
4860 Signed-off-by: Heiko Schocher <hs@denx.de>
4861
4862 commit 205a0988d8fd778c60746c34c2f17dbd2b7cd0d2
4863 Author: Prafulla Wadaskar <prafulla@marvell.com>
4864 Date: Mon Jun 29 15:25:18 2009 +0530
4865
4866 nand: Add Marvell Kirkwood NAND driver
4867
4868 This patch adds a NAND driver for the Marvell Kirkwood SoC's
4869
4870 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
4871 Acked-by: Scott Wood <scottwood@freescale.com>
4872
4873 commit 0580e48f53f972783e56fcedadb9ce6e5b0b6f32
4874 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
4875 Date: Mon Jul 6 16:27:33 2009 +0200
4876
4877 ppc4xx: Make pll_write global
4878
4879 This patch makes pll_write on PPC405EP boards
4880 global and callable from C code.
4881
4882 pll_write can be used to dynamically modify the PLB:PCI divider
4883 as it is required for 33/66 MHz pci adapters based on the 405EP.
4884
4885 board_early_init_f() is a good place to do that (check M66EN signal
4886 and call pll_write() when it is required).
4887
4888 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
4889 Signed-off-by: Stefan Roese <sr@denx.de>
4890
4891 commit 20b3c4b528606d51799aed5e4c71783720cd2b72
4892 Author: Stefan Roese <sr@denx.de>
4893 Date: Mon Jul 6 11:44:33 2009 +0200
4894
4895 ppc4xx: Remove compilation warning "pci_async_enabled defined but not used"
4896
4897 Signed-off-by: Stefan Roese <sr@denx.de>
4898
4899 commit d0a1364f91c80d29daff6b27a7904a50cdc00b35
4900 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
4901 Date: Fri Jul 3 16:06:06 2009 +0200
4902
4903 ppc4xx: Implement is_pci_host() for 405 CPUs
4904
4905 This patch implements the is_pci_host() function in a similiar way
4906 as it is used on 440 targets.
4907
4908 The former path with CONFIG_PCI_HOST == PCI_HOST_AUTO does not
4909 build on 405EP targets because checking the PCI arbiter is different.
4910 So putting the fixed code into a separate function makes the code
4911 more readable.
4912
4913 Also using is_pci_host() on 405 brings 405 and 440 PCI code
4914 a little bit closer.
4915
4916 In preparation for an upcoming 405EP based PMC module I made this
4917 function weak so that it can be overwritten from board specific code.
4918
4919 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
4920 Signed-off-by: Stefan Roese <sr@denx.de>
4921
4922 commit 04ddae915f295dee301f15c32100533a48e3b433
4923 Author: Alessio Centazzo <centazzo@gmail.com>
4924 Date: Wed Jul 1 22:20:51 2009 -0700
4925
4926 ppc4xx: Fixed PPC4xx debug compilation error in uic.c
4927
4928 This patch fixes a debug compilation error for PPC4xx platforms, all
4929 other architectures are not affected by this change. The 'handler'
4930 pointer was undefined. The fix is exercised and has effect only if
4931 DEBUG is defined.
4932
4933 Signed-off-by: Alessio Centazzo acpatin@yahoo.com
4934 Signed-off-by: Stefan Roese <sr@denx.de>
4935
4936 commit 48e2b535a0dd3a7b77b674130934a24f9de6f48d
4937 Author: Felix Radensky <felix@embedded-sol.com>
4938 Date: Wed Jul 1 11:37:46 2009 +0300
4939
4940 4xx: Fix compilation warnings and MQ registers dump in SPD DDR2 code
4941
4942 This patch fixes printf format string compilation warnings in several
4943 debug statements. It also fixes the dump of DDR controller MQ registers
4944 found on some 44x and 46x platforms. The current register dump code
4945 uses incorrect DCRs to access these registers.
4946
4947 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
4948 Signed-off-by: Stefan Roese <sr@denx.de>
4949
4950 commit 26d37f0061ad05e5c383c910f00e6006f3c89a3a
4951 Author: Felix Radensky <felix@embedded-sol.com>
4952 Date: Mon Jun 22 15:30:42 2009 +0300
4953
4954 ppc4xx: Fix FDT EBC mappings on Canyonlands
4955
4956 This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
4957 First, NAND EBC mapping was missing, making Linux NAND driver
4958 unusable on this board. Second, NOR remapping code assumed that
4959 NOR is always on CS0, however when booting from NAND NOR is on CS3.
4960
4961 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
4962 Signed-off-by: Stefan Roese <sr@denx.de>
4963
4964 commit baa9f9ba4345ed6dc5c403871c32e6295316ea52
4965 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4966 Date: Tue Jun 16 22:29:15 2009 +0900
4967
4968 sh: Revised the build with newest compiler
4969
4970 The check of data became severe from newest gcc.
4971 This patch checked in gcc-4.2 and 4.3 .
4972
4973 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4974
4975 commit be45c632568ba76343c1453b3951ad793f482fd5
4976 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4977 Date: Thu Jun 4 12:06:48 2009 +0200
4978
4979 sh3/sh4: rename config option TMU_CLK_DIVIDER to CONFIG_SYS_TMU_CLK_DIV
4980
4981 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4982 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4983 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4984
4985 commit 8dd29c87ba370072a8464b8cc19e0a1e6e0497b4
4986 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4987 Date: Thu Jun 4 12:06:47 2009 +0200
4988
4989 sh3/sh4: fix CONFIG_SYS_HZ to 1000
4990
4991 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4992 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4993 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4994
4995 commit add380f51f34ed1e2678c2abac8d53c91d652f26
4996 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4997 Date: Thu Jun 4 12:06:46 2009 +0200
4998
4999 sh: introduce clock framework
5000
5001 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5002 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5003 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5004
5005 commit 3931a375de2c381d9ff5ec2767b2da9f62a41aef
5006 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5007 Date: Thu Jun 4 12:06:45 2009 +0200
5008
5009 sh: unify linker script
5010
5011 all sh boards use the same cpu linker script so move it to cpu/$(CPU)
5012
5013 that could be overwrite in following order
5014 SOC
5015 BOARD
5016 via the corresponding config.mk
5017
5018 tested on r2dplus
5019
5020 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5021 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5022 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5023
5024 commit 236aad875817771eb1f25ed32784b3cd7760b2e6
5025 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5026 Date: Thu Jun 4 12:06:44 2009 +0200
5027
5028 sh: make the linker scripts more generic
5029
5030 currently we need to sync the linker script enty and TEXT_BASE manualy
5031 and the reloc_dst is based on it
5032
5033 instead provide it now from the ldflags
5034
5035 tested on r2dplus
5036
5037 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5038 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5039 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5040
5041 commit ce29817212792113cd2d67a9767049a2e262c406
5042 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5043 Date: Thu Jun 4 12:06:43 2009 +0200
5044
5045 sh7785lcr: fix out of tree build
5046
5047 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5048 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5049 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5050
5051 commit 2e8a6f551cba550e9220dca4d8504066203b1f74
5052 Author: HeungJun Kim <riverful.kim@gmail.com>
5053 Date: Tue Jun 30 14:42:22 2009 +0900
5054
5055 env_onenand: change env_address type from unsigned long to loff_t
5056
5057 If use the onenand boot, the env_relocate_spec() calls mtd->read(),
5058 and the type of the argument #2 of mtd->read() was changed to loff_t.
5059 But, the "env_addr" type is still unsigned long, thus this patch change
5060 the type from unsigned long to loff_t.
5061
5062 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
5063 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
5064 Signed-off-by: Scott Wood <scottwood@freescale.com>
5065
5066 commit 66372fe2ab11cdeb0e841ad9eb6ba79769db4909
5067 Author: Mingkai Hu <Mingkai.hu@freescale.com>
5068 Date: Thu Jun 18 18:23:27 2009 +0800
5069
5070 fsl_elbc_nand: redirect the pointer of bbt pattern to RAM
5071
5072 The bbt descriptors contains the pointer to the bbt pattern which
5073 are statically initialized memory struct. When relocated to RAM,
5074 these pointers will continue point to NOR flash(or L2 SRAM, or
5075 other boot device). If the contents of NOR flash changed or L2
5076 SRAM disabled, it'll hang the system.
5077
5078 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
5079 Signed-off-by: Scott Wood <scottwood@freescale.com>
5080
5081 commit 1dac3a51875967f32641bbc0d26dc382ef02330a
5082 Author: Scott Wood <scottwood@freescale.com>
5083 Date: Wed Jun 24 17:23:49 2009 -0500
5084
5085 nand_spl: Fix cmd_ctrl usage in nand_boot.c.
5086
5087 When adding large page NAND support to this file, I had a misunderstanding
5088 about the exact semantics of NAND_CTRL_CHANGE (which isn't documented
5089 anywhere I can find) -- it is apparently just a hint to drivers,
5090 which aren't required to preserve the old value for subsequent
5091 non-"change" invocations.
5092
5093 This change makes nand_boot.c no longer assume this. Note that this
5094 happened to work by chance with some NAND drivers, which don't preserve
5095 the value, but treat 0 equivalently to NAND_CTRL_ALE.
5096
5097 I don't have hardware to test this, so any testing is appreciated.
5098
5099 Signed-off-by: Scott Wood <scottwood@freescale.com>
5100
5101 commit 98713d2663d5d30dde74f48f547114a2bfd9d463
5102 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
5103 Date: Thu Jun 18 18:41:03 2009 +0100
5104
5105 Bug-fix in drivers mtd nand Makefile
5106
5107 The S3C2410 NAND driver source file is included in the makefile instead of
5108 the object file.
5109
5110 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
5111 Signed-off-by: Scott Wood <scottwood@freescale.com>
5112
5113 commit b74ab737369bbbe66c15cbe6c0d0b6a351b00c96
5114 Author: Guennadi Liakhovetski <lg@denx.de>
5115 Date: Mon May 18 16:07:22 2009 +0200
5116
5117 nand_spl: read environment early, when booting from NAND using nand_spl
5118
5119 Currently, when booting from NAND using nand_spl, in the beginning the default
5120 environment is used until later in boot process the dynamic environment is read
5121 out. This way environment variables that must be interpreted early, like the
5122 baudrate or "silent", cannot be modified dynamically and remain at their
5123 default values. Fix this problem by reading out main and redundand (if used)
5124 copies of the environment in the nand_spl code.
5125
5126 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5127 Signed-off-by: Scott Wood <scottwood@freescale.com>
5128
5129 commit 378adfcdf4bbd77ee4cbc3276d4733e218308a21
5130 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5131 Date: Sat May 16 14:27:40 2009 +0200
5132
5133 mtd: nand: use loff_t for offset
5134
5135 nand_util currently uses size_t which is arch dependent and not always a
5136 unsigned long. Now use loff_t, as does the linux mtd layer.
5137
5138 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5139 Signed-off-by: Scott Wood <scottwood@freescale.com>
5140
5141 commit 8360b66bac9567701027a0087274d0c9b2fe8d6b
5142 Author: Wolfgang Denk <wd@denx.de>
5143 Date: Sun May 24 17:34:33 2009 +0200
5144
5145 nand/onenand: Fix missing argument checking for "markbad" command
5146
5147 The "nand markbad" and "onenand markbad" commands did not check if an
5148 argument was passed; if this was forgotten, no error was raised but
5149 block 0 was marked as bad.
5150
5151 While fixing this bug, clean up the code a bit and allow to pass more
5152 than one block address, thus allowing to mark several blocks as bad
5153 in a single command invocation.
5154
5155 Signed-off-by: Wolfgang Denk <wd@denx.de>
5156 Signed-off-by: Scott Wood <scottwood@freescale.com>
5157
5158 commit cd84423a09f3a08029fe41c1db96168debd0b51f
5159 Author: Mike Frysinger <vapier@gentoo.org>
5160 Date: Mon May 25 22:42:28 2009 -0400
5161
5162 mtd: nand: new base driver for memory mapped nand devices
5163
5164 The BF537-STAMP Blackfin board had a driver for working with NAND devices
5165 that are simply memory mapped. Since there is nothing Blackfin specific
5166 about this, generalize the driver a bit so that everyone can leverage it.
5167
5168 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5169 Signed-off-by: Scott Wood <scottwood@freescale.com>
5170
5171 commit d27bc728cf35e7d7996fbd77154335e66615b213
5172 Author: Guennadi Liakhovetski <lg@denx.de>
5173 Date: Mon May 18 16:06:45 2009 +0200
5174
5175 env_nand: remove unused variable.
5176
5177 Remove an unused "total" variable in multiple functions.
5178
5179 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5180 Signed-off-by: Scott Wood <scottwood@freescale.com>
5181
5182 commit 154b5484ac7dcbcd0fb5ba388d930b02f87fa302
5183 Author: David Brownell <dbrownell@users.sourceforge.net>
5184 Date: Sun May 10 15:43:01 2009 -0700
5185
5186 davinci_nand chipselect/init cleanup
5187
5188 Update chipselect handling in davinci_nand.c so that it can
5189 handle 2 GByte chips the same way Linux does: as one device,
5190 even though it has two halves with independent chip selects.
5191 For such chips the "nand info" command reports:
5192
5193 Device 0: 2x nand0, sector size 128 KiB
5194
5195 Switch to use the default chipselect function unless the board
5196 really needs its own. The logic for the Sonata board moves out
5197 of the driver into board-specific code. (Which doesn't affect
5198 current build breakage if its NAND support is enabled...)
5199
5200 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5201 Signed-off-by: Scott Wood <scottwood@freescale.com>
5202
5203 commit 496863b2440dd7cd69a1ad2443a9badd5f8968d1
5204 Author: Sandeep Paulraj <s-paulraj@ti.com>
5205 Date: Sat May 9 12:35:20 2009 -0400
5206
5207 NAND DaVinci: Update to ALE/CLE Mask values
5208
5209 All DaVinci SOC's use a CLE mask of 0x10 and an ALE mask of 0x8
5210 except the DM646x. This was decided by the design team driving the design.
5211 This patch updates the CLE and ALE values for DM646x.
5212 Updated patches for DM646x will be sent shortly.
5213 This applies to u-boot-nand-flash git
5214
5215 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5216 Signed-off-by: Scott Wood <scottwood@freescale.com>
5217
5218 commit 0c1684437ef810c503df29e8d73f63191aa63862
5219 Author: Sandeep Paulraj <s-paulraj@ti.com>
5220 Date: Wed Apr 29 09:47:09 2009 -0400
5221
5222 ARM DaVinci: Changing ALE Mask Value
5223
5224 The ALE mask used by DaVinci SOCs is wrong. The patch changes the mask value
5225 from '0xa' to '0x8'. This is the mask we use for all TI releases.
5226
5227 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5228 Signed-off-by: Scott Wood <scottwood@freescale.com>
5229
5230 commit 6e29ed8e576a6900c5d8dcde36b423ac576894dc
5231 Author: David Brownell <dbrownell@users.sourceforge.net>
5232 Date: Tue Apr 28 13:19:53 2009 -0700
5233
5234 davinci_nand: cleanup II (CONFIG_SYS_DAVINCI_BROKEN_ECC)
5235
5236 Remove CONFIG_SYS_DAVINCI_BROKEN_ECC option. It's not just nasty;
5237 it's also unused by any current boards, and doesn't even match the
5238 main U-Boot distributions from TI (which use soft ECC, or 4-bit ECC
5239 on newer chips that support it).
5240
5241 DaVinci GIT kernels since 2.6.24, and mainline Linux since 2.6.30,
5242 match non-BROKEN code paths for 1-bit HW ECC. The BROKEN code paths
5243 do seem to partially match what MontaVista/TI kernels (4.0/2.6.10,
5244 and 5.0/2.6.18) do ... but only for small pages. Large page support
5245 is really broken (and it's unclear just what software it was trying
5246 to match!), and the ECC layout was making three more bytes available
5247 for use by filesystem (or whatever) code.
5248
5249 Since this option itself seems broken, remove it. Add a comment
5250 about the MV/TI compat issue, and the most straightforward way to
5251 address it (should someone really need to solve it).
5252
5253 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5254 Signed-off-by: Scott Wood <scottwood@freescale.com>
5255
5256 commit fcb774777562bb7bcdc53c608d0e6bae906ce0f6
5257 Author: David Brownell <dbrownell@users.sourceforge.net>
5258 Date: Tue Apr 28 13:19:50 2009 -0700
5259
5260 davinci_nand: cleanup I (minor)
5261
5262 Minor cleanup for DaVinci NAND code:
5263
5264 - Use I/O addresses from nand_chip; CONFIG_SYS_NAND_BASE won't
5265 be defined when there are multiple chipselect lines in use
5266 (as with common 2 GByte chips).
5267
5268 - Cleanup handling of EMIF control registers
5269 * Only need one pointer pointing to them
5270 * Remove incorrect and unused struct supersetting them
5271
5272 - Use the standard waitfunc; we don't need a custom version
5273
5274 - Partial legacy cleanup:
5275 * Don't initialize every board like it's a DM6446 EVM
5276 * #ifdef a bit more code for BROKEN_ECC
5277
5278 Sanity checked with small page NAND on dm355 and dm6446 EVMs;
5279 and large page on dm355 EVM (packaged as two devices, not one).
5280
5281 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
5282 Signed-off-by: Scott Wood <scottwood@freescale.com>
5283
5284 commit 8e5e9b940cdede0debe528cdd7edccccbb3ebf2a
5285 Author: Wolfgang Denk <wd@denx.de>
5286 Date: Tue Jul 7 22:35:02 2009 +0200
5287
5288 Coding style cleanup; update CHANGELOG
5289
5290 Signed-off-by: Wolfgang Denk <wd@denx.de>
5291
5292 commit d318d0c44d8e91e937c4dad0c5b1d2f6bb9d9fd8
5293 Author: Stefan Roese <sr@denx.de>
5294 Date: Mon Jun 29 13:30:50 2009 +0200
5295
5296 UBI: Fix build problem noticed on Apollon (arm/testing repo)
5297
5298 This patch fixes a build problem noticed on Apollon by using
5299 mtd_dev_by_eb() instead of "/" as done in the Linux UBI version.
5300 So this brings the U-Boot UBI version more in sync with the Linux
5301 version again.
5302
5303 Signed-off-by: Stefan Roese <sr@denx.de>
5304
5305 commit 2efee52b09657e9353655b9dae9e1d1a67a2abe4
5306 Author: Prafulla Wadaskar <prafulla@marvell.com>
5307 Date: Mon Jul 6 20:29:15 2009 +0530
5308
5309 sf: Macronix additional chips supported
5310
5311 new chips supported:-
5312 MX25L1605D, MX25L3205D, MX25L6405D, MX25L12855E
5313 out of which MX25L6405D and MX25L12855E tested on Kirkwood platforms
5314
5315 Modified the Macronix flash support to use 2 bytes of device id instead of 1
5316 This was required to support MX25L12855E
5317
5318 Signed-off-by: Piyush Shah <spiyush@marvell.com>
5319 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5320 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5321
5322 commit dd54126715b89ed0c43322aa78b0dad306f043b6
5323 Author: Mike Frysinger <vapier@gentoo.org>
5324 Date: Fri Jun 19 03:27:28 2009 -0400
5325
5326 sf: sst: add sst25vf###b ids
5327
5328 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5329
5330 commit 7d907f0ea993b179a197d8db2a36f122bc673c2d
5331 Author: Mike Frysinger <vapier@gentoo.org>
5332 Date: Fri Jun 19 03:20:06 2009 -0400
5333
5334 sf: sst: fix sector size
5335
5336 Looks like when I was encoding the sector sizes, I forgot to divide by 8
5337 (due to the stupid marketing driven process that declares all sizes in
5338 useless megabits and not megabytes).
5339
5340 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5341
5342 commit ceb70b466e75ceb1a621b6163f7e31116bfc8094
5343 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5344 Date: Sun Jul 5 01:06:06 2009 +0200
5345
5346 nhk8815: fix MAKEALL
5347
5348 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5349
5350 commit d08e5ca301b69ab77ecdd34e2b06aee30d6057d1
5351 Author: Magnus Lilja <lilja.magnus@gmail.com>
5352 Date: Sat Jul 4 10:31:24 2009 +0200
5353
5354 MX31: Add NAND SPL boot support to i.MX31 PDK board.
5355
5356 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
5357
5358 commit 78eabb90b793fafe875a7469526d1715fa56cbb4
5359 Author: Prafulla Wadaskar <prafulla@marvell.com>
5360 Date: Mon Jun 29 20:55:54 2009 +0530
5361
5362 arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support
5363
5364 This patch abstracts Kirkwood arch specific changes to support ehci-kirkwood driver
5365
5366 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5367
5368 commit 095a460b49022e64df76134300643606e3acb4e9
5369 Author: Alessandro Rubini <rubini@unipv.it>
5370 Date: Mon Jun 29 10:52:37 2009 +0200
5371
5372 arm nomadik: use 1000 as HZ value and rewrite timer code
5373
5374 This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites
5375 timer code, which is now both correct and much smaller. Unused
5376 functions like udelay_masked() have been removed as no driver uses
5377 them, even the ones that are not currently active for this board.
5378 mtu.h is copied literally from the kernel sources.
5379
5380 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5381 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
5382 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5383
5384 commit f7aa59b29a451cc502078a9e4ba32345a4250c05
5385 Author: Alessandro Rubini <rubini@unipv.it>
5386 Date: Mon Jun 22 09:18:57 2009 +0200
5387
5388 arm nomadik: allow Nand and OneNand to coexists
5389
5390 The evaluation kit has both Nand and OneNand, both drivers are there
5391 and the two configurations only select a different default for the
5392 jffs partition. This adds the OneNand driver and cleans up storage.
5393
5394 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5395 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
5396
5397 commit fd14c41a861cd38ee2fe3abd61d59b57b4eb23c9
5398 Author: Alessandro Rubini <rubini@unipv.it>
5399 Date: Mon Jun 22 09:18:47 2009 +0200
5400
5401 arm nomadik: cleanup reset
5402
5403 There is only one public release of the Nomadik chip, so the ifdef
5404 in reset code as well as a define in the config file are not needed
5405
5406 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5407 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
5408
5409 commit ee1363f2da3996bafdecdd8f4e48862ebff3f271
5410 Author: Alessandro Rubini <rubini@unipv.it>
5411 Date: Mon Jun 22 09:18:37 2009 +0200
5412
5413 arm nomadik: rename board to nhk8815
5414
5415 This is an error in my side in the initial submission: nobody
5416 calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead.
5417
5418 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5419 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
5420
5421 commit 040f8f63e922bbfb8ba0958bf637f11a917f5c38
5422 Author: Stefano Babic <sbabic@denx.de>
5423 Date: Wed Jul 1 20:40:41 2009 +0200
5424
5425 xscale: add support for the polaris board
5426
5427 The Polaris board is based on the TrizepsIV module of
5428 Keith & Koep (http://www.keith-koep.com).
5429
5430 Signed-off-by: Stefano Babic <sbabic@denx.de>
5431
5432 commit 88bd97501314683b87f3f1edcf55b347c041b722
5433 Author: Stefano Babic <sbabic@denx.de>
5434 Date: Wed Jul 1 04:33:56 2009 +0200
5435
5436 xscale: fix USB initialization for Trizepsiv module
5437
5438 Due to change in the usb_board_init() prototype, the USB for
5439 the TrizepsIV was not correctly initialized.
5440 Removed dummy print from usb_board_stop().
5441
5442 Signed-off-by: Stefano Babic <sbabic@denx.de>
5443
5444 commit 0b785ddd60120cfb74d18e58c56054238219f6db
5445 Author: Prafulla Wadaskar <prafulla@marvell.com>
5446 Date: Wed Jul 1 20:34:51 2009 +0200
5447
5448 net: merge bugfix: Marvell Kirkwood gigabit ethernet driver
5449
5450 This patch looks okay on u-boot-net.git/next branch
5451 but when it was merged to u-boot.git/master the last line is missing
5452
5453 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5454 Acked-by: Ben Warren <biggerbadderben@gmail.com>
5455
5456 commit 33b1d3f43a16fbb79004075ce89ae4e618b288a2
5457 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
5458 Date: Tue Jun 30 21:03:37 2009 +0200
5459
5460 at91: Add esd gmbh MEESC board support
5461
5462 This patch adds support for esd gmbh MEESC board.
5463 The MEESC is based on an Atmel AT91SAM9263 SoC.
5464
5465 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
5466
5467 commit 21761540b43c7086c75ee9afb412da1e5ddde2e9
5468 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5469 Date: Tue Jun 30 21:03:35 2009 +0200
5470
5471 ARM: Update mach-types
5472
5473 update against linux v2.6.30
5474
5475 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5476
5477 commit 45627fce18139a74e0755124d27376b520db156c
5478 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
5479 Date: Tue Jun 30 23:03:33 2009 +0200
5480
5481 at91: Add CAN init function
5482
5483 To enable CAN init, CONFIG_CAN has to be defined in the board config file
5484 and at91_can_hw_init() has to be called in the board specific code.
5485
5486 CAN is available on AT91SAM9263 and AT91CAP9 SoC.
5487
5488 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
5489
5490 commit 2e23008e5dbde7fe4c4758bee5a393e1db796cdf
5491 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
5492 Date: Tue Jun 30 23:03:31 2009 +0200
5493
5494 arm: Kirkwood: Correct header define
5495
5496 Correct define typo (. -> ,)
5497
5498 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5499
5500 commit 8449f287f5c53d59db13c3c512e6bd1750b692d1
5501 Author: Magnus Lilja <lilja.magnus@gmail.com>
5502 Date: Wed Jul 1 01:07:55 2009 +0200
5503
5504 MX31: Add basic support for Freescale i.MX31 PDK board.
5505
5506 Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board).
5507
5508 This patch assumes that some other program performs the actual
5509 NAND boot.
5510
5511 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
5512 Acked-by: Fabio Estevam <fabioestevam@yahoo.com>
5513 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5514
5515 commit 8d460a573e2a2ac4834636903865a0428ad0e629
5516 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5517 Date: Tue Jun 23 00:12:01 2009 +0200
5518
5519 S3C24x0: extract interrupts from timer
5520
5521 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5522
5523 commit c8badbe500a752f42049e51042767ee62ea714e0
5524 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5525 Date: Sun Jun 28 14:14:21 2009 +0200
5526
5527 dm355/pm9261: add missing CONFIG_NET_MULTI
5528
5529 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5530
5531 commit 798bf9a9ade1cfbe85a16d180cad720927d8e10a
5532 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5533 Date: Tue Jun 23 00:12:01 2009 +0200
5534
5535 arm920t/interrupts: Move conditional compilation to Makefile
5536
5537 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5538
5539 commit 06e758e75c79ce8761866bf8165c443584a20893
5540 Author: Kim, Heung Jun <riverful@gmail.com>
5541 Date: Sat Jun 20 11:02:17 2009 +0200
5542
5543 move L2 cache enable/disable function to cache.c in the omap3 SoC directory
5544
5545 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
5546 CC: Dirk Behme <dirk.behme@googlemail.com>
5547 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5548
5549 commit d583ef5147066d3609de21f3beebbab99a19bad4
5550 Author: Thomas Lange <thomas@corelatus.se>
5551 Date: Sat Jun 20 11:02:17 2009 +0200
5552
5553 ARM DaVinci: EMIF settings
5554
5555 NAND module should not modify EMIF registers unrelated to CS2
5556 that is used for NAND, i.e. do not modify EWAIT config register
5557 or registers for other Chip Selects.
5558
5559 Without this patch, EMIF configurations made in board_init()
5560 will be invalidated.
5561
5562 Signed-off-by: Thomas Lange <thomas@corelatus.se>
5563
5564 commit 2600b8571a26c10c1c43401d7af38e2333cc5381
5565 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5566 Date: Sat Jun 20 11:02:17 2009 +0200
5567
5568 versatile: config coding style cleanup
5569
5570 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5571 Cc: Peter Pearse <peter.pearse@arm.com>
5572
5573 commit 4efb77d41f9c5d93f0f92dda60e742023fa03c72
5574 Author: Prafulla Wadaskar <prafulla@marvell.com>
5575 Date: Sat Jun 20 11:01:53 2009 +0200
5576
5577 arm: Kirkwood: Basic SOCs support
5578
5579 Kirkwood family controllers are highly integrated SOCs
5580 based on Feroceon-88FR131/Sheeva-88SV131/arm926ejs cpu core.
5581
5582 SOC versions supported:-
5583 1) 88F6281-A0 define CONFIG_KW88F6281_A0
5584 2) 88F6192-A0 define CONFIG_KW88F6192_A0
5585
5586 Other supported features:-
5587 1) get_random_hex() fucntion
5588 2) PCI Express port initialization
5589 3) NS16550 driver support
5590
5591 Contributors:
5592 Yotam Admon <yotam@marvell.com>
5593 Michael Blostein <michaelbl@marvell.com
5594
5595 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
5596 Acked-by: Stefan Rose <sr@denx.de>
5597 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5598
5599 commit 5c3d5817e5e68b828c165c501c215e793dc63aac
5600 Author: Prafulla Wadaskar <prafulla@marvell.com>
5601 Date: Sat Jun 20 11:01:52 2009 +0200
5602
5603 arm: generic cache.h for ARM architectures
5604
5605 This patch is required for Kirkwood SoC support
5606 may be used by other ARM architectures
5607
5608 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5609
5610 commit 9c8c706c92e53433a871a563946c38075d76504d
5611 Author: Matthias Ludwig <mludwig@ultratronik.de>
5612 Date: Sat Jun 20 11:01:50 2009 +0200
5613
5614 OMAP3EVM: fix typo. replace CS6 by CS5, no functionality change
5615
5616 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
5617
5618 commit 0aafde1dc76d6d65d6be10bf499ec86d9ffee8b9
5619 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
5620 Date: Wed Jun 24 08:32:09 2009 +0200
5621
5622 at91sam9260/9263: add back up for the rst(reset controller).
5623
5624 On the boards at91sam9260ek, at91sam9263ek and afed9260, the rstc register was
5625 set to 0 after being set to 500 ms for the PHY reset.
5626 Do backup the old reset length and restore it after the MACB initialisation.
5627
5628 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
5629 Signed-off-by: Stelian Pop <stelian@popies.net>
5630
5631 commit afb0b1315c048ce2b1f35f0183b8b118ad0c14e1
5632 Author: Kumar Gala <galak@kernel.crashing.org>
5633 Date: Fri Jul 3 12:45:44 2009 -0500
5634
5635 fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code
5636
5637 sys_eeprom.c: In function 'do_mac':
5638 sys_eeprom.c:323: warning: dereferencing type-punned pointer will break strict-aliasing rules
5639 sys_eeprom.c: In function 'mac_read_from_eeprom':
5640 sys_eeprom.c:395: warning: dereferencing type-punned pointer will break strict-aliasing rules
5641
5642 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5643
5644 commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
5645 Author: Peter Tyser <ptyser@xes-inc.com>
5646 Date: Tue Jun 30 17:15:51 2009 -0500
5647
5648 83xx: Add support for fsl_dma driver
5649
5650 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5651 Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu>
5652 Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
5653 Acked-by: Kim Phillips <kim.phillips@freescale.com>
5654 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5655
5656 commit 9adda5459ca62120c0c50b82b766fe1cf6925bbf
5657 Author: Peter Tyser <ptyser@xes-inc.com>
5658 Date: Tue Jun 30 17:15:50 2009 -0500
5659
5660 83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
5661
5662 Update 83xx architecture's CONFIG_ECC_INIT_VIA_DDRC references to
5663 CONFIG_ECC_INIT_VIA_DDRCONTROLLER, which other Freescale architectures
5664 use
5665
5666 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5667 Acked-by: Kim Phillips <kim.phillips@freescale.com>
5668 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5669
5670 commit 039594a4301dadceb267db5e8b9c8c78b1bb86b5
5671 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5672 Date: Thu Jul 2 16:15:01 2009 +0530
5673
5674 8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
5675
5676 Defining the next two configs allows to switch the serial port from the
5677 console using the setenv stdin and stdout
5678 1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */
5679 2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */
5680
5681 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5682 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
5683 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5684
5685 commit 546b1032907df70f2dd0f98f3ad09885a88411e5
5686 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5687 Date: Thu Jul 2 16:14:40 2009 +0530
5688
5689 85xx: Adds GPIO registers to MPC85xx Memory Map.
5690
5691 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5692 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5693
5694 commit 5da6f806b400372b8a0664f3282c9e83a402eb66
5695 Author: Peter Tyser <ptyser@xes-inc.com>
5696 Date: Tue Jun 30 17:26:01 2009 -0500
5697
5698 86xx: XPedite5170 board support
5699
5700 Initial support for Extreme Engineering Solutions XPedite5170 -
5701 a MPC8640-based 3U VPX single board computer with a PMC/XMC
5702 site.
5703
5704 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5705 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5706
5707 commit e66f38da8434425aca8df08d06d9ef41b3478d3b
5708 Author: Timur Tabi <timur@freescale.com>
5709 Date: Wed Jul 1 16:51:59 2009 -0500
5710
5711 fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more
5712
5713 The calculate for rank density in compute_ranksize() for DDR3 used all
5714 integers for the expression, so the result was also a 32-bit integer, even
5715 though the 'bsize' variable is a u64. Fix the expression to calculate a
5716 true 64-bit value.
5717
5718 Signed-off-by: Timur Tabi <timur@freescale.com>
5719 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5720
5721 commit 6af015b86b86d94de7ca1b23a3890bc93a50c2ab
5722 Author: Peter Tyser <ptyser@xes-inc.com>
5723 Date: Tue Jun 30 17:15:49 2009 -0500
5724
5725 fsl_dma: Make DMA transactions snoopable
5726
5727 Make DMA transactions snoopable so that CPUs can keep caches up-to-date.
5728 This allows dma transactions to be used for operations such as memory
5729 copies without any additional cache control operations.
5730
5731 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5732 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5733
5734 commit 0d595f76bc9c7c8dff5bd31dffed87a840a03c56
5735 Author: Peter Tyser <ptyser@xes-inc.com>
5736 Date: Tue Jun 30 17:15:48 2009 -0500
5737
5738 fsl_dma: Break out common memory initialization function
5739
5740 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5741 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5742
5743 commit 79f4333ceb059049b3ee560167d6cbaec493695f
5744 Author: Peter Tyser <ptyser@xes-inc.com>
5745 Date: Tue Jun 30 17:15:47 2009 -0500
5746
5747 8xxx: Move dma_init() call to common code
5748
5749 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5750 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5751
5752 commit 191c7118592cd182f2dc7f46b4f72d9bed0e2c76
5753 Author: Peter Tyser <ptyser@xes-inc.com>
5754 Date: Tue Jun 30 17:15:46 2009 -0500
5755
5756 fsl_dma: Move dma function prototypes to common header file
5757
5758 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5759 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5760
5761 commit 7892f619d40f4196e41e7114c5dfee9fad0f572f
5762 Author: Peter Tyser <ptyser@xes-inc.com>
5763 Date: Tue Jun 30 17:15:45 2009 -0500
5764
5765 8xxx: Rename dma_xfer() to dmacpy()
5766
5767 Also update dmacpy()'s argument order to match memcpy's and use
5768 phys_addr_t/phy_size_t for address/size arguments
5769
5770 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5771 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5772
5773 commit 484919cf3351212ebf748b9b13ece1ddaf7e7d1c
5774 Author: Peter Tyser <ptyser@xes-inc.com>
5775 Date: Tue Jun 30 17:15:44 2009 -0500
5776
5777 fsl_dma: Fix Channel Start bug in dma_check()
5778
5779 The Channel Start (CS) bit in the Mode Register (MR) should actually be
5780 cleared as the comment in the code suggests. Previously, CS was being
5781 set, not cleared.
5782
5783 Assuming normal operation of the DMA engine, this change shouldn't have
5784 any real affect.
5785
5786 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5787 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5788
5789 commit 51402ac12be9a0025f16db51fbde7c050a54e5fe
5790 Author: Peter Tyser <ptyser@xes-inc.com>
5791 Date: Tue Jun 30 17:15:43 2009 -0500
5792
5793 fsl_dma: Add support for arbitrarily large transfers
5794
5795 Support DMA transfers larger than the DMA controller's limit of
5796 (2 ^ 26 - 1) bytes
5797
5798 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5799 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5800
5801 commit a730393a362741c318b21771b8d7b2647e546c3e
5802 Author: Peter Tyser <ptyser@xes-inc.com>
5803 Date: Tue Jun 30 17:15:42 2009 -0500
5804
5805 fsl_dma: Use proper I/O access functions
5806
5807 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5808 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5809
5810 commit 9c06071a6077ba95e9d43226156e39567d5d064a
5811 Author: Peter Tyser <ptyser@xes-inc.com>
5812 Date: Tue Jun 30 17:15:41 2009 -0500
5813
5814 fsl_dma: Add bitfield definitions for common registers
5815
5816 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5817 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5818
5819 commit 017f11f68ef543e866be033bcb7b8058a8a380d8
5820 Author: Peter Tyser <ptyser@xes-inc.com>
5821 Date: Tue Jun 30 17:15:40 2009 -0500
5822
5823 8xxx: Break out DMA code to a common file
5824
5825 DMA support is now enabled via the CONFIG_FSL_DMA define instead of the
5826 previous CONFIG_DDR_ECC
5827
5828 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5829 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5830
5831 commit 6bbced671719518d0e28ff422623cd7ce396cbda
5832 Author: Mark Jackson <mpfj-list@mimc.co.uk>
5833 Date: Mon Jun 29 15:59:10 2009 +0100
5834
5835 Atmel LCD driver GUARDTIME fix
5836
5837 This patch allows the guard time parameter to be set in
5838 the Atmel LCDC driver.
5839
5840 By default, the previous value of 1 is used, unless the
5841 setting is defined elsewhere.
5842
5843 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
5844
5845 commit 29c35182462feea09f322e51913759a53359a3e0
5846 Author: Roy Zang <tie-fei.zang@freescale.com>
5847 Date: Tue Jun 30 13:56:23 2009 +0800
5848
5849 85xx: Add pci e1000 Ethernet support for P2020 board
5850
5851 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
5852 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5853
5854 commit 156984a3611c28093919d3e3c042f722b5548253
5855 Author: Kumar Gala <galak@kernel.crashing.org>
5856 Date: Thu Jun 18 08:39:42 2009 -0500
5857
5858 8xxx: Fix PCI bus address setup for 36-bit configs
5859
5860 We want the outbound PCI memory map to end at the 4G boundary so we
5861 can maximize the amount of space available for inbound mappings if
5862 we have large amounts of memory.
5863
5864 This matches the device tree setup in the kernel for the 36-bit physical
5865 configs for the platforms that have one (MPC8641 HPCN & MPC8572 DS).
5866
5867 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5868
5869 commit 480f61790565d77432b70b4016b73f2ae27d530f
5870 Author: Kumar Gala <galak@kernel.crashing.org>
5871 Date: Thu Jun 18 08:23:01 2009 -0500
5872
5873 86xx: Add CPU_TYPE_ENTRY support
5874
5875 Unify with 83xx and 85xx and use CPU_TYPE_ENTRY. We are going to use
5876 this to convey the # of cores and DDR width in the near future so its
5877 good to keep in sync.
5878
5879 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5880
5881 commit 98ab14e858bf60306d0aa3f0df5a7a5f88264aff
5882 Author: Peter Meerwald <pmeerw@pmeerw.net>
5883 Date: Mon Jun 29 15:48:33 2009 -0400
5884
5885 Blackfin: TWI/I2C: fix pure writes
5886
5887 If doing a pure write with register address and data (not a read/write
5888 combo transfer), we don't set the initial transfer length properly which
5889 ends up causing only the register address to be transferred.
5890
5891 While we're here, fix the i2c_write() parameter description of the buffer.
5892
5893 Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
5894 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5895
5896 commit 5710de45808eb8f1cc34b51dc3e67e2422113249
5897 Author: Prafulla Wadaskar <prafulla@marvell.com>
5898 Date: Sat May 30 01:13:33 2009 +0530
5899
5900 spi: Add Marvell Kirkwood SPI driver
5901
5902 This patch adds a SPI driver for the Marvell Kirkwood SoC's.
5903
5904 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5905
5906 commit 6bde171a4c4116cee179167cb65335a28f99932d
5907 Author: Minkyu Kang <mk7.kang@samsung.com>
5908 Date: Thu Jun 25 19:21:33 2009 +0900
5909
5910 s3c64xx: move the reset_cpu function
5911
5912 Because of the reset_cpu is soc specific, should be move to soc
5913 And read reset value from SYS_ID register instead of hard code
5914 this patch also supports s3c6410
5915
5916 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
5917
5918 commit 576afd4faeba1519bcb8c0083c3e4d45e5643a48
5919 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5920 Date: Sun May 17 00:58:37 2009 +0200
5921
5922 integrator: merge integratorap and integratorcp
5923
5924 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5925 Acked-by: Peter Pearse <peter.pearse@arm.com>
5926
5927 commit 46937b27427688a56bf7f5944a92d962dc43c3fa
5928 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5929 Date: Sun May 17 00:58:36 2009 +0200
5930
5931 integratorap/cp: use cfi driver
5932
5933 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5934 Acked-by: Peter Pearse <peter.pearse@arm.com>
5935
5936 commit de7a01abd8aeb167946f391327e1e0d1e01f90c9
5937 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5938 Date: Sun May 17 00:58:36 2009 +0200
5939
5940 integratorap/cp/versatile: remove non used functions
5941
5942 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5943 Acked-by: Peter Pearse <peter.pearse@arm.com>
5944
5945 commit f54851a6e3844b7e01581b5a9681f294118b7529
5946 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5947 Date: Sun May 17 00:58:36 2009 +0200
5948
5949 integratorcp: split timer support
5950
5951 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5952 Acked-by: Peter Pearse <peter.pearse@arm.com>
5953
5954 commit 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1
5955 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5956 Date: Sun May 17 00:58:36 2009 +0200
5957
5958 integratorap: split timer support
5959
5960 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5961 Acked-by: Peter Pearse <peter.pearse@arm.com>
5962
5963 commit 86baa085c52a7f3377a88074679c5aca9b9e4d38
5964 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5965 Date: Sun May 17 00:58:36 2009 +0200
5966
5967 integratorap: split pci support
5968
5969 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5970 Acked-by: Peter Pearse <peter.pearse@arm.com>
5971
5972 commit 379e9fc0a319b8f6ae16d763590bf023f3afb87c
5973 Author: Ilya Yanok <yanok@emcraft.com>
5974 Date: Mon Jun 8 04:12:50 2009 +0400
5975
5976 arm: add support for CONFIG_GENERIC_MMC
5977
5978 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
5979
5980 commit 47d19da4d3f9ac4787abe9dee32406478424be52
5981 Author: Ilya Yanok <yanok@emcraft.com>
5982 Date: Mon Jun 8 04:12:46 2009 +0400
5983
5984 serial_mx31: allow it to work with mx27 too and rename to serial_mxc
5985
5986 UART hardware on i.MX27 is the same as on the i.MX31 so we just
5987 need to provide the driver with correct address of the registers.
5988
5989 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
5990
5991 commit 1dc4da749dbde27ec862f5b65703e8e4541fbba3
5992 Author: Ilya Yanok <yanok@emcraft.com>
5993 Date: Mon Jun 8 04:12:45 2009 +0400
5994
5995 mx27: basic cpu support
5996
5997 This patch adds generic code to support Freescale's i.MX27 SoCs.
5998
5999 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6000
6001 commit dd2f6965a6c71f6f711ec98827880152e022c236
6002 Author: Magnus Lilja <lilja.magnus@gmail.com>
6003 Date: Sat Jun 13 20:50:03 2009 +0200
6004
6005 i.MX31: Create a common device file.
6006
6007 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
6008
6009 commit 958f7da7887fea4a2091ae60944d62c1708c2c55
6010 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6011 Date: Sat Jun 13 20:50:02 2009 +0200
6012
6013 ARM: Add macros.h to be used in assembler file.
6014
6015 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6016
6017 commit 40c642bc19b9fa2906e3172487a522fee456340b
6018 Author: Magnus Lilja <lilja.magnus@gmail.com>
6019 Date: Sat Jun 13 20:50:01 2009 +0200
6020
6021 MX31: Add NAND SPL for i.MX31.
6022
6023 This patch adds the NAND SPL framework needed to boot i.MX31 boards
6024 from NAND.
6025
6026 It has been tested on a i.MX31 PDK board with large page NAND. Small
6027 page NANDs should work as well, but this has not been tested.
6028
6029 Note: The i.MX31 NFC uses a non-standard layout for large page NANDs,
6030 whether this is compatible with a particular setup depends on how
6031 the NAND device is programmed by the flash programmer (e.g. JTAG
6032 debugger).
6033
6034 The patch is based on the work by Maxim Artamonov.
6035
6036 Signed-off-by: Maxim Artamonov <scn1874@yandex.ru>
6037 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
6038
6039 commit df81238b3e27a791da996a9208402ac8f40b9862
6040 Author: Magnus Lilja <lilja.magnus@gmail.com>
6041 Date: Sat Jun 13 20:50:00 2009 +0200
6042
6043 ARM1136: Introduce CONFIG_PRELOADER macro.
6044
6045 Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's
6046 in start.S. In preparation for adding support for NAND SPL
6047 the macro CONFIG_PRELOADER is introducted and replaces the
6048 CONFIG_ONENAND_IPL in start.S.
6049
6050 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
6051
6052 commit 8096c51fd4e611ed666dbe77767e81af5d94fc7b
6053 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6054 Date: Sat Jun 13 12:50:04 2009 +0200
6055
6056 at91: unify nor boot support
6057
6058 the lowlevel init sequence is the same so unify it
6059
6060 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6061
6062 commit 1b3b7c640d04df2ba9a9d947117d112a75fee7f4
6063 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6064 Date: Sat Jun 13 12:48:36 2009 +0200
6065
6066 at91sam9263ek: add nor flash support
6067
6068 this will allow you to store use it for the env and to boot directly U-Boot from
6069
6070 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6071
6072 commit 329492329700812c6df275aa0fda09d609cd0fd4
6073 Author: Ilko Iliev <iliev@ronetix.at>
6074 Date: Fri Jun 12 21:20:39 2009 +0200
6075
6076 at91: add support for the PM9261 board of Ronetix GmbH
6077
6078 The PM9261 board is based on the AT91SAM9261-EK board.
6079
6080 Here is the page on Ronetix website:
6081 http://www.ronetix.at/starter_kit_9261.html
6082
6083 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
6084 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6085
6086 commit 01550a2b650fbabc03334f9eadcc6083601a2414
6087 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6088 Date: Fri Jun 12 21:20:38 2009 +0200
6089
6090 pm9263: use macro instead of hardcode value for the lowlevel_init
6091
6092 optimize a few the RAM init
6093
6094 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
6095 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6096
6097 commit 7a11c7f9747240dc770954d320569596c0fbcb50
6098 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6099 Date: Fri Jun 12 21:20:37 2009 +0200
6100
6101 pm9263: lowlevel init update
6102
6103 move PSRAM init to pm9263.c
6104 this will allow us after to make the nor lowlevel_init generic
6105
6106 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6107
6108 commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0
6109 Author: Mike Frysinger <vapier@gentoo.org>
6110 Date: Mon Jun 15 00:25:19 2009 -0400
6111
6112 Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
6113
6114 The way the ALL variable is used allows for config.mk's to add more
6115 targets themselves without having to clutter up the top level Makefile.
6116
6117 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6118
6119 commit afac8b07172d7e4a65f86ce1ec4c783a6165ba1f
6120 Author: Mike Frysinger <vapier@gentoo.org>
6121 Date: Sun Jun 14 22:29:35 2009 -0400
6122
6123 Blackfin: fix SPI flash speed define name
6124
6125 The SPI flash define is named CONFIG_SF_DEFAULT_SPEED, not
6126 CONFIG_SF_DEFAULT_HZ, so fix the typos in the Blackfin boards.
6127
6128 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6129
6130 commit 9ae55ccf601de7a5b75eb418f3fc3d5eca92c106
6131 Author: Mike Frysinger <vapier@gentoo.org>
6132 Date: Sun Jun 14 22:26:31 2009 -0400
6133
6134 Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards
6135
6136 Building the compression code in lib_generic/ with -O2 rather than -Os
6137 gives a nice speed boost without too much code size increase.
6138
6139 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6140
6141 commit fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4
6142 Author: Mike Frysinger <vapier@gentoo.org>
6143 Date: Sun Jun 14 21:23:27 2009 -0400
6144
6145 Blackfin: bf548-ezkit: bump up monitor size
6146
6147 The latest version of U-Boot got a bit fatter in the BSS section which
6148 caused overflows in the RAM region, so increase the monitor size.
6149
6150 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6151
6152 commit bc43a8d8994c2f0be29e09b13b15da7f79e2c081
6153 Author: Vivi Li <vivi.li@analog.com>
6154 Date: Fri Jun 12 10:53:22 2009 +0000
6155
6156 Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash
6157
6158 The SPI flash layer is much stricter about sector usage than the eeprom
6159 layer we used to use, so update the env settings to better match the
6160 sector alignment of the flashes we use.
6161
6162 Signed-off-by: Vivi Li <vivi.li@analog.com>
6163 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6164
6165 commit 63cb0f4eb2d3cf15e7a1add19d1289f4ae75816c
6166 Author: Vivi Li <vivi.li@analog.com>
6167 Date: Fri Jun 12 10:33:23 2009 +0000
6168
6169 Blackfin: bump up default JTAG console timeout
6170
6171 The debug tools that interface with the other side of the JTAG console
6172 got much slower when generalizing things, so bump up the default timeout
6173 value on the U-Boot side to cope. Hopefully at some point we can improve
6174 the debug tools to speed things back up.
6175
6176 Signed-off-by: Vivi Li <vivi.li@analog.com>
6177 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6178
6179 commit c11ff779f4e0e0c7edc322e84dd229ad28709595
6180 Author: Mike Frysinger <vapier@gentoo.org>
6181 Date: Mon Jun 1 19:08:33 2009 -0400
6182
6183 Blackfin: add jtagconsole helper script
6184
6185 This script is similar to the netconsole script, but instead works with
6186 the JTAG console device driver that exists on Blackfin parts.
6187
6188 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6189
6190 commit 60f61e6d7655400bb785a2ef637581679941f6d1
6191 Author: Remy Bohmer <linux@bohmer.net>
6192 Date: Sat May 2 21:49:18 2009 +0200
6193
6194 Convert DM9000 driver for CONFIG_NET_MULTI
6195
6196 All drivers need to be converted to CONFIG_NET_MULTI.
6197 This patch converts the dm9000 driver.
6198
6199 Signed-off-by: Thomas Smits <ts.smits@gmail.com>
6200 Signed-off-by: Remy Bohmer <linux@bohmer.net>
6201 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6202
6203 commit 9131589ada4dda0718604d0a425ca46e52775f6e
6204 Author: Prafulla Wadaskar <prafulla@marvell.com>
6205 Date: Sun Jun 14 22:33:46 2009 +0530
6206
6207 net: Add Marvell Kirkwood gigabit ethernet driver
6208
6209 This patch adds a egiga driver for the Marvell Kirkwood SoC's.
6210
6211 Contributors:
6212 Yotam Admon <yotam@marvell.com>
6213 Michael Blostein <michaelbl@marvell.com
6214
6215 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
6216 Acked-by: Stefan Rose <sr@denx.de>
6217 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
6218 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6219
6220 commit 7835f4b94927ecb5affd99aad62592108db606ad
6221 Author: s-paulraj@ti.com <s-paulraj@ti.com>
6222 Date: Tue May 12 11:45:34 2009 -0400
6223
6224 DaVinci Network Driver Updates
6225
6226 Different flavours of DaVinci SOC's have differences in their EMAC IP
6227 This patch does the following
6228 1) Updates base addresses for DM365
6229 2) Updates MDIO frequencies for DM365 and DM646x
6230 3) Update EMAC wrapper registers for DM365 and DM646x
6231
6232 Patch applies to u-boot-net git. the EMAC driver itself
6233 will be updated shortly to add support for DM365 and DM646x
6234
6235 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6236 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6237
6238 commit 44578bea14e49035331a8f0e000e935e0d830ff4
6239 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6240 Date: Tue May 26 08:29:29 2009 -0400
6241
6242 Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
6243
6244 From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001
6245 From: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6246 Date: Wed, 20 May 2009 18:26:01 -0400
6247 Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
6248
6249 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6250 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6251
6252 commit c9a2aab1512fb2d132670fff9c27656d2eb949cd
6253 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
6254 Date: Thu Jun 4 09:39:48 2009 +0200
6255
6256 A VLAN tagged DHCP request/discover is 4 bytes short
6257
6258 The problem is that BOOTP_SIZE uses ETHER_HDR_SIZE which is 14 bytes.
6259 If sending a VLAN tagged frame (when env variable vlan is set) this
6260 should be VLAN_ETHER_HDR_SIZE=18 which is what NetSetEther returns.
6261
6262 Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
6263 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6264
6265 commit 6e0d2fc7fe0dcfa2f51ab8931d706940ee364193
6266 Author: Ben Warren <biggerbadderben@gmail.com>
6267 Date: Tue Apr 28 16:39:19 2009 -0700
6268
6269 Remove support for non-CONFIG_NET_MULTI on PPC4xx EMAC
6270
6271 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6272
6273 commit 8453587ef9137daf98b7c9cf4f3b865f4039cea0
6274 Author: Ben Warren <biggerbadderben@gmail.com>
6275 Date: Tue May 26 00:34:07 2009 -0700
6276
6277 Switched davinci_emac Ethernet driver to use newer API
6278
6279 Added CONFIG_NET_MULTI to all Davinci boards
6280 Removed all calls to Davinci network driver from board code
6281 Added cpu_eth_init() to cpu/arm926ejs/cpu.c
6282
6283 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6284
6285 commit 8cc13c13f1d154c8fa8fff56cea357ed38af76bf
6286 Author: Ben Warren <biggerbadderben@gmail.com>
6287 Date: Mon Apr 27 23:19:10 2009 -0700
6288
6289 Initial cleanup of Davinci Ethernet driver
6290
6291 Removed pointless #ifdefs
6292 Moved functions around in file in preparation for switch to newer API
6293
6294 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6295
6296 commit 09cdd1b9b01450e91786d26ff3c866dc9c8d8d6b
6297 Author: Ben Warren <biggerbadderben@gmail.com>
6298 Date: Tue May 26 00:17:59 2009 -0700
6299
6300 Moved Davinci Ethernet driver to drivers/net
6301
6302 This driver has been renamed davinci_emac.c
6303
6304 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6305
6306 commit 6f51deb7f298413cfcb0a36d24c97ef7dd69d48f
6307 Author: Prafulla Wadaskar <prafulla@marvell.com>
6308 Date: Tue May 19 01:40:16 2009 +0530
6309
6310 Marvell MV88E61XX Switch Driver support
6311
6312 Chips supported:-
6313 1. 88E6161 6 port gbe swtich with 5 integrated PHYs
6314 2. 88E6165 6 port gbe swtich with 5 integrated PHYs
6315 2. 88E6132 3 port gbe swtich with 2 integrated PHYs
6316 Platform specific configuration supported for:-
6317 default or router port vlan configuration
6318 led_init configuration
6319 mdip/n polarity reversal configuration
6320
6321 Note: This driver is supported and tested against
6322 kirkwood egiga interface
6323
6324 Contributors:
6325 Yotam Admon <yotam@marvell.com>
6326 Michael Blostein <michaelbl@marvell.com
6327
6328 Reviewed by: Ronen Shitrit <rshitrit@marvell.com>
6329 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
6330 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6331
6332 commit 091dc9f6adaf572b067ae91af92c4e7db33d7903
6333 Author: Zach LeRoy <zleroy@xes-inc.com>
6334 Date: Fri May 22 10:26:33 2009 -0500
6335
6336 tsec: Add support for BCM5482S PHY
6337
6338 Signed-off-by: Zach LeRoy <zleroy@xes-inc.com>
6339 Acked-by: Kumar Gala <galak@kernel.crashing.org>
6340 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6341
6342 commit 9ff67e5e4c719556d57f136a6453f8e4798d85c0
6343 Author: Mike Frysinger <vapier@gentoo.org>
6344 Date: Sun Jun 14 06:29:07 2009 -0400
6345
6346 Blackfin: unify u-boot linker scripts
6347
6348 All the Blackfin linker scripts were duplicated across the board dirs with
6349 no difference save from the semi-often used ENV_IS_EMBEDDED option. So
6350 unify all of them in the lib_blackfin/ dir and for the few boards that
6351 need to embedded the environment directly, add a LDS_BOARD_TEXT define for
6352 them to customize via their board config file. This is much simpler than
6353 forcing them to duplicate the rest of the linker script.
6354
6355 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6356
6357 commit f52efcae98cbb8a39f1d0535df8d9646a776af9e
6358 Author: Mike Frysinger <vapier@gentoo.org>
6359 Date: Fri May 29 17:02:37 2009 -0400
6360
6361 Blackfin: bf518f-ezbrd: enable SST SPI flash driver
6362
6363 The BF51xF parts have an internal SST SPI flash, so make sure the driver is
6364 enabled by default so we can access it.
6365
6366 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6367
6368 commit f348ab85f741dc98b2d202c04b5f430eace94925
6369 Author: Mike Frysinger <vapier@gentoo.org>
6370 Date: Fri Apr 24 17:22:40 2009 -0400
6371
6372 Blackfin: convert specific pre/post config headers to common method
6373
6374 The Blackfin port was using asm/blackfin-config-{pre,post}.h to setup
6375 common Blackfin board defines. The common method now is to use config.h,
6376 so convert blackfin-config-post.h to that. Rename the still Blackfin
6377 specific blackfin-config-pre.h to config-pre.h so the naming conventions
6378 at least line up.
6379
6380 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6381
6382 commit 7c7503ee6cd03c0f3b16e98d33d5aa23b30d65b1
6383 Author: Mike Frysinger <vapier@gentoo.org>
6384 Date: Fri Apr 24 17:11:47 2009 -0400
6385
6386 Blackfin: enable LZMA for all ADI boards
6387
6388 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6389
6390 commit 0e63dc0679451d48f8b727c543ce48b488f7a33f
6391 Author: Mike Frysinger <vapier@gentoo.org>
6392 Date: Mon Apr 13 05:52:45 2009 -0400
6393
6394 Blackfin: make default ADI env more flexible
6395
6396 Allow boards to easily override the root= and default bootcmd, allow
6397 people to tweak the file used in default bootcmds at runtime via one env
6398 var, and add a stock nandboot command.
6399
6400 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6401
6402 commit 0f52b560f19623ec651f9b9b40405d138ec251d3
6403 Author: Hoan Hoang <hnhoan@i-syst.com>
6404 Date: Sun Jan 18 22:44:17 2009 -0500
6405
6406 Blackfin: ibf-dsp561: new board port
6407
6408 Signed-off-by: Hoan Hoang <hnhoan@i-syst.com>
6409 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6410
6411 commit 3088189a15d219c48fd7e71623ca4daa08b80b59
6412 Author: Mike Frysinger <vapier@gentoo.org>
6413 Date: Sun Oct 12 23:28:33 2008 -0400
6414
6415 Blackfin: blackstamp: new board port
6416
6417 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6418
6419 commit 59ac9729700db1d4446c1a6db3ffe38398b7abb2
6420 Author: Mike Frysinger <vapier@gentoo.org>
6421 Date: Sun Oct 12 23:22:25 2008 -0400
6422
6423 Blackfin: bf537-srv1: new board port
6424
6425 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6426
6427 commit d7fdc1410b5fa5ef623b35a283733b6bcee3753b
6428 Author: Mike Frysinger <vapier@gentoo.org>
6429 Date: Sun Oct 12 23:16:52 2008 -0400
6430
6431 Blackfin: bf537-minotaur: new board port
6432
6433 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6434
6435 commit cb4b5e874f3c9b882a6f4394bbebbbd91fd01bbf
6436 Author: Mike Frysinger <vapier@gentoo.org>
6437 Date: Sun Oct 12 23:08:03 2008 -0400
6438
6439 Blackfin: bf537-pnav: new board port
6440
6441 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6442
6443 commit 59e4be945b6469e31eee721e0bcdccf4940d75ac
6444 Author: Mike Frysinger <vapier@gentoo.org>
6445 Date: Sun Oct 12 21:55:45 2008 -0400
6446
6447 Blackfin: cm-bf527: new board port
6448
6449 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6450
6451 commit 8b219cf07c186cc9d97354cf4b14f24a53d193c5
6452 Author: Mike Frysinger <vapier@gentoo.org>
6453 Date: Sun Oct 12 21:54:07 2008 -0400
6454
6455 Blackfin: cm-bf548: new board port
6456
6457 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6458
6459 commit 9417d9a21384279308abe5b4dd8dfd418742484c
6460 Author: Mike Frysinger <vapier@gentoo.org>
6461 Date: Sun Oct 12 21:49:28 2008 -0400
6462
6463 Blackfin: tcm-bf537: new board port
6464
6465 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6466
6467 commit e548321af00e869af7194896576beb9b68457ff7
6468 Author: Mike Frysinger <vapier@gentoo.org>
6469 Date: Sun Oct 12 21:45:05 2008 -0400
6470
6471 Blackfin: cm-bf561: new board port
6472
6473 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6474
6475 commit 8a9bab08a6fe93e5f3bf57b90438f1d2a67fad3c
6476 Author: Mike Frysinger <vapier@gentoo.org>
6477 Date: Sun Oct 12 21:41:06 2008 -0400
6478
6479 Blackfin: cm-bf537e: new board port
6480
6481 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6482
6483 commit e82d8a1f028bedb12c4ab88a35a935010d92898c
6484 Author: Mike Frysinger <vapier@gentoo.org>
6485 Date: Sun Oct 12 21:36:22 2008 -0400
6486
6487 Blackfin: cm-bf533: new board port
6488
6489 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6490
6491 commit dd14af7640f7d48d8e9768eeeb09592e6f94ed38
6492 Author: Mike Frysinger <vapier@gentoo.org>
6493 Date: Thu Nov 27 16:50:32 2008 -0500
6494
6495 Blackfin: new spibootldr command
6496
6497 Newer Blackfin parts can an on-chip ROM that can boot LDRs over SPI flashes,
6498 so add a new 'spibootldr' command to take advantage of it.
6499
6500 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6501
6502 commit 67c2829b646bb5b859088b36fbc89e971b9c1960
6503 Author: Mike Frysinger <vapier@gentoo.org>
6504 Date: Mon Oct 6 04:42:33 2008 -0400
6505
6506 Blackfin: support embedding the environment into loader files (LDRs)
6507
6508 For the most part, the Blackfin processor boots files in the LDR format
6509 rather than binary/ELF files. So we want to export the environment as a
6510 raw blob to the LDR utility so it can embed it at the right location.
6511
6512 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6513
6514 commit 31f30c9eb60d9ab0bd702e31f66345f99b34bdc6
6515 Author: Mike Frysinger <vapier@gentoo.org>
6516 Date: Sun Jun 14 11:03:48 2009 -0400
6517
6518 add %.c->%.i and %.c->%.s rules
6519
6520 The Linux kernel has some helper rules which allow you to quickly produce
6521 some of the intermediary files from C source. Specifically, you can
6522 create .i files which is the preprocessed output and you can create .s
6523 files which is the assembler output. This is useful when you are trying
6524 to track down header/macro expansion errors or inline assembly errors.
6525
6526 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6527 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6528
6529 commit 6d1ce387874c1060f27656f70151a52c511cd0e3
6530 Author: Mike Frysinger <vapier@gentoo.org>
6531 Date: Sat May 30 01:02:03 2009 -0400
6532
6533 make sure toplevel $(SUBDIRS) is always declared
6534
6535 The $(SUBDIRS) variable is only declared when U-Boot has been configured,
6536 but it gets used all the time. In the non-configured case, it is used to
6537 generate a helpful error message, but it needs to be set properly for that
6538 to occur.
6539
6540 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6541
6542 commit 1260233982f7dfbdfd1adee12daa95a0c0e84a43
6543 Author: Grzegorz Bernacki <gjb@semihalf.com>
6544 Date: Fri Jun 12 11:33:55 2009 +0200
6545
6546 digsy mtc: Add description to GPIO initial configuration.
6547
6548 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
6549
6550 commit 12304871bc7839145f2b4238923e9023616d7399
6551 Author: Grzegorz Bernacki <gjb@semihalf.com>
6552 Date: Fri Jun 12 11:33:54 2009 +0200
6553
6554 digsy MTC: Add 'mtc' command.
6555
6556 New command allows to:
6557 o check FW version
6558 o set LED status
6559 o set digital output status
6560 o get digital input status
6561
6562 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
6563
6564 commit f1f66edfc76f4a9f5b9f63972d90309784a8cae5
6565 Author: Grzegorz Bernacki <gjb@semihalf.com>
6566 Date: Fri Jun 12 11:33:53 2009 +0200
6567
6568 digsy MTC: Add SPI support.
6569
6570 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
6571
6572 commit 6325b7780dad8be26ba6fc25ef88ba338c50205b
6573 Author: Grzegorz Bernacki <gjb@semihalf.com>
6574 Date: Fri Jun 12 11:33:52 2009 +0200
6575
6576 mpc52xx: Add SPI driver.
6577
6578 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
6579
6580 commit 5ec5529b82f314ca2cf9c262cdfc985d5fc468a0
6581 Author: Mike Frysinger <vapier@gentoo.org>
6582 Date: Sun Jun 14 09:33:00 2009 -0400
6583
6584 allow boards to customize compiler options on a per-file/dir basis
6585
6586 With our Blackfin boards, we like to build the compression routines with
6587 -O2 as our tests show a pretty good size/speed tradeoff. For the rest of
6588 U-Boot though, we want to stick with the default -Os as that is mostly
6589 control code. So in our case, we would add a line like so to the board
6590 specific config.mk file:
6591 CFLAGS_lib_generic += -O2
6592
6593 Now all files under lib_generic/ will have -O2 appended to their build.
6594
6595 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6596 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6597
6598 commit 6b1f78ae6ad037382ad430b07064105c88f7ac02
6599 Author: Wolfgang Denk <wd@denx.de>
6600 Date: Sun Jun 14 21:30:39 2009 +0200
6601
6602 Prepare v2009.06
6603
6604 Update CHANGELOG, fix minor coding stylke issue. Update Makefile.
6605
6606 Signed-off-by: Wolfgang Denk <wd@denx.de>
6607
6608 commit c3147c1762f8caf99649051116a2411bdf887c10
6609 Author: Wolfgang Denk <wd@denx.de>
6610 Date: Sun Jun 14 20:31:36 2009 +0200
6611
6612 Revert "SMC911x driver fixed for NFS boot"
6613
6614 This reverts commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43,
6615 which causes compile warnings ("large integer implicitly truncated
6616 to unsigned type") on all systems that use this driver. The warning
6617 results from passing long constants (TX_CFG, RX_CFG) into
6618 smc911x_set_mac_csr() which is declared to accept "unsigned
6619 character" arguments only.
6620
6621 Being close to a release, with nobody available to actually test the
6622 code or the suggested fixes, it seems better to revert the patch.
6623
6624 commit 388517e4b745b00256c2fa201ce7bccb67b4f245
6625 Author: Peter Tyser <ptyser@xes-inc.com>
6626 Date: Fri May 22 10:26:37 2009 -0500
6627
6628 xes: Update Freescale clock code to work with 86xx processors
6629
6630 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6631 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6632
6633 commit 25623937bb81cae788d767e6c59a11c96fc82866
6634 Author: Peter Tyser <ptyser@xes-inc.com>
6635 Date: Fri May 22 10:26:36 2009 -0500
6636
6637 xes: Update Freescale DDR code to work with 86xx processors
6638
6639 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6640 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6641
6642 commit bef3013908bbc68f24084174a3ca86cc2a3eb986
6643 Author: Peter Tyser <ptyser@xes-inc.com>
6644 Date: Fri May 22 10:26:35 2009 -0500
6645
6646 xes: Update Freescale PCI code to work with 86xx processors
6647
6648 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6649 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6650
6651 commit 6442b71b522face775c1c31bd43121db3b4bf7d6
6652 Author: Peter Tyser <ptyser@xes-inc.com>
6653 Date: Fri May 22 10:26:32 2009 -0500
6654
6655 85xx: Add PORBMSR and PORDEVSR shift defines
6656
6657 Add defines similar to those already used for the the 86xx architecture.
6658 This will ease sharing of PCI code between the 85xx and 86xx
6659 architectures.
6660
6661 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6662 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6663
6664 commit 2f21ce4d546d31289ac49a680f78bcc9a792c6ec
6665 Author: Peter Tyser <ptyser@xes-inc.com>
6666 Date: Thu May 21 12:10:00 2009 -0500
6667
6668 fsl/85xx, 86xx: Sync up DMA code
6669
6670 The following changes were made to sync up the DMA code between the 85xx
6671 and 86xx architectures which will make it easier to break out common
6672 8xxx DMA code:
6673
6674 85xx:
6675 - Don't set STRANSINT and SPCIORDER fields in SATR register. These bits
6676 only have an affect when the SBPATMU bit is set.
6677 - Write 0xffffffff instead of 0xfffffff to clear errors in the DMA
6678 status register. We may as well clear all 32 bits of the register...
6679
6680 86xx:
6681 - Add CONFIG_SYS_MPC86xx_DMA_ADDR define to address DMA registers
6682 - Add clearing of errors in the DMA status register when initializing
6683 the controller
6684 - Clear the channel start bit in the DMA mode register after a transfer
6685
6686 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6687 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6688
6689 commit b1f12650d332eadac1306a772cab6096abee6ddd
6690 Author: Peter Tyser <ptyser@xes-inc.com>
6691 Date: Thu May 21 12:09:59 2009 -0500
6692
6693 fsl: Create common fsl_dma.h for 85xx and 86xx cpus
6694
6695 Break out DMA structures for the Freescale MPC85xx and MPC86xx cpus to
6696 reduce a large amount of code duplication
6697
6698 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6699 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6700
6701 commit 3bd8e532b5de20647aeaff94a1cbf33fb8b897b9
6702 Author: Haiying Wang <Haiying.Wang@freescale.com>
6703 Date: Wed May 20 12:30:41 2009 -0400
6704
6705 85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS
6706
6707 On MPC8569MDS board, UCC6 and UCC8 can be configured to work at SGMII mode via
6708 UEM on PB board. Since MPC8569 supports up to 4 Gigabit Ethernet ports, we
6709 disable UEC6 and UEC8 by default.
6710
6711 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6712 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6713
6714 commit e8efef7c1b457442583a8b9d38d8a5b667661616
6715 Author: Haiying Wang <Haiying.Wang@freescale.com>
6716 Date: Thu Jun 4 16:12:42 2009 -0400
6717
6718 drivers/qe: add sgmii support in for UEC driver
6719
6720 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6721 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6722
6723 commit 8e55258f144764de8902e9f078a7ad4c6c022c2f
6724 Author: Haiying Wang <Haiying.Wang@freescale.com>
6725 Date: Thu Jun 4 16:12:41 2009 -0400
6726
6727 qe: Pass in uec_info struct through uec_initialize
6728
6729 The uec driver contains code to hard code configuration information for the uec
6730 ethernet controllers. This patch creates an array of uec_info structures, which
6731 are then parsed by the corresponding driver instance to determine configuration.
6732 It also creates function uec_standard_init() to initialize all UEC interfaces
6733 for 83xx and 85xx.
6734
6735 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6736 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6737
6738 commit 9a6110897fc9282ade598bbba70ad72b940436e3
6739 Author: Haiying Wang <Haiying.Wang@freescale.com>
6740 Date: Thu Jun 4 16:12:40 2009 -0400
6741
6742 fsl: Update the number of ethxaddr in reading system eeprom
6743
6744 We support up to 8 mac addresses in system eeprom, so we define the macro
6745 MAX_NUM_PORTS to limit the mac_count to 8, and update the number of ethxaddr
6746 according to mac_count.
6747
6748 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6749 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6750
6751 commit f82107f637f167a77803c0933f9b24741a91c711
6752 Author: Haiying Wang <Haiying.Wang@freescale.com>
6753 Date: Wed May 20 12:30:37 2009 -0400
6754
6755 85xx: Add RMII support for MPC8569MDS
6756
6757 This patch supports UCC working at RMII mode on PIB board, fixup fdt blob to
6758 support rmii in kernel. It also changes the name of enable_mpc8569mds_qe_mdio to
6759 enalbe_mpc8569mds_qe_uec which is more accurate.
6760
6761 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6762 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6763
6764 commit 750098d33bc362ac4263863e92da158cf011063f
6765 Author: Haiying Wang <Haiying.Wang@freescale.com>
6766 Date: Wed May 20 12:30:36 2009 -0400
6767
6768 85xx: Add UEC3 and UEC4 support for MPC8569MDS
6769
6770 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6771 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6772
6773 commit 4e7b25e4fe777f525e426cbd58c3a3976c564f2e
6774 Author: Haiying Wang <Haiying.Wang@freescale.com>
6775 Date: Wed May 20 12:30:35 2009 -0400
6776
6777 drivers/qe: Add more SNUM number for QE
6778
6779 Some QE chips like 8569 need more SNUM numbers for supporting 4 UECs in RGMII-
6780 1000 mode.
6781
6782 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6783 Acked-by: Timur Tabi <timur@freescale.com>
6784 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6785
6786 commit 7211fbfa18f3061858696150ee6e9e093d9eceae
6787 Author: Haiying Wang <Haiying.Wang@freescale.com>
6788 Date: Thu May 21 15:34:14 2009 -0400
6789
6790 drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs
6791
6792 Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and
6793 define MAX_QE_RISC for QE based silicons.
6794
6795 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6796 Acked-by: Timur Tabi <timur@freescale.com>
6797 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6798
6799 commit b3d7f20f43a0f8d11c65e2f92153b5512b11580c
6800 Author: Haiying Wang <Haiying.Wang@freescale.com>
6801 Date: Wed May 20 12:30:29 2009 -0400
6802
6803 85xx: Add QE clk support
6804
6805 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6806 Acked-by: Timur Tabi <Timur@freescale.com>
6807 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6808
6809 commit 71b358cc26792889bbac35054d8e89d59b3fabc4
6810 Author: Kumar Gala <galak@kernel.crashing.org>
6811 Date: Wed May 20 01:11:33 2009 -0500
6812
6813 85xx: Added MPC8535/E identifiers
6814
6815 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6816
6817 commit 22419d77976bbd0df9fcf45513f1b96bd73e50d1
6818 Author: Kumar Gala <galak@kernel.crashing.org>
6819 Date: Thu May 21 08:36:43 2009 -0500
6820
6821 85xx: Always attempt ethernet device tree fixup
6822
6823 Its reasonable that we may have ethernet devices but dont have drivers
6824 or support enabled for them in u-boot and want the device tree fixed up.
6825 Unconditionally calling the ethernet fixup is fine since if we dont have
6826 ethernet nodes that match (or aliases) we will not attempt to do
6827 anything.
6828
6829 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6830 Acked-by: Timur Tabi <timur@freescale.com>
6831
6832 commit 52d6ad5ecfb22938441c8e3e62935fbd7b0f0920
6833 Author: Haiying Wang <Haiying.Wang@freescale.com>
6834 Date: Thu May 21 15:32:13 2009 -0400
6835
6836 drivers/qe: Rename the camel-case identifiers in uec
6837
6838 Rename riscRx/riscTx to risc_rx/risc_tx to comply with Codingstyle.
6839
6840 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6841
6842 commit feb7838f979ec2b581df3c791b9ae3284c36bb47
6843 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
6844 Date: Fri Apr 3 15:36:13 2009 -0500
6845
6846 85xx: Add P2020DS support
6847
6848 The patch adds support for P2020DS reference platform.
6849 DDR3 interface uses hard-coded initialization rather than SPD
6850 for now and was tested at 667Mhz. Some PIXIS register
6851 definitions and associated code sections need to be fixed.
6852 TSEC1/2/3, NOR flash, MAC/SYS ID EEPROM, PCIE1/2/3 are all
6853 tested under u-boot.
6854
6855 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
6856 Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
6857 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6858
6859 commit 229549a56d9ae413c00f64fd7c728c6879a1b54b
6860 Author: Stefan Roese <sr@denx.de>
6861 Date: Tue Jun 9 16:57:47 2009 +0200
6862
6863 mpc512x: MPC5121ADS: Add NAND support
6864
6865 This patch adds NAND support to the MPC5121ADS board. Please
6866 note that the image size increased since NAND support didn't
6867 fit in the current image size (256k).
6868
6869 Signed-off-by: Stefan Roese <sr@denx.de>
6870 Signed-off-by: Wolfgang Denk <wd@denx.de>
6871 Cc: Wolfgang Denk <wd@denx.de>
6872
6873 commit 35f2edbb6cad043ccd5ea6e78fe9b7aa21d8395f
6874 Author: Stefan Roese <sr@denx.de>
6875 Date: Tue Jun 9 16:57:03 2009 +0200
6876
6877 nand/mpc512x: Add MPC512x NAND support (NFC)
6878
6879 This patch adds NAND Flash Controller driver for MPC5121 revision 2.
6880 All device features, except hardware ECC and power management, are
6881 supported.
6882
6883 This NFC driver replaces the one orignally posted by John Rigby:
6884
6885 "[PATCH] Freescale NFC NAND driver"
6886
6887 It's a port of the Linux driver version posted by Piotr Ziecik a few
6888 weeks ago. Using this driver has the following advantages (from my
6889 point of view):
6890
6891 - Compatibility with the Linux NAND driver (e.g. ECC usage)
6892 - Better code quality in general
6893 - Resulting U-Boot image is a bit smaller (approx. 3k)
6894 - Better to sync with newer Linux driver versions
6895
6896 The only disadvantage I can see, is that HW-ECC is not supported right
6897 now. But this could be added later (e.g. port from Linux driver after
6898 it's supported there). Using HW-ECC on the MCP5121 NFC has a general
6899 problem because of the ECC usage in the spare area. This collides with
6900 JFFS2 for example.
6901
6902 Signed-off-by: Stefan Roese <sr@denx.de>
6903 Cc: Piotr Ziecik <kosmo@semihalf.com>
6904 Cc: Wolfgang Denk <wd@denx.de>
6905 Cc: John Rigby <jcrigby@gmail.com>
6906 Cc: Scott Wood <scottwood@freescale.com>
6907
6908 commit e53b507cee5d976953134a565c72fd32c967d7dd
6909 Author: Stefan Roese <sr@denx.de>
6910 Date: Tue Jun 9 11:50:40 2009 +0200
6911
6912 mpc512x: Add esd gmbh mecp5123 board support
6913
6914 MECP5123 is a MPC5121E based module by esd gmbh.
6915
6916 Signed-off-by: Stefan Roese <sr@denx.de>
6917 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
6918
6919 commit 6bd55cc65d0c3aa84d719518254fb3c650239ed9
6920 Author: Stefan Roese <sr@denx.de>
6921 Date: Tue Jun 9 11:50:05 2009 +0200
6922
6923 mcp512x: Add macros for SCFR LPC divisor access
6924
6925 Thos macros will be used by the esd mecp5123 board.
6926
6927 Signed-off-by: Stefan Roese <sr@denx.de>
6928
6929 commit c60dc8527dbb2a1318c03bc18bdebcfbd0164551
6930 Author: Stefan Roese <sr@denx.de>
6931 Date: Mon Jun 8 09:38:07 2009 +0200
6932
6933 mpc512x: Fix problem with I2C access before relocation
6934
6935 This is needed for the upcoming esd MECP5123 board port which uses
6936 I2C EEPROM for environment storage.
6937
6938 Signed-off-by: Stefan Roese <sr@denx.de>
6939 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
6940 Acked-by: Heiko Schocher<hs@denx.de>
6941
6942 commit 58f10460b05e0928d986b15edd4f2e1e99403f7e
6943 Author: Stefan Roese <sr@denx.de>
6944 Date: Thu Jun 4 13:35:39 2009 +0200
6945
6946 74xx_7xx: CPCI750: Add CPCI adapter/target support
6947
6948 The CPCI750 can be built as CPCI host or adapter/target board. This patch
6949 adds support for runtime detection of those variants.
6950
6951 Signed-off-by: Stefan Roese <sr@denx.de>
6952 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
6953
6954 commit ae7a2739d7a0704437376e229bb21940952c55be
6955 Author: Stefan Roese <sr@denx.de>
6956 Date: Fri Jun 5 05:45:41 2009 +0200
6957
6958 74xx_7xx: CPCI750: Enable access to PCI function > 0
6959
6960 The Marvell bridge 64360 supports serveral PCI functions, not only 0. This
6961 patch enables access to those functions.
6962
6963 Signed-off-by: Stefan Roese <sr@denx.de>
6964 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
6965
6966 commit e5b563e9ec54c3f6d702c8fa2b711b4a6150243a
6967 Author: Stefan Roese <sr@denx.de>
6968 Date: Thu Jun 4 13:35:37 2009 +0200
6969
6970 74xx_7xx: CPCI750: Minor coding style cleanup of cpci750.c
6971
6972 Signed-off-by: Stefan Roese <sr@denx.de>
6973 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
6974
6975 commit 0e5ef07d0d91bd3d87ebea0534f538561aa974d5
6976 Author: Stefan Roese <sr@denx.de>
6977 Date: Thu Jun 4 13:35:36 2009 +0200
6978
6979 74xx_7xx: CPCI750: Add loadpci command
6980
6981 This command is used to load/boot an OS-image which is transferred from
6982 the CPCI host to the CPCI target/adapter.
6983
6984 Signed-off-by: Stefan Roese <sr@denx.de>
6985 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
6986
6987 commit 0a14d6b8f4d21ff59a9b7686a49a77069a9fcd2a
6988 Author: Stefan Roese <sr@denx.de>
6989 Date: Thu Jun 4 13:35:35 2009 +0200
6990
6991 74xx_7xx: CPCI750: Add commandline editing/history
6992
6993 Signed-off-by: Stefan Roese <sr@denx.de>
6994 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
6995
6996 commit 60cfe87bd39e6f07f2b92eb4bff82bfd105f4724
6997 Author: Stefan Roese <sr@denx.de>
6998 Date: Thu Jun 4 16:55:34 2009 +0200
6999
7000 UBI: Add compile-time check for correct malloc area configuration
7001
7002 UBI is quite memory greedy and requires at least approx. 512k of malloc
7003 area. This patch adds a compile-time check, so that boards will not
7004 build with less memory reserved for this area (CONFIG_SYS_MALLOC_LEN).
7005
7006 Signed-off-by: Stefan Roese <sr@denx.de>
7007
7008 commit 7ce6031afc8671c8b47c6135b3678d43fcd02852
7009 Author: Prafulla Wadaskar <prafulla@marvell.com>
7010 Date: Mon Apr 6 21:24:43 2009 +0530
7011
7012 sf: new Macronix MX25xx SPI flash driver
7013
7014 Added macronix SF driver for MTD framework
7015 MX25L12805D is supported and tested
7016 TBD: sector erase implementation, other deivces support
7017
7018 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
7019 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7020
7021 commit 2a6cc58869305f346e389eefdfa96dea5146cb0c
7022 Author: Todor I Mollov <tmollov@ucsd.edu>
7023 Date: Sat Apr 4 07:14:44 2009 -0400
7024
7025 sf: atmel: implement power-of-two write/erase funcs
7026
7027 Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
7028 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7029 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7030
7031 commit 4bc6eb79be2a7317425575184324b94e3b43fbc2
7032 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
7033 Date: Mon May 25 17:23:18 2009 +0530
7034
7035 mpc85xx: 8536ds: Add USB related CONFIGs
7036
7037 This patch adds CONFIGs for enabling USB in mpc8536ds and also
7038 adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
7039 Copyright.
7040
7041 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7042 Signed-off-by: Remy Bohmer <linux@bohmer.net>
7043
7044 commit 6823e9b01290977c4d9c90381459c01f66e12e79
7045 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
7046 Date: Mon May 25 17:23:17 2009 +0530
7047
7048 mpc83xx: 8315erdb: Add USB related CONFIGs
7049
7050 This patch adds CONFIGs for enabling USB in mpc8315erdb and also
7051 adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
7052 Copyright.
7053
7054 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7055 Signed-off-by: Remy Bohmer <linux@bohmer.net>
7056
7057 commit a07bf180efc3c0de4a89a3bd49a7c7584dfb95a8
7058 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
7059 Date: Thu May 21 17:32:48 2009 +0530
7060
7061 mpc85xx: USB: Add support
7062
7063 The following patch adds 85xx-specific USB support and also
7064 revamps Copyright in immap_85xx.h
7065
7066 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7067 Signed-off-by: Remy Bohmer <linux@bohmer.net>
7068
7069 commit 4ef01010aa4799c759d75e67007fdd3a38c88c8a
7070 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
7071 Date: Mon May 25 17:23:16 2009 +0530
7072
7073 mpc83xx: USB: Reorganized its support
7074
7075 The following patch reorganizes/reworks the USB support for mpc83xx
7076 as under:-
7077
7078 * Moves the 83xx USB clock init from drivers/usb/host/ehci-fsl.c to
7079 cpu/mpx83xx/cpu_init.c
7080
7081 * Board specific usb_phy_type is read from the environment
7082
7083 * Adds USB EHCI specific structure in include/usb/ehci-fsl.h
7084
7085 * Copyrights revamped in most of the following files
7086
7087 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7088 Signed-off-by: Remy Bohmer <linux@bohmer.net>
7089
7090 commit ed90d2c87158e5114b6009fa95bb6417e4b27b3e
7091 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
7092 Date: Thu May 21 17:32:27 2009 +0530
7093
7094 mpc8xxx: USB: Relocates ehci-fsl.h to include/usb
7095
7096 The following patch moves 8xxx-specifc USB #defines from
7097 drivers/usb/host/ehci-fsl.h to include/usb.
7098
7099 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7100 Signed-off-by: Remy Bohmer <linux@bohmer.net>
7101
7102 commit cfd39cdf9422d3d25e9b3c058865f4c1f66f34da
7103 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
7104 Date: Thu May 21 17:32:15 2009 +0530
7105
7106 mpc8xxx: USB: Removed reenablement of its interface
7107
7108 To prepare for the 85xx USB support, which requires interface enablement
7109 only once in (specified) order, no different than instructions for
7110 enabling the interface under 83xx. It is unknown why the original author
7111 enabled the interface twice (checked for references in errata, etc).
7112
7113 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7114 Signed-off-by: Remy Bohmer <linux@bohmer.net>
7115
7116 commit 2c7920afaf96d9779304202cd8a355b4f7576a83
7117 Author: Peter Tyser <ptyser@xes-inc.com>
7118 Date: Fri May 22 17:23:25 2009 -0500
7119
7120 83xx: Replace CONFIG_MPC83[0-9]X with MPC83[0-9]x
7121
7122 Use the standard lowercase "x" capitalization that other Freescale
7123 architectures use for CPU defines to prevent confusion and errors
7124
7125 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7126 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7127
7128 commit 0f898604945af4543c1525fc33b6bae621a3b805
7129 Author: Peter Tyser <ptyser@xes-inc.com>
7130 Date: Fri May 22 17:23:24 2009 -0500
7131
7132 83xx: Replace CONFIG_MPC83XX with CONFIG_MPC83xx
7133
7134 Use the standard lowercase "xx" capitalization that other Freescale
7135 architectures use for CPU defines to prevent confusion and errors
7136
7137 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7138 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7139
7140 commit ba4feae90ca71de1681d5808f17e73224d8f03c4
7141 Author: Stefan Roese <sr@denx.de>
7142 Date: Tue Jun 2 16:53:16 2009 +0200
7143
7144 mpc512x: Use serial_setbrg() in serial_init() to not duplicate the code
7145
7146 This patch removes the duplicated code for baudrate generator configuration
7147 in the PSC serial_init() implementation by calling serial_setbrg() instead
7148 of duplicating the code.
7149
7150 Signed-off-by: Stefan Roese <sr@denx.de>
7151
7152 commit b8c1d6a54ff8195488b68e163de8ec31f1603496
7153 Author: Stefan Roese <sr@denx.de>
7154 Date: Tue Jun 2 16:53:15 2009 +0200
7155
7156 mpc512x: Fix PSC divisor calculation for baudrate setting
7157
7158 The wrong input frequency was used in serial_setbrg(). This patch fixes
7159 this by using ips_clk as input frequency for the PSC baudrate generator.
7160
7161 Signed-off-by: Stefan Roese <sr@denx.de>
7162
7163 commit 52568c3654b2b257016d52167805ae132faac14e
7164 Author: Wolfgang Denk <wd@denx.de>
7165 Date: Sat May 16 10:47:46 2009 +0200
7166
7167 MPC512x: add support for ARIA board
7168
7169 ARIA is a MPC5121E based COM Express module by Dave/DENX.
7170
7171 Signed-off-by: Wolfgang Denk <wd@denx.de>
7172 Cc: John Rigby <jcrigby@gmail.com>
7173
7174 commit 3b74e7ec58e2cc352b0a396a614065cfeb8d138f
7175 Author: Wolfgang Denk <wd@denx.de>
7176 Date: Sat May 16 10:47:45 2009 +0200
7177
7178 MPC512x: remove include/mpc512x.h
7179
7180 Move needed definitions (register descriptions etc.) from
7181 include/mpc512x.h into include/asm-ppc/immap_512x.h.
7182
7183 Instead of using a #define'd register offset, use a function that
7184 provides the PATA controller's base address.
7185
7186 All the rest of include/mpc512x.h are register offset definitions
7187 which can be eliminated by proper use of C structures.
7188
7189 There are only a few register offsets remaining that are needed in
7190 cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h
7191 which is intended as a temporary workaround only. In a later patch
7192 this file will be removed, too, and then auto-generated from the
7193 respective C structs.
7194
7195 Signed-off-by: Wolfgang Denk <wd@denx.de>
7196 Cc: John Rigby <jcrigby@gmail.com>
7197
7198 commit a927e491b2a326c1e9c4313e3ce4042988422697
7199 Author: Wolfgang Denk <wd@denx.de>
7200 Date: Sat May 16 10:47:44 2009 +0200
7201
7202 MPC512x FEC: get rid of duplicated struct ethernet_regs
7203
7204 Use existing struct fec512x instead.
7205
7206 Signed-off-by: Wolfgang Denk <wd@denx.de>
7207 Cc: John Rigby <jcrigby@gmail.com>
7208 Acked-by: Ben Warren <biggerbadderben@gmail.com>
7209
7210 commit 843efb1192cc8fd4f904a23dbab4e0fe3e1c5bc2
7211 Author: Wolfgang Denk <wd@denx.de>
7212 Date: Sat May 16 10:47:43 2009 +0200
7213
7214 MPC512x: use I/O accessors instead of pointer accesses
7215
7216 This commit changes the MPC512x code to use I/O accessor calls (i.e.
7217 out_*() and in_*()) instead of using deprecated pointer accesses.
7218
7219 Signed-off-by: Wolfgang Denk <wd@denx.de>
7220 Cc: John Rigby <jcrigby@gmail.com>
7221
7222 commit 19dc7e179268be148e550c36203208c662610d76
7223 Author: Wolfgang Denk <wd@denx.de>
7224 Date: Sat May 16 10:47:42 2009 +0200
7225
7226 MPC512x: add more hardware description to immap_512x.h
7227
7228 - add GPIO module description
7229 - add Address Latch Timing Register description
7230 - add IO Control Memory Map
7231 - add FEC Memory Map
7232
7233 Also change board/freescale/mpc5121ads/mpc5121ads.c and
7234 cpu/mpc512x/iopin.c as needed.
7235
7236 Signed-off-by: Wolfgang Denk <wd@denx.de>
7237 Cc: John Rigby <jcrigby@gmail.com>
7238
7239 commit 72601d04fdfdd4c7597afcf1f6aab654bd99366c
7240 Author: Wolfgang Denk <wd@denx.de>
7241 Date: Sat May 16 10:47:41 2009 +0200
7242
7243 Rename ads5121 board into mpc5121ads
7244
7245 We rename the board so we use a consistent name in U-Boot and in
7246 Linux. Also, we use this opportunity to move the board into the
7247 Freecale vendor directory.
7248
7249 Signed-off-by: Wolfgang Denk <wd@denx.de>
7250 Cc: John Rigby <jcrigby@gmail.com>
7251
7252 commit debf87415579c0f50aab9e0832976d4506babe0f
7253 Author: Wolfgang Denk <wd@denx.de>
7254 Date: Sat May 16 10:47:40 2009 +0200
7255
7256 cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type
7257
7258 Signed-off-by: Wolfgang Denk <wd@denx.de>
7259 Cc: John Rigby <jcrigby@gmail.com>
7260
7261 commit 8b251263191ec554967dd1add6237c1ba7f7eb25
7262 Author: Wolfgang Denk <wd@denx.de>
7263 Date: Sat May 16 10:47:39 2009 +0200
7264
7265 cpu/mpc512x/pci.c: minor coding style cleanup
7266
7267 Get rid of variable declaration in the middle of the code.
7268
7269 Signed-off-by: Wolfgang Denk <wd@denx.de>
7270 Cc: John Rigby <jcrigby@gmail.com>
7271
7272 commit de26ef99bddbce4ed225f93afcf0bee99c3b6f87
7273 Author: Wolfgang Denk <wd@denx.de>
7274 Date: Sat May 16 10:47:38 2009 +0200
7275
7276 mpc512x: Move common files to share them by several boards
7277
7278 We will soon see several new MPC521x based boards added. This patch
7279 moves files that are not board specific to a common directory so they
7280 can be shared by all such ports. It also splits off common IDE code
7281 into a new file, cpu/mpc512x/ide.c .
7282
7283 Signed-off-by: Wolfgang Denk <wd@denx.de>
7284 Cc: John Rigby <jcrigby@gmail.com>
7285
7286 commit 03e069dc0a765d506f78a68319acf33d432e035b
7287 Author: Wolfgang Denk <wd@denx.de>
7288 Date: Sat May 16 10:47:37 2009 +0200
7289
7290 mpc512x: change cpu/mpc512x/Makefile to use Kconfig style
7291
7292 Signed-off-by: Wolfgang Denk <wd@denx.de>
7293 Cc: John Rigby <jcrigby@gmail.com>
7294
7295 commit a89c33db96a1e55319a286dd4c3c05ca64ac6bfd
7296 Author: Wolfgang Denk <wd@denx.de>
7297 Date: Sun May 24 17:06:54 2009 +0200
7298
7299 General help message cleanup
7300
7301 Many of the help messages were not really helpful; for example, many
7302 commands that take no arguments would not print a correct synopsis
7303 line, but "No additional help available." which is not exactly wrong,
7304 but not helpful either.
7305
7306 Commit ``Make "usage" messages more helpful.'' changed this
7307 partially. But it also became clear that lots of "Usage" and "Help"
7308 messages (fields "usage" and "help" in struct cmd_tbl_s respective)
7309 were actually redundant.
7310
7311 This patch cleans this up - for example:
7312
7313 Before:
7314 => help dtt
7315 dtt - Digital Thermometer and Thermostat
7316
7317 Usage:
7318 dtt - Read temperature from digital thermometer and thermostat.
7319
7320 After:
7321 => help dtt
7322 dtt - Read temperature from Digital Thermometer and Thermostat
7323
7324 Usage:
7325 dtt
7326
7327 Signed-off-by: Wolfgang Denk <wd@denx.de>
7328
7329 commit 94796d8544d4248028141bad11c6a74b840e9d6e
7330 Author: Wolfgang Denk <wd@denx.de>
7331 Date: Sun May 24 19:17:29 2009 +0200
7332
7333 Make "usage" messages more helpful.
7334
7335 In case of incorrect command invocations U-Boot used to print pretty
7336 useless "usage" messages, for example:
7337
7338 => nand markbad
7339 Usage:
7340 nand - NAND sub-system
7341
7342 In the result, the user would have to run the "help" command to get
7343 the (available) information about correct command usage. Change this,
7344 so that this information gets always printed.
7345
7346 Note that this changes the user interface of all commands, but
7347 hopefully to the better.
7348
7349 Signed-off-by: Wolfgang Denk <wd@denx.de>
7350
7351 commit 4c94f6c54bbc4dc5f418da01d8ec01e2adf636be
7352 Author: Mike Frysinger <vapier@gentoo.org>
7353 Date: Sun May 24 02:26:19 2009 -0400
7354
7355 nvedit: speed up printing of environment
7356
7357 The printing code would check the same environment byte multiple times and
7358 write to the console one byte at a time. For some devices (such as the
7359 Blackfin JTAG console which operates in 8 bytes at a time), this is pretty
7360 damned slow. So create a small 16 byte buffer to fill up and send to puts
7361 as needed. In the process, unify the different print functions, shrink
7362 the resulting code (source and compiled), and avoid excess env reads as
7363 those too can be somewhat expensive depending on the board.
7364
7365 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7366
7367 commit 3112030a430553768de5d30c05bedf8710784452
7368 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7369 Date: Fri May 22 19:28:52 2009 +0200
7370
7371 config.mk: remove un-needed REMOTE_BUILD check
7372
7373 as $(obj) is empty when in tree build
7374
7375 %.s: %.S
7376 $(CPP) $(AFLAGS) -o $@ $<
7377
7378 and
7379
7380 $(obj)%.s: %.S
7381 $(CPP) $(AFLAGS) -o $@ $<
7382
7383 are the same
7384
7385 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7386 Acked-by: Mike Frysinger <vapier@gentoo.org>
7387
7388 commit 651351fe980b20217b014b9a888398f18d77951c
7389 Author: Tom Rix <Tom.Rix@windriver.com>
7390 Date: Wed May 20 07:55:41 2009 -0500
7391
7392 FAT replace compare_sign with strncmp.
7393
7394 The static function compare_sign is only used to compare the fs_type string
7395 and does not do anything more than what strncmp does.
7396
7397 The addition of the trailing '\0' to fs_type, while legal, is not needed
7398 because the it is never printed out and strncmp does not depend on NULL
7399 terminated strings.
7400
7401 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
7402
7403 commit ecb1dc892297d5d99876907328fed732feefeab2
7404 Author: Mike Frysinger <vapier@gentoo.org>
7405 Date: Wed May 20 04:35:14 2009 -0400
7406
7407 Add support for Linux-like kallsysms
7408
7409 The kernel stores address<->symbol names in it so things can be decoded at
7410 runtime. Do it in U-Boot, and we get nice symbol decoding when crashing.
7411
7412 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7413
7414 commit 36c9169aa6f79ddf604a3bca64e145654f94888b
7415 Author: Wolfgang Denk <wd@denx.de>
7416 Date: Sun May 17 16:01:54 2009 +0200
7417
7418 cmd_mtdparts.c: allow to omit definitions for default settings
7419
7420 There is actually no good reason to enforce that all board
7421 configuations must define default settings for "mtdids" and
7422 "mtdparts". Actually this may be difficult to handle, especially on
7423 boards where different sizes of flash chips can be fit, so there is no
7424 real "default" partition map for all boards.
7425
7426 Lift this arbitrary limitation.
7427
7428 Signed-off-by: Wolfgang Denk <wd@denx.de>
7429
7430 commit 864aa034f3a0e10ce710e8bbda171df3cab59414
7431 Author: Stefan Roese <sr@denx.de>
7432 Date: Tue May 12 14:31:56 2009 +0200
7433
7434 cmd_mtdparts: Move to common handling of FLASH devices via MTD layer
7435
7436 This patch removes all references to the direct CFI FLASH interface
7437 (via flash_info[]). Now that all FLASH types currently handled in
7438 mtdparts are available (if selected, see below) via the MTD infrastructure.
7439 This is NOR, NAND and OneNAND right now. This can be achieved by defining
7440 the following options:
7441
7442 CONFIG_MTD_DEVICE (for all FLASH types)
7443
7444 plus
7445
7446 CONFIG_FLASH_CFI_MTD (for NOR FLASH)
7447
7448 So we need to add those defines to the board config headers currently
7449 using the mtdparts commands. This is done via another patch, so
7450 we shouldn't break mtdparts compatibility.
7451
7452 One big advantage from this solution is that the cmd_mtdparts.c is
7453 *much* cleaner now. Lot's of #ifdef's are removed and the code itself
7454 is smaller. Additionally the newly added MDT concatenation feature
7455 can new be used via the mtdparts infrastructure and therefor via
7456 UBI etc.
7457
7458 Signed-off-by: Stefan Roese <sr@denx.de>
7459 Cc: Ladislav Michl <ladis@linux-mips.org>
7460 Cc: Scott Wood <scottwood@freescale.com>
7461
7462 commit d558107c18708050f05b6639b2192efb67c905dc
7463 Author: Stefan Roese <sr@denx.de>
7464 Date: Tue May 12 14:31:18 2009 +0200
7465
7466 mtd: Introduce CONFIG_MTD_DEVICE to select compilation of mtdcore.o
7467
7468 This new define enables mtdcore.c compilation and with this we can
7469 select the MTD device infrastructure needed for the reworked mtdparts
7470 command.
7471
7472 We now have the 2 MTD infrastructure defines, CONFIG_MTD_DEVICE and
7473 CONFIG_MTD_PARTITIONS. CONFIG_MTD_DEVICE is needed (as explained above)
7474 for the "mtdparts" command and CONFIG_MTD_PARTITIONS is needed for UBI.
7475
7476 Signed-off-by: Stefan Roese <sr@denx.de>
7477 Cc: Scott Wood <scottwood@freescale.com>
7478
7479 commit 942556a92a8c1eb1bd76584a5143f6f57dcb25ad
7480 Author: Stefan Roese <sr@denx.de>
7481 Date: Tue May 12 14:32:58 2009 +0200
7482
7483 mtd: MTD related config header changes (mtdparts command)
7484
7485 By changing the cmd_mtdparts to only use the MTD infrastructure and
7486 not the direct interface to the CFI NOR FLASH driver we now need
7487 to add the MTD infrastructure to all boards using those mtdparts
7488 commands. This patch adds those components:
7489
7490 CONFIG_MTD_DEVICE (for all FLASH types)
7491
7492 plus
7493
7494 CONFIG_FLASH_CFI_MTD (for NOR FLASH)
7495
7496 To all board maintainers: Please test this on your platforms and
7497 report any problems/issues found. Thanks.
7498
7499 Signed-off-by: Stefan Roese <sr@denx.de>
7500 Cc: Wolfgang Denk <wd@denx.de>
7501 Cc: Ron Madrid <info@sheldoninst.com>
7502 Cc: Georg Schardt <schardt@team-ctech.de>
7503 Cc: Michal Simek <monstr@monstr.eu>
7504 Cc: Ladislav Michl <ladis@linux-mips.org>
7505 Cc: Martin Krause <martin.krause@tqs.de>
7506 Cc: Gary Jennejohn <garyj@denx.de>
7507 Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
7508
7509 commit 8d2effea23e938631126a7888008a0637e13b389
7510 Author: Stefan Roese <sr@denx.de>
7511 Date: Mon May 11 16:03:55 2009 +0200
7512
7513 mtd: Update MTD infrastructure to support 64bit device size
7514
7515 This patch brings the U-Boot MTD infrastructure in sync with the current
7516 Linux MTD version (2.6.30-rc3). Biggest change is the 64bit device size
7517 support and a resync of the mtdpart.c file which has seen multiple fixes
7518 meanwhile.
7519
7520 Signed-off-by: Stefan Roese <sr@denx.de>
7521 Cc: Scott Wood <scottwood@freescale.com>
7522 Cc: Kyungmin Park <kmpark@infradead.org>
7523
7524 commit 0a57265533c412adf6024f4b4955141f4346b2b9
7525 Author: Stefan Roese <sr@denx.de>
7526 Date: Tue May 12 14:29:39 2009 +0200
7527
7528 mtd: Add MTD concat support to concatenate multiple MTD NOR devices
7529
7530 This patch adds concatenation support to the U-Boot MTD infrastructure.
7531 By enabling CONFIG_MTD_CONCAT this MTD CFI wrapper will concatenate
7532 all found NOR devices into one single MTD device. This can be used by
7533 e.g by UBI to access a partition that spans over multiple NOR chips.
7534
7535 Signed-off-by: Stefan Roese <sr@denx.de>
7536
7537 commit 55e0ed6078b10b0d425b6a0677f38a015c277df6
7538 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7539 Date: Sat Apr 25 14:57:52 2009 +0200
7540
7541 make MODEM SUPPORT generic instead of duplicate it
7542
7543 and fix comment
7544
7545 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7546
7547 Adjusted Copyright message.
7548
7549 Signed-off-by: Wolfgang Denk <wd@denx.de>
7550
7551 commit a30f519bd0cde78ba46b424314de94fdab863726
7552 Author: Tom Rix <Tom.Rix@windriver.com>
7553 Date: Tue Jun 2 20:53:56 2009 -0500
7554
7555 ZOOM2 detect the version of the zoom2 board at runtime.
7556
7557 There are currently 3 versions of the zoom2 board.
7558 The production board, that is currently being released.
7559 The beta board, similar in form to the production board but not released.
7560 The alpha board, a set of PCBs with a very limited circulation.
7561
7562 GPIO 94 is used to determine the version of the board. If GPIO 94 is clear,
7563 the board is a production board, otherwise it is a beta board.
7564
7565 The alpha board will likely be mistaken for a beta board. An alpha board
7566 was unavailible for testing.
7567
7568 This has been tested on the beta and production boards.
7569
7570 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
7571 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7572
7573 commit 718763c4745fd3d987a5576d2a67325e9444f9d4
7574 Author: Tom Rix <Tom.Rix@windriver.com>
7575 Date: Wed Jun 3 01:53:57 2009 -0500
7576
7577 Beagle Convert the board version detection to use the OMAP3 GPIO interface.
7578
7579 There is no new functionality in the change.
7580
7581 This change is a conversion from the using raw register access to using
7582 the OMAP3 GPIO API described in doc/README.omap3.
7583
7584 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
7585 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
7586
7587 commit 7caa13fdd2d3dc957b4e0a228810a3a4a8ba499b
7588 Author: Tom Rix <Tom.Rix@windriver.com>
7589 Date: Wed Jun 3 01:53:55 2009 -0500
7590
7591 Fix a typo in the instructions on using omap3's gpio interface.
7592
7593 Using the example for reading a gpio, shows the problem.
7594 NULL should be the gpio number.
7595
7596 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
7597 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
7598
7599 commit 0c9520efd651ce13451654a35307ec87d4a13a69
7600 Author: Tom Rix <Tom.Rix@windriver.com>
7601 Date: Fri May 29 18:57:32 2009 -0500
7602
7603 ZOOM2 Define GPIO banks used.
7604
7605 Enable the function and interface clocks for banks 2,3,5 and 6.
7606
7607 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
7608 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
7609
7610 commit 708cfb74b7c6df9c37d3c48988a154be79daefeb
7611 Author: Tom Rix <Tom.Rix@windriver.com>
7612 Date: Fri May 29 18:57:31 2009 -0500
7613
7614 OMAP3 Turn on the GPIO bank clocks
7615
7616 The function and interface clocks for each GPIO bank, except the first, must
7617 be explicitly turned on. These are controlled by the config level defines
7618 CONFIG_OMAP3_GPIO_n where n is from 2 to 6.
7619
7620 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
7621 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
7622
7623 commit 59272620c24549b5bcd03c94ba12ec302c1476a2
7624 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7625 Date: Thu Mar 26 15:26:01 2009 -0400
7626
7627 Coldfire M5271: Activate u-boot system timer interrupt.
7628
7629 This patch assigns the u-boot system timer interrupt to
7630 interrupt level 3, priority 6. Without this patch the interrupt
7631 will be a level 0, priority 0, which disables it and cause
7632 u-boot functions that relies on the timer (e.g. sleep command)
7633 to never return.
7634
7635 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7636
7637 commit dc26965ad3acdfb18780361d77a276b2843a90af
7638 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7639 Date: Mon Mar 23 13:35:48 2009 -0400
7640
7641 Compier warning cleanup
7642
7643 Follow up to git commit: 19b5b533ccd522abeb501d510750693c35e20456
7644
7645 Cleanup on compiler warnings on unused variables now that
7646 bd->bi_enetaddr is no longer used.
7647
7648 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7649
7650 commit 42a83765d54f042b4079e05a3438789542429981
7651 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7652 Date: Fri Mar 20 15:30:10 2009 -0400
7653
7654 Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt.
7655
7656 Ported from lib_ppc/interrupts.c, this adds the ability for
7657 the coldfire system timer to auto-reset the watchdog when
7658 dtimer_interrupts is called.
7659
7660 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7661
7662 commit a24d96e40e1ca66dde6e6c158e7ecffafc5a2199
7663 Author: Prafulla Wadaskar <prafulla@marvell.com>
7664 Date: Sun May 31 14:53:20 2009 +0200
7665
7666 arch_misc_init support for ARM architectures
7667
7668 This patch is required for Kirkwood support
7669 may be used by other ARM architectures
7670
7671 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
7672
7673 commit b2403589b4d9996394bafc73eca3623f43ac2c31
7674 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7675 Date: Sun May 31 14:53:18 2009 +0200
7676
7677 at91: move cpu info print to cpu
7678
7679 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7680
7681 commit b32e189079fa16e1b647ac6b949fd4e0a9435343
7682 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7683 Date: Sun May 31 12:44:46 2009 +0200
7684
7685 at91: move cpu name define to arm/arch/ cpu header
7686
7687 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7688
7689 commit 5bb59b3c906ee01adfaac9565443e5236a793079
7690 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7691 Date: Sun May 31 12:44:45 2009 +0200
7692
7693 at91: extract reset from timer
7694
7695 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7696
7697 commit 61cf851b09cf8b67009ec11fc47c16add6b142a5
7698 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7699 Date: Sun May 31 12:44:43 2009 +0200
7700
7701 omap24xx: rename reset file
7702
7703 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7704
7705 commit 9d4fc99dbdbfda1260aad478e83fca7cdf0e1a32
7706 Author: Dirk Behme <dirk.behme@googlemail.com>
7707 Date: Sun May 31 12:44:42 2009 +0200
7708
7709 OMAP3: Fix CKE1 MUX setting to allow self-refresh
7710
7711 The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX
7712 setting is needed for the second CS clock signal to allow the 2 RAM
7713 parts to be put in self-refresh correctly. This also works on rev B
7714 Beagle boards with 128M of RAM.
7715
7716 From: Steve Sakoman <steve@sakoman.com>
7717 From: Jean Pihet <jpihet@mvista.com>
7718 Signed-off-by: Jean Pihet <jpihet@mvista.com>
7719 Signed-off-by: Steve Sakoman <steve@sakoman.com>
7720 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7721
7722 commit 3962c4f9fc4482a6547f3c3d3d5e986e625abb8a
7723 Author: Dirk Behme <dirk.behme@googlemail.com>
7724 Date: Sun May 31 12:44:41 2009 +0200
7725
7726 OMAP3: Zoom2: Enable Board and CPU info
7727
7728 With other OMAP3 boards we recently switched to CPU and Board
7729 info API. From parallel merge, this is missing for Zoom2.
7730 Enable it for Zoom2, too.
7731
7732 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7733 Acked-by: Tom Rix <Tom.Rix@windriver.com>
7734
7735 commit 83ae698ff26b81b569ca32f7f2b008ad0da15e66
7736 Author: Tom Rix <Tom.Rix@windriver.com>
7737 Date: Sun May 31 12:44:39 2009 +0200
7738
7739 ZOOM2 Add led support.
7740
7741 This patch controls the large LED on the top left of the zoom2.
7742
7743 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
7744
7745 commit 660888b7fb8840ce169dcd2589e49ab44c46b87b
7746 Author: Tom Rix <Tom.Rix@windriver.com>
7747 Date: Sun May 31 12:44:37 2009 +0200
7748
7749 ZOOM2 Add serial support.
7750
7751 Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board.
7752 The default serial is from the USB connector on left side of the debug board.
7753 The USB connector will produce 2 of the 4 UARTS. On your host pick the first
7754 enumeration.
7755
7756 The details of the setting of the serial gpmc setup are not available.
7757 The values were provided by another party.
7758
7759 The serial port set up is the same with Zoom1.
7760 Baud rate 115200, 8 bit data, no parity, 1 stop bit, no flow.
7761
7762 The kernel bootargs are
7763 console=ttyS3,115200n8
7764
7765 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
7766
7767 commit 3ea201b016ab259a5ac8824af767569522768c47
7768 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7769 Date: Sun May 31 12:44:27 2009 +0200
7770
7771 lh7a40x: move serial driver to drivers/serial
7772
7773 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7774
7775 commit 379be585eb2343d8814a5cee5fb3da930d846bee
7776 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7777 Date: Sat May 16 22:48:46 2009 +0200
7778
7779 pxa: move serial driver to drivers/serial
7780
7781 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7782
7783 commit ad7e8aac6920f8b8a85b3cc2e93bca7458e99aa1
7784 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7785 Date: Sat May 9 13:21:19 2009 +0200
7786
7787 arm: remove cpu_init
7788
7789 move s3c44b0 to arch_cpu_init and as noone use cpu_init remove it
7790
7791 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7792
7793 commit c358d9c3f16571e8f825e81b75eaf32e228cb669
7794 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7795 Date: Sat May 9 13:21:18 2009 +0200
7796
7797 arm: unify interrupt init
7798
7799 all arm init the IRQ stack the same way
7800 so unify it in lib_arm/interrupts.c and then call arch specific interrupt init
7801
7802 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7803
7804 commit 10a451cd57cffbca875c97bbd8929059c5627ec6
7805 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7806 Date: Fri May 8 20:24:12 2009 +0200
7807
7808 arm: unify linker script
7809
7810 all arm boards except a few use the same cpu linker script
7811 so move it to cpu/$(CPU)
7812
7813 that could be overwrite in following order
7814 SOC
7815 BOARD
7816 via the corresponding config.mk
7817
7818 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7819
7820 commit 9475c63c7855edd863c93a9bb0f4b8e240d9d212
7821 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7822 Date: Sat May 16 10:02:05 2009 +0200
7823
7824 afeb9260: fix macb device init
7825
7826 uses PA10, PA11 for ETX2 and ETX3.
7827
7828 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7829
7830 commit 1bbae2b816d4ed38db2ebf42166a973b1ffc0df7
7831 Author: Stefan Roese <sr@denx.de>
7832 Date: Wed May 27 10:34:32 2009 +0200
7833
7834 ppc4xx: Remove PCI async bootup message if PCI is not used
7835
7836 Signed-off-by: Stefan Roese <sr@denx.de>
7837
7838 commit a3455c00510c5abf1e91743c4a02d8393b6df18d
7839 Author: Wolfgang Denk <wd@denx.de>
7840 Date: Fri May 15 09:19:52 2009 +0200
7841
7842 TQM834x: use buffered writes to accelerate writing to flash
7843
7844 Also enable display of 'E'mpty sectors in "flinfo" output.
7845
7846 Signed-off-by: Wolfgang Denk <wd@denx.de>
7847 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7848
7849 commit 4681e673a51c48f4c096aa3c8fae5e6217ffd58d
7850 Author: Wolfgang Denk <wd@denx.de>
7851 Date: Thu May 14 23:18:34 2009 +0200
7852
7853 TQM834x: add FDT support
7854
7855 Signed-off-by: Wolfgang Denk <wd@denx.de>
7856 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7857
7858 commit 929b79a0b5e48303ab04aae9d0abceb0c707f111
7859 Author: Wolfgang Denk <wd@denx.de>
7860 Date: Thu May 14 23:18:33 2009 +0200
7861
7862 TQM834x: fix environment size; add redundant env.
7863
7864 Also reserve more space for U-Boot as it will probably grow soon.
7865
7866 Signed-off-by: Wolfgang Denk <wd@denx.de>
7867 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7868
7869 commit 2ae0f35fd60c7345446835b95a4daff356e1f031
7870 Author: Thomas Lange <thomas@corelatus.se>
7871 Date: Sun May 3 20:07:33 2009 +0200
7872
7873 ARM DaVinci: Reset with watchdog enabled
7874
7875 Once the Davinci watchdog has been enabled, the timeout
7876 value cannot be changed. If the timeout in use is long,
7877 it can take a long time for card to reset. By writing
7878 an invalid service key, we can trigger an immediate reset.
7879
7880 Signed-off-by: Thomas Lange <thomas@corelatus.se>
7881
7882 commit 6cc7ba9ed43106946aa9aa868302aa2faf1d17be
7883 Author: Wolfgang Denk <wd@denx.de>
7884 Date: Fri May 15 10:07:43 2009 +0200
7885
7886 video: Add an option to skip video initialization
7887
7888 This patch adds an option to skip the video initialization on for all
7889 video drivers. This is needed for the CPCI750 which can be built as
7890 CPCI host and adapter/target board. And the adapter board can't
7891 access the video cards located on the CompactPCI bus.
7892
7893 Signed-off-by: Stefan Roese <sr@denx.de>
7894 Cc: Anatolij Gustschin <agust@denx.de>
7895
7896 Rebased against simplifying patch.
7897 Signed-off-by: Wolfgang Denk <wd@denx.de>
7898
7899 commit f62f64692ff7f6226ad221d5df6487ea5ef39bdd
7900 Author: Wolfgang Denk <wd@denx.de>
7901 Date: Fri May 15 10:07:42 2009 +0200
7902
7903 drv_video_init(): simplify logic
7904
7905 Simplify nesting of drv_video_init() and use a consistent way of
7906 indicating failure / success. Before, it took me some time to realize
7907 which of the returns was due to an error condition and which of them
7908 indicated success.
7909
7910 Signed-off-by: Wolfgang Denk <wd@denx.de>
7911 Cc: Anatolij Gustschin <agust@denx.de>
7912
7913 commit 1699da6297b8c22da16cf85b3c79192f1a6d70ca
7914 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7915 Date: Wed May 13 21:01:13 2009 +0200
7916
7917 at91: regroup IP hw init in one file per soc
7918
7919 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7920
7921 commit 28b00324becf3552134ae1e086509dc9c3d6e932
7922 Author: David Brownell <dbrownell@users.sourceforge.net>
7923 Date: Fri May 15 23:48:37 2009 +0200
7924
7925 dm355 evm support
7926
7927 Initial U-Boot support for the DaVinci DM355 EVM. This is a board
7928 from Spectrum Digital. Board docs include schematic and firmware
7929 for its microcontroller:
7930
7931 http://c6000.spectrumdigital.com/evmdm355/revd/
7932
7933 Most of the DM355 chip is fully documented by TI, the most notable
7934 exception being the MPEG/JPEG coprocessor (programmable using codecs
7935 available at no cost from TI), which is omitted from its DM335 sibling:
7936
7937 http://focus.ti.com/docs/prod/folders/print/tms320dm355.html
7938
7939 This version can boot from the on-board DM9000 Ethernet chip, after
7940 being loaded (from NAND, MMC/SD, or UART). In the near future, NAND
7941 and USB support could be added ... NAND support is being held back
7942 until the support for the 4-bit ECC hardware is ready.
7943
7944 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
7945
7946 commit 136cf92dc9e84c9a1bf567f1fe741092bf765495
7947 Author: Sanjeev Premi <premi@ti.com>
7948 Date: Fri May 15 23:48:37 2009 +0200
7949
7950 OMAP3EVM: Set default bootfile
7951
7952 The current configuration doesn't define default
7953 bootfile; leading to this warning at execution:
7954
7955 OMAP3_EVM # dhcp
7956 ...
7957 ...
7958 DHCP client bound to address 192.168.1.11
7959 *** Warning: no boot file name; using 'AC18BE16.img'
7960 TFTP from server 0.0.0.0; our IP address is 192.168.1.11;
7961 sending through gateway 192.168.1.1
7962 Filename 'AC18BE16.img'.
7963 Load address: 0x82000000
7964 Loading: *
7965 TFTP error: 'File not found' (1)
7966
7967 Signed-off-by: Sanjeev Premi <premi@ti.com>
7968
7969 commit 1a09d05abfc6d4d4f1fce9f6bd0275bd1c08d4f5
7970 Author: s-paulraj@ti.com <s-paulraj@ti.com>
7971 Date: Fri May 15 23:48:36 2009 +0200
7972
7973 ARM DaVinci: Minor Updates to base addresses
7974
7975 Patch adds base addresses for DaVinci DM365. Updated patches for DM365
7976 will be posted soon.
7977
7978 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7979
7980 commit de193e8e369f5f029ed3b6e2fc60341098eea766
7981 Author: Tom Rix <Tom.Rix@windriver.com>
7982 Date: Fri May 15 23:48:36 2009 +0200
7983
7984 ZOOM2 Add support for debug board detection.
7985
7986 The logicpd web site is a good source for general information on this board.
7987 Please start looking here if the below links are broken.
7988 http://www.logicpd.com
7989
7990 This is a pdf of the product
7991 http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
7992
7993 This is a pdf of the product quick start guide.
7994 The debug board is described here.
7995 http://support.logicpd.com/downloads/1165/
7996
7997 This is a wiki showing the debug board in use
7998 https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP
7999
8000 The zoom2 has an auxillary board that contains the serial, net, jtag and
8001 battery simulator. This change supports a runtime check if the debug board is
8002 connected.
8003
8004 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8005
8006 commit 0c872ecd01d6782ae9d37b6eb721404a4a48f356
8007 Author: Tom Rix <Tom.Rix@windriver.com>
8008 Date: Fri May 15 23:48:36 2009 +0200
8009
8010 OMAP3 Port kernel omap gpio interface.
8011
8012 Port version 2.6.27 of the linux kernel's omap gpio interface to u-boot.
8013 The orignal source is in linux/arch/arm/plat-omap/gpio.c
8014
8015 See doc/README.omap3 for instructions on use.
8016
8017 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8018
8019 commit 376aee78dd66ae0dc4ce496cbe93ecc80aaad48e
8020 Author: Tom Rix <Tom.Rix@windriver.com>
8021 Date: Fri May 15 23:48:36 2009 +0200
8022
8023 ZOOM2 Add initial support for Zoom2
8024
8025 Zoom2 is a new board from Texas Instruments and LogicPD
8026
8027 The logicpd web site is a good source for general information on this board.
8028 Please start looking here if the below links are broken.
8029 http://www.logicpd.com
8030
8031 This is a pdf of the product
8032 http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
8033 This is the product description web page
8034 http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp
8035
8036 This patch provides a zoom2 base target by copying zoom1 and by making some
8037 obvious changes.
8038
8039 To configure, run
8040 make omap3_zoom2_config
8041
8042 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8043
8044 commit 53925acf1b5c1a1e6230cda2697640cd05bd1104
8045 Author: Sandeep Paulraj <s-paulraj@ti.com>
8046 Date: Fri May 15 23:48:33 2009 +0200
8047
8048 ARM DaVinci:Consolidate common u-boot.lds
8049
8050 The u-boot.lds is common for all DaVinci boards. The patch removes
8051 multiple instances and moves the u-boot.lds to /cpu/arm926ejs/davinci
8052 folder. This addresses one of the comments i received while submitting
8053 patches for DM3xx
8054
8055 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8056
8057 commit 68a531fd465f5c0b3d373e0010afed32e88d37c4
8058 Author: Tom Rix <Tom.Rix@windriver.com>
8059 Date: Fri May 15 23:47:52 2009 +0200
8060
8061 OMAP Consolidate common u-boot.lds to cpu layer.
8062
8063 The u-boot.lds file is common for all omap boards.
8064 Move a cleaned up version to the cpu layer and add makefile logic to use it.
8065
8066 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8067
8068 commit 65a76d4f947a193e57bb8f8093c481f27e059f8f
8069 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8070 Date: Fri May 15 23:47:14 2009 +0200
8071
8072 arm/dcc: add xscale support
8073
8074 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8075
8076 commit 66e8f9da6879fe37f3159b3997bff874842dc51d
8077 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8078 Date: Fri May 15 23:47:14 2009 +0200
8079
8080 arm/dcc: use static support to allow to use it at anytime
8081
8082 the dcc can be used at the start of the cpu
8083
8084 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8085
8086 commit 7893aa1eb6f52c3957efc301b436f1fa11e91a00
8087 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8088 Date: Fri May 15 23:47:13 2009 +0200
8089
8090 ARM: Update mach-types
8091
8092 update against linux v2.6.29
8093
8094 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8095
8096 commit 2907798926ee932f453ac8538e7a6c05c18428a5
8097 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8098 Date: Fri May 15 23:47:13 2009 +0200
8099
8100 arm920/926/926: remove non needed header
8101
8102 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8103
8104 commit 269dfea017b09c5a999d3053d00505c19789c350
8105 Author: David Brownell <david-b@pacbell.net>
8106 Date: Fri May 15 23:47:13 2009 +0200
8107
8108 davinci dm6446evm NAND update
8109
8110 This updates the optional (non-default!) NAND support for the
8111 DaVinci DM6446 EVM:
8112
8113 - include MTD partitioning, defaulting to what Linux uses
8114
8115 - use a flash-based BBT, which among other things speeds bootup
8116
8117 This matches code that's now queued for mainline Linux, and might
8118 even merge in an upcoming 2.6.30-rc; and the MTIDS are set up so
8119 that the U-Boot $mtdparts environment variable can be passed as-is
8120 on the kernel command line as a cmdlinepart override.
8121
8122 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8123
8124 commit 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc
8125 Author: David Brownell <dbrownell@users.sourceforge.net>
8126 Date: Fri May 15 23:47:12 2009 +0200
8127
8128 davinci: display correct clock info
8129
8130 Move the clock-rate dumping code into the cpu/.../davinci area
8131 where it should have been, enabled by CONFIG_DISPLAY_CPUINFO,
8132 updating the format and showing the DSP clock (where relevant).
8133
8134 Switch boards to use the cpuinfo() hook for this stuff.
8135
8136 Remove a few now-obsolete PLL #defines.
8137
8138 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8139
8140 commit daea928829098cae3c9ec6b801e52ba616725034
8141 Author: Tom Rix <Tom.Rix@windriver.com>
8142 Date: Fri May 15 23:47:12 2009 +0200
8143
8144 ZOOM1 Remove more legacy NAND defines.
8145
8146 These legacy NAND defines are no longer needed by this target.
8147
8148 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8149
8150 commit 65fd21c80fcaca2bbfe3ab06ab6ac68207408078
8151 Author: Tom Rix <Tom.Rix@windriver.com>
8152 Date: Fri May 15 23:47:12 2009 +0200
8153
8154 LED Add documentation describing the status_led and colour led API.
8155
8156 This document describes the u-boot status LED API.
8157 This allows common u-boot commands to use a board's leds to
8158 provide status for activities like booting and downloading files.
8159
8160 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8161
8162 commit 7cdf804f34378b910b4c4edd2dac7e3ca61c0825
8163 Author: Tom Rix <Tom.Rix@windriver.com>
8164 Date: Fri May 15 23:47:12 2009 +0200
8165
8166 ARM Add blue colour LED to status_led.
8167
8168 There is exiting support for red,yellow,green but no blue.
8169 The main LED on the zoom2 is a blue LED.
8170
8171 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8172
8173 commit b54384e3ba6b5535751f317fcd3940a53eed0d3a
8174 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8175 Date: Fri May 15 23:47:02 2009 +0200
8176
8177 arm: timer and interrupt init rework
8178
8179 actually the timer init use the interrupt_init as init callback
8180 which make the interrupt and timer implementation difficult to follow
8181
8182 so now rename it as int timer_init(void) and use interrupt_init for interrupt
8183
8184 btw also remane the corresponding file to the functionnality implemented
8185
8186 as ixp arch implement two timer - one based on interrupt - so all the timer
8187 related code is moved to timer.c
8188
8189 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8190
8191 commit 5b4bebe1d20c4f2b70d48b06aed1016785efcc25
8192 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8193 Date: Fri May 15 23:45:22 2009 +0200
8194
8195 OMAP3: Reorganize Makefile style
8196
8197 Reformat COBJS handling.
8198
8199 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8200 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8201
8202 commit b1966982718347f67317b3fb356439743ca68a37
8203 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8204 Date: Fri May 15 23:45:22 2009 +0200
8205
8206 OMAP3: Remove dublicated interrupt code
8207
8208 Remove duplicated interrupt code. Original, identical code can be found
8209 in lib_arm/interrupts.c
8210
8211 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8212 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8213
8214 commit ac7260a4190315eba4a6e526c764f6cad0bbf8c5
8215 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8216 Date: Fri May 15 23:45:22 2009 +0200
8217
8218 at91rm9200: move reset code to reset.c
8219
8220 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8221
8222 commit 2c75c78d94574ee996db2aa9b511258519471dd6
8223 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8224 Date: Fri May 15 23:45:22 2009 +0200
8225
8226 ixp/interrupts: Move conditional compilation to Makefile
8227
8228 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8229
8230 commit 8fc3bb4b0603516ad641e2de252a400b85fd869b
8231 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8232 Date: Fri May 15 23:45:20 2009 +0200
8233
8234 arm: cleanup remaining CONFIG_INIT_CRITICAL
8235
8236 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8237
8238 commit c20e28f49aaf38c7dede46d8f8fe8234fe90822c
8239 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8240 Date: Fri May 15 23:45:12 2009 +0200
8241
8242 arm946es: remove non used timer
8243
8244 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8245
8246 commit f1d944e30eb8ff89080fa03fb98d8fb5c82388d2
8247 Author: David Brownell <dbrownell@users.sourceforge.net>
8248 Date: Fri May 15 23:44:09 2009 +0200
8249
8250 davinci: add basic dm355/dm350/dm335 support
8251
8252 Add some basic declarations for DaVinci DM355/DM350/DM335 support,
8253 keyed on CONFIG_SOC_DM355. (DM35X isn't quite right because the
8254 DM357 is very different; while the DM355 is like a DM355 without
8255 the MPEG/JPEG coprocessor).
8256
8257 These have different peripherals than the DM6446, and some of
8258 the peripherals are at different addresses. Notably for U-Boot,
8259 there's no EMAC, and the NAND controller address is different
8260
8261 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8262
8263 commit bd36fdc146654f9de4e2ad346126e6bd2990fb19
8264 Author: David Brownell <dbrownell@users.sourceforge.net>
8265 Date: Fri May 15 23:44:09 2009 +0200
8266
8267 davinci: fix dm644x buglets
8268
8269 Fix two buglets in the dm644x support: don't set two must-be-zero
8270 bits in the UART management register; and only include the I2C hooks
8271 if the I2C driver is being included.
8272
8273 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8274
8275 commit f79043681ff44bae435c06f830e51e1546db7e19
8276 Author: David Brownell <dbrownell@users.sourceforge.net>
8277 Date: Fri May 15 23:44:08 2009 +0200
8278
8279 davinci: split out some dm644x-specific bits from psc
8280
8281 Split out DaVinci DM6446-specific bits from more generic bits:
8282
8283 - Add a CONFIG_SOC_DM644X. All current boards use DM6446 chips;
8284 DM6443 and DM6441 chips differ in available peripherals.
8285
8286 - Move most DM644X-specific bits from psc.c to a new dm644x.c file,
8287 which is conditionally built. It provides device-specific setup.
8288
8289 Plus minor coding style and comment updates with respect to the PSC.
8290
8291 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8292
8293 commit 48ef5729555f41f51618b6a3016ac5c53c7c75dc
8294 Author: David Brownell <dbrownell@users.sourceforge.net>
8295 Date: Fri May 15 23:44:08 2009 +0200
8296
8297 davinci: cpu-specific build uses conditional make syntax
8298
8299 Update cpu/arm926ejs/davinci/Makefile to use COBJ-y type syntax.
8300 Add the first conditional: for EMAC driver support. Not all
8301 chips have an EMAC; and boards might not use it, anyway.
8302
8303 This doesn't touch PHY configuration; that should eventually
8304 become conditional too.
8305
8306 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8307
8308 commit 7b7808ae6dace59287f565e9323cda7b098a5612
8309 Author: David Brownell <dbrownell@users.sourceforge.net>
8310 Date: Fri May 15 23:44:06 2009 +0200
8311
8312 davinci: move psc support board-->cpu
8313
8314 Move DaVinci PSC support from board/* to cpu/* where it belongs.
8315 The PSC module manages clocks and resets for all DaVinci-family
8316 SoCs, and isn't at all board-specific.
8317
8318 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8319
8320 commit 84f7411cb901b8df2391cf7e967ad0737f6194aa
8321 Author: David Brownell <david-b@pacbell.net>
8322 Date: Tue Apr 14 08:52:58 2009 -0700
8323
8324 DaVinci now respects SKIP_LOWLEVEL_INIT
8325
8326 Don't needlessly include lowlevel init code; that's only really
8327 needed with boot-from NOR (not boot-from-NAND). The 2nd stage
8328 loader (UBL) handles that before it loads U-Boot.
8329
8330 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8331
8332 commit 641e0925e4bf7adf8e2e04e3ad81b840fd71cadd
8333 Author: David Brownell <dbrownell@users.sourceforge.net>
8334 Date: Sun Apr 12 22:49:26 2009 -0700
8335
8336 DaVinci Ethernet cleanup
8337
8338 Chips without the EMAC controller won't need the utilities
8339 it uses to read an Ethernet address from EEPROM; so don't
8340 include them needlessly.
8341
8342 Use is_valid_ether() to validate the address from EEPROM.
8343 All-zero addresses aren't the only invalid addresses.
8344 A fully erased EEPROM returns all-ones, also invalid...
8345
8346 Switch those Ethernet utilities to use "%pM" for printing
8347 MAC addresses; and not say ROM when they mean EEPROM.
8348
8349 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8350 Acked-by: Ben Warren <biggerbadderben@gmail.com>
8351
8352 commit c790b04d230363d03939dc008bcc80f3ba4de1ae
8353 Author: Stefan Roese <sr@denx.de>
8354 Date: Mon May 11 15:50:12 2009 +0200
8355
8356 lib_arch/board.c: Move malloc initialization before flash_init()
8357
8358 This patch moves the malloc initialization before calling flash_init().
8359 Upcoming changes to the NOR FLASH common CFI driver with optional
8360 MTD infrastructure and MTD concatenation support will call malloc().
8361 And nothing really speaks against enabling malloc just a little earlier
8362 in the boot stage. Some architectures already enable malloc before
8363 calling flash_init() so they don't need any changes here.
8364
8365 Signed-off-by: Stefan Roese <sr@denx.de>
8366 Cc: Wolfgang Denk <wd@denx.de>
8367 Cc: Mike Frysinger <vapier@gentoo.org>
8368 Cc: Scott McNutt <smcnutt@psyent.com>
8369 Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
8370 Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8371 Cc: Daniel Hellstrom <daniel@gaisler.com>
8372 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8373 Cc: John Rigby <jcrigby@gmail.com>
8374
8375 commit d873133f2ba9bd613d5f6552c31cc70fb13f15d3
8376 Author: Stefan Roese <sr@denx.de>
8377 Date: Mon May 11 13:46:14 2009 +0200
8378
8379 ppc4xx: Add Sequoia RAM-booting target
8380
8381 This patch adds another build target for the AMCC Sequoia PPC440EPx
8382 eval board. This RAM-booting version is targeted for boards without
8383 NOR FLASH (NAND booting) which need a possibility to initially
8384 program their NAND FLASH. Using a JTAG debugger (e.g. BDI2000/3000)
8385 configured to setup the SDRAM, this debugger can load this RAM-
8386 booting image to the target address in SDRAM (in this case 0x1000000)
8387 and start it there. Then U-Boot's standard NAND commands can be
8388 used to program the NAND FLASH (e.g. "nand write ...").
8389
8390 Here the commands to load and start this image from the BDI2000:
8391
8392 440EPX>reset halt
8393 440EPX>load 0x1000000 /tftpboot/sequoia/u-boot.bin
8394 440EPX>go 0x1000000
8395
8396 Please note that this image automatically scans for an already
8397 initialized SDRAM TLB (detected by EPN=0). This TLB will not be
8398 cleared. This TLB doesn't need to be TLB #0, this RAM-booting
8399 version will detect it and preserve it. So booting via BDI2000
8400 will work and booting with a complete different TLB init via
8401 U-Boot works as well.
8402
8403 Signed-off-by: Stefan Roese <sr@denx.de>
8404
8405 commit 837db3d87f4bfe9261629fb4a1bb433506a3056a
8406 Author: Mike Frysinger <vapier@gentoo.org>
8407 Date: Wed May 6 08:41:45 2009 -0400
8408
8409 tools/envcrc: add --binary option to export embedded env
8410
8411 The --binary option to envcrc can be used to export the embedded env as a
8412 binary blob so that it can be manipulated/examined/whatever externally.
8413
8414 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8415
8416 commit 18cc7afd9a153a66854af862d14ba01c5496cf07
8417 Author: Ben Warren <biggerbadderben@gmail.com>
8418 Date: Tue Apr 28 16:50:53 2009 -0700
8419
8420 Enable CONFIG_NET_MULTI on all remaining PPC4xx boards
8421
8422 All in-tree PPC4xx boards now use CONFIG_NET_MULTI
8423
8424 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8425 Signed-off-by: Stefan Roese <sr@denx.de>
8426
8427 commit 70be6c2d40076f14062b892152649f9a62832fc9
8428 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8429 Date: Wed Apr 29 09:51:01 2009 +0200
8430
8431 4xx: Add support for DP405 hardware variants
8432
8433 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
8434 Signed-off-by: Stefan Roese <sr@denx.de>
8435
8436 commit de47a34d4de1d007a8951efd072283516d580ffa
8437 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8438 Date: Wed Apr 29 09:51:00 2009 +0200
8439
8440 4xx: Remove binary cpld bitstream from DP405 board
8441
8442 This patch removes the cpld binary bitstream that is
8443 used by esd's cpld command on DP405 boards.
8444
8445 Because u-boot with an external cpld bitstream may not
8446 take more space in flash than before the u-boot binary is
8447 shrinked a little bit. Some unused featues have been
8448 removed therefore.
8449
8450 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
8451 Signed-off-by: Stefan Roese <sr@denx.de>
8452
8453 commit 700d553fd3afe804086de8f73d95153315eb0c32
8454 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8455 Date: Wed Apr 29 09:50:59 2009 +0200
8456
8457 4xx: Remove binary cpld bitstream from VOM405 board
8458
8459 This patch removes the cpld binary bitstream that is
8460 used by esd's cpld command on VOM405 boards.
8461
8462 Because u-boot with an external cpld bitstream may not
8463 take more space in flash than before the u-boot binary is
8464 shrinked a little bit.
8465
8466 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
8467 Signed-off-by: Stefan Roese <sr@denx.de>
8468
8469 commit 0bb10630364c48d9857cbf5353da609fc4dd6751
8470 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8471 Date: Wed Apr 29 09:50:58 2009 +0200
8472
8473 4xx: Remove binary cpld bitstream from PMC405 board
8474
8475 This patch removes the cpld binary bitstream that is
8476 used by esd's cpld command on PMC405 boards.
8477
8478 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
8479 Signed-off-by: Stefan Roese <sr@denx.de>
8480
8481 commit 7cc635fb35f5b94e304fa2243d56758f57f6416b
8482 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8483 Date: Wed Apr 29 09:50:57 2009 +0200
8484
8485 4xx: Remove binary cpld bitstream from CMS700 board
8486
8487 This patch removes the cpld binary bitstream that is
8488 used by esd's cpld command on CMS700 boards.
8489
8490 Because u-boot with an external cpld bitstream may not
8491 take more space in flash than before the u-boot binary is
8492 shrinked a little bit. Some unused featues have been
8493 removed therefore.
8494
8495 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
8496 Signed-off-by: Stefan Roese <sr@denx.de>
8497
8498 commit c1b2f79788deec75773b1d944d8aaf4a6d5baf9e
8499 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8500 Date: Wed Apr 29 09:50:56 2009 +0200
8501
8502 esd/common: extend cpld command with address parameter
8503
8504 This patch adds support for an address parameter to esd's
8505 cpld command. This is in preparation to remove compiled-in
8506 binary cpld (xsvf) bitstreams.
8507
8508 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
8509 Signed-off-by: Stefan Roese <sr@denx.de>
8510
8511 commit 9166b776350d16460c7330bfb0a50154ea0a1903
8512 Author: Peter Tyser <ptyser@xes-inc.com>
8513 Date: Sat Apr 18 22:34:06 2009 -0500
8514
8515 cmd_i2c: Fix i2c help command output when CONFIG_I2C_MUX
8516
8517 When CONFIG_I2C_MUX was defined the output of 'help i2c' was not
8518 correct, eg:
8519
8520 => help i2c
8521 i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes.
8522 speed [speed] - show or set I2C bus speed
8523 i2c dev [dev] - show or set current I2C bus
8524 ...
8525
8526 It has been changed to:
8527 i2c speed [speed] - show or set I2C bus speed
8528 i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes
8529 i2c dev [dev] - show or set current I2C bus
8530 ...
8531
8532 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8533
8534 commit 0a45a6357b02e5ce5bf899a60db09def6a129fee
8535 Author: Peter Tyser <ptyser@xes-inc.com>
8536 Date: Sat Apr 18 22:34:05 2009 -0500
8537
8538 cmd_i2c: Clean up trivial helper functions
8539
8540 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8541
8542 commit e96ad5d3aba42f8ffe99f7cc5ec1bb9f21810035
8543 Author: Peter Tyser <ptyser@xes-inc.com>
8544 Date: Sat Apr 18 22:34:04 2009 -0500
8545
8546 cmd_i2c: Clean up i2c command argument parsing
8547
8548 argc and argv should only be modified once instead of once for
8549 every i2c sub-command
8550
8551 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8552
8553 commit 0f89c54be92773b23d66ac401ba6acb6144100c3
8554 Author: Peter Tyser <ptyser@xes-inc.com>
8555 Date: Sat Apr 18 22:34:03 2009 -0500
8556
8557 i2c: Update references to individual i2c commands
8558
8559 The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop,
8560 and isdram are no longer available so all references to them have been
8561 updated to the new form of "i2c <cmd>".
8562
8563 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8564
8565 commit d48eb5131d287f52bb85b4c58c8680a2e8e3b641
8566 Author: Peter Tyser <ptyser@xes-inc.com>
8567 Date: Sat Apr 18 22:34:02 2009 -0500
8568
8569 i2c: Remove deprecated individual i2c commands
8570
8571 The following individual I2C commands have been removed: imd, imm, inm,
8572 imw, icrc32, iprobe, iloop, isdram.
8573
8574 The functionality of the individual commands is still available via
8575 the 'i2c' command.
8576
8577 This change only has an impact on those boards which did not have
8578 CONFIG_I2C_CMD_TREE defined.
8579
8580 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8581
8582 commit 655b34a78adf60ef260981688837904208883ae9
8583 Author: Peter Tyser <ptyser@xes-inc.com>
8584 Date: Sat Apr 18 22:34:01 2009 -0500
8585
8586 i2c: Create common default i2c_[set|get]_bus_speed() functions
8587
8588 New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions
8589 replace a number of architecture-specific implementations.
8590
8591 Also, providing default functions will allow all boards to enable
8592 CONFIG_I2C_CMD_TREE. This was previously not possible since the
8593 tree-form of the i2c command provides the ability to display and modify
8594 the i2c bus speed which requires i2c_[set|get]_bus_speed() to be
8595 present.
8596
8597 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8598
8599 commit 8229e9c04f7019ddd76aea05d4dca044cbc9a34a
8600 Author: Peter Tyser <ptyser@xes-inc.com>
8601 Date: Sat Apr 18 22:34:00 2009 -0500
8602
8603 cm5200: Make function test command names more unique
8604
8605 Add "_test" to cm5200's function test command names to prevent
8606 overlap with common, global function names. Originally, the
8607 "do_i2c" function test command interfered with
8608 common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined.
8609
8610 The functions were also made static as they are not globally accessed.
8611
8612 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8613
8614 commit f0722ee762e8dada9d7f74ac2745e043f83aae85
8615 Author: Peter Tyser <ptyser@xes-inc.com>
8616 Date: Fri Apr 24 15:34:09 2009 -0500
8617
8618 tsi108_i2c: Add i2c_init() stub function
8619
8620 Add the i2c_init() function so that the tsi108_i2c.c driver fits
8621 U-Boot's standard I2C API which is utilized by cmd_i2c.c
8622
8623 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8624
8625 commit 8d907e79bc9babb27396e34be54cfdc36ff62fb9
8626 Author: Peter Tyser <ptyser@xes-inc.com>
8627 Date: Fri Apr 24 15:34:08 2009 -0500
8628
8629 mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define
8630
8631 Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that
8632 it can use the common 'i2c speed' command. Note that the I2C controller
8633 utilized by the mpc7448hpc2 has a fixed speed and cannot be changed
8634 dynamically.
8635
8636 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8637
8638 commit a056b1ce9e19b4d4ab3dd01c3f897dcd832cd37f
8639 Author: Peter Tyser <ptyser@xes-inc.com>
8640 Date: Fri Apr 24 15:34:07 2009 -0500
8641
8642 Marvell: i2c cleanup
8643
8644 The following changes were made, primarily to bring the Marvell i2c
8645 driver in line with U-Boot's current I2C API:
8646 - Made i2c_init() globally accessible
8647 - Made i2c_read() and i2c_write() return an integer
8648 - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
8649 offhand chance someone adds slave support in the future
8650
8651 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8652
8653 commit 54afc6ee10c8cd09598d814d49e601359b005e49
8654 Author: Peter Tyser <ptyser@xes-inc.com>
8655 Date: Fri Apr 24 15:34:06 2009 -0500
8656
8657 cpci750: i2c cleanup
8658
8659 The following changes were made, primarily to bring the cpci750 i2c
8660 driver in line with U-Boot's current I2C API:
8661 - Made i2c_init() globally accessible
8662 - Made i2c_read() and i2c_write() return an integer
8663 - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
8664 offhand chance someone adds slave support in the future
8665
8666 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8667
8668 commit 9c90a2c8e87414007a016b7cd099ac1e32fd301b
8669 Author: Peter Tyser <ptyser@xes-inc.com>
8670 Date: Fri Apr 24 15:34:05 2009 -0500
8671
8672 i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value
8673
8674 Many boards/controllers/drivers don't support an I2C slave interface,
8675 however CONFIG_SYS_I2C_SLAVE is used in common code so provide a
8676 default
8677
8678 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8679
8680 commit e7563aff174f77aa61dab1ef5d9b47bebaa43702
8681 Author: Kumar Gala <galak@kernel.crashing.org>
8682 Date: Thu Jun 11 23:42:35 2009 -0500
8683
8684 fsl-ddr: Fix handling of >4G of memory when !CONFIG_PHYS_64BIT
8685
8686 The ddr code computes most things as 64-bit quantities and had some places
8687 in the middle that it was using phy_addr_t and phys_size_t.
8688
8689 Instead we use unsigned long long through out and only at the last stage of
8690 setting the LAWs and reporting the amount of memory to the board code do we
8691 truncate down to what we can cover via phys_size_t.
8692
8693 This has the added benefit that the DDR controller itself is always setup
8694 the same way regardless of how much memory we have. Its only the LAW
8695 setup that limits what is visible to the system.
8696
8697 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8698
8699 commit d4b130dc80761b430dc5b410159cd158fca1a348
8700 Author: Kumar Gala <galak@kernel.crashing.org>
8701 Date: Thu Jun 11 23:40:34 2009 -0500
8702
8703 85xx: Use print_size to report amount of memory not mapped by TLBs
8704
8705 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8706
8707 commit 6e2aebc33fa740c068fe28d40eaf0319b7c7287e
8708 Author: Haiying Wang <Haiying.Wang@freescale.com>
8709 Date: Wed May 20 12:30:42 2009 -0400
8710
8711 85xx: Add README for MPC8569MDS
8712
8713 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
8714 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8715
8716 commit b2aab386e957ba684d4f2a466bfaa91770e5058a
8717 Author: Haiying Wang <Haiying.Wang@freescale.com>
8718 Date: Wed May 20 12:30:33 2009 -0400
8719
8720 85xx: Add UART1 support for MPC8569MDS
8721
8722 MPC8569 UART1 signals are muxed with PortF bit[9-12], we need to define
8723 those pins before using UART1.
8724
8725 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
8726 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8727
8728 commit 399b53cbab0b377ac4c5c16c19c6e41b68a9c719
8729 Author: Haiying Wang <Haiying.Wang@freescale.com>
8730 Date: Wed May 20 12:30:32 2009 -0400
8731
8732 85xx: Add PIB support at CS4/CS5 for MPC8569MDS
8733
8734 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
8735 Signed-off-by: Yu Liu <Yu.Liu@freescale.com>
8736 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8737
8738 commit fb27949059f1bc84381a6216a819090f0cdbaa70
8739 Author: Haiying Wang <Haiying.Wang@freescale.com>
8740 Date: Thu Jun 4 16:12:39 2009 -0400
8741
8742 85xx: Fix some settings for MPC8569MDS board
8743
8744 - Increase the size of malloc to 512KB because MPC8569MDS needs more memory for
8745 malloc to support up to eight Ethernet interfaces.
8746 - Move Environment address out of uboot thus the saved environment variables
8747 will not be erased after u-boot is re-programmed.
8748
8749 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
8750 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8751
8752 commit c7f60fd29f2d638d080cdf1a49ad985b85f9429d
8753 Author: Haiying Wang <Haiying.Wang@freescale.com>
8754 Date: Wed May 20 12:30:30 2009 -0400
8755
8756 85xx: Fix MURAM size for MPC8569
8757
8758 MPC8569 has 128K bytes MURAM.
8759
8760 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
8761 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8762
8763 commit a53c997dd7fc858f2a27f5a47b200567b9343ae5
8764 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8765 Date: Fri May 22 20:23:51 2009 +0200
8766
8767 at91/cpu.c: add missing Copyright & GPL header
8768
8769 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8770
8771 commit aa446a591aca46ef2b53cc6598ea8091feb45444
8772 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
8773 Date: Sun Jun 7 21:45:16 2009 +0900
8774
8775 apollon: Fix a OBJCFLAGS typo
8776
8777 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
8778
8779 commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002
8780 Author: Wolfgang Denk <wd@denx.de>
8781 Date: Wed Jun 10 00:19:28 2009 +0200
8782
8783 Prepare 2009.06-rc3
8784
8785 Update CHANGELOG
8786
8787 Signed-off-by: Wolfgang Denk <wd@denx.de>
8788
8789 commit 3a76ab5c166d5956885f803ce975e7151cc0ca0e
8790 Author: Wolfgang Denk <wd@denx.de>
8791 Date: Wed Jun 10 00:15:11 2009 +0200
8792
8793 rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared
8794
8795 Signed-off-by: Wolfgang Denk <wd@denx.de>
8796
8797 commit 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7
8798 Author: Daniel Mack <daniel@caiaq.de>
8799 Date: Thu Jun 4 19:44:12 2009 +0200
8800
8801 ubifs: fix small error path mismatch
8802
8803 In do_readpage(), don't free 'dn' if its allocation failed.
8804
8805 Signed-off-by: Daniel Mack <daniel@caiaq.de>
8806
8807 commit de7cf709ebd3c01fbd094e8853dabb410c0370a1
8808 Author: Wolfgang Denk <wd@denx.de>
8809 Date: Thu Jun 4 00:31:07 2009 +0200
8810
8811 EP88x: fix broken linker script
8812
8813 Signed-off-by: Wolfgang Denk <wd@denx.de>
8814 Tested-by: Mikhail Zaturenskiy <mzaturenskiy@shoppertrak.com>
8815
8816 commit 7a2063bd80d3b58b2dd5d5e58f4411f8d250576c
8817 Author: Wolfgang Denk <wd@denx.de>
8818 Date: Fri May 15 00:16:02 2009 +0200
8819
8820 TQM85xx: minor config file cleanup
8821
8822 Remove "saveenv" from "update" definition: the environment is outside
8823 the U-Boot image on TQM85xx and therefor not affected by updates.
8824
8825 Also "beautify" code a bit (vertical alignment).
8826
8827 Signed-off-by: Wolfgang Denk <wd@denx.de>
8828
8829 commit c0296b1801fc9426d772fa75fe58458db605dfee
8830 Author: Wolfgang Denk <wd@denx.de>
8831 Date: Fri May 15 00:16:01 2009 +0200
8832
8833 TQM85xx: adapt for new flash types
8834
8835 Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM
8836 series while new boards have 'N' type Flashes from the S29GLxxxN
8837 series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
8838
8839 We now change the configuration to the new flash types for all
8840 boards; this also works on old boards - we just waste two flash
8841 sectors for the environment which could be smaller there.
8842
8843 Signed-off-by: Wolfgang Denk <wd@denx.de>
8844
8845 commit 6735104924f06340071a6914a9ee3345607fc102
8846 Author: Dave Liu <daveliu@freescale.com>
8847 Date: Mon May 18 17:49:23 2009 +0800
8848
8849 85xx: Fix the wrong SYS_CLK_IN for 8569MDS
8850
8851 The SYS_CLK_IN of MPC8569MDS is 66.66MHz,
8852 The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor.
8853 so, change the SYS_CLK_IN from 66MHz to 66.66MHz.
8854
8855 Signed-off-by: Dave Liu <daveliu@freescale.com>
8856
8857 commit 16e7559c08b6f29db4596d795b92914c01e6a1b3
8858 Author: Dave Liu <daveliu@freescale.com>
8859 Date: Fri May 15 10:27:44 2009 +0800
8860
8861 85xx: Fix the wrong BCSR address of 8569MDS
8862
8863 The BCSR17[7] = 1 will unlock the write protect of FLASH.
8864 The WP# pin only controls the write protect of top/bottom sector,
8865 That is why we can save env, but we can't write the first sector
8866 before the patch.
8867
8868 Signed-off-by: Dave Liu <daveliu@freescale.com>
8869
8870 commit 90d13b8ac3d515349626d7c8a3dc34ef38c43fa6
8871 Author: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
8872 Date: Tue Jun 2 16:27:10 2009 -0500
8873
8874 85xx: bugfix for reading maximum TLB size on mpc85xx
8875
8876 The MAXSIZE field in the TLB1CFG register is 4 bits, not 8 bits.
8877 This made setup_ddr_tlbs() try to set up a TLB larger than the e500 maximum
8878 (256 MB)
8879 which made u-boot hang in board_init_f() when trying to create a new stack
8880 in RAM.
8881 I have an mpc8540 with one 1GB dimm.
8882
8883 Signed-off-by: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
8884 Signed-off-by: Andy Fleming <afleming@freescale.com>
8885 Acked-by: Kumar Gala <galak@kernel.crashing.org>
8886
8887 commit 1b5291dddf5f16c7ae10e3cb165882fa96038b26
8888 Author: Dave Liu <daveliu@freescale.com>
8889 Date: Fri Mar 27 14:32:43 2009 +0800
8890
8891 85xx: Fix the clock adjust of mpc8569mds board
8892
8893 Currently the clk_adj is 6 (3/4 cycle), The settings will cause
8894 the DDR controller hang at the data init. Change the clk_adj
8895 from 6 to 4 (1/2 cycle), make the memory system stable.
8896
8897 Signed-off-by: Dave Liu <daveliu@freescale.com>
8898
8899 commit faa14babd7466dfade358f9cac128ae246b9bf1b
8900 Author: RONETIX - Ilko Iliev <iliev@ronetix.at>
8901 Date: Fri Jun 5 16:54:31 2009 +0200
8902
8903 at91: fix a USB problem for AT91SAM9261
8904
8905 This patch corrects the missing PLLB initialization in usb_cpu_init()
8906 for AT91SAM9261.
8907 Because of the missing PLLB initialization, the USB support for all
8908 AT91SAM9261 based boards will work only if the PLLB is configured by a
8909 precedent bootloader.
8910
8911 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
8912 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8913 Signed-off-by: Remy Bohmer <linux@bohmer.net>
8914
8915 commit 0c24dec550ddb7d86b8bfdd8645b18479f73e6e2
8916 Author: Felix Radensky <felix@embedded-sol.com>
8917 Date: Sun May 31 20:44:15 2009 +0300
8918
8919 ppc4xx/net: Fix MDIO clock setup
8920
8921 This patch fixes MDIO clock setup in case when OPB frequency is 100MHz.
8922 Current code assumes that the value of sysinfo.freqOPB is 100000000
8923 when OPB frequency is 100MHz. In reality it is 100000001. As a result
8924 MDIO clock is set to incorrect value, larger than 2.5MHz, thus violating
8925 the standard. This in not a problem on boards equipped with Marvell PHYs
8926 (e.g. Canyonlands), since those PHYs support MDIO clocks up to 8.3MHz,
8927 but can be a problem for other PHYs (e.g. Realtek ones).
8928
8929 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
8930 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8931
8932 commit d65e34d12514de2bbe3b8f519761d641c081bad0
8933 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8934 Date: Wed Feb 25 14:27:29 2009 +0900
8935
8936 rtl8169: fix PCI system memory address
8937
8938 When PCI device use system memory, some PCI host controller should be
8939 set physical memory address.
8940
8941 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8942 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8943
8944 commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43
8945 Author: Manikandan Pillai <mani.pillai@ti.com>
8946 Date: Wed Apr 8 09:14:35 2009 +0530
8947
8948 SMC911x driver fixed for NFS boot
8949
8950 eth_halt() function in the smc911x drivers used to call the
8951 smc911x_reset() function. eth_halt() used to be called after
8952 tftp transfers. This used to put the ethernet chip in reset
8953 while the linux boots up resulting in the ethernet driver
8954 not coming up. NFS boot used to fail as a result.
8955
8956 This patch calls smc911x_shutdown() instead of smc911x_reset().
8957 Some comments received has also been fixed.
8958
8959 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
8960 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8961
8962 commit e5a3bc2401a23f1890611f020f57f94824a534db
8963 Author: Remy Bohmer <linux@bohmer.net>
8964 Date: Sun May 3 12:11:40 2009 +0200
8965
8966 Add config option for disabling DM9000-SROM support.
8967
8968 Some boards do not have SROM support for the DM9000 network adapter.
8969 Instead of listing these board names in the driver code, make this
8970 option configurable from the board config file.
8971
8972 It also removes a build warning for the at91sam9261ek board:
8973 'dm9000x.c:545: warning: 'read_srom_word' defined but not used'
8974
8975 And it repaires the trizepsiv board build which was broken around the
8976 same routines
8977
8978 Signed-off-by: Remy Bohmer <linux@bohmer.net>
8979 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8980
8981 commit 3c9b1ee17e19bd6d80344678d41a85e52b0be713
8982 Author: Kim Phillips <kim.phillips@freescale.com>
8983 Date: Fri Jun 5 14:11:33 2009 -0500
8984
8985 mpc83xx: don't set SICRH_TSOBI1 to RMII/RTBI operation
8986
8987 In GMII mode (which operates at 3.3V) both SICRH TSEC1/2 output buffer
8988 impedance bits should be clear, i.e., SICRH[TSIOB1] = 0 and SICRH[TSIOB2] = 0.
8989 SICRH[TSIOB1] was erroneously being set high.
8990
8991 U-Boot always operated this PHY interface in GMII mode. It is assumed this
8992 was missed in the clean up by the original board porters, and copied along
8993 to the TQM and sbc boards.
8994
8995 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8996 Acked-by: Ira Snyder <iws@ovro.caltech.edu>
8997 Reviewed-by: David Hawkins <dwh@ovro.caltech.edu>
8998 Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8999 CC: Dave Liu <DaveLiu@freescale.com>
9000
9001 commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7
9002 Author: Daniel Mack <daniel@caiaq.de>
9003 Date: Wed Apr 8 13:23:37 2009 +0200
9004
9005 smc911x: write back the manually set MAC address
9006
9007 If the MAX address is given by the environment, write it back to the
9008 hardware.
9009
9010 Signed-off-by: Daniel Mack <daniel@caiaq.de>
9011 Cc: Sascha Hauer <s.hauer@pengutronix.de>
9012 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9013
9014 commit dfcd7f21607fd847236b04bb1a8d59a7c10ab99c
9015 Author: Wolfgang Denk <wd@denx.de>
9016 Date: Fri May 15 00:16:03 2009 +0200
9017
9018 Redundant Environment: protect full sector size
9019
9020 Several boards used different ways to specify the size of the
9021 protected area when enabling flash write protection for the sectors
9022 holding the environment variables: some used CONFIG_ENV_SIZE and
9023 CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even
9024 a mix of both for the "normal" and the "redundant" areas.
9025
9026 Normally, this makes no difference at all. However, things are
9027 different when you have to deal with boards that can come with
9028 different types of flash chips, which may have different sector
9029 sizes.
9030
9031 Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the
9032 biggest sector size, which may include several sectors on boards using
9033 the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE
9034 or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the
9035 case that only the first of these sectors get protected, while the
9036 following ones aren't.
9037
9038 This is no real problem, but it can be confusing for the user -
9039 especially on boards that use CONFIG_ENV_SECT_SIZE to protect the
9040 "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the
9041 "redundant" area.
9042
9043 To avoid such inconsistencies, I changed all sucn boards that I found
9044 to consistently use CONFIG_ENV_SECT_SIZE for protection. This should
9045 not cause any functional changes to the code.
9046
9047 Signed-off-by: Wolfgang Denk <wd@denx.de>
9048 Cc: Paul Ruhland
9049 Cc: Pantelis Antoniou <panto@intracom.gr>
9050 Cc: Stefan Roese <sr@denx.de>
9051 Cc: Gary Jennejohn <garyj@denx.de>
9052 Cc: Dave Ellis <DGE@sixnetio.com>
9053 Acked-by: Stefan Roese <sr@denx.de>
9054
9055 commit b81830f6e3b3e6ed114d071eb107965e49fa9b5a
9056 Author: Ilya Yanok <yanok@emcraft.com>
9057 Date: Thu May 14 14:03:09 2009 +0400
9058
9059 mmc: it's safe to ignore mmc_send_if_cond() return value
9060
9061 Return value of mmc_send_if_cond() can be safely ignored (as it is
9062 done in Linux). This makes older cards work with MXC MCI controller.
9063
9064 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
9065
9066 commit dba6fcf6517faa5dda7df8109febe03c9c72a6f5
9067 Author: Stefan Roese <sr@denx.de>
9068 Date: Mon May 11 15:54:13 2009 +0200
9069
9070 cfi_mtd: Fix bug in last sector detection
9071
9072 This patch now enabled this cfi-mtd wrapper to correctly detect and
9073 erase the last sector in an NOR FLASH device.
9074
9075 Signed-off-by: Stefan Roese <sr@denx.de>
9076
9077 commit 4e3d89ba948eef801ffd46ef862cdede5b3f8320
9078 Author: Yauhen Kharuzhy <jekhor@gmail.com>
9079 Date: Thu May 7 00:43:30 2009 +0300
9080
9081 mmc: Fix decoding of SCR & function switch data on little-endian machines
9082
9083 SCR & switch data are read from card as big-endian words and should be
9084 converted to CPU byte order.
9085
9086 Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
9087 Signed-off-by: Andy Fleming <afleming@freescale.com>
9088
9089 commit f33cb34b3971dabe3720d577b0e1b8601c09fe17
9090 Author: Yauhen Kharuzhy <jekhor@gmail.com>
9091 Date: Thu May 7 13:08:53 2009 +0300
9092
9093 mmc: Remove return from mmc_init for non SD 2.0 compatible cards.
9094
9095 Cards which are not compatible with SD 2.0 standard, may return response
9096 for CMD8 command, but it will be invalid in terms of SD 2.0. We should
9097 accept this case as admissible, just like Linux does.
9098
9099 Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
9100 Signed-off-by: Andy Fleming <afleming@freescale.com>
9101
9102 commit 998be3dd59ed0af4bec38324047fecfa88ac45db
9103 Author: Rabin Vincent <rabin@rab.in>
9104 Date: Sun Apr 5 13:30:56 2009 +0530
9105
9106 mmc: drop unnecessary casts
9107
9108 Now that response is a uint, we can drop all the casts.
9109
9110 Signed-off-by: Rabin Vincent <rabin@rab.in>
9111
9112 commit 0b453ffe28bb9227d86ddbe0893bd19c93f04ed7
9113 Author: Rabin Vincent <rabin@rab.in>
9114 Date: Sun Apr 5 13:30:55 2009 +0530
9115
9116 mmc: fix response decoding on little endian
9117
9118 The mmc code defines the response as an array of chars. However, it
9119 access the response bytes both as (i) an array of four uints (with
9120 casts) and (ii) as individual chars. The former case is used more
9121 often, including by the driver when it assigns the response.
9122
9123 The char-wise accesses are broken on little endian systems because they
9124 assume that the bytes in the uints are in big endian byte order.
9125
9126 This patch fixes this by changing the response to be an array of four
9127 uints and replacing the char-wise accesses with equivalent uint-wise
9128 accesses.
9129
9130 Signed-off-by: Rabin Vincent <rabin@rab.in>
9131
9132 commit 9b1f942c09dd942e6de3185caa81c111b14de567
9133 Author: Rabin Vincent <rabin@rab.in>
9134 Date: Sun Apr 5 13:30:54 2009 +0530
9135
9136 mmc: use lldiv to fix arm eabi build
9137
9138 The generic MMC core uses direct long long divisions, which do not build
9139 with ARM EABI toolchains. Use lldiv() instead, which works everywhere.
9140
9141 Signed-off-by: Rabin Vincent <rabin@rab.in>
9142
9143 commit e85649c7e683faea1ccfddc9fa9abc62f38e4201
9144 Author: Rabin Vincent <rabin@rab.in>
9145 Date: Sun Apr 5 13:30:53 2009 +0530
9146
9147 mmc: check find_mmc_device return value
9148
9149 find_mmc_device returns NULL if an invalid device number is specified.
9150 Check for this to avoid dereferencing NULL pointers.
9151
9152 Signed-off-by: Rabin Vincent <rabin@rab.in>
9153
9154 commit ac0865ff33870cdf2cd480165045e1bc311e9fa2
9155 Author: Rabin Vincent <rabin@rab.in>
9156 Date: Sun Apr 5 13:30:52 2009 +0530
9157
9158 mmc: clean up help texts
9159
9160 Remove some repeated words and superfluous newlines in the mmc command
9161 help entries.
9162
9163 Signed-off-by: Rabin Vincent <rabin@rab.in>
9164
9165 commit 7d6900ebe16d679c0e03f8d1584b64057a64ce39
9166 Author: Mike Frysinger <vapier@gentoo.org>
9167 Date: Fri May 29 17:01:48 2009 -0400
9168
9169 Blackfin: spi: fix pin handling of SPI0 SSEL4
9170
9171 CS4 on SPI0 has a dedicated PH8 pin which needs to be enabled as a
9172 peripheral in order to work.
9173
9174 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9175
9176 commit 2157359dad2533987f5eb0181ef543693fad6a33
9177 Author: Mike Frysinger <vapier@gentoo.org>
9178 Date: Tue May 26 02:51:57 2009 -0400
9179
9180 Blackfin: fix if() logic in bootrom evt1 check
9181
9182 A missing set of parenthesis caused the silicon revision to apply only to
9183 the BF533 and not the BF531/BF532 variants.
9184
9185 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9186
9187 commit 76b5883da2cf049cd410901c04ea450e5f5c27c3
9188 Author: Stefan Roese <sr@denx.de>
9189 Date: Sat May 16 12:04:22 2009 +0200
9190
9191 jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together
9192
9193 Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because
9194 mtdparts_init() is available in both files, cmd_mtdparts.c and
9195 cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before
9196 the jffs2/mtdparts command/file split those 2 different versions
9197 already existed. So this is nothing new. The main problem is that the
9198 variables "current_dev" and "current_partnum" are declared in both
9199 files now. This doesn't work.
9200
9201 This patch now changes the names of those variable to more specific
9202 names: "current_mtd_dev" and "current_mtd_partnum". This is because
9203 this patch also changes the declaration from static to global, so
9204 that they can be used from both files.
9205
9206 Please note that my first tests were not successful. The MTD devices
9207 selected via mtdparts are now accessed but I'm failing to see the
9208 directory listed via the "ls" command. Nothing is displayed. Perhaps
9209 I didn't generate the JFFS2 image correctly (I never used JFFS2 in
9210 U-Boot before). Not sure. Perhaps somebody else could take a look at
9211 this as well. I'll continue looking into this on Monday.
9212
9213 Signed-off-by: Stefan Roese <sr@denx.de>
9214 Cc: Wolfgang Denk <wd@denx.de>
9215 Cc: Detlev Zundel <dzu@denx.de>
9216 Cc: Ilya Yanok <yanok@emcraft.com>
9217 Cc: Renaud barbier <renaud.barbier@ge.com>
9218
9219 commit ab687907980fa28940a1a992d3f1c5d17cdbbf5d
9220 Author: Graf Yang <graf.yang@analog.com>
9221 Date: Sun May 24 02:34:34 2009 -0400
9222
9223 Blackfin: bf518f-ezbrd: setup portmux for async flash
9224
9225 The pins for async memory where parallel flash lives are not enabled by
9226 default, so make sure we mux them as needed.
9227
9228 Signed-off-by: Graf Yang <graf.yang@analog.com>
9229 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9230
9231 commit f40f6db278f602b55820693634a7256b0b4e4b80
9232 Author: Stefan Roese <sr@denx.de>
9233 Date: Wed May 20 10:58:03 2009 +0200
9234
9235 nand: Fix problem with ECC ordering for PPC4xx NDFC platforms
9236
9237 This patch enables Smart Media (SMC) ECC byte ordering which is used
9238 on the PPC4xx NAND FLASH controller (NDFC). Without this patch we have
9239 incompatible ECC byte ordering to the Linux kernel NDFC driver.
9240
9241 Signed-off-by: Stefan Roese <sr@denx.de>
9242 Acked-by: Scott Wood <scottwood@freescale.com>
9243
9244 commit 399aab7748bef053d59612211e1bd7a3fabfce18
9245 Author: Stefan Roese <sr@denx.de>
9246 Date: Wed May 20 10:58:02 2009 +0200
9247
9248 ppc4xx: Fix problem with ECC ordering for PPC4xx NDFC platforms
9249
9250 This patch now uses the correct ECC byte order (Smart Media - SMC)
9251 to be used on the 4xx NAND FLASH driver. Without this patch we have
9252 incompatible ECC byte ordering to the Linux kernel NDFC driver.
9253
9254 Please note that we also have to enable CONFIG_MTD_NAND_ECC_SMC in
9255 drivers/mtd/nand/nand_ecc.c for correct operation. This is done with
9256 a seperate patch.
9257
9258 Signed-off-by: Stefan Roese <sr@denx.de>
9259 Acked-by: Scott Wood <scottwood@freescale.com>
9260
9261 commit 5d841fac8249a2b3f9a814da2140132be0a9f60d
9262 Author: Stefan Roese <sr@denx.de>
9263 Date: Wed May 20 10:58:01 2009 +0200
9264
9265 ppc4xx: Move definition for PPC4xx NAND FLASH controller to header
9266
9267 This patch moves the definition for the PPC4xx NAND FLASH controller
9268 (NDFC) CONFIG_NAND_NDFC into include/ppc4xx.h. This is needed for the
9269 upcoming fix for the ECC byte ordering of the NDFC driver.
9270
9271 Signed-off-by: Stefan Roese <sr@denx.de>
9272 Acked-by: Scott Wood <scottwood@freescale.com>
9273
9274 commit 2df72b82bc9e17b88dc82735a067749220beb025
9275 Author: Kim Phillips <kim.phillips@freescale.com>
9276 Date: Tue May 19 12:53:36 2009 -0500
9277
9278 common: fix inline--weak error spotted by gcc 4.4
9279
9280 cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
9281
9282 removing the inline attribute fixes it.
9283
9284 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9285
9286 commit 9fd9abedcc3c10cf89353265cbe05f58609d51f3
9287 Author: Kim Phillips <kim.phillips@freescale.com>
9288 Date: Tue May 19 12:53:32 2009 -0500
9289
9290 TQM834x: remove defines causing gcc4.4 warnings
9291
9292 Configuring for TQM834x board...
9293 cpu_init.c: In function 'cpu_init_f':
9294 cpu_init.c:262: warning: array subscript is above array bounds
9295 cpu_init.c:263: warning: array subscript is above array bounds
9296 cpu_init.c:270: warning: array subscript is above array bounds
9297 ...
9298
9299 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9300
9301 commit 0850301747228a3327f2815a85284d26ade3de95
9302 Author: Andreas Huber <andreas.huber@keymile.com>
9303 Date: Tue May 19 11:06:30 2009 +0200
9304
9305 UBI: fix return code in ubi_volume_read
9306
9307 Return -ENODEV instead of 0 when trying to read from a non existing volume.
9308
9309 Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
9310 Signed-off-by: Stefan Roese <sr@denx.de>
9311
9312 commit ec01481ddc4cf302c7f6d760b776ca94819ec21e
9313 Author: Graf Yang <graf.yang@analog.com>
9314 Date: Tue May 19 04:40:08 2009 -0400
9315
9316 Blackfin: fix timer_init()/timer_reset()
9317
9318 The timer_init() function was not using the right csync instruction, nor
9319 was it doing it right after disabling the core timer.
9320
9321 The timer_reset() function would reset the timestamp, but not the actual
9322 timer, so there was a common edge case where get_timer() return a jump of
9323 one timestamp (couple milliseconds) right after resetting. This caused
9324 many functions to improperly timeout right away.
9325
9326 Signed-off-by: Graf Yang <graf.yang@analog.com>
9327 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9328
9329 commit c06326c73bf90e48a8e1cf8893ad31c575423f50
9330 Author: Shinya Kuribayashi <skuribay@pobox.com>
9331 Date: Sat May 16 09:12:09 2009 +0900
9332
9333 MIPS: lib_mips/board.c: Remove unused variables
9334
9335 This fixes the following build warnings:
9336
9337 board.c: In function 'board_init_r':
9338 board.c:328: warning: unused variable 'i'
9339 board.c:326: warning: unused variable 'e'
9340
9341 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
9342
9343 commit 47f6a36cc3f3427cc8e4f1d0f3e6678be6f33769
9344 Author: Shinya Kuribayashi <skuribay@pobox.com>
9345 Date: Sat May 16 09:12:09 2009 +0900
9346
9347 MIPS: Make all extern-ed functions in bitops.h static
9348
9349 All these functions are expected to be static inline-ed.
9350 This patch also fixes the following build warnings on MIPS targets:
9351
9352 include/asm/bitops.h: In function 'ext2_find_next_zero_bit':
9353 include/asm/bitops.h:862: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
9354 include/asm/bitops.h:885: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
9355 include/asm/bitops.h:887: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
9356
9357 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
9358
9359 commit 87423d740b91329b8d1d0b73cafd6930993b558a
9360 Author: Thomas Lange <thomas@corelatus.se>
9361 Date: Fri Apr 24 16:22:16 2009 +0200
9362
9363 MIPS: Implement ethernet halt for au1x00
9364
9365 Implement ethernet halt() by putting MAC0 in reset.
9366 If we do not do this, we will get memory corruption
9367 when ethernet frames are received during early OS boot.
9368
9369 Signed-off-by: Thomas Lange <thomas@corelatus.se>
9370 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
9371
9372 commit a2e0ffcf2d9a22c582a93e84a4bef20fd3877f47
9373 Author: Wolfgang Denk <wd@denx.de>
9374 Date: Fri May 15 23:29:23 2009 +0200
9375
9376 Prepare v2009.06-rc2
9377
9378 Update CHANGELOG.
9379
9380 Signed-off-by: Wolfgang Denk <wd@denx.de>
9381
9382 commit f4317ea91942f44cc1c433277927b61618e9b0a5
9383 Author: Daniel Mack <daniel@caiaq.de>
9384 Date: Tue May 5 12:48:29 2009 +0200
9385
9386 ARM: fix PXA build by defining UP2OCR
9387
9388 U-Boot does not currently build for PXA platforms with USB support
9389 enabled:
9390
9391 usb.c:46: error: 'UP2OCR' undeclared (first use in this function)
9392
9393 Signed-off-by: Daniel Mack <daniel@caiaq.de>
9394 Cc: Markus Klotzbuecher <mk@denx.de>
9395
9396 Edited commit message.
9397 Signed-off-by: Wolfgang Denk <wd@denx.de>
9398
9399 commit e26ad0eabd10a8cda51920fbcfe4da5b4ccf0c98
9400 Author: Wolfgang Denk <wd@denx.de>
9401 Date: Fri May 15 22:32:57 2009 +0200
9402
9403 Minor Coding Style fix; update CHANGELOG.
9404
9405 Signed-off-by: Wolfgang Denk <wd@denx.de>
9406
9407 commit af75a45d23b72a59ac5cc0427696c7f634fdc94b
9408 Author: Wolfgang Denk <wd@denx.de>
9409 Date: Fri May 15 09:27:58 2009 +0200
9410
9411 IDE: bail out of dev_print() for unknown device types
9412
9413 Commit 574b319512 introduced a subtle bug by mixing a list of tests
9414 for "dev_desc->type" and "dev_desc->if_type" into one switch(), which
9415 then mostly did not work because "dev_desc->type" cannot take any
9416 "IF_*" type values. A later fix in commit 8ec6e332ea changed the
9417 switch() into testing "dev_desc->if_type", but at this point the
9418 initial test for unknown device types was completely lost, which
9419 resulted in output like that for IDE ports without device attached:
9420
9421 Device 1: Model: Firm: Ser#:
9422 Type: # 1F #
9423 Capacity: not available
9424
9425 This patch re-introduces the missing test for unknown device types.
9426
9427 Signed-off-by: Wolfgang Denk <wd@denx.de>
9428 Cc: Stefan Roese <sr@denx.de>
9429 Cc: Detlev Zundel <dzu@denx.de>
9430 Tested-by: Stefan Roese <sr@denx.de>
9431
9432 commit c21f62d8483fbab44cd98d93ff2e9355a330d225
9433 Author: Stefan Roese <sr@denx.de>
9434 Date: Thu May 14 07:25:13 2009 +0200
9435
9436 74xx_7xx: Fix rounding problem in CPU frequency calculation
9437
9438 This patch fixes a problem in the CPU frequency calculation. Without it
9439 a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
9440
9441 Signed-off-by: Stefan Roese <sr@denx.de>
9442
9443 commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb
9444 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9445 Date: Wed May 13 22:24:12 2009 +0200
9446
9447 console.h: remove unused prototype 'console_realloc'
9448
9449 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9450
9451 commit 84bf7ca522e94ec402a1264b01971b924b7e268f
9452 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9453 Date: Wed May 13 22:16:31 2009 +0200
9454
9455 api: remove un-needed ifdef CONFIG_API already handle by the Makefile
9456
9457 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9458
9459 commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80
9460 Author: Detlev Zundel <dzu@denx.de>
9461 Date: Wed May 13 10:54:10 2009 +0200
9462
9463 Fix e-mail address of Gary Jennejohn.
9464
9465 Signed-off-by: Detlev Zundel <dzu@denx.de>
9466
9467 commit 5e2c08c3ac90808e9be64856916bfd6df984823c
9468 Author: Emil Medve <Emilian.Medve@Freescale.com>
9469 Date: Tue May 12 13:48:32 2009 -0500
9470
9471 Remove inline qualifier from show_boot_progress()
9472
9473 The 'inline' is conflicting with the semantic of 'weak' attribute and with the
9474 way the show_boot_progress() function is used.
9475
9476 Also gcc 4.4 is complaining about it:
9477
9478 main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
9479
9480 Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
9481
9482 commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36
9483 Author: Wolfgang Denk <wd@denx.de>
9484 Date: Tue May 12 15:17:35 2009 +0200
9485
9486 MPC8260: fixup device tree by property instead of path
9487
9488 cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
9489 clock frequencies in the device tree, using a CPU path
9490 "/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
9491
9492 However, this does not work when one board config file (here:
9493 MPC8260ADS.h) is intended to be used for several diffrent CPUs and
9494 therefor contains a generic definition like "cpu@0", as the device
9495 trees that will then be loaded will contain specific names like
9496 "PowerPC,8272@0".
9497
9498 We switch to using do_fixup_by_prop_u32() instead, so we can search
9499 for device_type="cpu", as it is done in other architectures, too.
9500
9501 Signed-off-by: Wolfgang Denk <wd@denx.de>
9502 Cc: Heiko Schocher <hs@denx.de>
9503 Acked-by: Heiko Schocher <hs@denx.de>
9504 Tested-by: Heiko Schocher <hs@denx.de>
9505
9506 commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd
9507 Author: Rohit Hagargundgi <h.rohit@samsung.com>
9508 Date: Mon Mar 9 19:45:46 2009 +0530
9509
9510 Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
9511
9512 Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
9513 CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
9514 and is used by OneNAND ipl when reading U-Boot image.
9515
9516 Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
9517 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
9518
9519 commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a
9520 Author: Ben Warren <biggerbadderben@gmail.com>
9521 Date: Tue Apr 28 17:04:51 2009 -0700
9522
9523 Schedule removal of non-CONFIG_NET_MULTI net driver API
9524
9525 This will make CONFIG_NET_MULTI the only net driver configuration and
9526 we'll be able to remove this option.
9527
9528 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9529
9530 commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1
9531 Author: Detlev Zundel <dzu@denx.de>
9532 Date: Tue May 5 16:04:06 2009 +0200
9533
9534 powerpc/inka4x0: Remove left-over ide reset code.
9535
9536 The pin which was used in preliminary versions of the board for ide
9537 reset is really connected to the rtc clock.
9538
9539 Signed-off-by: Detlev Zundel <dzu@denx.de>
9540
9541 commit f578a2da6770951239ad91ee9a1875fdc71dbe48
9542 Author: Marco Stornelli <marco.stornelli@gmail.com>
9543 Date: Tue Apr 28 19:04:02 2009 +0200
9544
9545 Add imls utility command
9546
9547 This patch adds, under tools folder, a new command called imls. Its
9548 goal is the same of UBoot's imls but it can be used as Linux shell
9549 command. It reads from raw mtd partition and prints the list of the
9550 stored images.
9551
9552 Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
9553
9554 commit da95427ce431908714ae5e9f663ee6e2bc3bcc33
9555 Author: Heiko Schocher <hs@denx.de>
9556 Date: Tue Apr 28 08:36:11 2009 +0200
9557
9558 netloop: updates for NetLoop
9559
9560 Fix some issues introduced from commit:
9561 2f70c49e5b9813635ad73666aa30f304c7fdeda9
9562 suggested by Mike Frysinger.
9563
9564 - added some comment for the env_id variable in common_cmd_nvedit.c
9565 - moved some variables in fn scope instead of file scope
9566 - NetInitLoop now static void
9567
9568 Signed-off-by: Heiko Schocher <hs@denx.de>
9569 Acked-by: Ben Warren <biggerbadderben@gmail.com>
9570
9571 commit 3c1d89545de11822f8b5afb5646a57757620bd95
9572 Author: Heiko Schocher <hs@denx.de>
9573 Date: Tue Apr 28 07:48:39 2009 +0200
9574
9575 82xx, ids8247: added ids8247 board to MAKEALL script
9576
9577 Signed-off-by: Heiko Schocher <hs@denx.de>
9578
9579 commit 890a017a8a995c921d1e889d360e8d6538ceecfe
9580 Author: Detlev Zundel <dzu@denx.de>
9581 Date: Thu May 7 13:08:55 2009 +0200
9582
9583 arm/imx31_phycore: Fix bi_arch_number
9584
9585 Signed-off-by: Detlev Zundel <dzu@denx.de>
9586 Cc: Sascha Hauer <s.hauer@pengutronix.de>
9587
9588 commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e
9589 Author: Sascha Hauer <s.hauer@pengutronix.de>
9590 Date: Fri May 15 10:21:33 2009 +0200
9591
9592 remove myself as phycore/litekit Maintainer
9593
9594 I never acked a patch that adds me as phycore i.MX31 maintainer nor was
9595 it me who pushed the patches, so remove myself from the maintainer list
9596 so that other people do not longer wait for my ack.
9597
9598 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
9599
9600 commit c63254ef5628efe1c77cb2fdba20753f9666f55d
9601 Author: Sergey Lapin <slapin@ossfans.org>
9602 Date: Tue May 12 12:25:14 2009 +0400
9603
9604 AFEB9260 network fix
9605
9606 AFEB9260 uses PA10, PA11 for ETX2 and ETX3.
9607 Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence,
9608 not 0.
9609
9610 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
9611
9612 commit f8ddcd58221cab63dd25c2324dd2032487f748b1
9613 Author: Graf Yang <graf.yang@analog.com>
9614 Date: Tue May 5 02:26:27 2009 -0400
9615
9616 Blackfin: bf518f-ezbrd: reset ethernet PHY during init
9617
9618 We don't know what state the ethernet PHY is in when starting up, so make
9619 sure we set it to a sane state. This fixes troubles seen when Linux boots
9620 up, configures the PHY is a non-default state, and then the system reboots
9621 into U-Boot which previously expected a reset state only.
9622
9623 Signed-off-by: Graf Yang <graf.yang@analog.com>
9624 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9625
9626 commit 53310b88eaa27fb5cb83144d0b22389190ad87a1
9627 Author: Mike Frysinger <vapier@gentoo.org>
9628 Date: Tue May 5 01:35:41 2009 -0400
9629
9630 Blackfin: bf527-ezkit: fix SPI flash env params
9631
9632 The BF527-EZKIT settings for storing the environment in SPI flash wasn't
9633 using the correct sector settings for the SPI flash part that is actually
9634 on the board.
9635
9636 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9637
9638 commit f58bf804a14324c6c9186a7a664fa23281780e8b
9639 Author: Mike Frysinger <vapier@gentoo.org>
9640 Date: Fri Apr 24 23:54:19 2009 -0400
9641
9642 Blackfin: avoid get_sclk() with early serial debug
9643
9644 When the clock functions were changed to use cached values (and thereby
9645 avoiding expensive math functions), early serial debug broke because the
9646 baud programming is called before external memory is available.
9647
9648 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9649
9650 commit 02778f2f1b4b1a28b492367477db27c58d45ae35
9651 Author: Mike Frysinger <vapier@gentoo.org>
9652 Date: Fri Apr 24 23:39:41 2009 -0400
9653
9654 Blackfin: fix booting with older bootroms (no EVT1)
9655
9656 When dropping jump block support, the assumption was that all bootroms
9657 supported entry point redirection via the EVT1 register. Unfortunately,
9658 this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2
9659 and older and BF561). No one really noticed earlier because these parts
9660 usually are booted by bypassing the bootrom entirely, and older BF533
9661 parts are not supported at all (too many anomalies).
9662
9663 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9664
9665 commit af2c37378f203857d5e6c957e77a14c2da5b59d2
9666 Author: Mike Frysinger <vapier@gentoo.org>
9667 Date: Fri Apr 24 23:22:48 2009 -0400
9668
9669 Blackfin: recurse with early serial initcode
9670
9671 Make sure we recurse through serial_putc() rather than bang on the UART
9672 transmit register directly to avoid hardware overflows when using \n.
9673
9674 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9675
9676 commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78
9677 Author: Wolfgang Denk <wd@denx.de>
9678 Date: Fri May 1 21:59:12 2009 +0200
9679
9680 Prepare v2009.06-rc1
9681
9682 Update CHANGELOG.
9683
9684 Signed-off-by: Wolfgang Denk <wd@denx.de>
9685
9686 commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb
9687 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9688 Date: Fri May 1 15:38:06 2009 +0200
9689
9690 at91: remove lowlevel_init.S
9691
9692 lowlevel_init.S is not used any more so remove it.
9693 As consequence, we also don't have to generate u-boot.lds
9694 but can use a static version as before.
9695
9696 This also fixes the out-of-tree build problem introduced
9697 with commit f0a2c7b4 "at91: add support for the PM9263 board"
9698
9699 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9700 Signed-off-by: Wolfgang Denk <wd@denx.de>
9701
9702 commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330
9703 Author: Wolfgang Denk <wd@denx.de>
9704 Date: Fri May 1 00:16:11 2009 +0200
9705
9706 Update CHANGELOG; minor coding style cleanup.
9707
9708 Signed-off-by: Wolfgang Denk <wd@denx.de>
9709
9710 commit d3a513c23ba4100d6983161cdc1f747dfd087bbd
9711 Author: Manikandan Pillai <mani.pillai@ti.com>
9712 Date: Tue Apr 21 17:29:05 2009 +0200
9713
9714 OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000
9715
9716 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9717 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
9718
9719 commit ac9140037a84629c5583066ff1a177396c47d89d
9720 Author: Dirk Behme <dirk.behme@googlemail.com>
9721 Date: Fri Apr 17 14:27:56 2009 +0200
9722
9723 OMAP3: Beagle: Set pinmux conditionally for Rev C boards
9724
9725 The Beagle Rev C boards pull UART2 from an alternate set of balls.
9726
9727 Signed-off-by: Steve Sakoman <steve@sakoman.com>
9728 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9729
9730 commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a
9731 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9732 Date: Mon Apr 27 18:33:33 2009 +0200
9733
9734 ubifs: BUG: Blocks commpressed with zlib
9735
9736 Blocks compressed with zlib dont have the full gzip header.
9737
9738 Without this patch, block compressed with zlib cannot be readed!
9739
9740 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9741
9742 commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630
9743 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9744 Date: Mon Apr 27 18:33:32 2009 +0200
9745
9746 lib_generic: gunzip: New function zunzip
9747
9748 Separate gunzip in
9749
9750 gunzip: Find the end of the header and call zunzip.
9751 zunzip: Inflate gunzip block without header.
9752
9753 UBI fs blocks can be compresed in lzo, zlib or no-compression. The
9754 current implementation of u-boot supported all the compressions but
9755 there was a bug in the implementation of the zlib blocks.
9756
9757 UBIFS's Zlib blocks do not have header but they were compressed using
9758 gunzip, a function used to decompress gunzip files/sectors with a
9759 header.
9760
9761 This patch adds a new function zunzip that uncompress a zlib block with
9762 no header.
9763
9764 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9765
9766 commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c
9767 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
9768 Date: Thu Apr 23 15:37:16 2009 +0200
9769
9770 at91: fixed plla calc when no USB support is active
9771
9772 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
9773 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9774
9775 commit 3791a1187c1401c33c9512595e6e89dbb46230c5
9776 Author: Ladislav Michl <ladis@linux-mips.org>
9777 Date: Wed Apr 22 01:12:04 2009 +0200
9778
9779 arm925t: Fix CONFIG_SYS_HZ to 1000
9780
9781 Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of
9782 get_timer.
9783
9784 Changes since original version:
9785 * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to
9786 improve timer resolution.
9787
9788 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
9789
9790 commit 42bf4b2248146abdc592bde0009c6ea42067f437
9791 Author: Dirk Behme <dirk.behme@googlemail.com>
9792 Date: Tue Apr 14 20:15:17 2009 +0200
9793
9794 OMAP3: Remove legacy NAND defines
9795
9796 Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora.
9797
9798 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9799
9800 commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5
9801 Author: Sanjeev Premi <premi@ti.com>
9802 Date: Mon Apr 27 21:27:54 2009 +0530
9803
9804 OMAP3: Print correct silicon revision
9805
9806 The function display_board_info() displays incorrect
9807 silicon revision - based on the return value from
9808 function get_cpu_rev().
9809
9810 This patch fixes the problem.
9811
9812 Signed-off-by: Sanjeev Premi <premi@ti.com>
9813
9814 commit 90006e9b33bcdbf241b0295d186e3634137907a9
9815 Author: Sanjeev Premi <premi@ti.com>
9816 Date: Mon Apr 27 21:27:44 2009 +0530
9817
9818 OMAP3: Remove unused board-types
9819
9820 The board-types defined in struct omap3_sysinfo seem to be
9821 unused. The function display_board_info() is passed
9822 board type as an argument; which is ignored.
9823
9824 This patch removes all uses of board-type, related definitions
9825 and functions.
9826
9827 Signed-off-by: Sanjeev Premi <premi@ti.com>
9828
9829 commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d
9830 Author: Sanjeev Premi <premi@ti.com>
9831 Date: Mon Apr 27 21:27:27 2009 +0530
9832
9833 OMAP3: Use functions print_cpuinfo() and checkboard()
9834
9835 Use the functions print_cpuinfo() and checkboard() to
9836 display the cpu and board specific information.
9837
9838 These functions reuse content from the existing function
9839 display_board_info() - which has been removed.
9840
9841 Also, updated the existig OMAP3 configurations to
9842 define:
9843 - CONFIG_DISPLAY_CPUINFO
9844 - CONFIG_DISPLAY_BOARDINFO
9845
9846 Signed-off-by: Sanjeev Premi <premi@ti.com>
9847
9848 commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a
9849 Author: Stefan Roese <sr@denx.de>
9850 Date: Wed Mar 18 11:17:37 2009 +0100
9851
9852 MTD: Change cfi-mtd to accept non-uniform sector sizes
9853
9854 With this patch non-uniform NOR FLASH chips (chips with multiple erase
9855 regions) can be exported via the cfi-mtd layer and therefor used by UBI.
9856 We select the largest sector size as erasesize. The cfi driver will make
9857 sure that the smaller sectors are handled correctly.
9858
9859 Signed-off-by: Stefan Roese <sr@denx.de>
9860
9861 commit 3dcbe628d66b648e954bc8147d4faff2983206d9
9862 Author: Anatolij Gustschin <agust@denx.de>
9863 Date: Thu Apr 23 12:35:22 2009 +0200
9864
9865 video: fix bug in cfb_console.c code
9866
9867 Fix bug in drawing long version/info strings:
9868 U-Boot version string like
9869 "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX"
9870 is long and doesn't wrap around correctly while drawing
9871 beside the logo. Such long strings partially overwrite
9872 the logo. This patch is an attempt to fix it.
9873
9874 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9875
9876 commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75
9877 Author: Wolfgang Denk <wd@denx.de>
9878 Date: Tue Apr 28 08:50:31 2009 +0200
9879
9880 cmd_ext2.c: fix compile warnings
9881
9882 Get rid of these warnings:
9883
9884 cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int'
9885 cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int'
9886
9887 Signed-off-by: Wolfgang Denk <wd@denx.de>
9888
9889 commit 28afe0160f87ff74574150d703055a965f91422a
9890 Author: Heiko Schocher <hs@denx.de>
9891 Date: Mon Apr 27 10:48:20 2009 +0200
9892
9893 ids8247: Remove legacy NAND defines
9894
9895 because legacy NAND support is deprecated converting to current
9896 NAND interface. !This just compile, because I have no more the
9897 hardware to test it.
9898
9899 Signed-off-by: Heiko Schocher <hs@denx.de>
9900
9901 commit dbd33614404b65aa441c5620c3dbd560c4460c09
9902 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9903 Date: Mon Apr 27 09:13:31 2009 +0200
9904
9905 ubifs: BUG realpath string must be ended with NULL
9906
9907 If the memory used to copy the link_make is "dirty" the string wont
9908 be ended with NULL, throwing out multiple memory bugs.
9909
9910 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9911 Acked-by: Stefan Roese <sr@denx.de>
9912
9913 commit 65351a8793c51f3787efbbcf3aa1df0ad543c127
9914 Author: Peter Tyser <ptyser@xes-inc.com>
9915 Date: Fri Apr 24 15:59:56 2009 -0500
9916
9917 bmp_logo: Check return value of fread()
9918
9919 Add basic error handling to fread() function calls. This prevents
9920 compililation warnings such as:
9921
9922 bmp_logo.c: In function ‘main’:
9923 bmp_logo.c:71: warning: ignoring return value of ‘fread’, declared with
9924 attribute warn_unused_result
9925 ...
9926
9927 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9928
9929 commit eea8be86d1c2b570660d1f6c553845e13164231a
9930 Author: Peter Tyser <ptyser@xes-inc.com>
9931 Date: Fri Apr 24 15:59:46 2009 -0500
9932
9933 ncb: Check return value of write()
9934
9935 This prevents the compilation warning:
9936
9937 ncb.c: In function 'main':
9938 ncb.c:32: warning: ignoring return value of ‘write’, declared with
9939 attribute warn_unused_result
9940
9941 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9942
9943 commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691
9944 Author: Stefan Roese <sr@denx.de>
9945 Date: Fri Apr 24 15:59:35 2009 +0200
9946
9947 mtd: nand/onenand: Register mtd device upon device scanning
9948
9949 With this patch the NAND and OneNAND devices are registered in the MTD
9950 subsystem and can then be referenced by the mtdcore code (e.g.
9951 get_mtd_device_nm()). This is needed for the new "ubi part" command
9952 syntax without the flash type parameter (nor|nand|onenand).
9953
9954 Signed-off-by: Stefan Roese <sr@denx.de>
9955
9956 commit 10bb62d85a0850dbad1fdd34123378686373f166
9957 Author: Stefan Roese <sr@denx.de>
9958 Date: Fri Apr 24 15:58:33 2009 +0200
9959
9960 mtd: nand: Include linux/mtd/partitions.h in nand_base.h
9961
9962 This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is
9963 defined:
9964
9965 nand_base.c: In function 'nand_release':
9966 nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions'
9967
9968 Signed-off-by: Stefan Roese <sr@denx.de>
9969
9970 commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9
9971 Author: Stefan Roese <sr@denx.de>
9972 Date: Fri Apr 24 20:24:19 2009 +0200
9973
9974 ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part"
9975
9976 This patch removes the now unnecessary flash type parameter from the
9977 "ubi part" command. Currently the user has to define the type of flash
9978 he will be using UBI on. Example:
9979
9980 => ubi part nor partition1
9981
9982 With this patch this type parameter is not needed anymore. The user can
9983 now select the partition directly without the flash type paramter.
9984 Example:
9985
9986 => ubi part partition1
9987
9988 This breaks backward compatibility right now because of the change in the
9989 command syntax. But UBI support is still quite fresh and the advantage of
9990 this new command is syntax big enough for this change. Additionally the
9991 code is much cleaner now.
9992
9993 Signed-off-by: Stefan Roese <sr@denx.de>
9994 CC: Kyungmin Park <kyungmin.park@samsung.com>
9995
9996 commit 294f10ca9ea82a15e135dcb0fc658382ab206940
9997 Author: Detlev Zundel <dzu@denx.de>
9998 Date: Thu Apr 23 13:14:20 2009 +0200
9999
10000 mips/vcth: Use generic 16550 uart driver
10001
10002 As the common code also handles baudrate switching, which the board
10003 specific vct.c driver did not support, this is one of the rare
10004 occassions where deleting code actually adds a feature :)
10005
10006 Signed-off-by: Detlev Zundel <dzu@denx.de>
10007 Acked-by: Stefan Roese <sr@denx.de>
10008 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
10009
10010 commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07
10011 Author: Ladislav Michl <ladis@linux-mips.org>
10012 Date: Tue Apr 21 02:26:31 2009 +0200
10013
10014 Separate mtdparts command from jffs2
10015
10016 On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
10017 > Currently the mtdparts commands are included in the jffs2 command support.
10018 > This doesn't make sense anymore since other commands (e.g. UBI) use this
10019 > infrastructure as well now. This patch separates the mtdparts commands from
10020 > the jffs2 commands making it possible to only select mtdparts when no JFFS2
10021 > support is needed.
10022
10023 One more leftover... Let nboot command know about partitions even if JFFS2
10024 support is not enabled.
10025
10026 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10027 Acked-by: Stefan Roese <sr@denx.de>
10028
10029 commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9
10030 Author: Peter Tyser <ptyser@xes-inc.com>
10031 Date: Mon Apr 20 11:22:13 2009 -0500
10032
10033 cmd_ide: Remove unused AmigaOneG3SE code
10034
10035 The output_data_short() and input_data_short() functions for the
10036 AmigaOneG3SE are unused and result in compiler warnings.
10037
10038 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10039
10040 commit c93c102ace00764a56dbdf78bac134a23906721e
10041 Author: Peter Tyser <ptyser@xes-inc.com>
10042 Date: Mon Apr 20 11:21:40 2009 -0500
10043
10044 AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition
10045
10046 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10047
10048 commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7
10049 Author: Peter Tyser <ptyser@xes-inc.com>
10050 Date: Mon Apr 20 11:09:05 2009 -0500
10051
10052 Replace __asm references with __asm__
10053
10054 __asm__ follows gcc's documented syntax and is generally more common
10055 than __asm. This change is only asthetic and should not affect
10056 functionality.
10057
10058 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10059
10060 commit f9a109b3adc5e8647535357500e2a38f0558b5c2
10061 Author: Peter Tyser <ptyser@xes-inc.com>
10062 Date: Mon Apr 20 11:08:46 2009 -0500
10063
10064 Replace __attribute references with __attribute__
10065
10066 __attribute__ follows gcc's documented syntax and is generally more
10067 common than __attribute. This change is only asthetic and should not
10068 affect functionality.
10069
10070 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10071
10072 commit 08f077da9298ff65cc6f85f90d2770000a1beee9
10073 Author: David Brownell <dbrownell@users.sourceforge.net>
10074 Date: Thu Apr 16 19:55:48 2009 -0700
10075
10076 mtdpart command: align output columns
10077
10078 Make the headers in the "mtdparts" command output line up
10079 with their columns ... strike the extra TAB character.
10080
10081 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
10082
10083 commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02
10084 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
10085 Date: Thu Apr 16 10:51:03 2009 +0900
10086
10087 Remove sa1100.h
10088
10089 sa1100.h is not used anywhere, then remove it.
10090
10091 $ find . -name '*.h' -empty -print
10092 ./include/sa1100.h
10093 $ git grep 'sa1100.h' .
10094 $
10095
10096 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
10097 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10098
10099 commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992
10100 Author: Stefan Roese <sr@denx.de>
10101 Date: Tue Apr 14 17:51:21 2009 +0200
10102
10103 UBIFS: Remove tnc_commit.c which is not used in the read-only version
10104
10105 I missed removing this file while implementing the UBIFS support. It's
10106 not referenced at all, so let's remove it. Thanks to Artem Bityutskiy
10107 for spotting.
10108
10109 Signed-off-by: Stefan Roese <sr@denx.de>
10110
10111 commit 6356daff70867822bdb23cea49f98e65421a25b8
10112 Author: Adrian Hunter <adrian.hunter@nokia.com>
10113 Date: Tue Apr 14 17:50:38 2009 +0200
10114
10115 UBIFS: fix recovery bug
10116
10117 UBIFS did not recovery in a situation in which it could
10118 have. The relevant function assumed there could not be
10119 more nodes in an eraseblock after a corrupted node, but
10120 in fact the last (NAND) page written might contain anything.
10121 The correct approach is to check for empty space (0xFF bytes)
10122 from then on.
10123
10124 Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
10125 Signed-off-by: Stefan Roese <sr@denx.de>
10126
10127 commit 351f40caf2f7806b2cefb93e077ea619b9f684e8
10128 Author: Gao Guanhua <B22826@freescale.com>
10129 Date: Tue Apr 14 14:37:35 2009 +0800
10130
10131 fs: Fix the wrong type of var
10132
10133 The filelen should be signed type, not unsigned type.
10134 otherwise, The condition as below never take.
10135 if (filelen < 0)
10136
10137 Signed-off-by: Gao Guanhua <B22826@freescale.com>
10138 Signed-off-by: Dave Liu <daveliu@freescale.com>
10139
10140 commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62
10141 Author: Wolfgang Denk <wd@denx.de>
10142 Date: Tue Apr 28 00:29:34 2009 +0200
10143
10144 Update CHANGELOG
10145
10146 Signed-off-by: Wolfgang Denk <wd@denx.de>
10147
10148 commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
10149 Author: David Brownell <dbrownell@users.sourceforge.net>
10150 Date: Thu Apr 16 23:15:15 2009 -0700
10151
10152 dm9000 EEPROM reading bugfix
10153
10154 Make the U-Boot dm9000 driver read addresses from EEPROM just
10155 like Linux does ... read six bytes, instead of reading twelve
10156 bytes and then discarding every other one.
10157
10158 Using the right Ethernet address is a big win.
10159
10160 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
10161 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10162 Acked-by: Ben Warren <biggerbadderben@gmail.com>
10163
10164 commit d4c02e6f5d49880123e7f584b88f857ffd874381
10165 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
10166 Date: Wed Feb 25 14:27:24 2009 +0900
10167
10168 rtl8169: fix cache coherency problem
10169
10170 Fix the problem that cannot access actual data when CPU data cache enabled.
10171
10172 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
10173 Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10174 Acked-by: Ben Warren <biggerbadderben@gmail.com>
10175
10176 commit a85693b3bd4431b05b7df608b6f7733c0f80c53e
10177 Author: Dirk Behme <dirk.behme@googlemail.com>
10178 Date: Tue Apr 21 17:30:51 2009 +0200
10179
10180 OMAP3: Fix changed mmc init command
10181
10182 In recent U-Boot mmcinit changed to mmc init.
10183
10184 Signed-off-by: Steve Sakoman <steve@sakoman.com>
10185 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
10186
10187 commit 34b76a14f676bc6501c27a96564e4dfb4793f033
10188 Author: Wolfgang Denk <wd@denx.de>
10189 Date: Sun Apr 26 20:39:26 2009 +0200
10190
10191 lib_arm/board.c: remove misleading "test-only" comment.
10192
10193 For a long time, the print_cpuinfo() declaration in lib_arm/board.c
10194 had been marked as "test-only", which is plain wrong considering
10195 current usage. Delete this misleading comment.
10196
10197 Signed-off-by: Wolfgang Denk <wd@denx.de>
10198
10199 commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e
10200 Author: David Brownell <dbrownell@users.sourceforge.net>
10201 Date: Sun Apr 12 15:40:16 2009 -0700
10202
10203 minor DaVinci clock cleanup
10204
10205 Minor cleanup to clock-related defines for DaVinci DM6446 boards:
10206
10207 - CONFIG_SYS_CLK_FREQ is unused; remove it.
10208
10209 - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK
10210
10211 On DM6446 both of those peripheral clocks actually come from the
10212 same source, the primary oscillator. Having them use the same
10213 symbol avoids bugs in the clone'n'modify development cycle.
10214
10215 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
10216
10217 commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3
10218 Author: Minkyu Kang <mk7.kang@samsung.com>
10219 Date: Mon Apr 6 19:59:29 2009 +0900
10220
10221 s3c64xx: remove unnecessary definition
10222
10223 CONFIG_S3C6400 is must defined at config header file
10224 That definition is unnecessary at this file
10225
10226 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
10227
10228 commit 14b9308d511b53042ef478936e367a67282df66a
10229 Author: Heiko Schocher <hs@denx.de>
10230 Date: Fri Apr 24 06:50:45 2009 +0200
10231
10232 83xx: searching "muram-data" by compatible property
10233
10234 if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
10235 in the muram-data node, the reg entry needs to be updated.
10236 This is done in fdt_fixup_muram(), but we should use
10237 the compatible "fsl,qe-muram-data" for searching the
10238 node instead of searching the muram-data node with
10239 an absolute path.
10240
10241 Signed-off-by: Heiko Schocher <hs@denx.de>
10242 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10243
10244 commit 8e15088794807944b221c11609d36789efc7f767
10245 Author: Anatolij Gustschin <agust@denx.de>
10246 Date: Thu Apr 23 21:29:34 2009 +0200
10247
10248 mpc83xx: MPC8360ERDK: fix environment offset configuration bug
10249
10250 The size of U-Boot binary for MPC8360ERDK increased
10251 (> 2 flash sectors now), so 'saveenv' will partially
10252 overwrite U-Boot in flash and will brick the board.
10253 This patch moves environment offset to fourth flash
10254 sector and also fixes CONFIG_SYS_MONITOR_LEN.
10255
10256 Signed-off-by: Anatolij Gustschin <agust@denx.de>
10257 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10258
10259 commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
10260 Author: Michael Zaidman <michael.zaidman@gmail.com>
10261 Date: Sat Apr 4 01:43:00 2009 +0300
10262
10263 NetLoop initialization bug
10264
10265 The patch fixes the bug of partial initialization of global network
10266 parameters.
10267
10268 Upon u-boot's start up the first ping command causes a failure of the
10269 consequent TFTP command. It happens in the recently added mechanism of
10270 the NetLoop initialization where initialization of global network
10271 parameters is separated in the NetInitLoop routine which is called per
10272 env_id change. Thus, ping request will initialize the network parameters
10273 necessary for ping operation only, afterwards the env_changed_id will be
10274 set to the env_id that will prevent all following initialization requests
10275 from other protocols.
10276 The problem is that the initialized by ping subset of network parameters
10277 is not sufficient for other protocols and particularly for TFTP which
10278 requires the NetServerIp also.
10279
10280 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
10281 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10282
10283 commit b11f664f52c2855990107c18f242223377183575
10284 Author: Timur Tabi <timur@freescale.com>
10285 Date: Thu Apr 9 10:27:05 2009 -0500
10286
10287 net: fix ULI 526x macro usage in netdev.h
10288
10289 Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526. CONFIG_ULI526X
10290 is used everywhere else, so that's the correct macro name. Without this fix,
10291 Ethernet will not work on the Freescale MPC8610 HPCD.
10292
10293 Signed-off-by: Timur Tabi <timur@freescale.com>
10294 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10295
10296 commit 7ee38c044ca5041d3378d6507580ea4ec344af96
10297 Author: David Brownell <dbrownell@users.sourceforge.net>
10298 Date: Sun Apr 12 15:38:06 2009 -0700
10299
10300 fix DaVinci NS16550_REG_SIZE regression
10301
10302 Update the DaVinci DM6446 boards to use the new convention
10303 for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
10304 from the original 4 bytes, but these chips are little-endian.
10305
10306 (Resolves a regression added recently by the include/ns16550.h
10307 patch to "Unify structure declaration for registers". The code
10308 previously worked just fine because the registers were accessed
10309 as host-endian words, not as bytes.)
10310
10311 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
10312
10313 commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
10314 Author: Mike Frysinger <vapier@gentoo.org>
10315 Date: Sun Apr 12 22:29:20 2009 -0400
10316
10317 cmd_nand: drop duplicate NULL ptr check
10318
10319 The first if statement checks for NULL ptrs, so there is no need to check
10320 it again in later else cases (such as .oob).
10321
10322 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10323 CC: Scott Wood <scottwood@freescale.com>
10324
10325 commit 7732cef2eeb4e339cfcd8553fab773af73a20805
10326 Author: David Brownell <dbrownell@users.sourceforge.net>
10327 Date: Mon Apr 13 08:03:38 2009 -0700
10328
10329 CMD_UBI != MTD_PARTITIONS
10330
10331 Fix dependency goofage: it should certainly be possible to have the
10332 partition support without bringing in UBI commands.
10333
10334 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
10335 Acked-by: Stefan Roese <sr@denx.de>
10336
10337 commit 6ebff365eb63093ca35b687316002535c6a18820
10338 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10339 Date: Thu Apr 16 21:30:48 2009 +0200
10340
10341 at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
10342
10343 The timer has been rewrote with a precision at ~0,18%
10344
10345 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10346 Tested-by: Sergey Lapin <slapin@ossfans.org>
10347 Tested-by: Eric BENARD <ebenard@free.fr>
10348
10349 commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
10350 Author: Ilko Iliev <iliev@ronetix.at>
10351 Date: Thu Apr 16 21:30:48 2009 +0200
10352
10353 at91: add support for the PM9263 board of Ronetix GmbH
10354
10355 The PM9263 board is based on the AT91SAM9263-EK board.
10356
10357 Here is the page on Ronetix website:
10358 http://www.ronetix.at/starter_kit_9263.html
10359
10360 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
10361 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10362
10363 commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
10364 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10365 Date: Thu Apr 16 21:30:44 2009 +0200
10366
10367 at91sam9/at91cap: improve clock framework
10368
10369 calculate dynamically the clock rate and pllb setting for usb
10370
10371 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10372
10373 commit dd7c302099ef5590069bdbf292aaa8230cd59de7
10374 Author: Stefan Roese <sr@denx.de>
10375 Date: Wed Apr 15 14:08:48 2009 +0200
10376
10377 ppc4xx: Disable POST memory test on NAND-booting Kilauea
10378
10379 Don't run the memory POST on the NAND-booting version. It will
10380 overwrite part of the U-Boot image which is already loaded from NAND
10381 to SDRAM. We were just lucky that it booted at all with this SDRAM
10382 test enabled.
10383
10384 Signed-off-by: Stefan Roese <sr@denx.de>
10385
10386 commit 9a929170be89b27bce677504da27e88600c06c49
10387 Author: Stefan Roese <sr@denx.de>
10388 Date: Wed Apr 15 14:06:26 2009 +0200
10389
10390 ppc4xx: Disable POST memory test on NAND-booting Sequoia
10391
10392 Don't run the memory POST on the NAND-booting version. It will
10393 overwrite part of the U-Boot image which is already loaded from NAND
10394 to SDRAM. We were just lucky that it booted at all with this SDRAM
10395 test enabled.
10396
10397 Signed-off-by: Stefan Roese <sr@denx.de>
10398
10399 commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
10400 Author: Stefan Roese <sr@denx.de>
10401 Date: Wed Apr 15 11:32:53 2009 +0200
10402
10403 ppc4xx: Remove unused code for Sequoia NAND booting version
10404
10405 The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
10406 used at all. This patch changes it's define to the currently used value of
10407 133333333 and removes the unnecessary code.
10408
10409 Signed-off-by: Stefan Roese <sr@denx.de>
10410
10411 commit cf9409885cbe01405bad76790e99f8adf3351f4d
10412 Author: Stefan Roese <sr@denx.de>
10413 Date: Wed Apr 15 10:50:48 2009 +0200
10414
10415 ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
10416
10417 This additional text in the bootup log helps to see if the board is
10418 configured for NAND-booting. Especially helpful for boards that can
10419 boot from NOR and NAND (e.g. most of the AMCC eval boards).
10420
10421 Signed-off-by: Stefan Roese <sr@denx.de>
10422
10423 commit 5132106a27b8fb302677852b26ffd319b40d17e2
10424 Author: Stefan Roese <sr@denx.de>
10425 Date: Wed Apr 8 10:36:22 2009 +0200
10426
10427 ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
10428
10429 Currently the NOR & NAND support in Linux only works for the "standard"
10430 Sequoia, the version booting for NOR flash. The NAND-booting version
10431 has the chip-selects swapped. Here the chip-select mappings:
10432
10433 "Standard" NOR-booting version:
10434 CS0 NOR
10435 CS3 NAND
10436
10437 NAND-booting version:
10438 CS0 NAND
10439 CS3 NOR
10440
10441 With this path the dtb gets fixed-up, so that the correct chip-select
10442 numbers are patched in the dtb enabling correct NOR & NAND support
10443 in Linux on the NAND-booting Sequoia version.
10444
10445 Signed-off-by: Stefan Roese <sr@denx.de>
10446
10447 commit aad4eca4ba8d597747199d8af723426681557dda
10448 Author: Mike Frysinger <vapier@gentoo.org>
10449 Date: Sat Apr 4 09:10:27 2009 -0400
10450
10451 Blackfin: audit UART for all known anomalies
10452
10453 There is no code change here, just new comments, but this keeps me from
10454 having to do another audit from scratch in the future.
10455
10456 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10457
10458 commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
10459 Author: Mike Frysinger <vapier@gentoo.org>
10460 Date: Sat Apr 4 08:40:13 2009 -0400
10461
10462 Blackfin: add check for anomaly 05000362
10463
10464 DESCRIPTION:
10465 The column address width settings for banks 2 and 3 are misconnected in
10466 the SDRAM controller. Accesses to bank 2 will result in an error if the
10467 Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
10468 that of bank 2.
10469
10470 WORKAROUND:
10471 If using bank 2, make sure that banks 2 and 3 have the same column address
10472 width settings in the EBIU_SDBCTL register. This must be the case
10473 regardless of whether or not bank 3 is enabled.
10474
10475 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10476
10477 commit c2e07449f546fb375289cdac1a608fdc20357873
10478 Author: Mike Frysinger <vapier@gentoo.org>
10479 Date: Sat Apr 4 08:29:55 2009 -0400
10480
10481 Blackfin: add comment about anomaly 05000430 avoidance
10482
10483 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10484
10485 commit 48ab1509254a4c175e4f65c478a978928ffe09ec
10486 Author: Mike Frysinger <vapier@gentoo.org>
10487 Date: Sat Apr 4 08:10:22 2009 -0400
10488
10489 Blackfin: add workaround for anomaly 05000242
10490
10491 DESCRIPTION:
10492 If the DF bit is set prior to a hardware reset, the PLL will continue to
10493 divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
10494 cleared in the PLL_CTL register.
10495
10496 WORKAROUND:
10497 Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
10498 2 after reset.
10499
10500 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10501
10502 commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
10503 Author: Mike Frysinger <vapier@gentoo.org>
10504 Date: Sat Apr 4 08:09:24 2009 -0400
10505
10506 Blackfin: add workaround for anomaly 05000171
10507
10508 DESCRIPTION:
10509 The Boot ROM is executed at power up/reset and changes the value of the
10510 SICA_IWR registers from their default reset value of 0xFFFF, but does not
10511 restore them.
10512
10513 WORKAROUND:
10514 User code should not rely on the default value of these registers. Set
10515 the desired values explicitly.
10516
10517 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10518
10519 commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
10520 Author: Mike Frysinger <vapier@gentoo.org>
10521 Date: Sat Apr 4 08:22:36 2009 -0400
10522
10523 Blackfin: update anomaly sheets
10524
10525 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10526
10527 commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
10528 Author: Graf Yang <graf.yang@analog.com>
10529 Date: Sat Apr 4 07:45:57 2009 -0400
10530
10531 Blackfin: nand: flush peripheral before polling it
10532
10533 We need to make sure the data written to the nand flash controller makes
10534 it there before we start polling its status register. Otherwise, we may
10535 get stale data and return before the controller is actually ready.
10536
10537 Signed-off-by: Graf Yang <graf.yang@analog.com>
10538 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10539 Acked-by: Scott Wood <scottwood@freescale.com>
10540
10541 commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
10542 Author: Remy Bohmer <linux@bohmer.net>
10543 Date: Sun Apr 5 11:43:28 2009 +0200
10544
10545 Support for PXA27X UDC.
10546
10547 This Patch adds Support for PXA27X UDC.
10548 (Rebased to drivers/usb reorganisation)
10549
10550 Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
10551 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10552
10553 commit 2731b9a86685190d26b1883f27afda5ac8e1a313
10554 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10555 Date: Fri Apr 3 12:46:58 2009 +0200
10556
10557 drivers/usb: regorganisation
10558
10559 move to linux usb driver organisation
10560
10561 as following
10562
10563 drivers/usb/gadget
10564 drivers/usb/host
10565 drivers/usb/musb
10566
10567 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10568 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10569
10570 commit d04371a116d102e587ba7aa4c329b441cdbea3f4
10571 Author: Todor I Mollov <tmollov@ucsd.edu>
10572 Date: Sat Apr 4 06:53:06 2009 -0400
10573
10574 Blackfin: spi: make cs deassert function deterministic
10575
10576 Blackfin SPI driver was not driving the SPI chip-select high before
10577 putting the chip-select signals into tri-state mode. This is probably
10578 something that slipped by unnoticed in most designs. If the signals are
10579 put directly into a tri-state mode, then the board is relying on the
10580 pull-up resistors to pull up the chip-select before the next transaction.
10581 Most of the time this is fine, except when you have two transactions that
10582 follow each other very closely, such as the flash erase and read status
10583 register commands. In this case I was seeing a 500ns separation between
10584 the transactions. In my setup, with a 10kOhm pull-up, it would meet
10585 timing spec about half the time and resulted in intermittent errors. (A
10586 stronger pull up would fix this, but our design is targeted for low power
10587 consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
10588 I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
10589 chip-selects high before putting them into tri-state. For me, this
10590 resulted in a rise time of 5ns instead of the previous rise time of about
10591 1us, and fully satisfied the timing spec of the chip.
10592
10593 Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
10594 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10595
10596 commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
10597 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10598 Date: Sat Dec 13 21:08:05 2008 +0100
10599
10600 integratorap: fix PCI support
10601
10602 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10603
10604 commit 1c397508c836dfcb01fb2471c71de0727051f117
10605 Author: Dirk Behme <dirk.behme@googlemail.com>
10606 Date: Mon Mar 30 21:15:23 2009 +0200
10607
10608 OMAP3: Update Overo pin mux for new expansion board
10609
10610 A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
10611 switches. This patch changes the pinmux configuration for those pins.
10612 They were previously set up for unused MMC3_DAT4-7.
10613
10614 Signed-off-by: Steve Sakoman <steve@sakoman.com>
10615 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
10616
10617 commit ab298231518675b3784aea88ee9b978438f99e63
10618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10619 Date: Sun Apr 5 13:08:03 2009 +0200
10620
10621 arm: unify reset command
10622
10623 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10624
10625 commit b3acb6cd4059dfb29a5e99095d802717f53ff784
10626 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10627 Date: Sun Apr 5 13:06:31 2009 +0200
10628
10629 arm: clean cache management
10630
10631 unify arm cache management except for non standard cache as ARM7TDMI
10632
10633 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10634
10635 commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
10636 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10637 Date: Sun Apr 5 13:02:43 2009 +0200
10638
10639 arm: update co-processor 15 access
10640
10641 import system.h from linux
10642
10643 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10644
10645 commit 23e4af49e066a53cd3e3659b68ef90572d88de84
10646 Author: Guennadi Liakhovetski <lg@denx.de>
10647 Date: Sun Apr 5 00:42:02 2009 +0200
10648
10649 ARM: add the imx31_phycore_eet target to MAINTAINERS
10650
10651 imx31_phycore_eet is a variant of the imx31_phycore board with a few
10652 extensions, which justifies a separate entry in the MAINTAINERS list,
10653 whereas normally all entries sharing a single configuration file and a
10654 board/ directory have only one entry in MAINTAINERS.
10655
10656 Reported-by: Wolfgang Denk <wd@denx.de>
10657 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10658
10659 commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
10660 Author: Guennadi Liakhovetski <lg@denx.de>
10661 Date: Sun Apr 5 00:37:07 2009 +0200
10662
10663 ARM: fix out-of-tree build of imx31_phycore_eet
10664
10665 Fix out-of-tree build of the imx31_phycore_eet target.
10666
10667 Reported-by: Wolfgang Denk <wd@denx.de>
10668 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10669
10670 commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
10671 Author: Jon Smirl <jonsmirl@gmail.com>
10672 Date: Sat Apr 4 17:44:51 2009 -0400
10673
10674 mpc5200: reduce delays in i2c
10675
10676 The previous code waited 1000us before checking i2c
10677 status. Measurement shows i2c is usually ready in
10678 under 50us. Change the polling interval to 15us,
10679 loop 6,667 times to keep the polling timeout constant
10680 at 100ms.
10681
10682 commit 36003268968949110ef145d9f2eaf8439c96d25b
10683 Author: Sanjeev Premi <premi@ti.com>
10684 Date: Fri Apr 3 14:00:07 2009 +0530
10685
10686 OMAP: Fix compile issue
10687
10688 Fixes this compile error:
10689 board.c: In function 'do_switch_ecc':
10690 board.c:339: error: 'cmd_tbl_t' has no member named 'help'
10691 make[1]: *** [board.o] Error 1
10692 make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
10693 make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
10694
10695 This is due to the fact that current command uses long
10696 help for the usage print even if the CONFIG_SYS_LONGHELP
10697 is not enabled. (Thanks Jean-Christophe for explanation).
10698
10699 Signed-off-by: Sanjeev Premi <premi@ti.com>
10700
10701 commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
10702 Author: Minkyu Kang <mk7.kang@samsung.com>
10703 Date: Fri Apr 3 09:56:16 2009 +0900
10704
10705 s3c64xx: fix the wrong gpio offset
10706
10707 This patch fix the wrong gpio offset
10708
10709 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
10710
10711 commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
10712 Author: Kyungmin Park <kmpark@infradead.org>
10713 Date: Wed Nov 26 10:18:13 2008 +0900
10714
10715 Move machine specific code to board at s3c64xx (v2)
10716
10717 Move machine specific code to smdk6400.
10718 Some board use OneNAND instead of NAND.
10719
10720 Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
10721 So it's better to use macro instead of hard-coded value.
10722
10723 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
10724
10725 commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
10726 Author: Tom Rix <Tom.Rix@windriver.com>
10727 Date: Wed Apr 1 22:02:19 2009 -0500
10728
10729 ZOOM1 Remove legacy NAND defines
10730
10731 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
10732
10733 commit 5891151707ee5902fe62d554c247f42865815757
10734 Author: Tom Rix <Tom.Rix@windriver.com>
10735 Date: Wed Apr 1 22:02:20 2009 -0500
10736
10737 OMAP3 Fix multiline formatting in board init files.
10738
10739 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
10740
10741 commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
10742 Author: Wolfgang Denk <wd@denx.de>
10743 Date: Sun Apr 5 00:27:57 2009 +0200
10744
10745 Update CHANGELOG, coding style cleanup.
10746
10747 commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
10748 Author: Wolfgang Denk <wd@denx.de>
10749 Date: Sun Apr 5 00:18:44 2009 +0200
10750
10751 One more fix for building env_embedded.o
10752
10753 In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
10754 commit afcbce07, we also need to do the same for
10755 CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
10756
10757 Signed-off-by: Wolfgang Denk <wd@denx.de>
10758
10759 commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
10760 Author: Scott Wood <scottwood@freescale.com>
10761 Date: Thu Apr 2 16:15:10 2009 -0500
10762
10763 common/image.c: Relocate strings in tables.
10764
10765 Without this, u-boot can crash or print garbage if the original link
10766 address no longer points to a valid string.
10767
10768 Signed-off-by: Scott Wood <scottwood@freescale.com>
10769
10770 commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
10771 Author: Scott Wood <scottwood@freescale.com>
10772 Date: Thu Apr 2 16:10:36 2009 -0500
10773
10774 mpc8260: Fill in brg's clock-frequency in device tree.
10775
10776 Signed-off-by: Scott Wood <scottwood@freescale.com>
10777
10778 commit c73ed274a211699739d83c2cef92853dc6716e15
10779 Author: Scott Wood <scottwood@freescale.com>
10780 Date: Thu Apr 2 18:20:43 2009 -0500
10781
10782 MPC8260ADS: Add nfsboot/ramboot to default environment.
10783
10784 This brings it in line with other Freescale boards.
10785
10786 Signed-off-by: Scott Wood <scottwood@freescale.com>
10787
10788 commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
10789 Author: Andreas Huber <andreas.huber@keymile.com>
10790 Date: Thu Apr 2 17:15:34 2009 +0200
10791
10792 UBI/cfi-mtd: Fix mtd name for multiple chips
10793
10794 On platforms with multiple NOR chips, currently only the first one
10795 can be selected using the "ubi part" command. This patch fixes this
10796 problem by using different names for the NOR "mtd devices".
10797
10798 It also changes the name of the NOR MTD device from "cfi-mtd" to
10799 "norX" (X indexing the device numer) to better match the mtdparts
10800 defaults.
10801
10802 Signed-off-by: Stefan Roese <sr@denx.de>
10803 Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
10804
10805 commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
10806 Author: Peter Korsgaard <jacmet@sunsite.dk>
10807 Date: Tue Mar 31 17:52:16 2009 +0200
10808
10809 tools/setlocalversion: use git svn instead of git-svn
10810
10811 Use the new "git <subcmd>" syntax instead of the deprecated
10812 "git-<subcmd>".
10813
10814 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
10815
10816 commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
10817 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10818 Date: Tue Mar 31 14:09:40 2009 +0800
10819
10820 eSPI: add the eSPI register support
10821
10822 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10823
10824 commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
10825 Author: Minkyu Kang <mk7.kang@samsung.com>
10826 Date: Mon Mar 30 14:55:51 2009 +0900
10827
10828 cmd_mmc: add support for device command for selecting mmc device
10829
10830 This patch improves device command for selecting mmc device
10831
10832 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
10833
10834 commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
10835 Author: Alan Carvalho de Assis <acassis@gmail.com>
10836 Date: Sat Mar 28 19:50:16 2009 -0300
10837
10838 Small fix to m5282evb
10839
10840 This is just a small fix to get u-boot on m5282evb.
10841
10842 Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
10843
10844 commit febd7e4174e54579c9aa165c85c519fe5288f9d2
10845 Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
10846 Date: Fri Mar 27 10:21:14 2009 +0100
10847
10848 UBIFS: add R/O compatibility
10849
10850 Now UBIFS is supported by u-boot. If we ever decide to change the
10851 media format, then people will have to upgrade their u-boots to
10852 mount new format images. However, very often it is possible to
10853 preserve R/O forward-compatibility, even though the write
10854 forward-compatibility is not preserved.
10855
10856 This patch introduces a new super-block field which stores the
10857 R/O compatibility version.
10858
10859 Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
10860 Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
10861 Signed-off-by: Stefan Roese <sr@denx.de>
10862
10863 commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
10864 Author: Mike Frysinger <vapier@gentoo.org>
10865 Date: Mon Mar 23 22:27:34 2009 -0400
10866
10867 more command usage cleanup
10868
10869 Fix up a few dangling commands like in "Command usage cleanup" commit.
10870
10871 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10872
10873 commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
10874 Author: Ladislav Michl <ladis@linux-mips.org>
10875 Date: Mon Mar 23 12:06:07 2009 +0100
10876
10877 Separate mtdparts command from jffs2
10878
10879 On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
10880 > Currently the mtdparts commands are included in the jffs2 command support.
10881 > This doesn't make sense anymore since other commands (e.g. UBI) use this
10882 > infrastructure as well now. This patch separates the mtdparts commands from
10883 > the jffs2 commands making it possible to only select mtdparts when no JFFS2
10884 > support is needed.
10885
10886 ... and to make it useful for NAND chips as well, we should also remove now
10887 unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
10888 jffs2/load_kernel.h which is a bit misleading filename for that purpose,
10889 but that can be fixed later (tm).
10890
10891 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10892
10893 commit b196ca75503ce307c535b87bf47d51f05e7530df
10894 Author: Mike Frysinger <vapier@gentoo.org>
10895 Date: Sun Mar 22 22:18:01 2009 -0400
10896
10897 smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
10898
10899 Rather than sticking Blackfin-specific stuff into the eeprom example, use
10900 an indirect macro so that any board can override it with their own magic
10901 sauce in their board config file.
10902
10903 Also fix some spurious semi-colons in defines while I'm at it ...
10904
10905 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10906 CC: Ben Warren <biggerbadderben@gmail.com>
10907
10908 commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
10909 Author: Sascha Hauer <s.hauer@pengutronix.de>
10910 Date: Sat Mar 21 09:38:46 2009 -0400
10911
10912 mpc52xx phy: initialize only when needed
10913
10914 Do not initialize phy on startup, instead initialize it
10915 when we actually need it.
10916
10917 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
10918
10919 commit 03bab0091948196b9558248684c04f60943ca4b5
10920 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10921 Date: Mon Mar 30 16:51:40 2009 +0200
10922
10923 at91sam9263ek: enable hush and auto complete support
10924
10925 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10926 Acked-by: Stelian Pop <stelian@popies.net>
10927
10928 commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
10929 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10930 Date: Fri Mar 27 23:26:44 2009 +0100
10931
10932 at91: move dataflash spi driver to drivers/spi
10933
10934 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10935
10936 commit 2b7178afce59f71e95da657273f4132012098c1f
10937 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10938 Date: Fri Mar 27 23:26:44 2009 +0100
10939
10940 at91: move usb driver to drivers/usb
10941
10942 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10943
10944 commit f82518d7f443ebac5f8821103a3c521c963aa6ee
10945 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10946 Date: Fri Mar 27 23:26:43 2009 +0100
10947
10948 at91rm9200: Reset update
10949
10950 Update the rm9200 reset sequence to try executing a board-specific reset
10951 function and move specific board reset to board.
10952
10953 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10954
10955 commit 3524049cd053746298e4cfab2449882e75c146fc
10956 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10957 Date: Fri Mar 27 23:26:43 2009 +0100
10958
10959 at91rm9200: move serial shutdown code to serial drivers
10960
10961 introduce serial_exit for this purpose. Use it only when the rm9200
10962 serial driver is active
10963
10964 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10965
10966 commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
10967 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10968 Date: Fri Mar 27 23:26:43 2009 +0100
10969
10970 at91rm9200: move serial driver to drivers/serial
10971
10972 add CONFIG_AT91RM9200_USART to activate the driver
10973
10974 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10975
10976 commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
10977 Author: Ulf Samuelsson <ulf@atmel.com>
10978 Date: Fri Mar 27 23:26:43 2009 +0100
10979
10980 Add support for the AT91RM9200EK Board.
10981
10982 The AT91RM9200-EK Evaluation Board supports the AT91RM9200
10983 ARM9-based 32-bit RISC microcontroller and enables real-time code development
10984 and evaluation.
10985
10986 Here is the chip page on Atmel website:
10987 http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
10988
10989 with
10990 - NOR (cfi driver)
10991 - DataFlash
10992 - USB OHCI
10993 - Net
10994 - I2C (hard)
10995
10996 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
10997 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10998
10999 commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
11000 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11001 Date: Fri Mar 27 23:26:42 2009 +0100
11002
11003 add dataflash mmc mux missing support
11004
11005 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11006
11007 commit 2a325ce3c705ab2d82760afc541c511328472df8
11008 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11009 Date: Fri Mar 27 23:26:42 2009 +0100
11010
11011 at91rm9200dk: Move conditional compilation to Makefile
11012
11013 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11014
11015 commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
11016 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11017 Date: Fri Mar 27 23:26:42 2009 +0100
11018
11019 at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
11020
11021 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11022
11023 commit 843a2654bce74192de2b5a43474fdc27a572ab40
11024 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11025 Date: Fri Mar 27 23:26:42 2009 +0100
11026
11027 at91sam9: add watchdog support
11028
11029 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
11030 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11031
11032 commit a47492ac60657dd9d59c713aa049319ea6eabd52
11033 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11034 Date: Fri Mar 27 13:14:52 2009 +0100
11035
11036 at91sam9/at91cap: spi init add hardware chip select support
11037
11038 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11039
11040 commit 66932ac3929c7a145a6ef6574a96fd7535154951
11041 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11042 Date: Sat Apr 4 19:15:40 2009 +0200
11043
11044 netstar: fix crc32.c dependancy location
11045
11046 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11047
11048 commit 42f9ebff2f758bef524780a00c712eb63a72d99b
11049 Author: Scott Wood <scottwood@freescale.com>
11050 Date: Fri Apr 3 15:24:40 2009 -0500
11051
11052 MPC8260ADS: Define CONFIG_HAS_ETH0.
11053
11054 This is required so that the MAC address will be updated in the device tree.
11055
11056 Signed-off-by: Scott Wood <scottwood@freescale.com>
11057
11058 commit 8701eceffdf77e2908d0b58add0dabc16edf6087
11059 Author: Scott Wood <scottwood@freescale.com>
11060 Date: Fri Apr 3 15:26:45 2009 -0500
11061
11062 PQ2FADS: Enable PCI.
11063
11064 PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
11065
11066 Signed-off-by: Scott Wood <scottwood@freescale.com>
11067
11068 commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
11069 Author: Wolfgang Denk <wd@denx.de>
11070 Date: Sat Apr 4 16:57:50 2009 +0200
11071
11072 Fix quoting bug introduced by commit 74de7aef
11073
11074 Signed-off-by: Wolfgang Denk <wd@denx.de>
11075
11076 commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
11077 Author: Wolfgang Denk <wd@denx.de>
11078 Date: Sat Apr 4 16:14:51 2009 +0200
11079
11080 Fix implicit declaration of function 'htons'
11081
11082 Include <netinet/in.h> instead of <linux/in.h> to get htons()
11083 prototpye.
11084
11085 Signed-off-by: Wolfgang Denk <wd@denx.de>
11086
11087 commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
11088 Author: Kumar Gala <galak@kernel.crashing.org>
11089 Date: Sat Apr 4 10:21:02 2009 -0500
11090
11091 fsl_law: Fix bug in calculation of LAW sizing
11092
11093 In set_ddr_laws() when we determined how much of the size requested
11094 to be mapped was covered by the the first LAW we needed to recalculate
11095 the size based on what was actually mapped.
11096
11097 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11098
11099 commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
11100 Author: Kumar Gala <galak@kernel.crashing.org>
11101 Date: Thu Apr 2 13:57:05 2009 -0500
11102
11103 fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
11104
11105 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11106
11107 commit c8514622e2713d9c47919acfe23fce386782afe7
11108 Author: Kumar Gala <galak@kernel.crashing.org>
11109 Date: Thu Apr 2 13:22:48 2009 -0500
11110
11111 fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
11112
11113 Rename the pci header for FSL HW so we can move some prototypes
11114 in there and stop doing explicit externs
11115
11116 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11117
11118 commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
11119 Author: Wolfgang Denk <wd@denx.de>
11120 Date: Sat Apr 4 16:10:40 2009 +0200
11121
11122 Fix building of env_embedded.o
11123
11124 Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
11125 only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
11126 building for many boards.
11127
11128 We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
11129 set.
11130
11131 Signed-off-by: Wolfgang Denk <wd@denx.de>
11132
11133 commit a31e091ad70915278fb15b79d6ae53ea2d44b251
11134 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11135 Date: Sat Apr 4 12:49:11 2009 +0200
11136
11137 rename include/zlib.h to include/u-boot/zlib.h
11138
11139 Some systems have zlib.h installed in /usr/include/. This isn't the
11140 desired file for u-boot code - we want the one in include/zlib.h.
11141 This rename will avoid the conflict.
11142
11143 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11144 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11145
11146 commit ae644c178f097874a92a6d934f364985fc7e075a
11147 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11148 Date: Sat Apr 4 12:46:31 2009 +0200
11149
11150 tools/Makefile: fix image.c dependancy location
11151
11152 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11153 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11154
11155 commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
11156 Author: Mike Frysinger <vapier@gentoo.org>
11157 Date: Sat Apr 4 07:42:25 2009 -0400
11158
11159 tools: add ncb to gitignore
11160
11161 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11162
11163 commit 453c0d7558215cbc8636d94af172886d84e0dbba
11164 Author: Detlev Zundel <dzu@denx.de>
11165 Date: Fri Apr 3 16:45:46 2009 +0200
11166
11167 include/ns16550.h: Unify structure declaration for registers
11168
11169 Instead of special casing the different access patterns, use common
11170 code with light macros sprinkled in to accomodate for the different
11171 layouts of the register structure.
11172
11173 Note that this also changes the types of the registers for the
11174 "positively packed (>1)" cases. As the registers truly are unsigned
11175 chars, this is surely the Right Thing, but it is a semantic change.
11176 Note that for this case depending on the endianness on the bus, we may
11177 see a change of behaviour.
11178
11179 Signed-off-by: Detlev Zundel <dzu@denx.de>
11180
11181 commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
11182 Author: Peter Tyser <ptyser@xes-inc.com>
11183 Date: Fri Mar 13 18:54:52 2009 -0500
11184
11185 Delete now unused tools/Makefile.win32
11186
11187 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11188
11189 commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
11190 Author: Peter Tyser <ptyser@xes-inc.com>
11191 Date: Fri Mar 13 18:54:51 2009 -0500
11192
11193 Add support for building native win32 tools
11194
11195 Add support for compiling the host tools in the tools directory using
11196 the MinGW toolchain. This produces executables which can be used on
11197 standard Windows computers without requiring cygwin.
11198
11199 One must specify the MinGW compiler and strip utilities as if they
11200 were the host toolchain in order to build win32 executables, eg:
11201
11202 make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
11203
11204 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11205
11206 commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
11207 Author: Peter Tyser <ptyser@xes-inc.com>
11208 Date: Fri Mar 13 18:54:50 2009 -0500
11209
11210 tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
11211
11212 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11213
11214 commit b0d4d7219a4806e46affc96bd1f65397194a6e72
11215 Author: Peter Tyser <ptyser@xes-inc.com>
11216 Date: Fri Mar 13 18:54:49 2009 -0500
11217
11218 tools/Makefile: Create generic build rules
11219
11220 Create a few generic build rules to replace the current method which has
11221 1 build target for each file
11222
11223 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11224
11225 commit 273174ddbcce215c42f6c307470cd5580a3f72bf
11226 Author: Peter Tyser <ptyser@xes-inc.com>
11227 Date: Fri Mar 13 18:54:48 2009 -0500
11228
11229 tools/Makefile: Use auto-generated object file dependencies
11230
11231 Files in the SRCS variable have their dependencies automatically
11232 generated so remove duplicate explicit dependencies
11233
11234 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11235
11236 commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
11237 Author: Peter Tyser <ptyser@xes-inc.com>
11238 Date: Fri Mar 13 18:54:47 2009 -0500
11239
11240 tools/Makefile: Remove symlinks for remaining source files
11241
11242 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11243
11244 commit eed073315b6447eceadf7468a4c2b757442c7c6f
11245 Author: Peter Tyser <ptyser@xes-inc.com>
11246 Date: Fri Mar 13 18:54:46 2009 -0500
11247
11248 tools/Makefile: Dynamically generate libfdt object dependencies
11249
11250 Add the libfdt files to the SRCS variable so that they have their
11251 dependencies automatically generated
11252
11253 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11254
11255 commit c0170175393b94560fa7a5da6dd31377df5f4a72
11256 Author: Peter Tyser <ptyser@xes-inc.com>
11257 Date: Fri Mar 13 18:54:45 2009 -0500
11258
11259 tools/Makefile: Remove symlinks for fdt targets
11260
11261 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11262
11263 commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
11264 Author: Peter Tyser <ptyser@xes-inc.com>
11265 Date: Fri Mar 13 18:54:44 2009 -0500
11266
11267 tools/Makefile: Add libfdt/ to the include search path
11268
11269 This change makes the process of symlinking libfdt_internal.h
11270 unnecessary
11271
11272 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11273
11274 commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
11275 Author: Peter Tyser <ptyser@xes-inc.com>
11276 Date: Fri Mar 13 18:54:43 2009 -0500
11277
11278 tools: Remove unecessary symlinking of zlib.h
11279
11280 crc32.c uses the zlib.h header in include/u-boot/zlib.h. The symlink
11281 was previously necessary to give U-Boot's version of zlib.h precedence
11282 over the host computer's version of zlib.h.
11283
11284 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11285
11286 commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
11287 Author: Peter Tyser <ptyser@xes-inc.com>
11288 Date: Fri Mar 13 18:54:42 2009 -0500
11289
11290 tools/Makefile: Add tools/ to the include search path
11291
11292 This change makes the process of symlinking mkimage.h and fdt_host.h
11293 unnecessary
11294
11295 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11296
11297 commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
11298 Author: Peter Tyser <ptyser@xes-inc.com>
11299 Date: Fri Mar 13 18:54:41 2009 -0500
11300
11301 tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
11302
11303 Also conditionally add ncb.o to OBJ_FILES list
11304
11305 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11306
11307 commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
11308 Author: Peter Tyser <ptyser@xes-inc.com>
11309 Date: Fri Mar 13 18:54:40 2009 -0500
11310
11311 tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
11312
11313 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11314
11315 commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
11316 Author: Peter Tyser <ptyser@xes-inc.com>
11317 Date: Fri Mar 13 18:54:39 2009 -0500
11318
11319 tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
11320
11321 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11322
11323 commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
11324 Author: Peter Tyser <ptyser@xes-inc.com>
11325 Date: Fri Mar 13 18:54:38 2009 -0500
11326
11327 tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
11328
11329 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11330
11331 commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
11332 Author: Peter Tyser <ptyser@xes-inc.com>
11333 Date: Fri Mar 13 18:54:37 2009 -0500
11334
11335 tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
11336
11337 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11338
11339 commit eeba8617908e33f7e7db3b1588c04ca65b856793
11340 Author: Peter Tyser <ptyser@xes-inc.com>
11341 Date: Fri Mar 13 18:54:36 2009 -0500
11342
11343 tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
11344
11345 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11346
11347 commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
11348 Author: Peter Tyser <ptyser@xes-inc.com>
11349 Date: Fri Mar 13 18:54:35 2009 -0500
11350
11351 tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
11352
11353 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11354
11355 commit ee3584a5970230ee96aae19505ad3226734ee4ff
11356 Author: Peter Tyser <ptyser@xes-inc.com>
11357 Date: Fri Mar 13 18:54:34 2009 -0500
11358
11359 tools/Makefile: Split variable declarations into multiple lines
11360
11361 Split variable declarations into multiple lines and use the standard
11362 VAR-y convention. Also move object and binary variable declarations to
11363 after config.mk has been included to allow for these lists to utilize
11364 the CONFIG_XXX variables.
11365
11366 These changes lay the groundwork for conditional compilation of files
11367 in the tools directory.
11368
11369 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11370
11371 commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
11372 Author: Peter Tyser <ptyser@xes-inc.com>
11373 Date: Fri Mar 13 18:54:33 2009 -0500
11374
11375 tools/Makefile: Remove inappropriate double-tabs
11376
11377 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11378
11379 commit 652f4ba076689fd0acd447561a777b1c440a4b57
11380 Author: Peter Tyser <ptyser@xes-inc.com>
11381 Date: Fri Mar 13 18:54:32 2009 -0500
11382
11383 tools/Makefile: Remove HOSTARCH HOSTOS defines
11384
11385 The values of HOSTARCH and HOSTOS which are exported from the top-level
11386 Makefile should be used
11387
11388 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11389
11390 commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
11391 Author: Peter Tyser <ptyser@xes-inc.com>
11392 Date: Fri Mar 13 18:54:31 2009 -0500
11393
11394 gen_eth_addr: Use POSIX rand() and srand()
11395
11396 Replace random()/srandom() use with rand()/srand() to support
11397 compilation with the mingw toolchain. The rand()/srand() functions are
11398 generally more common and are functionally equivalent to the original
11399 random()/srandom() calls.
11400
11401 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11402
11403 commit 24d2ae5e9debe4b75151a55251031a14477fa875
11404 Author: Peter Tyser <ptyser@xes-inc.com>
11405 Date: Fri Mar 13 18:54:28 2009 -0500
11406
11407 elf.h: Use stdint.h to provide standard typedefs for WIN32
11408
11409 The original code provided an incomplete set of typedefs for WIN32
11410 compiles and replicated the standard typedefs that are already
11411 provided by stdint.h
11412
11413 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11414
11415 commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
11416 Author: Peter Tyser <ptyser@xes-inc.com>
11417 Date: Fri Mar 13 18:54:27 2009 -0500
11418
11419 common/Makefile: Conditionally compile env_embedded.o
11420
11421 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11422
11423 commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
11424 Author: Peter Tyser <ptyser@xes-inc.com>
11425 Date: Fri Mar 13 18:54:26 2009 -0500
11426
11427 Makefile: Add removal of *.exe files to clean target
11428
11429 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11430
11431 commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
11432 Author: Peter Tyser <ptyser@xes-inc.com>
11433 Date: Fri Mar 13 18:54:25 2009 -0500
11434
11435 Makefile: Make autoconf.mk a dependency of the depend target
11436
11437 The original code did not generate autoconf.mk until after some targets
11438 dependencies had already been calculated, for example the directories in
11439 the SUBDIRS variable
11440
11441 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11442
11443 commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
11444 Author: unsik Kim <donari75@gmail.com>
11445 Date: Wed Feb 25 11:31:24 2009 +0900
11446
11447 mflash: Initial mflash support
11448
11449 Mflash is fusion memory device mainly targeted consumer eletronic and
11450 mobile phone.
11451 Internally, it have nand flash and other hardware logics and supports
11452 some different operation (ATA, IO, XIP) modes.
11453
11454 IO mode is custom mode for the host that doesn't have IDE interface.
11455 (Many mobile targeted SoC doesn't have IDE bus)
11456
11457 This driver support mflash IO mode.
11458
11459 Followings are brief descriptions about IO mode.
11460
11461 1. IO mode based on ATA protocol and uses some custom command. (read
11462 confirm, write confirm)
11463 2. IO mode uses SRAM bus interface.
11464
11465 Signed-off-by: unsik Kim <donari75@gmail.com>
11466
11467 commit 200779e3e2a9aeda7030b171a8c39d7797019917
11468 Author: Detlev Zundel <dzu@denx.de>
11469 Date: Fri Apr 3 11:53:01 2009 +0200
11470
11471 Rename common ns16550 constants with UART_ prefix to prevent conflicts
11472
11473 Fix problems introduced in commit
11474 7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
11475 diagnosis functions for inka4x0] which redefined MSR_RI which is
11476 already used on PowerPC systems.
11477
11478 Also eliminate redundant definitions in ps2mult.h. More cleanup will
11479 be needed for other redundant occurrences though.
11480
11481 Signed-off-by: Detlev Zundel <dzu@denx.de>
11482
11483 commit 99067b08f4a0ce20ff337a35211239f334d8f451
11484 Author: Scott Wood <scottwood@freescale.com>
11485 Date: Wed Apr 1 15:33:24 2009 -0500
11486
11487 Noisily disable the legacy NAND subsystem.
11488
11489 Legacy NAND is marked for feature removal after April 2009 (i.e. this
11490 upcoming release). There are still several boards that reference it
11491 (though many do so only for disk-on-chip support which has been silently
11492 disabled for a while now). These boards will now fail to build
11493 with #error, though the code is still there if the user removes #error.
11494
11495 The plan is to remove the code outright in the next release, along with
11496 any board code that refers to it (such as board/esd/common/auto_update.c).
11497
11498 Also, remove the legacy NAND API description from README.nand.
11499
11500 Signed-off-by: Scott Wood <scottwood@freescale.com>
11501
11502 commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
11503 Author: apgmoorthy <moorthy.apg@samsung.com>
11504 Date: Fri Mar 27 14:45:23 2009 +0530
11505
11506 Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
11507
11508 Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
11509 However, u-boot image for apollon board is 195KB making the board
11510 unbootable with OneNAND.
11511
11512 Fix ipl to read CONFIG_SYS_MONITOR_LEN.
11513 CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
11514
11515 Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
11516 Signed-off-by: Gangheyamoorthy <moorthy.apg@samsung.com>
11517 Signed-off-by: Scott Wood <scottwood@freescale.com>
11518
11519 commit 74de7aefd79690bae8cf5a5120f5962d444be089
11520 Author: Wolfgang Denk <wd@denx.de>
11521 Date: Wed Apr 1 23:34:12 2009 +0200
11522
11523 Add "source" command; prepare removal of "autoscr" command
11524
11525 According to the doc/feature-removal-schedule.txt, the "autoscr"
11526 command will be replaced by the "source" command in approximately 6
11527 months from now.
11528
11529 This patch prepares this change and starts a 6 month transition
11530 period as follows:
11531
11532 - The new "source" command has been added, which implements exactly
11533 the same functionlaity as the old "autoscr" command before
11534 - The old "autoscr" command name is kept as an alias for compatibility
11535 - Command sequences, script files atc. have been adapted to use the
11536 new "source" command
11537 - Related environment variables ("autoscript", "autoscript_uname")
11538 have *not* been adapted yet; these will be renamed resp. removed in
11539 a separate patch when the support for the "autoscr" command get's
11540 finally dropped.
11541
11542 Signed-off-by: Wolfgang Denk <wd@denx.de>
11543
11544 commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
11545 Author: Wolfgang Denk <wd@denx.de>
11546 Date: Thu Apr 2 17:31:09 2009 +0200
11547
11548 Add "GPL cleanup" task to feature-removal-schedule.txt
11549
11550 Announce removal of all non-GPL or GPL-incompatible files
11551 after August 2009.
11552
11553 Signed-off-by: Wolfgang Denk <wd@denx.de>
11554
11555 commit d9596ffbdc79cea285010b67dd20a4618303f624
11556 Author: Mike Frysinger <vapier@gentoo.org>
11557 Date: Thu Apr 2 12:51:28 2009 -0400
11558
11559 sf: stmicro: dont send 4 bytes when reading status register
11560
11561 I can't find anywhere in the datasheet that says the status register needs
11562 3 dummy bytes sent to it before being able to read back the first real
11563 result. Tests on a Blackfin board show that after writing the opcode, the
11564 status register starts coming back immediately. So only write out the
11565 read status register opcode before polling the result.
11566
11567 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11568 CC: Jason McMullan <mcmullan@netapp.com>
11569 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11570
11571 commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
11572 Author: Mike Frysinger <vapier@gentoo.org>
11573 Date: Thu Apr 2 08:11:31 2009 -0400
11574
11575 sf: set common timeouts in seconds, not milliseconds
11576
11577 Since timeouts are only hit when there is a problem in the system, we
11578 don't want to prematurely timeout on a functioning setup. Thus having
11579 low timeouts (in milliseconds) doesn't gain us anything in the production
11580 case, but rather increases likely hood of causing problems where none
11581 otherwise exist.
11582
11583 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11584 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11585
11586 commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
11587 Author: Mike Frysinger <vapier@gentoo.org>
11588 Date: Thu Apr 2 06:51:49 2009 -0400
11589
11590 sf: stmicro: use common page timeout define
11591
11592 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11593 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11594
11595 commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
11596 Author: Mike Frysinger <vapier@gentoo.org>
11597 Date: Sat Mar 28 06:41:09 2009 -0400
11598
11599 sf: always read 5 bytes for the idcode
11600
11601 Some SPI flash drivers like to have extended id information available
11602 (like the spansion flash), so rather than making it re-issue the ID cmd
11603 to get at the last 2 bytes, have the common code read 5 bytes rather than
11604 just 3. This also matches the Linux behavior where it always reads 5 id
11605 bytes from all flashes.
11606
11607 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11608 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11609 CC: Mingkai Hu <Mingkai.hu@freescale.com>
11610
11611 commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
11612 Author: Mike Frysinger <vapier@gentoo.org>
11613 Date: Fri Mar 27 16:34:21 2009 -0400
11614
11615 sf: stmicro: drop redundant id read
11616
11617 The common SPI flash code reads the idcode and passes it down to the SPI
11618 flash driver, so there is no need to read it again ourselves.
11619
11620 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11621 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11622 CC: Jason McMullan <mcmullan@netapp.com>
11623 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11624
11625 commit 1c5874374e091b4bb62917c519861f7682fe066e
11626 Author: Mike Frysinger <vapier@gentoo.org>
11627 Date: Fri Mar 27 19:27:58 2009 -0400
11628
11629 sf: add driver for SST flashes
11630
11631 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11632 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11633
11634 commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
11635 Author: Mike Frysinger <vapier@gentoo.org>
11636 Date: Mon Mar 23 23:03:58 2009 -0400
11637
11638 sf: drop DEBUG defines
11639
11640 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11641 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11642
11643 commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
11644 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11645 Date: Sun Jan 4 07:44:07 2009 +0100
11646
11647 mtd: add some at45 spi flash support
11648
11649 - AT45DB321D
11650 - AT45DB161D
11651 - AT45DB081D
11652 - AT45DB041D
11653 - AT45DB021D
11654 - AT45DB011D
11655
11656 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11657 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11658
11659 commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
11660 Author: Mingkai Hu <Mingkai.hu@freescale.com>
11661 Date: Tue Mar 31 14:09:41 2009 +0800
11662
11663 mtd: SPI Flash: Support the Spansion Flash
11664
11665 Add MTD SPI Flash support for S25FL008A, S25FL016A,
11666 S25FL032A, S25FL064A, S25FL128P.
11667
11668 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
11669 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11670
11671 commit 40587701924aa0afc86b3840421b4cc6de42c748
11672 Author: Mike Frysinger <vapier@gentoo.org>
11673 Date: Mon Mar 30 20:56:45 2009 -0400
11674
11675 Blackfin: force all boards to HZ of 1000
11676
11677 Since the Blackfin timer code requires HZ to be 1000, barf on any board
11678 that tries to use a different value.
11679
11680 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11681
11682 commit f4032d2eec9d71a59c6c724671e577f67a76839b
11683 Author: Mike Frysinger <vapier@gentoo.org>
11684 Date: Fri Mar 27 21:07:45 2009 -0400
11685
11686 Blackfin: bf533-stamp: drop old spi flash driver
11687
11688 Now that the common SPI flash code supports all the flashes, we can stop
11689 using the old driver.
11690
11691 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11692
11693 commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
11694 Author: Mike Frysinger <vapier@gentoo.org>
11695 Date: Thu Mar 26 15:42:12 2009 -0400
11696
11697 Blackfin: add BF538/BF539 SPI portmux handling
11698
11699 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11700
11701 commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
11702 Author: Mike Frysinger <vapier@gentoo.org>
11703 Date: Mon Mar 23 22:36:10 2009 -0400
11704
11705 Blackfin: do not delay on output bytes
11706
11707 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11708
11709 commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
11710 Author: Mike Frysinger <vapier@gentoo.org>
11711 Date: Mon Mar 23 22:17:27 2009 -0400
11712
11713 Blackfin: drop newline from OTP help
11714
11715 Looks like I accidentally added a newline to the OTP help when merging and
11716 older change.
11717
11718 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11719
11720 commit d3c38d96b991d641a33f7748130dae008563cdc9
11721 Author: Mike Frysinger <vapier@gentoo.org>
11722 Date: Sun Mar 22 23:43:31 2009 -0400
11723
11724 Blackfin: convert bfin_sdh to legacy mmc
11725
11726 The Blackfin SDH controller is still using the legacy framework, so update
11727 the driver to use the renamed functions.
11728
11729 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11730
11731 commit d248cfb2d940b742f6bfdba9b832a3df96da3101
11732 Author: Mike Frysinger <vapier@gentoo.org>
11733 Date: Sun Feb 22 16:30:38 2009 -0500
11734
11735 Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
11736
11737 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11738
11739 commit ad9073211ca9e62162a39851e082b8d07a662fb6
11740 Author: Mike Frysinger <vapier@gentoo.org>
11741 Date: Fri Feb 13 17:10:58 2009 -0500
11742
11743 Blackfin: fix crash when booting from external memory
11744
11745 When testing a u-boot binary that hasn't been booted from the bootrom, we
11746 have to make sure the bootstruct structure has sane storage space. If we
11747 don't, the initcode will crash when it tries to dereference an invalid
11748 pointer.
11749
11750 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11751
11752 commit 84a9dda324c3faa56be14449d7519b993d9397a9
11753 Author: Mike Frysinger <vapier@gentoo.org>
11754 Date: Sun Oct 12 21:32:52 2008 -0400
11755
11756 Blackfin: bf518f-ezbrd: new board port
11757
11758 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11759
11760 commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
11761 Author: Mike Frysinger <vapier@gentoo.org>
11762 Date: Sun Oct 12 21:30:48 2008 -0400
11763
11764 Blackfin: bf526-ezbrd: new board port
11765
11766 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11767
11768 commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
11769 Author: Mike Frysinger <vapier@gentoo.org>
11770 Date: Sun Oct 12 21:25:33 2008 -0400
11771
11772 Blackfin: bf538f-ezkit: new board port
11773
11774 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11775
11776 commit d9a5d113b93583c984711127ab8503e136ed1e4a
11777 Author: Mike Frysinger <vapier@gentoo.org>
11778 Date: Sun Oct 12 20:59:12 2008 -0400
11779
11780 Blackfin: bf527-ezkit: new board port
11781
11782 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11783
11784 commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
11785 Author: Mike Frysinger <vapier@gentoo.org>
11786 Date: Sun Oct 12 05:05:42 2008 -0400
11787
11788 Blackfin: bf548-ezkit: new board port
11789
11790 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11791
11792 commit 67b89c79e72fe86b0ea0199425d880630beb95d8
11793 Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
11794 Date: Tue Mar 3 14:23:59 2009 +0100
11795
11796 libfdt: Fix C++ compile-time cast error on gnu 4.2.1
11797
11798 Allow the inclusion of libfdt.h in C++ source.
11799
11800 Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
11801 Acked-by: David Gibson <david@gibson.dropbear.id.au>
11802
11803 commit 13d93f38e86818739317b0206d597265cf9e675e
11804 Author: Emil Medve <Emilian.Medve@Freescale.com>
11805 Date: Mon Feb 23 10:43:36 2009 -0600
11806
11807 Fix a possible overflow case detected by gcc 4.3.2
11808
11809 .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
11810 .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
11811
11812 Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
11813
11814 commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
11815 Author: David Gibson <david@gibson.dropbear.id.au>
11816 Date: Fri Feb 6 14:03:24 2009 +1100
11817
11818 libfdt: Rework/cleanup fdt_next_tag()
11819
11820 Currently, callers of fdt_next_tag() must usually follow the call with
11821 some sort of call to fdt_offset_ptr() to verify that the blob isn't
11822 truncated in the middle of the tag data they're going to process.
11823 This is a bit silly, since fdt_next_tag() generally has to call
11824 fdt_offset_ptr() on at least some of the data following the tag for
11825 its own operation.
11826
11827 This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
11828 verify the data between its starting offset and the offset it returns
11829 in nextoffset. This simplifies fdt_get_property() which no longer has
11830 to verify itself that the property data is all present.
11831
11832 At the same time, I neaten and clarify the error handling for
11833 fdt_next_tag(). Previously, fdt_next_tag() could return -1 instead of
11834 a tag value in some circumstances - which almost none of the callers
11835 checked for. Also, fdt_next_tag() could return FDT_END either because
11836 it encountered an FDT_END tag, or because it reached the end of the
11837 structure block - no way was provided to tell between these cases.
11838
11839 With this patch, fdt_next_tag() always returns FDT_END with a negative
11840 value in nextoffset for an error. This means the several places which
11841 loop looking for FDT_END will still work correctly - they only need to
11842 check for errors at the end. The errors which fdt_next_tag() can
11843 report are:
11844 - -FDT_ERR_TRUNCATED if it reached the end of the structure
11845 block instead of finding a tag.
11846
11847 - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
11848 tag data couldn't be verified with fdt_offset_ptr().
11849
11850 This patch also updates the callers of fdt_next_tag(), where
11851 appropriate, to make use of the new error reporting.
11852
11853 Finally, the prototype for the long gone _fdt_next_tag() is removed
11854 from libfdt_internal.h.
11855
11856 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
11857
11858 commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
11859 Author: David Gibson <david@gibson.dropbear.id.au>
11860 Date: Fri Feb 6 14:01:56 2009 +1100
11861
11862 libfdt: Rework fdt_next_node()
11863
11864 Currently fdt_next_node() will find the next node in the blob
11865 regardless of whether it is above, below or at the same level in the
11866 tree as the starting node - the depth parameter is updated to indicate
11867 which is the case. When a depth parameter is supplied, this patch
11868 makes it instead terminate immediately when it finds the END_NODE tag
11869 for a node at depth 0. In this case it returns the offset immediately
11870 past the END_NODE tag.
11871
11872 This has a couple of advantages. First, this slightly simplifies
11873 fdt_subnode_offset(), which no longer needs to explicitly check that
11874 fdt_next_node()'s iteration hasn't left the starting node. Second,
11875 this allows fdt_next_node() to be used to implement
11876 _fdt_node_end_offset() considerably simplifying the latter function.
11877
11878 The other users of fdt_next_node() either don't need to iterate out of
11879 the starting node, or don't pass a depth parameter at all. Any
11880 callers that really need to iterate out of the starting node, but keep
11881 tracking depth can do so by biasing the initial depth value.
11882
11883 This is a semantic change, but I think it's very unlikely to break any
11884 existing library users.
11885
11886 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
11887
11888 commit c123098035be8bae3859bbfbd06861f197c07631
11889 Author: Scott Wood <scottwood@freescale.com>
11890 Date: Tue Mar 31 17:49:36 2009 -0500
11891
11892 mpc83xx: Set guarded bit on BAT that covers the end of the address space
11893
11894 The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
11895 address space; however, not all of this space is covered by a device. In
11896 particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
11897 at the far end of the address space.
11898
11899 In zlib, there is a loop that references p[-1] if p is non-NULL. Under
11900 some circumstances, this leads to the CPU speculatively loading from
11901 0xfffffff8 if p is NULL. This leads to a machine check.
11902
11903 Signed-off-by: Scott Wood <scottwood@freescale.com>
11904
11905 continuation to the remaining mpc83xx boards that suffer from the same problem.
11906
11907 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11908
11909 commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
11910 Author: Kim Phillips <kim.phillips@freescale.com>
11911 Date: Mon Mar 30 14:28:05 2009 -0500
11912
11913 rtc: remove broken rtc_read and rtc_write declarations
11914
11915 commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
11916 EPSON)" introduces the following build error on boards configuring e.g,
11917 the ds1374 rtc:
11918
11919 Configuring for MPC837XEMDS board...
11920 ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
11921 /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
11922 ds1374.c:104: error: conflicting types for 'rtc_write'
11923 /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
11924
11925 this reverts the erroneous chunk.
11926
11927 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11928 Acked-by: Detlev Zundel <dzu@denx.de>
11929 CC: Detlev Zundel <dzu@denx.de>
11930 CC: Andreas Pfefferle <ap@denx.de>
11931
11932 commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
11933 Author: Kumar Gala <galak@kernel.crashing.org>
11934 Date: Tue Mar 31 17:58:13 2009 -0500
11935
11936 85xx/86xx: Ensure MP boot page is not used
11937
11938 We had a bug on 86xx in which the boot page used to bring up secondary
11939 cores was being overwritten and used for the malloc region in u-boot.
11940
11941 We need to reserve the region of memory that the boot page is going to
11942 be put at so nothing uses it.
11943
11944 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11945 Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
11946
11947 commit c840d26c752141b94bbc24ac748ddd45752a955a
11948 Author: Kumar Gala <galak@kernel.crashing.org>
11949 Date: Tue Mar 31 23:11:05 2009 -0500
11950
11951 85xx: Introduce determine_mp_bootpg() helper.
11952
11953 Match determine_mp_bootpg() that was added for 86xx. We need this to
11954 address a bug introduced in v2009.03 with 86xx MP booting. We have to
11955 make sure to reserve the region of memory used for the MP bootpg() so
11956 other u-boot code doesn't use it.
11957
11958 Also added a comment about how cpu_reset() is dealing w/an errata on
11959 early 85xx MP HW.
11960
11961 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11962
11963 commit 7649a590b53ee548f41428bf20780f74ce9fc099
11964 Author: Kumar Gala <galak@kernel.crashing.org>
11965 Date: Tue Mar 31 23:02:38 2009 -0500
11966
11967 86xx: Cleanup MP support
11968
11969 * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
11970 * Introduce determine_mp_bootpg() helper. We'll need this to address a
11971 bug introduced in v2009.03 with 86xx MP booting. We have to make sure
11972 to reserve the region of memory used for the MP bootpg() so other
11973 u-boot code doesn't use it.
11974 * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
11975 allow cmd_mp.c to build and work. In the future we should look at
11976 implementing all these functions. This could be common w/85xx if we
11977 use spin tables on 86xx.
11978
11979 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11980
11981 commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
11982 Author: Becky Bruce <beckyb@kernel.crashing.org>
11983 Date: Tue Mar 31 18:38:37 2009 -0500
11984
11985 mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
11986
11987 We're missing the board_lmb_reserve definitions that allow
11988 cpu_mp_lmb_reserve to be called; this means that Linux
11989 is free to reallocate reserved pages. Linux currently boots
11990 because we're getting lucky - the page we've reserved is
11991 high enough in memory that it isn't allocated by Linux
11992 while we still need it to be in existence.
11993
11994 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
11995 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11996
11997 commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
11998 Author: Ladislav Michl <ladis@linux-mips.org>
11999 Date: Tue Mar 31 13:43:10 2009 +0200
12000
12001 NetStar: fix NAND
12002
12003 Fix NAND support broken during new NAND code merge. Move those few lines of
12004 code to board/netstar/netstar.c
12005
12006 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12007
12008 commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
12009 Author: Jens Scharsig <esw@bus-elektronik.de>
12010 Date: Tue Mar 31 08:18:29 2009 +0200
12011
12012 soft_i2c.c compiler/linker error
12013
12014 This patch fix the compiler/linker errors
12015
12016 common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
12017 common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
12018
12019 if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
12020 uesd/undef (wrong define order)
12021
12022 and
12023
12024 removes additional empty lines
12025
12026 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
12027
12028 commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
12029 Author: Haiying Wang <Haiying.Wang@freescale.com>
12030 Date: Fri Mar 27 17:02:45 2009 -0400
12031
12032 MPC85xx: Add MPC8569MDS board support
12033
12034 This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
12035 EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
12036
12037 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
12038 Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
12039 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12040
12041 commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
12042 Author: Haiying Wang <Haiying.Wang@freescale.com>
12043 Date: Fri Mar 27 17:02:44 2009 -0400
12044
12045 MPC85xx: Add MPC8569 CPU support
12046
12047 There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
12048 LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
12049 then invalidate it after LBCR bit 13 is set.
12050
12051 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
12052 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12053
12054 commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
12055 Author: Haiying Wang <Haiying.Wang@freescale.com>
12056 Date: Thu Mar 26 17:01:49 2009 -0400
12057
12058 MPC85xx: Load and enable QE microcode patch in IRAM
12059
12060 For the silicon which doesn't have ROM support in QE, it always needs to load
12061 a pre-built ucode binary to IRAM so that QE can work.
12062
12063 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
12064 Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
12065
12066 commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
12067 Author: Kumar Gala <galak@kernel.crashing.org>
12068 Date: Thu Mar 19 09:16:10 2009 -0500
12069
12070 85xx: Add support for additional e500mc features
12071
12072 * Enable backside L2
12073 * e500mc no longer has timebase enable in HID (moved to CCSR register)
12074
12075 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12076
12077 commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
12078 Author: Dave Liu <daveliu@freescale.com>
12079 Date: Sat Mar 14 12:48:30 2009 +0800
12080
12081 fsl-ddr: add the DDR3 SPD infrastructure
12082
12083 - support mirrored DIMMs, not support register DIMMs
12084 - test passed on P2020DS board with MT9JSF12872AY-1G1D1
12085 - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
12086
12087 Signed-off-by: Dave Liu <daveliu@freescale.com>
12088 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
12089
12090 commit 6a8197836702991468cead5ead073f589e2623ad
12091 Author: Dave Liu <daveliu@freescale.com>
12092 Date: Sat Mar 14 12:48:19 2009 +0800
12093
12094 fsl-ddr: Fix two bugs in the ddr infrastructure
12095
12096 1. wr_lat
12097 UM said the total write latency for DDR2 is equal to
12098 WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
12099 so, the WR_LAT = CL - 1;
12100 2. rd_to_pre
12101 we missed to add the ADD_LAT for DDR2 case.
12102
12103 Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
12104 Signed-off-by: Dave Liu <daveliu@freescale.com>
12105
12106 commit 540dcf1cb86961e11aa92c47671f27762c581d8c
12107 Author: Kumar Gala <galak@kernel.crashing.org>
12108 Date: Thu Mar 26 01:34:39 2009 -0500
12109
12110 83xx: Use common LSDMR defines from asm/fsl_lbc.h
12111
12112 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12113 Acked-by: Kim Phillips <kim.phillips@freescale.com>
12114
12115 commit b0fe93eda69721aef1fdef576164b668fad83bbd
12116 Author: Kumar Gala <galak@kernel.crashing.org>
12117 Date: Thu Mar 26 01:34:38 2009 -0500
12118
12119 85xx: Use common LSDMR defines from asm/fsl_lbc.h
12120
12121 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12122
12123 commit 0088c298f0eeb90ec001f744e9959dea83dd563a
12124 Author: Kumar Gala <galak@kernel.crashing.org>
12125 Date: Thu Mar 26 01:34:37 2009 -0500
12126
12127 Add LSDMR (SDRAM Mode Register) definition on localbus
12128
12129 The masks for various bit defines of LSDMR are common and thus we can
12130 define them in one place rather than replicating them in each config.h
12131
12132 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12133
12134 commit 89c00fb15859213788f0ad089934c376fb356099
12135 Author: Ladislav Michl <ladis@linux-mips.org>
12136 Date: Mon Mar 30 18:58:41 2009 +0200
12137
12138 OMAP: use {read,write}l to access timer registers
12139
12140 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12141
12142 commit 81472d893fa565c9d300928a40e504a689bde131
12143 Author: Ladislav Michl <ladis@linux-mips.org>
12144 Date: Mon Mar 30 18:58:41 2009 +0200
12145
12146 OMAP: rename timer divisor
12147
12148 Divisor field is called PTV not PVT.
12149
12150 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12151 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12152
12153 commit fe672d60b2a8c9e803596ba4533fa1776015551d
12154 Author: Ladislav Michl <ladis@linux-mips.org>
12155 Date: Mon Mar 30 18:58:40 2009 +0200
12156
12157 OMAP: reindent timer code
12158
12159 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12160
12161 commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
12162 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12163 Date: Mon Mar 30 18:58:40 2009 +0200
12164
12165 s3c2410: move nand driver to drivers/mtd/nand
12166
12167 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12168
12169 commit d3b635774194404bcd424f6b376419bce22076ad
12170 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12171 Date: Mon Mar 30 18:58:40 2009 +0200
12172
12173 s3c24x0: move i2c driver to drivers/i2c
12174
12175 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12176
12177 commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
12178 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12179 Date: Mon Mar 30 18:58:39 2009 +0200
12180
12181 s3c24x0: move serial driver to drivers/serial
12182
12183 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12184
12185 commit 942ba9969b9efa25f816c238861ecb339c54ed73
12186 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12187 Date: Mon Mar 30 18:58:39 2009 +0200
12188
12189 davinci: move i2c driver to drivers/i2c
12190
12191 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12192
12193 commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
12194 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12195 Date: Mon Mar 30 18:58:39 2009 +0200
12196
12197 davinci: move nand driver to drivers/mtd/nand
12198
12199 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12200
12201 commit d3e55d0774a180c1837bd7ddec464015e883bd86
12202 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12203 Date: Mon Mar 30 18:58:38 2009 +0200
12204
12205 imx: move serial driver to drivers/serial
12206
12207 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12208
12209 commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
12210 Author: Detlev Zundel <dzu@denx.de>
12211 Date: Mon Mar 30 00:31:36 2009 +0200
12212
12213 inka4x0: Use proper accessor macros for memory mapped registers.
12214
12215 Signed-off-by: Detlev Zundel <dzu@denx.de>
12216
12217 commit e979e85fd39b06436922bb4d6bb5fafcbc775182
12218 Author: Detlev Zundel <dzu@denx.de>
12219 Date: Mon Mar 30 00:31:35 2009 +0200
12220
12221 inka4x0: Add hardware diagnosis and RTC in configuration.
12222
12223 This patch adds the board specific communication routines needed by
12224 the external 4543 RTC.
12225
12226 Signed-off-by: Detlev Zundel <dzu@denx.de>
12227 Signed-off-by: Andreas Pfefferle <ap@denx.de>
12228
12229 commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
12230 Author: Detlev Zundel <dzu@denx.de>
12231 Date: Mon Mar 30 00:31:34 2009 +0200
12232
12233 inka4x0: Add hardware diagnosis functions for inka4x0
12234
12235 This patch adds advanced diagnosis functions for the inka4x0 board.
12236
12237 Signed-off-by: Andreas Pfefferle <ap@denx.de>
12238 Signed-off-by: Detlev Zundel <dzu@denx.de>
12239
12240 commit 04e11cf383ff6231535fd981023bb1306b2133d4
12241 Author: Detlev Zundel <dzu@denx.de>
12242 Date: Mon Mar 30 00:31:33 2009 +0200
12243
12244 rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
12245
12246 Signed-off-by: Detlev Zundel <dzu@denx.de>
12247 Signed-off-by: Andreas Pfefferle <ap@denx.de>
12248
12249 commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
12250 Author: Detlev Zundel <dzu@denx.de>
12251 Date: Mon Mar 30 00:31:32 2009 +0200
12252
12253 drivers/twserial: Add protocol driver for "three wire serial" interface.
12254
12255 This pretty unintelligent interface is used on some RTC chips.
12256
12257 Signed-off-by: Detlev Zundel <dzu@denx.de>
12258
12259 commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
12260 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12261 Date: Sun Mar 29 23:01:42 2009 +0200
12262
12263 arm720t/clps7111: move serial driver to drivers/serial
12264
12265 add CONFIG_CLPS7111_SERIAL to activate the driver
12266
12267 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12268
12269 commit 6790c55704531eb98f76b51d50e0f73d19fa2988
12270 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12271 Date: Sun Mar 29 23:01:42 2009 +0200
12272
12273 lpc2292: move serial driver to drivers/serial
12274
12275 add CONFIG_LPC2292_SERIAL to activate the driver
12276
12277 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12278
12279 commit 176a600d0ecdaccbac483d2ba992d0119f853119
12280 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12281 Date: Sun Mar 29 23:01:42 2009 +0200
12282
12283 ks8695: move serial driver to drivers/serial
12284
12285 add CONFIG_KS8695_SERIAL to activate the driver
12286
12287 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12288
12289 commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
12290 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12291 Date: Sun Mar 29 23:01:42 2009 +0200
12292
12293 s3c64xx: move usb driver to drivers/usb
12294
12295 add CONFIG_USB_S3C64XX to activate the driver
12296
12297 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12298
12299 commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
12300 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12301 Date: Sun Mar 29 23:01:41 2009 +0200
12302
12303 imx31: move serial driver to drivers/serial
12304
12305 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12306
12307 commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
12308 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12309 Date: Sun Mar 29 23:01:41 2009 +0200
12310
12311 netarm: move serial driver to drivers/serial
12312
12313 add CONFIG_NETARM_SERIAL to activate the driver
12314
12315 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12316
12317 commit 412ab705888742add435dd6ffc2e8bda14962235
12318 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12319 Date: Sun Mar 29 23:01:41 2009 +0200
12320
12321 sa1100: move serial driver to drivers/serial
12322
12323 add CONFIG_SA1100_SERIAL to activate the driver
12324
12325 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12326
12327 commit b2368754a9202225fd072e159fb78da7d2cdb623
12328 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12329 Date: Sun Mar 29 23:01:41 2009 +0200
12330
12331 s3c44b0: extract cache from cpu.c
12332
12333 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12334
12335 commit 40fd626223eae5363719bcb9a6896f08ceeee90a
12336 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12337 Date: Sun Mar 29 23:01:41 2009 +0200
12338
12339 s3c44b0: move serial driver to drivers/serial
12340
12341 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12342
12343 commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
12344 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12345 Date: Sun Mar 29 23:01:40 2009 +0200
12346
12347 s3c44b0: move rtc driver to drivers/rtc
12348
12349 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12350
12351 commit 50f601cca8985615f9e3de4c34887448ade8a64b
12352 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12353 Date: Sun Mar 29 23:01:40 2009 +0200
12354
12355 s3c44b0: move i2c driver to drivers/i2c
12356
12357 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12358
12359 commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
12360 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12361 Date: Sun Mar 29 23:01:36 2009 +0200
12362
12363 s3c4510b: move specific code to soc directory
12364
12365 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12366
12367 commit 04531f3c11c693dc54924f82c41979d960309c9d
12368 Author: Ladislav Michl <ladis@linux-mips.org>
12369 Date: Wed Mar 25 23:43:58 2009 +0100
12370
12371 NetStar: add RTC support
12372
12373 Add RTC support.
12374
12375 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12376
12377 commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
12378 Author: Ladislav Michl <ladis@linux-mips.org>
12379 Date: Wed Mar 25 23:43:50 2009 +0100
12380
12381 NetStar: use generic flash driver
12382
12383 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12384
12385 commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
12386 Author: Ladislav Michl <ladis@linux-mips.org>
12387 Date: Mon Mar 16 23:31:20 2009 +0100
12388
12389 NetStar: update crcit utility
12390
12391 Make crc32 function to match its prototype. Use more meaningful identifiers.
12392
12393 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12394
12395 commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
12396 Author: Ladislav Michl <ladis@linux-mips.org>
12397 Date: Mon Mar 23 17:46:27 2009 +0100
12398
12399 Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
12400
12401 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12402
12403 commit 88685b5f62274167ad2ba8a58e108d89ff71955b
12404 Author: Wolfgang Denk <wd@denx.de>
12405 Date: Sun Mar 29 00:58:16 2009 +0100
12406
12407 VCMA9: fix compile errors
12408
12409 Fix these:
12410 cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
12411 cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
12412
12413 Signed-off-by: Wolfgang Denk <wd@denx.de>
12414
12415 commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
12416 Author: Wolfgang Denk <wd@denx.de>
12417 Date: Sun Mar 29 00:54:21 2009 +0100
12418
12419 ARM: fix warning: 'print_eth' defined but not used
12420
12421 This warning got issued for all ARM systems that don't have
12422 CONFIG_CMD_NET enabled.
12423
12424 Signed-off-by: Wolfgang Denk <wd@denx.de>
12425
12426 commit fd88d91a639ce41b825c8d50dc2182050e98fe53
12427 Author: Ladislav Michl <ladis@linux-mips.org>
12428 Date: Mon Mar 23 18:16:34 2009 +0100
12429
12430 cs8900 compile fix
12431
12432 cs8900.c: In function 'eth_init':
12433 cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
12434 cs8900.c:165: error: invalid operands to binary <<
12435 cs8900.c:166: error: invalid operands to binary <<
12436 cs8900.c:167: error: invalid operands to binary <<
12437
12438 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12439 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12440
12441 commit d2567be915036720693f3ddd00c39b5b4d86fb8d
12442 Author: Wolfgang Denk <wd@denx.de>
12443 Date: Sat Mar 28 20:16:16 2009 +0100
12444
12445 Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
12446
12447 ...and some other compile warnings.
12448
12449 Signed-off-by: Wolfgang Denk <wd@denx.de>
12450
12451 commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
12452 Author: Wolfgang Denk <wd@denx.de>
12453 Date: Sat Mar 28 16:17:29 2009 +0100
12454
12455 mpc8xx/ether.c: fix warning: unused variable 'bd'
12456
12457 Also minor coding style cleanup.
12458
12459 Signed-off-by: Wolfgang Denk <wd@denx.de>
12460
12461 commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
12462 Author: Detlev Zundel <dzu@denx.de>
12463 Date: Wed Mar 25 17:27:52 2009 +0100
12464
12465 command.c: Expose the core of do_help as _do_help to the rest of u-boot.
12466
12467 Other commands implementing subcommands can reuse this code nicely.
12468
12469 Signed-off-by: Detlev Zundel <dzu@denx.de>
12470 Signed-off-by: Andreas Pfefferle <ap@denx.de>
12471
12472 commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
12473 Author: Detlev Zundel <dzu@denx.de>
12474 Date: Tue Mar 24 18:02:33 2009 +0100
12475
12476 mpc5xxx: Add structure definition for several more register blocks.
12477
12478 Signed-off-by: Detlev Zundel <dzu@denx.de>
12479
12480 commit 739b0e594677a0676577bc95db4495a5563fc7f8
12481 Author: Detlev Zundel <dzu@denx.de>
12482 Date: Fri Mar 27 15:03:55 2009 +0100
12483
12484 MAINTAINERS: Add entry for 'inka4x0' board.
12485
12486 Signed-off-by: Detlev Zundel <dzu@denx.de>
12487
12488 commit e55ecec45340755ef47cbbb13fb35ceed60eb115
12489 Author: Detlev Zundel <dzu@denx.de>
12490 Date: Fri Mar 27 15:03:54 2009 +0100
12491
12492 MAINTAINERS: Keep list sorted.
12493
12494 Signed-off-by: Detlev Zundel <dzu@denx.de>
12495
12496 commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
12497 Author: Mike Frysinger <vapier@gentoo.org>
12498 Date: Thu Mar 26 11:17:41 2009 -0400
12499
12500 karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
12501
12502 The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
12503
12504 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12505 CC: Ben Warren <biggerbadderben@gmail.com>
12506
12507 commit 76756e41cde0a617e781a604cc47dfaef63697cd
12508 Author: Heiko Schocher <hs@denx.de>
12509 Date: Thu Mar 26 07:33:59 2009 +0100
12510
12511 ppc: cleanup compiler errors/warnings
12512
12513 Current u-boot top of tree builds with warnings/errors for
12514 the following boards:
12515
12516 ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
12517 RPXClassic debris PN62
12518
12519 following patch solves this.
12520
12521 Signed-off-by: Heiko Schocher <hs@denx.de>
12522 Acked-by: Mike Frysinger <vapier@gentoo.org>
12523
12524 commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
12525 Author: Stefan Roese <sr@denx.de>
12526 Date: Thu Mar 26 16:14:13 2009 +0100
12527
12528 ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
12529
12530 This patch fixes a bug in the Sequoia TLB init code to reconfigure
12531 the correct TLB (boot space) after running from RAM. This bug was
12532 introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
12533 [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
12534 TLB in the Sequoia init.S file.
12535
12536 Signed-off-by: Stefan Roese <sr@denx.de>
12537
12538 commit e2b66fe453a3679f807b37fc5923d89214302764
12539 Author: Wolfgang Denk <wd@denx.de>
12540 Date: Thu Mar 26 10:00:57 2009 +0100
12541
12542 ads5121: enable instruction cache
12543
12544 Enabling the instruction cache significantly accelerates U-Boot
12545 operations like CRC checking, image uncompression, etc.
12546
12547 Kudos to Andrea Scian for pointing out.
12548
12549 Signed-off-by: Wolfgang Denk <wd@denx.de>
12550
12551 commit 33e88c557b29c84c52039ba05993fa70fe62afe3
12552 Author: Jon Smirl <jonsmirl@gmail.com>
12553 Date: Sun Mar 22 22:55:45 2009 -0400
12554
12555 mpc5200: suppress printf until console initialized
12556
12557 On boards which have the environment in eeprom, i2c_init() is called
12558 before the console and RAM are initialized.
12559 Suppress printfs until the console is initialized.
12560
12561 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
12562 Acked-by: Heiko Schocher <hs@denx.de>
12563
12564 commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
12565 Author: Guennadi Liakhovetski <lg@denx.de>
12566 Date: Wed Mar 25 11:36:50 2009 +0100
12567
12568 ARM: Add the imx31_phycore_eet board to MAKEALL
12569
12570 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12571
12572 commit 917cfc70c18b74fa8a80189bdce8395199fa8360
12573 Author: Nishanth Menon <nm@ti.com>
12574 Date: Wed Mar 25 22:13:56 2009 +0100
12575
12576 OMAP3:Beagle: Enable mtdparts
12577
12578 http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
12579 provides a flexible way to create and maintain u-boot mtd
12580 partitions. This allows commands such as "nand erase fs"
12581 to work and the user no longer needs to decode the absolute
12582 nand offsets. This patch enables this function for beagleboard
12583
12584 Signed-off-by: Nishanth Menon <nm@ti.com>
12585 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12586
12587 commit 4de1a5daab079ddc8ce1274144700203d692105c
12588 Author: Mike Frysinger <vapier@gentoo.org>
12589 Date: Sun Feb 22 16:26:35 2009 -0500
12590
12591 Blackfin: bf537-stamp: split post code out into dedicated post.c
12592
12593 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12594
12595 commit 5e8f245743ed14c89e495ba2c027703db9813160
12596 Author: Mike Frysinger <vapier@gentoo.org>
12597 Date: Sat Oct 11 22:51:56 2008 -0400
12598
12599 Blackfin: add support for S25FL128 parts
12600
12601 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12602
12603 commit bf1e028bf3eab1d702fa0627cade4460688f3913
12604 Author: Mike Frysinger <vapier@gentoo.org>
12605 Date: Sat Oct 11 22:51:23 2008 -0400
12606
12607 Blackfin: overhaul SPI flash handling to speed things up
12608
12609 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12610
12611 commit efcc08cededa2168b96f12a22a5872340880d334
12612 Author: Mike Frysinger <vapier@gentoo.org>
12613 Date: Sat Oct 11 22:51:05 2008 -0400
12614
12615 Blackfin: add support for SST SPI flashes
12616
12617 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12618
12619 commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
12620 Author: Mike Frysinger <vapier@gentoo.org>
12621 Date: Sat Oct 11 22:50:10 2008 -0400
12622
12623 Blackfin: add hack for crappy m25p80
12624
12625 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12626
12627 commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
12628 Author: Mike Frysinger <vapier@gentoo.org>
12629 Date: Wed Jan 21 20:47:12 2009 -0500
12630
12631 Blackfin: bf537-stamp: increase monitor size
12632
12633 The new jffs2 code pushed the code size just over the limit, so increase
12634 the limit a bit more.
12635
12636 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12637
12638 commit f82caaccc87e1f76448ff42a6b930e59797e4f65
12639 Author: Mike Frysinger <vapier@gentoo.org>
12640 Date: Mon Dec 8 16:16:11 2008 -0500
12641
12642 Blackfin: bf537-stamp: bump default SCLK up to 125MHz
12643
12644 Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
12645 increase the speed of SCLK to 125MHz rather than 100MHz.
12646
12647 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12648
12649 commit 751e54c3b77311b720b794813cce20546f288ada
12650 Author: Mike Frysinger <vapier@gentoo.org>
12651 Date: Sat Oct 11 22:44:14 2008 -0400
12652
12653 Blackfin: bf537-stamp: rewrite MAC-in-flash handling
12654
12655 Use the common net eth functions to setup the env/global data with the MAC
12656 address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
12657
12658 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12659
12660 commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
12661 Author: Mike Frysinger <vapier@gentoo.org>
12662 Date: Tue Dec 9 13:47:39 2008 -0500
12663
12664 Blackfin: add clkin_hz= to default kernel command line for ADI boards
12665
12666 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12667
12668 commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
12669 Author: Mike Frysinger <vapier@gentoo.org>
12670 Date: Sun Oct 12 23:49:13 2008 -0400
12671
12672 Blackfin: bf533-stamp: bump up default clocks
12673
12674 Since the hardware can handle it, bump the default clocks from 80mhz SCLK
12675 and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
12676
12677 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12678
12679 commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
12680 Author: Mike Frysinger <vapier@gentoo.org>
12681 Date: Sat Oct 11 22:40:22 2008 -0400
12682
12683 Blackfin: bf533-stamp: rewrite startup LED notifications
12684
12685 Again, don't clobber pins that we aren't actually using, and use the common
12686 LED framework rather than our own hob-job-but-not-really-working.
12687
12688 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12689
12690 commit cf6f469e2730fc8ab3523808b828be000d6eee77
12691 Author: Mike Frysinger <vapier@gentoo.org>
12692 Date: Sun Jun 1 09:09:48 2008 -0400
12693
12694 Blackfin: unify common ADI board settings
12695
12696 Rather than duplicate the same ADI settings in every ADI board, create a
12697 common ADI config header and have all ADI boards start using that. This
12698 will also make merging the ~10 boards I have to forward port a lot easier.
12699
12700 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12701
12702 commit 196c74311f394c6eb08bd9ab07a35671299b9851
12703 Author: Kyungmin Park <kmpark@infradead.org>
12704 Date: Tue Mar 3 09:05:53 2009 +0900
12705
12706 Reduce OneNAND IPL common code
12707
12708 OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
12709 bootloader, but it's common code used about 300~400 bytes. So board
12710 specific codes, such as lowlevel_init, can't has enough code. It make
12711 a difficult to implement OneNAND IPL.
12712
12713 his patch make this common code as small as possible. and give
12714 lowlevel_init can have more codes.
12715
12716 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12717 Signed-off-by: Scott Wood <scottwood@freescale.com>
12718
12719 commit 16f2f5a351004129e79e79816697a367fd9e5446
12720 Author: Wolfgang Grandegger <wg@grandegger.com>
12721 Date: Wed Feb 11 18:38:24 2009 +0100
12722
12723 Add multi-chip NAND support for the TQM8548 modules
12724
12725 This patches configures the NAND UPM-FSL driver with multi-chip
12726 support for the Micron MT29F8G08FAB NAND flash memory on the
12727 TQM8548 modules.
12728
12729 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12730 Signed-off-by: Scott Wood <scottwood@freescale.com>
12731
12732 commit 33846df28fa1f4cf96a96c18142d48d813caa892
12733 Author: Wolfgang Grandegger <wg@grandegger.com>
12734 Date: Wed Feb 11 18:38:23 2009 +0100
12735
12736 Add wait flags to support board/chip specific delays
12737
12738 The NAND flash on the TQM8548_BE modules requires a short delay after
12739 running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
12740 requires a further short delay after writing out a buffer. Normally the
12741 R/B pin should be checked, but it's not connected on the TQM8548_BE.
12742 The corresponding Linux FSL UPM driver uses similar delay points at the
12743 same locations. To manage these extra delays in a more general way, I
12744 introduced the "wait_flags" field allowing the board-specific driver to
12745 specify various types of extra delay.
12746
12747 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12748 Signed-off-by: Scott Wood <scottwood@freescale.com>
12749
12750 commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
12751 Author: Wolfgang Grandegger <wg@grandegger.com>
12752 Date: Wed Feb 11 18:38:22 2009 +0100
12753
12754 Add support for TQM-specific chip select logic to FSL-UPM
12755
12756 For the NAND chips on the TQM8548 modules, a special chip-select logic is
12757 used. It uses dedicated address lines to be set via UPM machine address
12758 register (mar). This patch adds such support to the FSL-UPM driver.
12759
12760 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12761 Signed-off-by: Scott Wood <scottwood@freescale.com>
12762
12763 commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
12764 Author: Wolfgang Grandegger <wg@grandegger.com>
12765 Date: Wed Feb 11 18:38:21 2009 +0100
12766
12767 Add multi chip support to the FSL-UPM driver
12768
12769 This patch adds support for multi-chip NAND devices to the FSL-UPM
12770 driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
12771 called with the argument "chip_nr" to allow testing the proper chip
12772 select line. The NAND support of the MPC8360ERDK is updated as well.
12773 No other boards are currently using the FSL UPM driver.
12774
12775 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12776 Signed-off-by: Scott Wood <scottwood@freescale.com>
12777
12778 commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
12779 Author: Wolfgang Grandegger <wg@grandegger.com>
12780 Date: Wed Feb 11 18:38:20 2009 +0100
12781
12782 Enable multi chip support in the NAND layer
12783
12784 This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
12785 Multi-chips devices are displayed as shown:
12786
12787 Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
12788
12789 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12790 Signed-off-by: Scott Wood <scottwood@freescale.com>
12791
12792 commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
12793 Author: Mike Frysinger <vapier@gentoo.org>
12794 Date: Sat Oct 11 21:58:33 2008 -0400
12795
12796 Blackfin: put memory into self-refresh before/after programming clocks
12797
12798 When initializing the core clocks, stick external memory into self-refresh.
12799 This gains us a few cool things:
12800 - support suspend-to-RAM with Linux
12801 - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
12802 - make sure settings are stable before flashing new version
12803 - finally fully unify initialize startup code path between LDR/non-LDR
12804
12805 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12806
12807 commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
12808 Author: Mike Frysinger <vapier@gentoo.org>
12809 Date: Sat Oct 11 21:56:08 2008 -0400
12810
12811 Blackfin: do not program voltage regulator on parts that do not have one
12812
12813 Some newer Blackfins (like the BF51x) do not have an on-chip voltage
12814 regulator, so do not attempt to program the memory as if it does.
12815
12816 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12817
12818 commit 0d4f24b70f7a979f58174f3eb271874950b551b6
12819 Author: Mike Frysinger <vapier@gentoo.org>
12820 Date: Sun Jun 1 01:28:24 2008 -0400
12821
12822 Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
12823
12824 If the board config does not specify an explicit EBIU_SDBCTL value, set it
12825 up with sane values based on other configuration options.
12826
12827 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12828
12829 commit 3986e981f565c08f10c7e526af8cb518d741c349
12830 Author: Mike Frysinger <vapier@gentoo.org>
12831 Date: Sat Dec 6 18:06:58 2008 -0500
12832
12833 Blackfin: handle reboot anomaly 432
12834
12835 Workaround anomaly 432:
12836 The bfrom_SysControl() firmware function does not clear the SIC_IWR1
12837 register before executing the PLL programming sequence. Therefore, any
12838 interrupt enabled in the SIC_IWR1 register prior to the call to
12839 bfrom_SysControl() can prematurely terminate the idle sequence required
12840 for the PLL to relock properly. SIC_IWR0 is properly handled.
12841
12842 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12843
12844 commit 7e1d212b6da492c6ea32c62af92e185284f41291
12845 Author: Mike Frysinger <vapier@gentoo.org>
12846 Date: Sat Oct 18 04:04:49 2008 -0400
12847
12848 Blackfin: kill off LDR jump block
12849
12850 The Boot ROM uses EVT1 as the entry point so set that rather than having
12851 to use a tiny jump block in the default EVT1 location.
12852
12853 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12854
12855 commit a75fa148d60b1975403441e45565621bba50d2d9
12856 Author: Mike Frysinger <vapier@gentoo.org>
12857 Date: Tue Jan 6 10:00:48 2009 -0500
12858
12859 Blackfin: simplify symbol_lookup() a bit
12860
12861 No need to skip a byte as the symbol table handles this.
12862
12863 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12864
12865 commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
12866 Author: Mike Frysinger <vapier@gentoo.org>
12867 Date: Sat Feb 7 05:43:21 2009 -0500
12868
12869 Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
12870
12871 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12872
12873 commit 58130f8920151d9e8942bbdf3388f2defb47e415
12874 Author: Mike Frysinger <vapier@gentoo.org>
12875 Date: Sat Feb 7 05:41:17 2009 -0500
12876
12877 Blackfin: drop SPORT_TX read helper macros
12878
12879 The SPORT_TX registers cannot be read (the hardware will trigger an error),
12880 so drop the read helper macros.
12881
12882 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12883
12884 commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
12885 Author: Mike Frysinger <vapier@gentoo.org>
12886 Date: Sat Feb 7 05:25:35 2009 -0500
12887
12888 Blackfin: unify duplicate CPU port definitions
12889
12890 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12891
12892 commit 744fd240d181b0b05b1436e1b655c9a62526c752
12893 Author: Mike Frysinger <vapier@gentoo.org>
12894 Date: Fri Feb 6 00:59:50 2009 -0500
12895
12896 Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
12897
12898 With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
12899 are no longer used/needed.
12900
12901 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12902
12903 commit 45c48953e8a4038bd49c46813fcff5a207867ae4
12904 Author: Mike Frysinger <vapier@gentoo.org>
12905 Date: Mon Oct 6 04:01:26 2008 -0400
12906
12907 Blackfin: print out Flash: before checking it
12908
12909 If there is some problem in the flash init/checking code, it's nicer to see
12910 the message "Flash:" before crashing. This way the source of the problem
12911 is a bit more straightforward.
12912
12913 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12914
12915 commit 1c7a79a04eb916f685f7275520b5eea6968a1559
12916 Author: Mike Frysinger <vapier@gentoo.org>
12917 Date: Thu Aug 7 15:33:09 2008 -0400
12918
12919 Blackfin: safely flush data caches when in writeback mode
12920
12921 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12922
12923 commit c06f2b13022703611bc3e512bd34f9014a46f448
12924 Author: Mike Frysinger <vapier@gentoo.org>
12925 Date: Thu Aug 7 13:21:48 2008 -0400
12926
12927 Blackfin: update lockbox api according to latest documentation
12928
12929 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12930
12931 commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
12932 Author: Mike Frysinger <vapier@gentoo.org>
12933 Date: Sat Oct 11 21:49:06 2008 -0400
12934
12935 Blackfin: mark bfin_reset static
12936
12937 The function is only used locally, so mark it static.
12938
12939 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12940
12941 commit 974473caa732f63312687ef2bd2d22dad8e99b9a
12942 Author: Sonic Zhang <Sonic.Zhang@analog.com>
12943 Date: Fri Mar 20 19:28:20 2009 -0400
12944
12945 Blackfin: spi: there is no PORTJ_FER MMR on BF537
12946
12947 Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
12948 then there is no PORTJ_FER register for us to worry about.
12949
12950 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
12951 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12952
12953 commit e82b762f293debc53c5afa90f37264f6b07520f9
12954 Author: Mike Frysinger <vapier@gentoo.org>
12955 Date: Tue Mar 17 13:58:23 2009 -0400
12956
12957 Blackfin: fix jtag console tstc
12958
12959 The jtag tstc operation was checking the hardware to see if data is
12960 available from it (which is fine for the jtag getc operation), but the
12961 higher layers need to know whether any data is available. Since we have
12962 to read up to 4 bytes at a time from the hardware, the higher layers need
12963 to know they can consume the cached bytes as well.
12964
12965 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12966
12967 commit bc683f58b1f1d8d20546fe019483967a51a49df1
12968 Author: Mike Frysinger <vapier@gentoo.org>
12969 Date: Sun Feb 22 16:23:41 2009 -0500
12970
12971 Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
12972
12973 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12974
12975 commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
12976 Author: Mike Frysinger <vapier@gentoo.org>
12977 Date: Sun Feb 22 16:02:27 2009 -0500
12978
12979 Blackfin: unify net-related init code
12980
12981 Unify all of the net-related init code in the common Blackfin board init
12982 code to clean up the ifdef mess a bit.
12983
12984 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12985
12986 commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
12987 Author: Mike Frysinger <vapier@gentoo.org>
12988 Date: Wed Feb 18 12:51:48 2009 -0500
12989
12990 Blackfin: fix SWRST/SYSCR register sizes
12991
12992 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12993
12994 commit a9d6777d39154978b9ef9c682b2627a3480b194c
12995 Author: Mike Frysinger <vapier@gentoo.org>
12996 Date: Wed Feb 18 12:51:31 2009 -0500
12997
12998 Blackfin: update anomaly lists
12999
13000 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13001
13002 commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
13003 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13004 Date: Thu Mar 19 18:31:38 2009 +0100
13005
13006 avr32: fix cacheflush.h location introducted by d8f2aa3298610b
13007
13008 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13009 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13010
13011 commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
13012 Author: Eric Schumann <E.Schumann@phytec.de>
13013 Date: Sat Mar 21 09:59:34 2009 -0400
13014
13015 Make flash protection work, when the environment is in EEPROM
13016
13017 On the pcm030 the environment is located in the onboard EEPROM. But we want
13018 to handle flash sector protection in a safe manner. So we must read the
13019 unlock environment variable from EEPROM instead from flash.
13020
13021 This patch is required as long the evironment is saved into the EEPROM.
13022
13023 Stefan: Additional change as suggested by Wolfgang, use bigger char array
13024 (instead of 4).
13025
13026 Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
13027 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
13028 Acked-by: Wolfgang Denk <wd@denx.de>
13029 Signed-off-by: Stefan Roese <sr@denx.de>
13030
13031 commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
13032 Author: Jon Smirl <jonsmirl@gmail.com>
13033 Date: Sat Mar 21 11:17:56 2009 -0400
13034
13035 Add define for mpc5200 CDM_CLK_ENA
13036
13037 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
13038
13039 commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
13040 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
13041 Date: Sun Mar 22 14:48:16 2009 +0100
13042
13043 at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
13044
13045 AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
13046
13047 The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
13048 It is essentially the same, with a few minor differences.
13049
13050 Here is the chip page on Atmel website:
13051 http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
13052
13053 Signed-off-by: Justin Waters <justin.waters@timesys.com>
13054 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
13055 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13056
13057 commit 118d168035cc93f586da4812c89cb153eb9f4243
13058 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13059 Date: Sun Mar 22 14:28:14 2009 +0100
13060
13061 cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
13062
13063 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13064
13065 commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
13066 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13067 Date: Sun Mar 22 14:28:13 2009 +0100
13068
13069 cmc_pu2: fix misc_init_r prototype
13070
13071 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13072
13073 commit 53158aea995221706b42c7bad9f717b31ae20414
13074 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13075 Date: Sun Jan 11 03:32:01 2009 +0100
13076
13077 at91sam9xeek: fix soc name
13078
13079 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13080
13081 commit 74c076d6c33d6d42ab065541a38383587879e7b7
13082 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13083 Date: Sun Mar 22 10:22:34 2009 +0100
13084
13085 at91sam9/at91cap: move nand drivers to drivers/mtd/nand
13086
13087 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13088
13089 commit 163966087d62680547f188a93c61d01c8155254e
13090 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13091 Date: Sat Mar 21 21:08:01 2009 +0100
13092
13093 atmel/at91/boards: compile dataflash partition only when dataflash is
13094
13095 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13096
13097 commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
13098 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13099 Date: Sat Mar 21 21:08:00 2009 +0100
13100
13101 at91sam9/at91cap: move common macb initialisation to cpu
13102
13103 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13104
13105 commit f3f91f886bc8927fd692ac411b7423a87ffec532
13106 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13107 Date: Sat Mar 21 21:08:00 2009 +0100
13108
13109 at91sam9/at91cap: move common usb host initialisation to cpu
13110
13111 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13112
13113 commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
13114 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13115 Date: Sat Mar 21 21:08:00 2009 +0100
13116
13117 at91sam9/at91cap: move common led management to cpu
13118
13119 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13120
13121 commit 7ebafb7ec1a0285af8380623c009576f92583b98
13122 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13123 Date: Sat Mar 21 21:07:59 2009 +0100
13124
13125 at91sam9/at91cap: move common spi initialisation to cpu
13126
13127 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13128
13129 commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
13130 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13131 Date: Sat Mar 21 21:07:59 2009 +0100
13132
13133 at91sam9/at91cap: move common serial initialisation to cpu
13134
13135 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13136
13137 commit e60beb13cf0135dc71c541021487b5ccc4d269cb
13138 Author: Wolfgang Denk <wd@denx.de>
13139 Date: Sat Mar 21 22:04:41 2009 +0100
13140
13141 Prepare 2009.03
13142
13143 Update CHANGELOG
13144
13145 Signed-off-by: Wolfgang Denk <wd@denx.de>
13146
13147 commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
13148 Author: Vivek Kutal <vivek.kutal@azingo.com>
13149 Date: Mon Feb 23 21:35:11 2009 +0530
13150
13151 Replaced endpoint numbers with appropriate macros in usbtty.c.
13152
13153 Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
13154 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13155
13156 commit faac4fd852e39cb1d7a740801b060e41aeacef1f
13157 Author: Michael Lawnick <ml.lawnick@gmx.de>
13158 Date: Thu Mar 19 10:06:41 2009 +0100
13159
13160 UBIFS: Missing offset relocation for compressor 'none'
13161
13162 On systems where U-Boot is linked to another address than it really lays
13163 (e.g. backup image), calls via function pointers must be fixed with a
13164 '+= gd->reloc_off'.
13165 This was not done for none_compr in ubifs_compressors_init() what leads
13166 to system crash on ubifsmount command.
13167
13168 Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
13169 Acked-by: Stefan Roese <sr@denx.de>
13170
13171 commit ce6d0c8de031f345bde745f3b855082adf1c4e45
13172 Author: Stefan Roese <sr@denx.de>
13173 Date: Thu Mar 19 15:35:50 2009 +0100
13174
13175 UBIFS: Add UBIFS commands
13176
13177 This patchset adds these UBIFS related commands:
13178
13179 - ubifsmount
13180 Mount an UBIFS volume
13181
13182 - ubifsls
13183 List a directory of the mounted UBIFS volume
13184
13185 - ubifsload
13186 Load a file from the mounted UBIFS volume to memory
13187
13188 Signed-off-by: Stefan Roese <sr@denx.de>
13189
13190 commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
13191 Author: Stefan Roese <sr@denx.de>
13192 Date: Thu Mar 19 15:35:05 2009 +0100
13193
13194 UBIFS: Implement read-only UBIFS support in U-Boot
13195
13196 The U-Boot UBIFS implementation is largely a direct copy from the current
13197 Linux version (2.6.29-rc6). As already done in the UBI version we have an
13198 "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
13199 ...). This makes it possible to use the original Linux code with very
13200 little changes. And by this we can better update to later Linux versions.
13201
13202 I removed some of the Linux features that are not used in the U-Boot
13203 version (e.g. garbage-collection, write support).
13204
13205 Signed-off-by: Stefan Roese <sr@denx.de>
13206 CC: Artem Bityutskiy <dedekind@infradead.org>
13207 CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
13208
13209 commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
13210 Author: Stefan Roese <sr@denx.de>
13211 Date: Thu Mar 19 15:34:56 2009 +0100
13212
13213 Add LZO decompressor support
13214
13215 This patch adds LZO decompression support to U-Boot. It is needed for
13216 the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
13217 decompressor. Since we only support read-only in UBIFS, only the
13218 decompressor is needed.
13219
13220 All this is copied with minor changes from the current Linux kernel
13221 version (2.6.28-rc8).
13222
13223 This patch only implements this LZO decompressor support for PPC.
13224 Other platforms using UBIFS will have to add the required
13225 "include/asm/unaligned.h" as well. It should be fairly easy to copy this
13226 from the Linux source tree as I have done it for PPC in this patch.
13227
13228 Signed-off-by: Stefan Roese <sr@denx.de>
13229
13230 commit 68d7d65100e84df00bca971c114092731b441090
13231 Author: Stefan Roese <sr@denx.de>
13232 Date: Thu Mar 19 13:30:36 2009 +0100
13233
13234 Separate mtdparts command from jffs2
13235
13236 Currently the mtdparts commands are included in the jffs2 command support.
13237 This doesn't make sense anymore since other commands (e.g. UBI) use this
13238 infrastructure as well now. This patch separates the mtdparts commands from
13239 the jffs2 commands making it possible to only select mtdparts when no JFFS2
13240 support is needed.
13241
13242 Signed-off-by: Stefan Roese <sr@denx.de>
13243 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13244
13245 commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
13246 Author: Stefan Roese <sr@denx.de>
13247 Date: Wed Feb 25 12:11:15 2009 +0100
13248
13249 powerpc: Only use eth_getenv_enetaddr() if networking is enabled
13250
13251 Signed-off-by: Stefan Roese <sr@denx.de>
13252
13253 commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
13254 Author: Grzegorz Bernacki <gjb@semihalf.com>
13255 Date: Tue Mar 17 10:06:40 2009 +0100
13256
13257 Add support for the digsy MTC board.
13258
13259 This is the InterControl custom device based on the MPC5200B chip.
13260
13261 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
13262
13263 commit ff7dc067369e30066744f096995aef7d97574d15
13264 Author: Stefan Roese <sr@denx.de>
13265 Date: Mon Feb 23 16:52:36 2009 +0100
13266
13267 powerpc: Fix compilation warning in board.c
13268
13269 Fix this warning:
13270
13271 board.c: In function 'board_init_r':
13272 board.c:653: warning: unused variable 'i'
13273 board.c:651: warning: unused variable 'e'
13274
13275 Signed-off-by: Stefan Roese <sr@denx.de>
13276
13277 commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
13278 Author: Stefan Roese <sr@denx.de>
13279 Date: Mon Feb 23 16:42:51 2009 +0100
13280
13281 ppc4xx: Don't write the MAC address into the internal SoC registers
13282
13283 Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
13284 addresses into the SoC registers instead.
13285
13286 Signed-off-by: Stefan Roese <sr@denx.de>
13287
13288 commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
13289 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13290 Date: Fri Feb 20 10:19:19 2009 +0100
13291
13292 ppc4xx: Use correct io accessors for esd 405/440 boards
13293
13294 This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
13295 macros. Also volatile pointer references are replaced by the
13296 new accessors.
13297
13298 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
13299 Signed-off-by: Stefan Roese <sr@denx.de>
13300
13301 commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
13302 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13303 Date: Fri Feb 20 10:19:18 2009 +0100
13304
13305 ppc4xx: Use correct io accessors for esd 405 boards
13306
13307 This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
13308 macros. Also volatile pointer references are replaced by the
13309 new accessors.
13310
13311 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
13312 Signed-off-by: Stefan Roese <sr@denx.de>
13313
13314 commit a59205d1519375d027f97a545ad642ab20fce6f8
13315 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13316 Date: Fri Feb 20 10:19:17 2009 +0100
13317
13318 ppc4xx: Cleanup linker scripts of esd 4xx boards
13319
13320 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
13321 Signed-off-by: Stefan Roese <sr@denx.de>
13322
13323 commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
13324 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13325 Date: Fri Feb 20 10:19:16 2009 +0100
13326
13327 ppc4xx: Update TEXT_BASE for DASA_SIM boards
13328
13329 Fix building DASA_SIM boards by increasing U-Boot's size in flash.
13330
13331 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
13332 Signed-off-by: Stefan Roese <sr@denx.de>
13333
13334 commit 09db8f4de6805f1dde510c167f20e56a5405d29e
13335 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13336 Date: Fri Feb 20 10:19:15 2009 +0100
13337
13338 ppc4xx: DU405 maintenance fix
13339
13340 -strip unused features
13341 -fix resetting phy
13342
13343 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
13344 Signed-off-by: Stefan Roese <sr@denx.de>
13345
13346 commit 75511b47ac2647be48218dbb93af05b21f404f67
13347 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13348 Date: Fri Feb 20 10:19:14 2009 +0100
13349
13350 ppc4xx: Abort autoboot only by space key on CPCI405 boards
13351
13352 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13353 Signed-off-by: Stefan Roese <sr@denx.de>
13354
13355 commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
13356 Author: Graeme Russ <graeme.russ@gmail.com>
13357 Date: Tue Feb 24 21:14:56 2009 +1100
13358
13359 Add basic relocation to i386 port
13360
13361 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
13362
13363 commit 8c63d47651f77d9fb887cad433370b866eb0a193
13364 Author: Graeme Russ <graeme.russ@gmail.com>
13365 Date: Tue Feb 24 21:14:45 2009 +1100
13366
13367 Implement SC520 timers
13368
13369 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
13370
13371 commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
13372 Author: Graeme Russ <graeme.russ@gmail.com>
13373 Date: Tue Feb 24 21:14:32 2009 +1100
13374
13375 Factor out SC520 sub-features
13376
13377 Moved sub-features of the SC520 code which is currently selectively compiled
13378 using #ifdef out of sc520.c into individual files selectively compiled via
13379 the makefile
13380
13381 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
13382
13383 commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
13384 Author: Graeme Russ <graeme.russ@gmail.com>
13385 Date: Tue Feb 24 21:13:40 2009 +1100
13386
13387 Rewrite i386 interrupt handling
13388
13389 Rewrite interrupt handling functionality for the i386 port. Separated
13390 functionality into separate CPU and Architecture components.
13391
13392 It appears as if the i386 interrupt handler functionality was intended
13393 to allow multiple handlers to be installed for a given interrupt.
13394 Unfortunately, this functionality was not fully implemented and also
13395 had the problem that irq_free_handler() does not allow the passing
13396 of the handler function pointer and therefore could never be used to
13397 free specific handlers that had been installed for a given IRQ.
13398
13399 There were also various issues with array bounds not being fully
13400 tested.
13401
13402 I had two objectives in mind for the new implementation:
13403
13404 1) Keep the implementation as similar as possible to existing
13405 implementations. To that end, I have used the leon2/3
13406 implementations as the reference
13407
13408 2) Seperate CPU and Architecture specific elements. All specific i386
13409 interrupt functionality is now in cpu/i386/ with the high level
13410 API and architecture specific code in lib_i386. Functionality
13411 specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
13412 been further split out into an individual file to allow for the
13413 implementation of the PIC architecture of the SC520 CPU (supports
13414 more IRQs)
13415
13416 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
13417
13418 commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
13419 Author: Graeme Russ <graeme.russ@gmail.com>
13420 Date: Tue Feb 24 21:12:35 2009 +1100
13421
13422 Move ali512x.h
13423
13424 Moved ali512x.h from include/asm-i386/ic/ to /include
13425
13426 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
13427
13428 commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
13429 Author: Graeme Russ <graeme.russ@gmail.com>
13430 Date: Tue Feb 24 21:12:20 2009 +1100
13431
13432 Rename SC520 Configuration Options
13433
13434 Options are now all uniformly CONFIG_SYS_SC520_<option>
13435
13436 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
13437
13438 commit f62fb99941c625605aa16a0097b396a5c16d2c88
13439 Author: Trent Piepho <xyzzy@speakeasy.org>
13440 Date: Wed Feb 18 15:22:05 2009 -0800
13441
13442 Fix all linker script to handle all rodata sections
13443
13444 A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
13445 which needs to be added the the linker script. Instead of just adding this
13446 one section, we use a wildcard ".rodata*" to get all rodata linker section
13447 gcc has now and might add in the future.
13448
13449 However, '*(.rodata*)' by itself will result in sub-optimal section
13450 ordering. The sections will be sorted by object file, which causes extra
13451 padding between the unaligned rodata.str.1.1 of one object file and the
13452 aligned rodata of the next object file. This is easy to fix by using the
13453 SORT_BY_ALIGNMENT command.
13454
13455 This patch has not be tested one most of the boards modified. Some boards
13456 have a linker script that looks something like this:
13457
13458 *(.text)
13459 . = ALIGN(16);
13460 *(.rodata)
13461 *(.rodata.str1.4)
13462 *(.eh_frame)
13463
13464 I change this to:
13465
13466 *(.text)
13467 . = ALIGN(16);
13468 *(.eh_frame)
13469 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
13470
13471 This means the start of rodata will no longer be 16 bytes aligned.
13472 However, the boundary between text and rodata/eh_frame is still aligned to
13473 16 bytes, which is what I think the real purpose of the ALIGN call is.
13474
13475 Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
13476
13477 commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
13478 Author: Mike Frysinger <vapier@gentoo.org>
13479 Date: Wed Feb 11 18:26:08 2009 -0500
13480
13481 remove bi_enet*addr from global data for all arches
13482
13483 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13484 CC: Ben Warren <biggerbadderben@gmail.com>
13485 CC: Daniel Hellstrom <daniel@gaisler.com>
13486 CC: Michal Simek <monstr@seznam.cz>
13487 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13488 CC: Scott McNutt <smcnutt@psyent.com>
13489 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13490
13491 commit eb85aa594c1b57a1e3be9689b65171a137a36432
13492 Author: Mike Frysinger <vapier@gentoo.org>
13493 Date: Wed Feb 11 20:07:19 2009 -0500
13494
13495 ppc: mark global bi_enet*addr as legacy
13496
13497 The environment is the canonical storage location of the mac address, so
13498 we're killing off the global data location and moving everything to
13499 querying the env directly.
13500
13501 In the ppc case, these things are part of the legacy ABI, so keep them
13502 around but mark them as legacy so no new code will touch them.
13503
13504 Also stop calling load_sernum_ethaddr() since all boards now implement
13505 this as a stub.
13506
13507 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13508 CC: Ben Warren <biggerbadderben@gmail.com>
13509
13510 commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
13511 Author: Mike Frysinger <vapier@gentoo.org>
13512 Date: Wed Feb 11 20:09:52 2009 -0500
13513
13514 boards: get mac address from env and move load_sernum_ethaddr() to board init
13515
13516 The environment is the canonical storage location of the mac address, so
13517 we're killing off the global data location and moving everything to
13518 querying the env directly.
13519
13520 Rather than have common ppc code call a board-specific function like
13521 load_sernum_ethaddr(), have each board call it in its own board-specific
13522 misc_init_r() function.
13523
13524 The boards that get converted here are:
13525 - kup4k/kup4x
13526 - pcs440ep
13527 - tqm8xx
13528
13529 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13530 CC: Ben Warren <biggerbadderben@gmail.com>
13531 CC: Stefan Roese <sr@denx.de>
13532
13533 commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
13534 Author: Mike Frysinger <vapier@gentoo.org>
13535 Date: Wed Feb 11 19:55:01 2009 -0500
13536
13537 cmc_pu2: get mac address from environment
13538
13539 The environment is the canonical storage location of the mac address, so
13540 we're killing off the global data location and moving everything to
13541 querying the env directly.
13542
13543 Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
13544 handle this board specially in common ARM code.
13545
13546 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13547 CC: Ben Warren <biggerbadderben@gmail.com>
13548
13549 commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
13550 Author: Mike Frysinger <vapier@gentoo.org>
13551 Date: Mon Feb 16 18:03:14 2009 -0500
13552
13553 boards: move board_get_enetaddr() into board-specific init
13554
13555 The environment is the canonical storage location of the mac address, so
13556 we're killing off the global data location and moving everything to
13557 querying the env directly.
13558
13559 Rather than have the common ppc code have board-specific hooks, move the
13560 board_get_enetaddr() function into the board-specific init functions.
13561
13562 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13563 CC: Ben Warren <biggerbadderben@gmail.com>
13564
13565 commit f11e6ff5b1859d9213f0d501b3309e065f487543
13566 Author: Mike Frysinger <vapier@gentoo.org>
13567 Date: Wed Feb 11 19:39:55 2009 -0500
13568
13569 arm: get mac address from environment
13570
13571 The environment is the canonical storage location of the mac address, so
13572 we're killing off the global data location and moving everything to
13573 querying the env directly.
13574
13575 Some warts are remaining and should be killed off (by moving the func to
13576 the appropriate board init code):
13577 - davinci_eth_set_mac_addr
13578 - cs8900_get_enetaddr
13579 - smc_set_mac_addr
13580
13581 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13582 CC: Ben Warren <biggerbadderben@gmail.com>
13583
13584 commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
13585 Author: Mike Frysinger <vapier@gentoo.org>
13586 Date: Wed Feb 11 19:36:20 2009 -0500
13587
13588 nx823: get mac address from environment
13589
13590 The environment is the canonical storage location of the mac address, so
13591 we're killing off the global data location and moving everything to
13592 querying the env directly.
13593
13594 For the nx823, the serial number is moved out of load_sernum_ethaddr() and
13595 into misc_init_r() as is the env setup. This lets us kill off the former
13596 function in the process.
13597
13598 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13599 CC: Ben Warren <biggerbadderben@gmail.com>
13600
13601 commit 19b5b533ccd522abeb501d510750693c35e20456
13602 Author: Mike Frysinger <vapier@gentoo.org>
13603 Date: Wed Feb 11 18:27:18 2009 -0500
13604
13605 lib_*/board.c: do not initialize bi_enet*addr in global data
13606
13607 Since everyone is using the environment for mac address storage, there is
13608 no point in seeding the global data.
13609
13610 The arches that are converted here:
13611 i386
13612 m68k
13613 microblaze
13614 mips
13615 nios
13616 nios2
13617 sh
13618 sparc
13619
13620 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13621 CC: Ben Warren <biggerbadderben@gmail.com>
13622 CC: Daniel Hellstrom <daniel@gaisler.com>
13623 CC: Michal Simek <monstr@seznam.cz>
13624 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13625 CC: Scott McNutt <smcnutt@psyent.com>
13626 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13627
13628 commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
13629 Author: Mike Frysinger <vapier@gentoo.org>
13630 Date: Wed Feb 11 19:19:54 2009 -0500
13631
13632 npe: get mac address from environment
13633
13634 The environment is the canonical storage location of the mac address, so
13635 we're killing off the global data location and moving everything to
13636 querying the env directly.
13637
13638 The resulting code can also be simplified even further.
13639
13640 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13641 CC: Stefan Roese <sr@denx.de>
13642 CC: Ben Warren <biggerbadderben@gmail.com>
13643
13644 commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
13645 Author: Mike Frysinger <vapier@gentoo.org>
13646 Date: Wed Feb 11 19:18:41 2009 -0500
13647
13648 cpu/: get mac address from environment
13649
13650 The environment is the canonical storage location of the mac address, so
13651 we're killing off the global data location and moving everything to
13652 querying the env directly.
13653
13654 The cpus that get converted here:
13655 at91rm9200
13656 mpc512x
13657 mpc5xxx
13658 mpc8260
13659 mpc8xx
13660 ppc4xx
13661
13662 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13663 CC: Ben Warren <biggerbadderben@gmail.com>
13664 CC: John Rigby <jrigby@freescale.com>
13665 CC: Stefan Roese <sr@denx.de>
13666
13667 commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
13668 Author: Mike Frysinger <vapier@gentoo.org>
13669 Date: Wed Feb 11 19:09:54 2009 -0500
13670
13671 lan91c96/smc91111/smc911x: get mac address from environment
13672
13673 The environment is the canonical storage location of the mac address, so
13674 we're killing off the global data location and moving everything to
13675 querying the env directly.
13676
13677 Also, do not bother checking the EEPROM if the env is setup. This
13678 simplifies the code greatly.
13679
13680 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13681 Signed-off-by: Wolfgang Dnek <wd@denx.de>
13682 CC: Ben Warren <biggerbadderben@gmail.com>
13683 CC: Rolf Offermanns <rof@sysgo.de>
13684 CC: Erik Stahlman <erik@vt.edu>
13685 CC: Daris A Nevil <dnevil@snmc.com>
13686 CC: Sascha Hauer <s.hauer@pengutronix.de>
13687
13688 commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
13689 Author: Mike Frysinger <vapier@gentoo.org>
13690 Date: Wed Feb 11 19:14:09 2009 -0500
13691
13692 sh_eth: get mac address from environment
13693
13694 The environment is the canonical storage location of the mac address, so
13695 we're killing off the global data location and moving everything to
13696 querying the env directly.
13697
13698 The sh_eth driver can also be simplified a bit by using enetaddr member of
13699 the eth_device structure.
13700
13701 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13702 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13703 CC: Carlos Munoz <carlos@kenati.com>
13704 CC: Ben Warren <biggerbadderben@gmail.com>
13705
13706 commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
13707 Author: Mike Frysinger <vapier@gentoo.org>
13708 Date: Wed Feb 11 19:06:09 2009 -0500
13709
13710 cs8900: get mac address from environment
13711
13712 The environment is the canonical storage location of the mac address, so
13713 we're killing off the global data location and moving everything to
13714 querying the env directly.
13715
13716 The cs8900 driver also changes slightly in that the hardware is not
13717 consulted if the mac address in the env is sane.
13718
13719 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13720 CC: Marius Groeger <mgroeger@sysgo.de>
13721 CC: Ben Warren <biggerbadderben@gmail.com>
13722
13723 commit c4b8762f11d337e6a9d90c227b2871d65d372469
13724 Author: Mike Frysinger <vapier@gentoo.org>
13725 Date: Wed Feb 11 19:04:25 2009 -0500
13726
13727 bcm570x: get mac address from environment
13728
13729 The environment is the canonical storage location of the mac address, so
13730 we're killing off the global data location and moving everything to
13731 querying the env directly.
13732
13733 Since the address is in the PLM_DEVICE_BLOCK structure already, there is
13734 no need to pass the NodeAddress as a second parameter. So drop the second
13735 argument to the LM_SetMacAddress() function (and update the tigon3 driver
13736 accordingly).
13737
13738 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13739 CC: Ben Warren <biggerbadderben@gmail.com>
13740
13741 commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
13742 Author: Mike Frysinger <vapier@gentoo.org>
13743 Date: Wed Feb 11 19:01:26 2009 -0500
13744
13745 drivers/net/: get mac address from environment
13746
13747 The environment is the canonical storage location of the mac address, so
13748 we're killing off the global data location and moving everything to
13749 querying the env directly.
13750
13751 The drivers that get converted here:
13752 3c589
13753 4xx_enet
13754 dc2114x
13755 dm9000x
13756 enc28j60
13757 fsl_mcdmafec
13758 ks8695eth
13759 mcffec
13760 rtl8019
13761 rtl8169
13762 s3c4510b_eth
13763 xilinx_emac
13764 xilinx_emaclite
13765
13766 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13767 CC: Ben Warren <biggerbadderben@gmail.com>
13768 CC: Rolf Offermanns <rof@sysgo.de>
13769 CC: Stefan Roese <sr@denx.de>
13770 CC: Sascha Hauer <saschahauer@web.de>
13771 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13772 CC: Greg Ungerer <greg.ungerer@opengear.com>
13773 CC: Xue Ligong <lgxue@hotmail.com>
13774 CC: Masami Komiya <mkomiya@sonare.it>
13775 CC: Curt Brune <curt@cucy.com>
13776 CC: Michal SIMEK <monstr@monstr.eu>
13777
13778 commit b6b4625d175019e387e5b0f65a17322a78f6bb90
13779 Author: Mike Frysinger <vapier@gentoo.org>
13780 Date: Wed Feb 11 18:38:38 2009 -0500
13781
13782 boards: get mac address from environment
13783
13784 The boards that get converted here to use the environment for the mac
13785 address rather than global data:
13786 debris
13787 mgcoge
13788 mgsuvd
13789 muas3001
13790 netstal
13791 pn62
13792 sixnet
13793 vcma9
13794 xilinx (the ones that use xilinx_enet)
13795
13796 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13797 CC: Ben Warren <biggerbadderben@gmail.com>
13798 CC: Sangmoon Kim <dogoil@etinsys.com>
13799 CC: Heiko Schocher <hs@denx.de>
13800 CC: David Mueller <d.mueller@elsoft.ch>
13801 CC: Niklaus Giger <niklaus.giger@netstal.com>
13802 CC: Wolfgang Grandegger <wg@denx.de>
13803 CC: Dave Ellis <DGE@sixnetio.com>
13804 CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
13805
13806 commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
13807 Author: Mike Frysinger <vapier@gentoo.org>
13808 Date: Wed Feb 11 18:36:45 2009 -0500
13809
13810 AmigaOneG3SE/enet: get mac address from environment
13811
13812 Always use the MAC address that is stored in the environment first before
13813 falling back to the ROM. This also cuts out any comparison steps: if the
13814 mac in the env is sane, the ROM is never consulted.
13815
13816 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13817 CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
13818 CC: Ben Warren <biggerbadderben@gmail.com>
13819
13820 commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
13821 Author: Mike Frysinger <vapier@gentoo.org>
13822 Date: Wed Feb 11 18:52:38 2009 -0500
13823
13824 nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
13825
13826 Since the ethernet layer handles updating of device addresses itself from
13827 the environment, there is no point in calling eth_set_enetaddr().
13828
13829 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13830 CC: Ben Warren <biggerbadderben@gmail.com>
13831
13832 commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
13833 Author: Mike Frysinger <vapier@gentoo.org>
13834 Date: Wed Feb 11 18:54:07 2009 -0500
13835
13836 lynxkdi: get mac address from environment
13837
13838 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13839 CC: Ben Warren <biggerbadderben@gmail.com>
13840
13841 commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
13842 Author: Mike Frysinger <vapier@gentoo.org>
13843 Date: Wed Feb 11 18:51:43 2009 -0500
13844
13845 bootvx: get mac address from environment
13846
13847 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13848 CC: Niklaus Giger <niklaus.giger@member.fsf.org>
13849 CC: Ben Warren <biggerbadderben@gmail.com>
13850
13851 commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
13852 Author: Mike Frysinger <vapier@gentoo.org>
13853 Date: Wed Feb 11 18:50:10 2009 -0500
13854
13855 bdinfo: get mac address from environment
13856
13857 Add a new print_eth() function to automate the eth*addr env var acquisition
13858 and display. Affects all arches.
13859
13860 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13861 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13862 CC: Scott McNutt <smcnutt@psyent.com>
13863 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13864 CC: Michal Simek <monstr@seznam.cz>
13865 CC: Daniel Hellstrom <daniel@gaisler.com>
13866 CC: Ben Warren <biggerbadderben@gmail.com>
13867
13868 commit 95823ca0773356860e622ee3304a4b7cafcbf19a
13869 Author: Mike Frysinger <vapier@gentoo.org>
13870 Date: Wed Feb 11 18:23:48 2009 -0500
13871
13872 net: get mac address from environment and use eth util funcs
13873
13874 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13875 CC: Ben Warren <biggerbadderben@gmail.com>
13876
13877 commit 500b6c51e4c41f4562cb48344af98deb7e342731
13878 Author: Mike Frysinger <vapier@gentoo.org>
13879 Date: Mon Oct 13 15:06:25 2008 -0400
13880
13881 Blackfin: bfin_mac: force boards to setup the MAC themselves
13882
13883 Since the on-chip MAC does not have an eeprom or similar interface, force
13884 all Blackfin boards that use this driver to setup the board data with a
13885 proper MAC.
13886
13887 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13888 CC: Ben Warren <biggerbadderben@gmail.com>
13889
13890 commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
13891 Author: Mike Frysinger <vapier@gentoo.org>
13892 Date: Wed Feb 11 14:12:34 2009 -0500
13893
13894 doc/README.enetaddr: document proper MAC usage
13895
13896 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13897 CC: Ben Warren <biggerbadderben@gmail.com>
13898
13899 commit 3f6e6993e92fd0658da1746d1c84644612ee520b
13900 Author: Mike Frysinger <vapier@gentoo.org>
13901 Date: Thu Jan 29 19:43:44 2009 -0500
13902
13903 net: new utility functions for working with enetaddr's
13904
13905 Declare new utility functions for converting between the environment
13906 variables (eth*addr) and the binary MAC address representation. This way
13907 we can unify all the random places that already do this kind of thing.
13908
13909 The functions in question:
13910 eth_parse_enetaddr - "..." -> {...}
13911 eth_getenv_enetaddr - env -> {...}
13912 eth_setenv_enetaddr - {...} -> env
13913
13914 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13915 CC: Ben Warren <biggerbadderben@gmail.com>
13916
13917 commit b6446b67758ea1e41223f0782924bb73fd0a89d0
13918 Author: Mike Frysinger <vapier@gentoo.org>
13919 Date: Tue Feb 17 00:00:53 2009 -0500
13920
13921 convert print_IPaddr() to %pI4
13922
13923 Now that our printf functions support the %pI4 modifier like the kernel,
13924 let's drop the inflexible print_IPaddr() function and covert over to the
13925 %pI4 modifier.
13926
13927 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13928 CC: Ben Warren <biggerbadderben@gmail.com>
13929
13930 commit 6c6166f52983dac775e3852f9d0f49d033f27108
13931 Author: Mike Frysinger <vapier@gentoo.org>
13932 Date: Mon Feb 16 23:21:36 2009 -0500
13933
13934 vsprintf: pull updates from Linux kernel
13935
13936 This brings in support for the %p modifier which allows us to easily print
13937 out things like ip addresses, mac addresses, and pointers.
13938
13939 It also converts the rarely used 'q' length modifier to the common 'L'
13940 modifier when dealing with quad types.
13941
13942 While this new code is a bit larger (~1k .text), most of it should be made
13943 up by converting the existing ip/mac address code to use format modifiers.
13944
13945 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13946
13947 commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
13948 Author: Jon Smirl <jonsmirl@gmail.com>
13949 Date: Thu Mar 19 23:04:18 2009 -0400
13950
13951 .gitignore for generated files in api_examples directory
13952
13953 Add .gitignore for generated files in api_examples directory
13954
13955 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
13956 Signed-off-by: Wolfgang Denk <wd@denx.de>
13957
13958 commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
13959 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13960 Date: Wed Mar 18 12:27:04 2009 +0900
13961
13962 net: sh_eth: Remove sh_eth_reset() from halt function
13963
13964 sh_eth_reset is function to reset Ether IP.
13965 The MAC address is stored in IP, but it is initialized by this function.
13966 OS (e.g. Linux Kernel) can not use this device when initialized.
13967 This revises this problem.
13968
13969 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13970
13971 commit f8853d105da7d69bc92a5b4578f9b85234e558ec
13972 Author: Anatolij Gustschin <agust@denx.de>
13973 Date: Fri Mar 20 12:45:50 2009 +0100
13974
13975 ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
13976
13977 PCI outbound address map configuration doesn't match the
13978 PCI memory address range covered by appropriate TLB entry
13979 configuration for canyonlands causing machine check
13980 exceptions while accessing PCI memory regions. This patch
13981 provides a fix for this issue.
13982
13983 Kazuaki Ichinohe observed and reported this issue while
13984 testing display output with PCI ATI video card on canyonlands.
13985
13986 Signed-off-by: Anatolij Gustschin <agust@denx.de>
13987 Signed-off-by: Stefan Roese <sr@denx.de>
13988
13989 commit 7a88601a34132548c3c591ea87ab3468b51121b0
13990 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13991 Date: Fri Mar 6 10:09:37 2009 -0500
13992
13993 CFI: geometry reversal for STMicro M29W320DT
13994
13995 Follow up to the flash_fixup_stm to fix geometry reversal
13996 on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
13997
13998 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13999 Signed-off-by: Stefan Roese <sr@denx.de>
14000
14001 commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
14002 Author: Mike Frysinger <vapier@gentoo.org>
14003 Date: Wed Feb 25 17:29:40 2009 -0500
14004
14005 smc911x_eeprom: update register API
14006
14007 The smc911x driver changed the naming convention for its register funcs,
14008 so update the eeprom code accordingly.
14009
14010 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14011 CC: Ben Warren <biggerbadderben@gmail.com>
14012
14013 commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
14014 Author: Grzegorz Bernacki <gjb@semihalf.com>
14015 Date: Tue Mar 17 10:06:39 2009 +0100
14016
14017 mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
14018
14019 Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
14020 To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
14021 define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
14022 Total5200 and will be used by digsy MTC and other boards with
14023 ATA CS on I2C pins.
14024
14025 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14026
14027 commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
14028 Author: Heiko Schocher <hs@denx.de>
14029 Date: Thu Mar 12 07:37:34 2009 +0100
14030
14031 8xx: add support for new keymile kmsupx4 board.
14032
14033 This patch adds support for the kmsupx4 board from Keymile,
14034 based on a Freescale MPC852T CPU
14035
14036 - serial console on SMC1
14037 - 32 MB SDRAM
14038 - 32 MB NOR Flash
14039 - Ethernet over SCC3
14040 - I2C Bitbang
14041
14042 Signed-off-by: Heiko Schocher <hs@denx.de>
14043
14044 commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
14045 Author: Heiko Schocher <hs@denx.de>
14046 Date: Thu Mar 12 07:37:28 2009 +0100
14047
14048 8xx, mgsuvd: rename board to a more generic name
14049
14050 renaming the "mgsuvd" board port into "km8xx", because
14051 there come more similar boards from keymile.
14052 Compiling the mgsuvd board with "make mgsuvd_config"
14053 remains.
14054
14055 Signed-off-by: Heiko Schocher <hs@denx.de>
14056
14057 commit 18b2f35bde1672e074a3d5048383cb56fda745cb
14058 Author: Heiko Schocher <hs@denx.de>
14059 Date: Thu Mar 12 07:37:23 2009 +0100
14060
14061 8xx, mgsuvd: Coding Style cleanup config file
14062
14063 Signed-off-by: Heiko Schocher <hs@denx.de>
14064
14065 commit 364123db6730d32330f818b65360d2cd27396667
14066 Author: Heiko Schocher <hs@denx.de>
14067 Date: Thu Mar 12 07:37:18 2009 +0100
14068
14069 powerpc: common updates for keymile boards
14070
14071 - added to keymile-common.h:
14072 - bootcount support
14073 - COMMAND HISTORY
14074 - CONFIG_AUTO_COMPLETE
14075 - CONFIG_SYS_FLASH_PROTECTION
14076 - JFFS2 support
14077 - CONFIG_VERSION_VARIABLE
14078 - extracted common I2C settings for all boards
14079 - common default environment settings summarized
14080
14081 Signed-off-by: Heiko Schocher <hs@denx.de>
14082
14083 commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
14084 Author: Heiko Schocher <hs@denx.de>
14085 Date: Thu Mar 12 07:37:15 2009 +0100
14086
14087 8xx, icache: enabling ICache not before running from RAM
14088
14089 with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
14090 is not enabled before code runs from RAM.
14091
14092 Signed-off-by: Heiko Schocher <hs@denx.de>
14093
14094 commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
14095 Author: Heiko Schocher <hs@denx.de>
14096 Date: Thu Mar 12 07:37:11 2009 +0100
14097
14098 82xx, mgcoge: fix environment sector size
14099
14100 Size of one environment sector is 0x20000.
14101
14102 Signed-off-by: Heiko Schocher <hs@denx.de>
14103
14104 commit 27057d416c7cc9eb1860953da8836352c07f13e9
14105 Author: Ladislav Michl <ladis@linux-mips.org>
14106 Date: Mon Mar 16 23:27:31 2009 +0100
14107
14108 NetStar: config reindentation
14109
14110 Fix indentation broken by symbol renames. "Sort" driver related definitons.
14111
14112 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
14113
14114 commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
14115 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14116 Date: Tue Mar 17 11:21:43 2009 +0000
14117
14118 ColdFire: Fix incorrect definition
14119
14120 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14121
14122 commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
14123 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14124 Date: Mon Mar 2 19:16:45 2009 +0000
14125
14126 ColdFire: Fix M5329EVB and M5373EVB nand issue
14127
14128 The Nand flash was unable to read and write properly
14129 due to Nand Chip Select (nCE) setup was in reverse
14130 order. Also, increase the Nand time out value to 60.
14131
14132 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14133
14134 commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
14135 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14136 Date: Tue Jan 27 15:19:35 2009 +0000
14137
14138 ColdFire: PLATFORM_CPPFLAGS updates for new compiler
14139
14140 Update PLATFORM_CPPFLAGS to accept 4.3.x version of
14141 ColdFire compiler.
14142
14143 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14144
14145 commit d6e4baf49987fc6f75e8574c0c27301a828b3132
14146 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14147 Date: Tue Jan 27 12:57:47 2009 +0000
14148
14149 ColdFire: Provide gzip image size V2 & V3 platforms
14150
14151 Default gzip bootm size is 8MB. Some platforms require
14152 more than 8MB
14153
14154 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14155
14156 commit c3a9e6374210679a81f611c1bcf968988bc20e41
14157 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14158 Date: Wed Feb 18 11:49:31 2009 +0000
14159
14160 ColdFire: Fix M54451 serial boot dram setup
14161
14162 The serial boot dram extended/standard mode register was not
14163 setup and was using default DRAM setup causing the U-boot was
14164 unstable to boot up in serial mode.
14165
14166 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14167
14168 commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
14169 Author: arun c <arun.edarath@gmail.com>
14170 Date: Thu Dec 4 15:57:15 2008 +0530
14171
14172 Coldfire: XL Bus minor fixes
14173
14174 According to coldfire manual data timeout > address time out
14175 also use correct macro to program XARB_CFG
14176
14177 Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
14178
14179 commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
14180 Author: Scott Wood <scottwood@freescale.com>
14181 Date: Tue Mar 17 12:06:04 2009 -0500
14182
14183 NAND: Have nboot accept .e and .i as legacy no-ops.
14184
14185 This was intended to happen before, but a trivial bug prevented it.
14186
14187 Signed-off-by: Scott Wood <scottwood@freescale.com>
14188
14189 commit 0987505540918b2464b73069af3a5b766dbd3ceb
14190 Author: Ladislav Michl <ladis@linux-mips.org>
14191 Date: Fri Mar 13 14:38:19 2009 +0100
14192
14193 NAND: Make nboot skip bad blocks
14194
14195 nboot command currently does not skip bad blocks and gives read error when
14196 loading image stored over bad block. With patch applied, nboot works as
14197 expected:
14198
14199 Device 0 bad blocks:
14200 00780000
14201 014a0000
14202 02000000
14203 02cc0000
14204 04aa0000
14205
14206 Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
14207 Image Name: Linux-2.6.22-omap1
14208 Created: 2008-11-20 23:44:32 UTC
14209 Image Type: ARM Linux Kernel Image (uncompressed)
14210 Data Size: 1052520 Bytes = 1 MB
14211 Load Address: 10008000
14212 Entry Point: 10008000
14213 Skipping bad block 0x02cc0000
14214 Automatic boot of image at addr 0x10400000 ...
14215 ...
14216
14217 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
14218 Signed-off-by: Scott Wood <scottwood@freescale.com>
14219
14220 commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
14221 Author: Stefan Roese <sr@denx.de>
14222 Date: Thu Mar 12 07:27:25 2009 +0100
14223
14224 ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
14225
14226 This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
14227 the DDR2 configuration to only use one CS (rank). As this code is most
14228 likely copied from the original Sequoia version, this error was copied
14229 as well.
14230
14231 This patch also removes some dead code.
14232
14233 Signed-off-by: Stefan Roese <sr@denx.de>
14234
14235 commit 9199b9cc8f56aca26504b48cf702176208f46e54
14236 Author: Stefan Roese <sr@denx.de>
14237 Date: Thu Mar 12 07:24:40 2009 +0100
14238
14239 ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
14240
14241 This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
14242 the DDR2 configuration to only use one CS (rank). As this code is most
14243 likely copied from the original Sequoia version, this error was copied
14244 as well.
14245
14246 Signed-off-by: Stefan Roese <sr@denx.de>
14247
14248 commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
14249 Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
14250 Date: Wed Mar 11 10:54:46 2009 +0200
14251
14252 Fix AMCC Sequoia board DDR memory configuration
14253
14254 Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
14255 specifies that BankSel#1 is not connected, while bootloader memory
14256 configuration is (board/amcc/sequoia/sdram.c):
14257 mtsdram(DDR0_10, 0x00000300);
14258 i.e. both Chip Selects used - not correct.
14259
14260 If we change to correct value here:
14261 mtsdram(DDR0_10, 0x00000100);
14262 memory is accessible OK also.
14263
14264 Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
14265 Signed-off-by: Stefan Roese <sr@denx.de>
14266
14267 commit b3dd629e78870ba2dc9f8032978721c0fa02a856
14268 Author: Wolfgang Denk <wd@denx.de>
14269 Date: Sun Mar 15 22:40:09 2009 +0100
14270
14271 Prepare 2009.03-rc2
14272
14273 Update CHANEGLOG, fix minor coding style issue.
14274
14275 Signed-off-by: Wolfgang Denk <wd@denx.de>
14276
14277 commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
14278 Author: Jerry Van Baren <gvb.uboot@gmail.com>
14279 Date: Fri Mar 13 11:40:10 2009 -0400
14280
14281 mpc83xx: Add bank configuration to FSL spd_sdram.c
14282
14283 The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
14284 bank SDRAMs.
14285
14286 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
14287 Acked-by: Dave Liu <daveliu@freescale.com>
14288 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14289
14290 commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
14291 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
14292 Date: Fri Mar 13 08:58:14 2009 +0100
14293
14294 mpc83xx: correctly set encryption and I2C bus 0 clock
14295
14296 This patch makes sure the correct mask is applied when setting
14297 the encryption and I2C bus 0 clock in SCCR.
14298 Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
14299 won't function.
14300
14301 Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
14302 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14303
14304 commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
14305 Author: Dirk Behme <dirk.behme@googlemail.com>
14306 Date: Thu Mar 12 19:30:50 2009 +0100
14307
14308 OMAP3: Add support for OMAP3 die ID
14309
14310 Read and store OMAP3 die ID in U-Boot environment.
14311
14312 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14313
14314 commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
14315 Author: Jon Smirl <jonsmirl@gmail.com>
14316 Date: Wed Mar 11 15:08:56 2009 -0400
14317
14318 MPC5200 FEC MII speed register
14319
14320 Set a non-zero speed in the MII register so that MII commands will work.
14321
14322 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
14323
14324 commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
14325 Author: Yusuke.Goda <goda.yusuke@renesas.com>
14326 Date: Fri Mar 13 16:08:18 2009 +0900
14327
14328 sh: ap325rxa: Change the wait cycle in the area 5
14329
14330 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
14331 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14332
14333 commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
14334 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14335 Date: Wed Feb 25 16:04:26 2009 +0900
14336
14337 sh: Fix cannot work rtl8139 on r2dplus
14338
14339 The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
14340 registration.
14341
14342 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14343 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14344
14345 commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
14346 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14347 Date: Fri Feb 27 18:35:41 2009 +0900
14348
14349 sh: Add netdev header fixing of warning/build
14350
14351 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14352 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14353
14354 commit ada9318252f51c2626e9837c623f9812b0308dea
14355 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14356 Date: Tue Mar 3 15:11:17 2009 +0900
14357
14358 sh: Add support 32-Bit Extended Address Mode to sh7785lcr
14359
14360 We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
14361 for this mode. This command changes PMB for using 512MB system memory.
14362
14363 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14364 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14365
14366 commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
14367 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14368 Date: Wed Feb 25 14:26:42 2009 +0900
14369
14370 sh: Add some register value configurable to PCI of SH7780
14371
14372 Some register value was hardcoded for System memory size 128MB and
14373 memory offset 0x08000000. This patch fixed the problem.
14374
14375 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14376 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14377
14378 commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
14379 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14380 Date: Wed Feb 25 14:26:52 2009 +0900
14381
14382 sh: Add system memory registration to PCI for SH4
14383
14384 It is necessary for some pci device driver.
14385
14386 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14387 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14388
14389 commit b3061b40db691245a7bb9a55354b4edacbf3902d
14390 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14391 Date: Wed Feb 25 14:26:55 2009 +0900
14392
14393 sh: Add value for PCI system memory registration of sh7785lcr
14394
14395 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14396 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14397
14398 commit 6d84ae3956a6cd7aebd86f661130752594e60124
14399 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14400 Date: Tue Mar 3 15:11:08 2009 +0900
14401
14402 sh: Add macros for SH-4A 32-Bit Address Extended Mode
14403
14404 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14405 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14406
14407 commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
14408 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14409 Date: Tue Feb 3 13:35:05 2009 +0900
14410
14411 sh: use write{8,16,32} in ms7720se lowlevel_init
14412
14413 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14414 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14415
14416 commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
14417 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14418 Date: Mon Mar 9 18:07:53 2009 -0500
14419
14420 tsec: report when there is no vendor specific PHY support
14421
14422 Commit af1c2b84 added a generic phy support, with an ID of zero
14423 and a 32 bit mask; meaning that it will match on any PHY ID.
14424
14425 The problem is that there is a test that checked if a matching
14426 PHY was found, and if not, it printed the non-matching ID.
14427 But since there will always be a match (on the generic PHY,
14428 worst case), this test will never trip.
14429
14430 In the case of a misconfigured PHY address, or of a PHY that
14431 isn't explicitly supported outside of the generic support,
14432 you will never see the ID of 0xffffffff, or the ID of the
14433 real (but unsupported) chip. It will silently fall through
14434 onto the generic support.
14435
14436 This change makes that test useful again, and ensures that
14437 the selection of generic PHY support doesn't happen without
14438 some sort of notice. It also makes it explicitly clear that
14439 the generic PHY must be last in the PHY table.
14440
14441 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
14442 Acked-by: Andy Fleming <afleming@freescale.com>
14443
14444 commit c279dfc10186ceba78d3862036f158750e86599a
14445 Author: Wolfgang Denk <wd@denx.de>
14446 Date: Mon Mar 9 10:53:05 2009 +0100
14447
14448 SIMPC8313 board: fix out of tree building.
14449
14450 Fix typo in makefile which broke out of tree builds.
14451
14452 Also use expolicit "rm" instead of "ln -sf" which is known to be
14453 unreliable.
14454
14455 Signed-off-by: Wolfgang Denk <wd@denx.de>
14456 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14457
14458 commit 49b5aff491bd574935ecaf8545152066a25eff3d
14459 Author: ksi@koi8.net <ksi@koi8.net>
14460 Date: Mon Feb 23 10:53:13 2009 -0800
14461
14462 Add eTSEC 1/2 IO override control (corrected)
14463
14464 This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
14465
14466 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
14467
14468 commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
14469 Author: Andy Fleming <afleming@freescale.com>
14470 Date: Fri Mar 6 19:05:52 2009 -0600
14471
14472 fsl: Remove unnecessary debug printfs
14473
14474 These were left in accidentally, and are not really useful unless the
14475 code is as broken as it was when it was being developed.
14476
14477 Signed-off-by: Andy Fleming <afleming@freescale.com>
14478
14479 commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
14480 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
14481 Date: Tue Feb 24 02:37:59 2009 -0600
14482
14483 Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
14484
14485 Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
14486 sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
14487
14488 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
14489
14490 commit a922fdb87af25c25c032424908dcf60fbf3250ea
14491 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14492 Date: Tue Feb 24 06:13:10 2009 +0100
14493
14494 PXA: timer use do_div and simplify it
14495
14496 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14497
14498 commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
14499 Author: Wolfgang Denk <wd@denx.de>
14500 Date: Mon Mar 9 10:51:39 2009 +0100
14501
14502 SIMPC8313 board: fix out of tree building.
14503
14504 Fix typo in makefile which broke out of tree builds.
14505
14506 Also use expolicit "rm" instead of "ln -sf" which is known to be
14507 unreliable.
14508
14509 Signed-off-by: Wolfgang Denk <wd@denx.de>
14510
14511 commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
14512 Author: Heiko Schocher <hs@denx.de>
14513 Date: Tue Feb 24 11:30:51 2009 +0100
14514
14515 8360, kmeter1: added bootcount feature.
14516
14517 add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
14518
14519 The bootcounter uses 8 bytes from the muram,
14520 because no other memory was found on this
14521 CPU for the bootcount feature. So we must
14522 correct the muram size in DTS before booting
14523 Linux.
14524
14525 This feature is actual only implemented for
14526 MPC8360, because not all 83xx CPU have qe,
14527 and therefore no muram, which this feature
14528 uses.
14529
14530 Signed-off-by: Heiko Schocher <hs@denx.de>
14531 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14532
14533 commit 1e7ed2565031e01abc18c713030a0a9829c07684
14534 Author: Heiko Schocher <hs@denx.de>
14535 Date: Tue Feb 24 11:30:48 2009 +0100
14536
14537 83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
14538
14539 old code implemented the QE_ENET10 errata only for Silicon
14540 Revision 2.0. New code reads now the Silicon Revision
14541 register and sets dependend on the Silicon Revision the
14542 values as advised in the QE_ENET10 errata.
14543
14544 Signed-off-by: Heiko Schocher <hs@denx.de>
14545 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14546
14547 commit 605f78e34a3f0103693b891f2573edd352e7d495
14548 Author: Heiko Schocher <hs@denx.de>
14549 Date: Tue Feb 24 11:30:44 2009 +0100
14550
14551 83xx, kmeter1: updates for 2009.03
14552
14553 - HRCW update
14554 HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
14555 HRCWH_LALE_EARLY added
14556 - DDR-SDRAM settings modified. This solves sporadically
14557 problems with this memory.
14558 - CS1 now 128 MB window size
14559 - CS3 now 512 MB window size
14560 - PRAM activated
14561 - MTDPARTS_DEFAULT defined
14562 - CONFIG_HOSTNAME added
14563 - MONITOR_LEN now 384 KB
14564
14565 Signed-off-by: Heiko Schocher <hs@denx.de>
14566 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14567
14568 commit 118cbe3c35c898f8d020b29d6dc180307cacf147
14569 Author: Heiko Schocher <hs@denx.de>
14570 Date: Tue Feb 24 11:30:40 2009 +0100
14571
14572 83xx, kmeter1: autodetect size of DDR II RAM
14573
14574 it is possible that some board variants have different DDR II
14575 RAM sizes. So we autodetect the size of the assembled RAM.
14576
14577 Signed-off-by: Heiko Schocher <hs@denx.de>
14578 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14579
14580 commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
14581 Author: Heiko Schocher <hs@denx.de>
14582 Date: Tue Feb 24 11:30:37 2009 +0100
14583
14584 83xx, i2c: add mux support for fsl_i2c
14585
14586 This patch adds I2C mux support for the fsl_i2c driver. This
14587 allows you to add "new" i2c busses, which are reached over
14588 i2c muxes. For more infos, please look in the README and
14589 search for CONFIG_I2C_MUX.
14590
14591 Signed-off-by: Heiko Schocher <hs@denx.de>
14592 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14593
14594 commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
14595 Author: Heiko Schocher <hs@denx.de>
14596 Date: Tue Feb 24 11:30:34 2009 +0100
14597
14598 83xx, kmeter1: add I2C, dtt, eeprom support
14599
14600 This patch adds I2C support for the Keymile kmeter1 board.
14601 It uses the First I2C Controller from the CPU, for
14602 accessing 4 temperature sensors, an eeprom with IVM data
14603 and the booteeprom over a pca9547 mux.
14604
14605 Signed-off-by: Heiko Schocher <hs@denx.de>
14606 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14607
14608 commit db1d72afd77287bc8577210f3f71ab249dcf146f
14609 Author: Heiko Schocher <hs@denx.de>
14610 Date: Tue Feb 24 11:30:30 2009 +0100
14611
14612 i2c, dtt: move dtt_init () to board_init_r ()
14613
14614 In case where a board not uses CONFIG_POST, it is not
14615 necessary to init the DTTs when running from flash.
14616
14617 Signed-off-by: Heiko Schocher <hs@denx.de>
14618 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14619
14620 commit 5b0055547f0246908b79cc300170d87380b69e18
14621 Author: Dave Liu <daveliu@freescale.com>
14622 Date: Wed Feb 25 12:31:32 2009 +0800
14623
14624 83xx: Fix some bugs in spd sdram code
14625
14626 1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
14627 tRTP according to DDR2 JEDEC spec.
14628 2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
14629 3. add the support of DDR2-533,667,800 DIMMs
14630 4. cpo
14631 5. make the AL to min to gain better performance.
14632
14633 The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
14634 MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
14635
14636 items 1, 2 and 5:
14637 Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
14638
14639 Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
14640 Signed-off-by: Dave Liu <daveliu@freescale.com>
14641 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14642
14643 commit b7be63abec45858c044f0fbd6aeef524c4663f9b
14644 Author: Valeriy Glushkov <gvv@lstec.com>
14645 Date: Wed Feb 4 18:27:49 2009 +0200
14646
14647 MPC8349ITX: several config issues fixed
14648
14649 The previous version rebooted forever with DDR bigger than 256MB.
14650 Access the DS1339 RTC chip is on I2C1 bus.
14651 Allow DHCP.
14652
14653 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
14654 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14655
14656 commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
14657 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14658 Date: Thu Feb 19 18:20:39 2009 +0300
14659
14660 mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
14661
14662 The SerDes initialization should be finished before negating the reset
14663 signal according to the reference manual. This isn't an issue on real
14664 hardware, but we'd better stick to the specifications anyway.
14665
14666 Suggested-by: Liu Dave <DaveLiu@freescale.com>
14667 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14668 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14669
14670 commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
14671 Author: Heiko Schocher <hs@denx.de>
14672 Date: Wed Feb 25 12:28:32 2009 +0100
14673
14674 i2c, dtt: move dtt_init () to board_init_r ()
14675
14676 it is not necessary to init the DTTs so early,
14677 so move this init to board_init_r ().
14678
14679 Signed-off-by: Heiko Schocher <hs@denx.de>
14680
14681 commit 00cc5595a7caac8066b408774383a956c2e26797
14682 Author: Anatolij Gustschin <agust@denx.de>
14683 Date: Wed Feb 25 20:28:13 2009 +0100
14684
14685 lcd: Fix compilation warning in common/lcd.c
14686
14687 Fix following warning while compilation for mcc200 board:
14688
14689 lcd.c: In function 'lcd_display_bitmap':
14690 lcd.c:625: warning: unused variable 'cmap'
14691
14692 Signed-off-by: Anatolij Gustschin <agust@denx.de>
14693
14694 commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
14695 Author: Graeme Russ <graeme.russ@gmail.com>
14696 Date: Tue Feb 24 21:11:24 2009 +1100
14697
14698 Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
14699
14700 Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
14701
14702 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
14703
14704 commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
14705 Author: Mike Frysinger <vapier@gentoo.org>
14706 Date: Mon Feb 23 10:29:47 2009 -0500
14707
14708 smc911x: split out useful defines/functions into local header
14709
14710 The smc911x driver has a lot of useful defines/functions which can be used
14711 by pieces of code (such as example eeprom programmers). Rather than
14712 forcing each place to duplicate these defines/functions, split them out
14713 of the smdc911x driver into a local header.
14714
14715 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14716 Acked-by: Ben Warren <biggerbadderben@gmail.com>
14717 CC: Sascha Hauer <s.hauer@pengutronix.de>
14718 CC: Guennadi Liakhovetski <lg@denx.de>
14719 CC: Magnus Lilja <lilja.magnus@gmail.com>
14720 CC: Ben Warren <biggerbadderben@gmail.com>
14721
14722 commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
14723 Author: Guennadi Liakhovetski <lg@denx.de>
14724 Date: Tue Feb 24 10:44:02 2009 +0100
14725
14726 ARM: add an "eet" variant of the imx31_phycore board
14727
14728 The "eet" variant of the imx31_phycore board has an OLED display, using a
14729 s6e63d6 display controller on the first SPI interface, using GPIO57 as a
14730 chip-select for it. With this configuration you can display 256 colour BMP
14731 images in 16-bit RGB (RGB565) LCD mode.
14732
14733 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14734 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14735
14736 commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
14737 Author: Guennadi Liakhovetski <lg@denx.de>
14738 Date: Fri Feb 6 10:37:57 2009 +0100
14739
14740 video: add an i.MX31 framebuffer driver
14741
14742 Add a driver for the Synchronous Display Controller and the Display
14743 Interface on i.MX31, using IPU for DMA channel setup. So far only
14744 displaying of bitmaps is supported, no text output.
14745
14746 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14747 Acked-by: Anatolij Gustschin <agust@denx.de>
14748
14749 commit b245e65ee3c4cce3ccf008a21f4528239655876c
14750 Author: Guennadi Liakhovetski <lg@denx.de>
14751 Date: Fri Feb 6 10:37:53 2009 +0100
14752
14753 LCD: support 8bpp BMPs on 16bpp displays
14754
14755 This patch also simplifies some ifdefs in lcd.c, introduces a generic
14756 vidinfo_t, which new drivers are encouraged to use and old drivers to switch
14757 over to.
14758
14759 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14760 Acked-by: Anatolij Gustschin <agust@denx.de>
14761
14762 commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
14763 Author: Mark Jackson <mpfj@mimc.co.uk>
14764 Date: Fri Feb 6 10:37:49 2009 +0100
14765
14766 Add 16bpp BMP support
14767
14768 This patch adds 16bpp BMP support to the common lcd code.
14769
14770 Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
14771
14772 At the moment it's only been tested on the MIMC200 AVR32 board, but extending
14773 this to other platforms should be a simple task !!
14774
14775 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
14776 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14777 Acked-by: Anatolij Gustschin <agust@denx.de>
14778
14779 commit 689551c5ff1b394b88412f3df22144e79468d3a9
14780 Author: Guennadi Liakhovetski <lg@denx.de>
14781 Date: Fri Feb 6 10:37:41 2009 +0100
14782
14783 A driver for the S6E63D6 SPI display controller from Samsung
14784
14785 This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
14786 It only provides access to controller's registers so the client can freely
14787 configure it.
14788
14789 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14790 Acked-by: Anatolij Gustschin <agust@denx.de>
14791
14792 commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
14793 Author: Guennadi Liakhovetski <lg@denx.de>
14794 Date: Fri Feb 13 09:26:40 2009 +0100
14795
14796 i.MX31: support GPIO as a chip-select in the mxc_spi driver
14797
14798 Some SPI devices have special requirements on chip-select handling.
14799 With this patch we can use a GPIO as a chip-select and strictly follow
14800 the SPI_XFER_BEGIN and SPI_XFER_END flags.
14801
14802 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14803 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14804
14805 commit b30de3cccf8867566cd314e7c7033904afa5dc9d
14806 Author: Guennadi Liakhovetski <lg@denx.de>
14807 Date: Sat Feb 7 01:18:07 2009 +0100
14808
14809 i.MX31: add a simple gpio driver
14810
14811 This is a minimal driver, so far only managing output. It will
14812 be used by the mxc_spi.c driver.
14813
14814 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14815 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14816
14817 commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
14818 Author: Guennadi Liakhovetski <lg@denx.de>
14819 Date: Sat Feb 7 00:09:12 2009 +0100
14820
14821 i.MX31: fix SPI driver for shorter than 32 bit
14822
14823 Fix setting the SPI Control register, 8 and 16-bit transfers
14824 and a wrong pointer in the free routine in the mxc_spi driver.
14825
14826 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14827 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14828
14829 commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
14830 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14831 Date: Thu Feb 19 18:20:52 2009 +0300
14832
14833 mpc83xx: MPC837XERDB: Add PCIe support
14834
14835 On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
14836 slots. Let's support them.
14837
14838 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14839 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14840
14841 commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
14842 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14843 Date: Thu Feb 19 18:20:50 2009 +0300
14844
14845 mpc83xx: PCI: Fix hard-coded first_busno value
14846
14847 We should use pci_last_busno() in pci_init_bus(), otherwise we'll
14848 erroneously re-use PCI0's first_busno for PCI1 hoses.
14849
14850 NOTE: The patch is untested. All MPC83xx FSL boards I have have
14851 PCI1 in miniPCI form, for which I don't have any cards handy.
14852
14853 But looking in cpu/mpc85xx/pci.c:
14854 ...
14855 #ifdef CONFIG_MPC85XX_PCI2
14856 hose = &pci_hose[1];
14857
14858 hose->first_busno = pci_hose[0].last_busno + 1;
14859
14860 And considering that we do the same for MPC83xx PCI-E support,
14861 I think this patch is correct.
14862
14863 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14864 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14865
14866 commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
14867 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14868 Date: Thu Feb 19 18:20:46 2009 +0300
14869
14870 mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
14871
14872 This patch fixes copy-paste issue: pci_hose[0]'s first and last
14873 busnos were used to fixup pci1's nodes.
14874
14875 We don't see this bug triggering only because Linux reenumerate
14876 buses anyway.
14877
14878 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14879 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14880
14881 commit b24a99f6666ac278ec9f9c1334518af828833d19
14882 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14883 Date: Thu Feb 19 18:20:44 2009 +0300
14884
14885 mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
14886
14887 This patch fixes an issue in config space read accessors: we should
14888 fill-in the value even if we fail (e.g. skipping devices), otherwise
14889 CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
14890
14891 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14892 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14893
14894 commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
14895 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14896 Date: Thu Feb 19 18:20:42 2009 +0300
14897
14898 mpc83xx: PCIe: Don't start bus enumeration at 0
14899
14900 Currently we assign first_busno = 0 for the first PCIe hose, but this
14901 scheme won't work if we have ordinary PCI hose already registered (its
14902 first_busno value is 0 too).
14903
14904 The old code worked fine only because we have PCI disabled on
14905 MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
14906 "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
14907 But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
14908 triggers.
14909
14910 So, to fix the issue, we should use pci_last_busno() + 1 for the
14911 first_busno (i.e. last available busno).
14912
14913 Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
14914 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14915 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14916
14917 commit cc2a8c7751ddbae3116660064f446888538b93e9
14918 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14919 Date: Thu Feb 19 18:20:41 2009 +0300
14920
14921 PCI: Add pci_last_busno() helper
14922
14923 This is just a handy routine that reports last PCI busno: we walk
14924 down all the hoses and return last hose's last_busno.
14925
14926 Will be used by PCI/PCIe initialization code.
14927
14928 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14929 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14930
14931 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
14932 Author: Becky Bruce <beckyb@kernel.crashing.org>
14933 Date: Mon Feb 23 13:56:51 2009 -0600
14934
14935 MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
14936
14937 Currently, we get 256MB as the default, but since all the 86xx
14938 board configs define a 2G BAT mapping for RAM, raise default
14939 to 2G.
14940
14941 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14942 Acked-by: Jon Loeliger <jdl@freescale.com>
14943
14944 commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
14945 Author: Becky Bruce <beckyb@kernel.crashing.org>
14946 Date: Thu Feb 12 10:43:32 2009 -0600
14947
14948 mpc8641hpcn: Indicate 36-bit addr map in boot messages
14949
14950 If 36-bit addressing is enabled, print a message on the console
14951 when we boot.
14952
14953 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
14954
14955 commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
14956 Author: Mark Jackson <mpfj-list@mimc.co.uk>
14957 Date: Fri Feb 13 15:48:18 2009 +0000
14958
14959 Setup extra MIMC200 chip selects
14960
14961 Added code to setup the extra Flash and FRAM chip selects as used on the
14962 MIMC200 board.
14963
14964 V2 moves the init code from the common "cpu.c" file into the board specific
14965 setup file.
14966
14967 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
14968 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14969
14970 commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
14971 Author: Mark Jackson <mpfj@mimc.co.uk>
14972 Date: Mon Nov 24 12:10:56 2008 +0000
14973
14974 MIMC200: tidy GCLK init code
14975
14976 Change the MIMC200 startup code to use the built-in (rather than
14977 hard-coded) funtions for setting up gclk outputs.
14978
14979 We'll also move the code to the new, more-appropriate
14980 board_postclk_init() routine.
14981
14982 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
14983 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14984
14985 commit b423f94063bf04e92047ff85c7e53441eb3b712b
14986 Author: Olav Morken <olavmrk@gmail.com>
14987 Date: Fri Jan 23 12:56:32 2009 +0100
14988
14989 AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
14990
14991 The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
14992 workaround, two NOPs can be inserted.
14993
14994 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
14995 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
14996 Signed-off-by: Olav Morken <olavmrk@gmail.com>
14997 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14998
14999 commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
15000 Author: Gunnar Rangoy <gunnar@rangoy.com>
15001 Date: Fri Jan 23 12:56:29 2009 +0100
15002
15003 AVR32: Make GPIO implmentation cpu dependent
15004
15005 There are some differences in the implementation of GPIO in the
15006 at32uc chip compared to the ap700x series.
15007
15008 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
15009 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
15010 Signed-off-by: Olav Morken <olavmrk@gmail.com>
15011 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
15012
15013 commit a38de083d2979db3680f0d0978c509a172c8fa00
15014 Author: Olav Morken <olavmrk@gmail.com>
15015 Date: Fri Jan 23 12:56:28 2009 +0100
15016
15017 AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
15018
15019 The AVR32A architecture (which AT32UC3A-series is based on) has a
15020 different memory layout than the AVR32B-architecture. This patch moves
15021 addrspace.h to an arch-dependent directory in preparation for
15022 AT32UC3A-support. It also moves some address-space manipulation
15023 functions from io.h to addrspace.h.
15024
15025 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
15026 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
15027 Signed-off-by: Olav Morken <olavmrk@gmail.com>
15028 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
15029
15030 commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
15031 Author: Olav Morken <olavmrk@gmail.com>
15032 Date: Fri Jan 23 12:56:27 2009 +0100
15033
15034 AVR32: Make cacheflush cpu-dependent
15035
15036 The AT32UC3A series of processors doesn't contain any cache, and issuing
15037 cache control instructions on those will cause an exception. This commit
15038 makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
15039
15040 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
15041 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
15042 Signed-off-by: Olav Morken <olavmrk@gmail.com>
15043 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
15044
15045 commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
15046 Author: Heiko Schocher <hs@denx.de>
15047 Date: Tue Feb 10 09:38:52 2009 +0100
15048
15049 netloop: speed up NetLoop
15050
15051 NetLoop polls every cycle with getenv some environment variables.
15052 This is horribly slow, especially when the environment is big.
15053
15054 This patch reads only the environment variables in NetLoop,
15055 when they were changed.
15056
15057 Also moved the init part of the NetLoop function in a seperate
15058 function.
15059
15060 Signed-off-by: Heiko Schocher <hs@denx.de>
15061 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15062
15063 commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
15064 Author: Mike Frysinger <vapier@gentoo.org>
15065 Date: Mon Dec 22 02:56:07 2008 -0500
15066
15067 smc911x_eeprom: new example app for managing newer SMC parts
15068
15069 A forward port of the last version to work with the newer smc911x driver.
15070 I only have a board with a LAN9218 part on it, so that is the only one
15071 I've tested. But there isn't anything in this that would make it terribly
15072 chip specific afaik.
15073
15074 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15075 CC: Sascha Hauer <s.hauer@pengutronix.de>
15076 CC: Guennadi Liakhovetski <lg@denx.de>
15077 CC: Magnus Lilja <lilja.magnus@gmail.com>
15078 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15079
15080 commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
15081 Author: Pieter Henning <phenning@vastech.co.za>
15082 Date: Sun Feb 22 23:17:15 2009 -0800
15083
15084 Added Vitesse VSC8211 definitions to TSEC driver
15085
15086 Added the struct containing PHY settings for the Vitesse VSC8211 phy to
15087 the phy_info list in tsec.c
15088
15089 Signed-off-by: Pieter Henning <phenning@vastech.co.za>
15090 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15091
15092 commit 32688e572ff96715b41420e9a7f280db6c399b65
15093 Author: Wolfgang Denk <wd@denx.de>
15094 Date: Mon Feb 23 00:22:21 2009 +0100
15095
15096 Update CHANGELOG; Prepare 2009.03-rc1
15097
15098 Signed-off-by: Wolfgang Denk <wd@denx.de>
15099
15100 commit 80b827c2b78329c6503b271e43d9eb693d644710
15101 Author: Wolfgang Denk <wd@denx.de>
15102 Date: Sun Feb 22 23:45:40 2009 +0100
15103
15104 ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
15105
15106 The file was generated from building versatile_defconfig.
15107
15108 Signed-off-by: Wolfgang Denk <wd@denx.de>
15109
15110 commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
15111 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15112 Date: Sun Feb 22 14:24:11 2009 +0900
15113
15114 MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
15115
15116 Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
15117 like this:
15118
15119 skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
15120 Configuring for dbau1x00 board...
15121 au1x00_eth.c: In function 'au1x00_send':
15122 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
15123 au1x00_eth.c: In function 'au1x00_recv':
15124 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
15125 au1x00_eth.c: In function 'au1x00_init':
15126 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
15127 au1x00_eth.c: In function 'au1x00_recv':
15128 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
15129 au1x00_eth.c: In function 'au1x00_init':
15130 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
15131 au1x00_eth.c: In function 'au1x00_send':
15132 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
15133
15134 We're passing a volatile pointer to a function which is expecting a non-
15135 volatile pointer. That's potentially dangerous, so gcc warns about it.
15136 Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
15137
15138 To fix this, we add a volatile attribute to the argument in question.
15139 The virt_to_phys function in Linux kernel also does the same thing.
15140
15141 Signed-off-by: Stefan Roese <sr@denx.de>
15142 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15143
15144 commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
15145 Author: Dirk Behme <dirk.behme@googlemail.com>
15146 Date: Fri Feb 20 17:51:28 2009 +0100
15147
15148 OMAP3: Clean up MMC code
15149
15150 Clean up OMAP3 MMC code:
15151
15152 * Convert register access to struct & readx/writex style
15153 * Replace hardcode values by macros
15154 * Remove macro defined twice
15155
15156 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15157
15158 commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
15159 Author: Dirk Behme <dirk.behme@googlemail.com>
15160 Date: Thu Feb 12 18:55:43 2009 +0100
15161
15162 OMAP3: Pandora: Update pin mux
15163
15164 Clock pin must have input enabled for MMC3 to work.
15165 Also enable pull-ups for cmd/data lines to be consistent
15166 with remaining MMC host pin setup.
15167
15168 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
15169
15170 commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
15171 Author: Dirk Behme <dirk.behme@googlemail.com>
15172 Date: Thu Feb 12 18:55:42 2009 +0100
15173
15174 OMAP3: Add OMAP3 auto detection
15175
15176 This patch adds OMAP3 cpu type auto detection based on OMAP3 register
15177 and removes hardcoded values.
15178
15179 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
15180 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15181
15182 commit f956fd0338f4990793a10f767929ba4963665261
15183 Author: Dirk Behme <dirk.behme@googlemail.com>
15184 Date: Thu Feb 12 18:55:41 2009 +0100
15185
15186 OMAP3: Beagle: Add board revision detection
15187
15188 With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
15189 which might need different software handling. For this, GPIO pin 171 (GPIO
15190 module 6, offset 11) can be used to check for board revision. If this pin
15191 is low, we have a rev C board. Else it must be a revision Ax or Bx board.
15192
15193 To handle board differences you can call function beagle_get_revision().
15194 E.g.:
15195
15196 if (beagle_get_revision()) {
15197
15198 /* do special revision C stuff here */
15199
15200 }
15201
15202 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15203
15204 commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
15205 Author: Dirk Behme <dirk.behme@googlemail.com>
15206 Date: Thu Feb 12 18:55:40 2009 +0100
15207
15208 OMAP3: Overo: Clean up pin mux and GPIO configuration
15209
15210 * Make Overo GPIO114 an input for touchscreen PENDOWN
15211 * Make Overo GPIO144-147 readable
15212 * Make Overo EHCI pinmux match beagle rev c setup
15213 * Adjust pinmux for SMSC911X network chip support
15214 * Remove unnecessary GPIO setup
15215 * Fix merge error in Makefile
15216
15217 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
15218 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15219
15220 commit 2579019b8248e5f166e60e37065766efc8a49dbc
15221 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15222 Date: Sun Feb 22 17:08:41 2009 +0100
15223
15224 nmdk8815: fix onenand support
15225
15226 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15227
15228 commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
15229 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15230 Date: Sun Feb 22 17:56:50 2009 +0100
15231
15232 nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
15233
15234 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15235
15236 commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
15237 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15238 Date: Sun Feb 22 17:49:43 2009 +0100
15239
15240 davinci: fix implicit declaration of function 'davinci_errata_workarounds'
15241
15242 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15243
15244 commit 4f5728987f4f9f7845688482aa2b7f2127768165
15245 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15246 Date: Sun Feb 22 15:49:28 2009 +0100
15247
15248 arm: add uart dcc support
15249
15250 Serial driver via the EmbeddedICE macrocell's DCC channel using
15251 co-processor 14.
15252
15253 It does include a timeout to ensure that the system does not
15254 totally freeze when there is nothing connected to read.
15255
15256 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15257
15258 commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
15259 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15260 Date: Fri Nov 21 14:35:56 2008 -0500
15261
15262 ARM DaVinci: Add common peripherals and modules enable functions.
15263
15264 Taken all the duplicated code for enabling common modules and apply
15265 software workarounds from the board specific code into common
15266 functions. Also added comments explaining the workarounds
15267 (from TI errata documents) and replaced some numerical bit numbers
15268 with more meaningful defines.
15269
15270 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15271
15272 commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
15273 Author: Alessandro Rubini <rubini@unipv.it>
15274 Date: Mon Feb 9 15:53:33 2009 +0100
15275
15276 Enable Ethernet for Nomadik 8815 Evaluation Kit
15277
15278 This trivially enables Ethernet support in the debug board
15279 by setting up the proper chip select.
15280
15281 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
15282 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
15283
15284 commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
15285 Author: Alessandro Rubini <rubini@unipv.it>
15286 Date: Mon Feb 9 15:53:31 2009 +0100
15287
15288 Nand driver for Nomadik SoC
15289
15290 This driver implements the ECC algorithm described in
15291 the CPU data sheet and uses the OOB layout chosen in
15292 already-released development systems (shipped with a custom-made
15293 u-boot 1.3.1).
15294
15295 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
15296 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
15297
15298 commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
15299 Author: Alessandro Rubini <rubini@unipv.it>
15300 Date: Mon Feb 9 15:53:31 2009 +0100
15301
15302 Added nomadik.h header
15303
15304 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
15305 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
15306
15307 commit 60ece6d8043d1dd80f5dd32c541213716d624b19
15308 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
15309 Date: Wed Oct 29 20:05:18 2008 +0900
15310
15311 r8a66597-hcd: fix cannot use external hub
15312
15313 Fix the problem that cannot use external hub, because this driver
15314 did not control correctly a DEVADDx register.
15315
15316 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
15317 Signed-off-by: Remy Bohmer <linux@bohmer.net>
15318
15319 commit e1ffaee728190e76a4596a3579d94e730143585f
15320 Author: Mike Frysinger <vapier@gentoo.org>
15321 Date: Thu Feb 19 01:20:27 2009 -0500
15322
15323 Blackfin: disable syscontrol code for now
15324
15325 Looks like the initcode updates fell out of order during my merges. The
15326 patch that really fixes up this code is part of power-on overhaul and so
15327 is too large for merging at this point. Instead, we can disable the code
15328 as no currently in-tree board depends on it. The next merge window will
15329 fix things up properly.
15330
15331 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15332
15333 commit 1b228d68f54832edd867ef98520f760f68192ab7
15334 Author: Mike Frysinger <vapier@gentoo.org>
15335 Date: Thu Feb 19 01:19:49 2009 -0500
15336
15337 Blackfin: bf537-stamp: fix I2C board defines
15338
15339 The previous merge for cleaning up the I2C driver incorrectly reverted the
15340 CFG_xxx rename for some of the I2C defines.
15341
15342 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15343 Signed-off-by: Heiko Schocher <hs@denx.de>
15344
15345 commit 09fee8e8677a6265e89144ccc163bf00e321769e
15346 Author: Wolfgang Denk <wd@denx.de>
15347 Date: Sun Feb 22 01:19:52 2009 +0100
15348
15349 Coding Style cleanup; update CHANGELOG
15350
15351 Signed-off-by: Wolfgang Denk <wd@denx.de>
15352
15353 commit 1dcb50afbb63a439320a985380a0af2dca079d1e
15354 Author: Wolfgang Denk <wd@denx.de>
15355 Date: Sun Feb 22 01:17:47 2009 +0100
15356
15357 Makefile: fix cleanup
15358
15359 Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
15360 to adapt the cleanup rules in the Makefile
15361
15362 Signed-off-by: Wolfgang Denk <wd@denx.de>
15363
15364 commit edff7bcc4d5540df8b416274652ff02e94c38b9e
15365 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15366 Date: Fri Feb 20 13:01:56 2009 -0500
15367
15368 Cleanup the comment for m68k linux boot argument passing.
15369
15370 This patch clarifies the way m68k passes linux boot argument.
15371 The one gotcha here is that the assembly instruction that
15372 the compiler uses to jump to the kernel is 'jsr' which pushes the
15373 program counter for the instruction after the jsr into the stack pointer.
15374
15375 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15376 Signed-off-by: Wolfgang Denk <wd@denx.de>
15377
15378 commit 4d41650eec959668280a612467bd95c7b8398513
15379 Author: Peter Griffin <pgriffin@mpc-data.co.uk>
15380 Date: Tue Feb 10 16:44:45 2009 +0000
15381
15382 sh: Fix rsk7203 in tree build
15383
15384 Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
15385
15386 commit fca0cecff73db99d99ad094cca7980472b8a11b5
15387 Author: Minkyu Kang <mk7.kang@samsung.com>
15388 Date: Wed Feb 18 09:05:52 2009 +0900
15389
15390 bootm: Reduce the unnecessary memmove
15391
15392 Although load address and image start address are same address,
15393 bootm command always does memmove.
15394 That is unnecessary memmove and can be taken few milliseconds
15395 (about 500 msec to 1000 msec).
15396 If skip this memmove, we can reduce the boot time.
15397
15398 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
15399
15400 commit 670cbde8da83690fed1064c3358f54ae1d693ed2
15401 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15402 Date: Sun Feb 15 22:29:15 2009 +0100
15403
15404 fpga: Fix Spartan III FPGA booting
15405
15406 This patch does some minor fixing of the Xilinx Spartan III
15407 FPGA boot code:
15408
15409 - Fixed call order of post configuration callback and
15410 success message printing (result of copy-paste?)
15411 - remove obsolete comment
15412 - minor coding style cleanup
15413
15414 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15415
15416 commit 3818b677641038d27b2663fbd6771ad38c932f86
15417 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15418 Date: Sun Feb 15 22:28:36 2009 +0100
15419
15420 fpga: Fix Spartan II FPGA booting
15421
15422 This patch does some minor fixing of the Xilinx Spartan II
15423 FPGA boot code:
15424
15425 - Fixed call order of post configuration callback and
15426 success message printing (result of copy-paste?)
15427 - relocate post configuration callback only when it
15428 is implemented
15429 - remove obsolete comment
15430 - minor coding style cleanup
15431
15432 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15433
15434 commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
15435 Author: Mike Frysinger <vapier@gentoo.org>
15436 Date: Wed Feb 11 20:26:52 2009 -0500
15437
15438 drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
15439
15440 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15441
15442 commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
15443 Author: Derek Ou <dou@siconix.com>
15444 Date: Tue Feb 3 16:00:07 2009 -0700
15445
15446 lcd_putc bug fix for tab.
15447
15448 Signed-off-by: Derek Ou <dou@siconix.com>
15449
15450 commit 35c9e14d8096e519fe76c953a43d52a09617345c
15451 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
15452 Date: Mon Feb 2 09:46:21 2009 +0900
15453
15454 MIPS: cpu/mips/Makefile: Add a missing START line
15455
15456 In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
15457 Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
15458 line. This patch puts it back.
15459
15460 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
15461
15462 commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
15463 Author: Wolfgang Denk <wd@denx.de>
15464 Date: Sat Feb 21 21:51:21 2009 +0100
15465
15466 Enable ext2 support for TQM8xxL/M based boards
15467
15468 Signed-off-by: Wolfgang Denk <wd@denx.de>
15469
15470 commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
15471 Author: Tom Rix <Tom.Rix@windriver.com>
15472 Date: Fri Feb 20 03:47:50 2009 +0100
15473
15474 ARM:PXA Use new definitions in mmc.h
15475
15476 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15477 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15478
15479 commit 682beeac34dc9ab18fab58b26973d2e29d113717
15480 Author: Andy Fleming <afleming@freescale.com>
15481 Date: Fri Feb 20 03:47:50 2009 +0100
15482
15483 Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
15484
15485 These names are being taken over by the new MMC framework. Hopefuly
15486 the PXA can be easily ported, and these functions will go away entirely.
15487
15488 Signed-off-by: Andy Fleming <afleming@freescale.com>
15489 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15490
15491 commit b03d92e5584935886ff91d5aa0755dc8888b7187
15492 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15493 Date: Fri Feb 20 03:47:50 2009 +0100
15494
15495 pxa: move mmc drivers to drivers/mmc
15496
15497 introduce new macro CONFIG_PXA_MMC to activate it
15498
15499 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15500
15501 commit 9490f465642c80c054854689a2ef1a77d65cf1f3
15502 Author: Tom Rix <Tom.Rix@windriver.com>
15503 Date: Thu Feb 19 19:27:22 2009 -0600
15504
15505 ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
15506
15507 These structures are defined in the common mmc.h
15508
15509 This was compile checked on cerf250.
15510
15511 commit 94a3312920b6f9b5da27309549fb73650718c10a
15512 Author: Micha Kalfon <smichak.uv@gmail.com>
15513 Date: Wed Feb 11 19:50:11 2009 +0200
15514
15515 pxa: fixing get_timer to return time in miliseconds.
15516
15517 Fixing the get_timer function to return time in miliseconds instead of
15518 ticks. Also fixed PXA boards to use the conventional value of 1000 for
15519 CONFIG_SYS_HZ.
15520
15521 Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
15522
15523 commit e5e88c3614b79b54719905f66aefb51f9494bc1f
15524 Author: Tom Rix <Tom.Rix@windriver.com>
15525 Date: Thu Feb 19 16:45:43 2009 -0600
15526
15527 ARM:OMAP3 Change mmc_init to mmc_legacy_init
15528
15529 omap3_mmc.c was changed to define mmc_legacy_init.
15530 Remove unused functions.
15531
15532 Compile tested on all arm
15533 Runtime tested on Zoom1.
15534
15535 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15536
15537 commit 9e80bb21629988063574f88ca0d28baadff4d963
15538 Author: Heiko Schocher <hs@denx.de>
15539 Date: Thu Feb 19 17:23:58 2009 +0100
15540
15541 82xx, mgcoge: updates for 2009.03
15542
15543 - activate CS4 for accessing the FPGA
15544 - activate Rx buf len > 1 on SMC
15545 - pram activated
15546 - MTDPARTS_DEFAULT defined
15547 - update the size of the flashes in the DTS
15548 before booting Linux
15549 - MONITOR_LEN updated to 384k
15550 - added CONFIG_HOSTNAME
15551 - added CONFIG_ENV_BUFFER_PRINT
15552 - Environment size reduced to 16k
15553
15554 Signed-off-by: Heiko Schocher <hs@denx.de>
15555
15556 commit df909554e2401f307925e1bd45d576e4176d9de9
15557 Author: Heiko Schocher <hs@denx.de>
15558 Date: Thu Feb 19 17:24:01 2009 +0100
15559
15560 8xx, mgsuvd: updates for 2009.03
15561
15562 - activate Rx buf len > 1 on SMC
15563 - pram activated
15564 - MTDPARTS_DEFAULT defined
15565 - update the size of the flash in the DTS
15566 before booting Linux
15567 - MONITOR_LEN updated to 384k
15568 - added CONFIG_HOSTNAME
15569 - added CONFIG_ENV_BUFFER_PRINT
15570 - Environment size reduced to 16k
15571
15572 Signed-off-by: Heiko Schocher <hs@denx.de>
15573
15574 commit 3511b4e208e12be85b532866f1c660aa2e021557
15575 Author: Dirk Behme <dirk.behme@googlemail.com>
15576 Date: Wed Feb 18 19:59:39 2009 +0100
15577
15578 MMC: Don't use new framework code if not enabled
15579
15580 Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
15581 isn't enabled.
15582
15583 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15584
15585 commit 32482be67775e00b4cbc49fba62347c1ecc6229c
15586 Author: Wolfgang Denk <wd@denx.de>
15587 Date: Thu Feb 19 13:53:29 2009 +0100
15588
15589 TQM8xxL: make some room in low memory for future needs
15590
15591 THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
15592 small boot sectors in the flash. This patch makes some room in the
15593 first sector to prepare for a size increase of lib_generic/vsprintf.o
15594 by a future patch.
15595
15596 Signed-off-by: Wolfgang Denk <wd@denx.de>
15597
15598 commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
15599 Author: Kim Phillips <kim.phillips@freescale.com>
15600 Date: Wed Feb 18 18:06:18 2009 -0600
15601
15602 README: remove duplicate entry
15603
15604 it's been around since the original commit (2ad6b513) that added two
15605 identical entries.
15606
15607 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15608
15609 commit 1bba30efe1717bea13026e15c7c7d906419fac69
15610 Author: Wolfgang Denk <wd@denx.de>
15611 Date: Thu Feb 19 00:41:08 2009 +0100
15612
15613 Coding style cleanup, update CHANGELOG
15614
15615 Signed-off-by: Wolfgang Denk <wd@denx.de>
15616
15617 commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
15618 Author: Kim Phillips <kim.phillips@freescale.com>
15619 Date: Wed Feb 18 17:43:59 2009 -0600
15620
15621 sata_sil3114: fix compiler warning
15622
15623 judging from other printfs in the same file, it seems ata should be
15624 postpended with the interface number, not the address of the global
15625 port variable. Fixes this for current u-boot-mpc83xx tree:
15626
15627 Configuring for MPC8349ITX board...
15628 sata_sil3114.c: In function 'sata_bus_softreset':
15629 sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
15630 sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
15631
15632 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15633
15634 commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
15635 Author: Ron Madrid <ron_madrid@sbcglobal.net>
15636 Date: Wed Feb 18 14:30:44 2009 -0800
15637
15638 Create configuration option for restricted ns16550 functions
15639
15640 This patch will create a configuration option for a minimum configuration for
15641 the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
15642 configuration option to the SIMPC8313.h config file in order to fix the NAND
15643 bootstrap build error. This option will exclude all functions with exception of
15644 NS16550_putc and NS16550_init. This will be used primarily to save space and
15645 remove unused code from builds in which space is limited.
15646
15647 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
15648
15649 commit 7b0bc0219db8981613259473cf19699ac259b4fb
15650 Author: Kim Phillips <kim.phillips@freescale.com>
15651 Date: Wed Feb 18 16:14:29 2009 -0600
15652
15653 mkconfig: include board config.h before asm/config.h
15654
15655 swapping the include order suppresses warnings for board configs
15656 that define their own CONFIG_MAX_MEM_MAPPED:
15657
15658 In file included from /home/r1aaha/git/u-boot/include/config.h:5,
15659 from /home/r1aaha/git/u-boot/include/common.h:35,
15660 from simpc8313.c:26:
15661 /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
15662 "CONFIG_MAX_MEM_MAPPED" redefined
15663 In file included from /home/r1aaha/git/u-boot/include/config.h:4,
15664 from /home/r1aaha/git/u-boot/include/common.h:35,
15665 from simpc8313.c:26:
15666 /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
15667 the location of the previous definition
15668
15669 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15670
15671 commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
15672 Author: Wolfgang Denk <wd@denx.de>
15673 Date: Wed Feb 18 21:35:38 2009 +0100
15674
15675 Fix build errors after making flash_get_info() non-static
15676
15677 Fix for these build problems:
15678 error: static declaration of 'flash_get_info' follows non-static declaration
15679
15680 Signed-off-by: Wolfgang Denk <wd@denx.de>
15681
15682 commit b4996d6b2140e5da7f1c346f37a67b19907b307a
15683 Author: Stefan Roese <sr@denx.de>
15684 Date: Wed Feb 18 13:18:00 2009 +0100
15685
15686 ppc4xx: PCIe: Change 16GB inbound memory to 4GB
15687
15688 This patch fixes a problem recently seen on some 4xx platforms. For
15689 example on Kilauea PCIe slot #0.
15690
15691 Signed-off-by: Stefan Roese <sr@denx.de>
15692
15693 commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
15694 Author: Stefan Roese <sr@denx.de>
15695 Date: Wed Feb 18 14:05:37 2009 +0100
15696
15697 ppc4xx: Some more PMC405 coding-style cleanup
15698
15699 Signed-off-by: Stefan Roese <sr@denx.de>
15700
15701 commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
15702 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15703 Date: Sun Feb 15 22:27:47 2009 +0100
15704
15705 ppc4xx: Update PMC405 board support
15706
15707 This patch prepares the good old PMC405 board support for
15708 upcoming PMC405V2 patches.
15709
15710 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15711 Signed-off-by: Stefan Roese <sr@denx.de>
15712
15713 commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
15714 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15715 Date: Sun Feb 15 22:26:54 2009 +0100
15716
15717 ppc4xx: Cleanup PMC405 board support
15718
15719 This patch fixes coding style for PMC405 board support.
15720 Also some unneeded features/code is removed.
15721
15722 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15723 Signed-off-by: Stefan Roese <sr@denx.de>
15724
15725 commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
15726 Author: Ilya Yanok <yanok@emcraft.com>
15727 Date: Thu Feb 5 04:08:20 2009 +0100
15728
15729 qong: changes to Dave/DENX Qong configuration
15730
15731 1. Changes to the default environment:
15732 - "bootcmd" defined as "run flash_self"
15733 - "saveenv" command removed from "update"
15734 - "uboot" changed to "u-boot" (also in "load")
15735 - "addmtd" variable defined (and added to all boot commands)
15736 2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
15737 3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
15738 4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
15739 with truncated "bootargs" environment variable.
15740
15741 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
15742
15743 commit 5f0320108870e5d62983d1d5c13a2a087dddf686
15744 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15745 Date: Sun Feb 1 17:07:52 2009 +0100
15746
15747 common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
15748
15749 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15750
15751 commit ec6f14994602276660f7264c6ab3b91ef1f7614d
15752 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15753 Date: Sun Feb 1 17:07:51 2009 +0100
15754
15755 common/console: coding style cleanup
15756
15757 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15758
15759 commit daaf74f176b548dfd34a9990231f4189201d57ba
15760 Author: Mike Frysinger <vapier@gentoo.org>
15761 Date: Thu Jan 29 20:02:23 2009 -0500
15762
15763 mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
15764
15765 Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
15766 into the Makefile so we avoid pointless compiling of the file.
15767
15768 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15769
15770 commit 7bd2722e890bc877a3c057d7ccddc80451c99939
15771 Author: Mike Frysinger <vapier@gentoo.org>
15772 Date: Thu Jan 29 20:02:07 2009 -0500
15773
15774 disk: convert part_* files to COBJ-$(CONFIG_XXX) style
15775
15776 Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
15777 avoid pointless compiles.
15778
15779 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15780
15781 commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
15782 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
15783 Date: Thu Jan 29 10:35:40 2009 +0200
15784
15785 include/image.h: Ease grepping of image_* functions
15786
15787 Because the functions have been defined using macros, grepping for
15788 their definitions is not possible. This patch adds the real function
15789 names in comments.
15790
15791 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
15792 Acked-by: Mike Frysinger <vapier@gentoo.org>
15793
15794 commit bdab39d358e63aa47f400a8a76b8d5f283842df3
15795 Author: Mike Frysinger <vapier@gentoo.org>
15796 Date: Wed Jan 28 19:08:14 2009 -0500
15797
15798 rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
15799
15800 The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
15801 rather than a generic "env" command, or anything else related to the
15802 environment. So, let's make sure the define is named accordingly.
15803
15804 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15805
15806 commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
15807 Author: Valeriy Glushkov <gvv@lstec.com>
15808 Date: Fri Jan 23 20:02:17 2009 +0200
15809
15810 disable imls command if no flash is defined
15811
15812 Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
15813
15814 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
15815
15816 commit 923aa48126259c13de95131203f1d28bfa5cb889
15817 Author: Rafal Jaworowski <raj@semihalf.com>
15818 Date: Fri Jan 23 13:27:18 2009 +0100
15819
15820 API: Improve glue mid-layer of the API demo application.
15821
15822 - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
15823 read, which allows for better control and error handling (this introduces
15824 additional error code API_ESYSC returned by the glue mid-layer).
15825
15826 - Clean up definitions naming and usage.
15827
15828 - Other minor cosmetics.
15829
15830 Note these changes do not touch the API proper, so the interface between
15831 U-Boot and standalone applications remains unchanged.
15832
15833 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
15834
15835 commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
15836 Author: Rafal Jaworowski <raj@semihalf.com>
15837 Date: Fri Jan 23 13:27:17 2009 +0100
15838
15839 API: Only output test data when reading was successful.
15840
15841 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
15842
15843 commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
15844 Author: Rafal Jaworowski <raj@semihalf.com>
15845 Date: Fri Jan 23 13:27:16 2009 +0100
15846
15847 API: Provide syscall entry point for the ARM architecture.
15848
15849 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
15850 Acked-by: Rafal Jaworowski <raj@semihalf.com>
15851
15852 commit b84d7d8f1e1066f810866304a16a3583f88e7c98
15853 Author: Rafal Jaworowski <raj@semihalf.com>
15854 Date: Fri Jan 23 13:27:15 2009 +0100
15855
15856 API: Use stack pointer as API signature search hint in the glue layer.
15857
15858 De-hardcode range in RAM we search for the API signature. Instead use the stack
15859 pointer as a hint to narrow down the range in which the signature could reside
15860 (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
15861 from stack area). Adjust PowerPC code in API demo to the new scheme.
15862
15863 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
15864 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
15865
15866 commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
15867 Author: Wolfgang Denk <wd@denx.de>
15868 Date: Tue Feb 17 10:26:38 2009 +0100
15869
15870 TQM8260: fix locations of kernel and ramdisk images in flash
15871
15872 After introducing redundant environment the kernel images was
15873 overlapping with environment.
15874
15875 Signed-off-by: Wolfgang Denk <wd@denx.de>
15876
15877 commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
15878 Author: Heiko Schocher <hs@denx.de>
15879 Date: Wed Feb 11 19:26:15 2009 +0100
15880
15881 83xx: add missing TIMING_CFG1_CASLAT_* defines
15882
15883 Signed-off-by: Heiko Schocher <hs@denx.de>
15884 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15885
15886 commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
15887 Author: Valeriy Glushkov <gvv@lstec.com>
15888 Date: Thu Feb 5 14:35:21 2009 +0200
15889
15890 mpc8349itx: allow SATA boot from the onboard SIL1334
15891
15892 This patch allows using of SATA devices connected
15893 to the onboard PCI SIL1334 SATA controller.
15894
15895 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
15896 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15897
15898 commit e1ac387f4645499746856adc1aeaa9787da2eca6
15899 Author: Andy Fleming <afleming@freescale.com>
15900 Date: Thu Oct 30 16:50:14 2008 -0500
15901
15902 83xx: Add eSDHC support on 8379 EMDS board
15903
15904 Signed-off-by: Andy Fleming <afleming@freescale.com>
15905
15906 commit 80522dc8369a89938369fbcee572e662373bc9a3
15907 Author: Andy Fleming <afleming@freescale.com>
15908 Date: Thu Oct 30 16:51:33 2008 -0500
15909
15910 85xx: Add eSDHC support for 8536 DS
15911
15912 Signed-off-by: Andy Fleming <afleming@freescale.com>
15913
15914 commit 50586ef24ed5caf6ce5591df76f355009da2cd79
15915 Author: Andy Fleming <afleming@freescale.com>
15916 Date: Thu Oct 30 16:47:16 2008 -0500
15917
15918 Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
15919
15920 This uses the new MMC framework
15921
15922 Some contributions by Dave Liu <daveliu@freescale.com>
15923
15924 Signed-off-by: Andy Fleming <afleming@freescale.com>
15925
15926 commit 272cc70b211e945e4413122aa73868f6ada732a5
15927 Author: Andy Fleming <afleming@freescale.com>
15928 Date: Thu Oct 30 16:41:01 2008 -0500
15929
15930 Add MMC Framework
15931
15932 Here's a new framework (based roughly off the linux one) for managing
15933 MMC controllers. It handles all of the standard SD/MMC transactions,
15934 leaving the host drivers to implement only what is necessary to
15935 deal with their specific hardware.
15936
15937 This also hooks the infrastructure into the PowerPC board code
15938 (similar to how the ethernet infrastructure now hooks in)
15939
15940 Some of this code was contributed by Dave Liu <daveliu@freescale.com>
15941
15942 Signed-off-by: Andy Fleming <afleming@freescale.com>
15943
15944 commit 1de97f9856f697380cc504126ab92561ed238803
15945 Author: Andy Fleming <afleming@freescale.com>
15946 Date: Thu Oct 30 16:31:39 2008 -0500
15947
15948 Eliminated arch-specific mmc header requirement
15949
15950 The current MMC infrastructure relies on the existence of an
15951 arch-specific header file. This isn't necessary, and a couple
15952 drivers were forced to implement dummy files to meet this requirement.
15953 Instead, we move the stuff in those header files into a more appropriate
15954 place, and eliminate the stubs and the #include of asm/arch/mmc.h
15955
15956 Signed-off-by: Andy Fleming <afleming@freescale.com>
15957
15958 commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
15959 Author: Andy Fleming <afleming@freescale.com>
15960 Date: Thu Oct 30 16:21:00 2008 -0500
15961
15962 Convert mmc_init to mmc_legacy_init
15963
15964 This is to get it out of the way of incoming MMC framework
15965
15966 Signed-off-by: Andy Fleming <afleming@freescale.com>
15967
15968 commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
15969 Author: Andy Fleming <afleming@freescale.com>
15970 Date: Thu Oct 30 16:19:25 2008 -0500
15971
15972 Eliminate support for using MMC as memory
15973
15974 MMC cards are not memory, so we stop treating them that way.
15975
15976 Signed-off-by: Andy Fleming <afleming@freescale.com>
15977
15978 commit e1be0d25ecf494ae81245ca438738ba839d6329b
15979 Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
15980 Date: Sun Jan 4 08:46:38 2009 +0530
15981
15982 32bit BUg fix for DDR2 on 8572
15983
15984 This errata fix is required for 32 bit DDR2 controller on 8572.
15985 May also be required for P10XX20XX platforms
15986
15987 Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
15988
15989 commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
15990 Author: Andy Fleming <afleming@freescale.com>
15991 Date: Mon Feb 16 09:40:20 2009 -0600
15992
15993 TQM85xx: Fix a couple warnings in TQM8548 build
15994
15995 The ecm variable in sdram.c was being declared for all 8548, but only
15996 used by specific 8548 boards, so we make that variable require those
15997 specific boards, too
15998
15999 The nand code was using an index "i" into a table, and then re-using "i"
16000 to set addresses for each upm. However, then it relied on the old value
16001 of i still being there to enable things. Changed the second "i" to "j"
16002
16003 Signed-off-by: Andy Fleming <afleming@freescale.com>
16004
16005 commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
16006 Author: Wolfgang Grandegger <wg@grandegger.com>
16007 Date: Wed Feb 11 18:38:26 2009 +0100
16008
16009 MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
16010
16011 This patch adds the workaround for erratum DDR20 according to MPC8548
16012 Device Errata document, Rev. 1: "CKE signal may not function correctly
16013 after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
16014 processor version 2.1 and the work-around must be removed.
16015
16016 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16017
16018 commit 080408fdc71706adcb883d22125637c54f6010b1
16019 Author: Wolfgang Grandegger <wg@grandegger.com>
16020 Date: Wed Feb 11 18:38:25 2009 +0100
16021
16022 MPC85xx: TQM8548: use cache for AG and BE variants
16023
16024 This patch makes accesses to the system memory cachable by removing the
16025 caching-inhibited and guarded flags from the relevant TLB entries for
16026 the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
16027 are configured similarly.
16028
16029 This results in a big averall performace improvement. TFTP downloads,
16030 NAND Flash accesses, kernel boots, etc. are much faster.
16031
16032 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16033
16034 commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
16035 Author: Wolfgang Grandegger <wg@grandegger.com>
16036 Date: Wed Feb 11 18:38:24 2009 +0100
16037
16038 MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
16039
16040 This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
16041 module.
16042
16043 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
16044 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16045
16046 commit 88b0e88d186479349e5a2b771e82775109e10fb4
16047 Author: Wolfgang Grandegger <wg@grandegger.com>
16048 Date: Wed Feb 11 18:38:23 2009 +0100
16049
16050 MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
16051
16052 According to new TQM8548 timing specification:
16053 Refresh Recovery: 34 -> 53 clocks
16054 CKE pulse width: 1 -> 3 cycles
16055 Window for four activities: 13 -> 14 cycles
16056
16057 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
16058 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16059
16060 commit a865bcdac89278cac4dfc07dec8299403110499d
16061 Author: Wolfgang Grandegger <wg@grandegger.com>
16062 Date: Wed Feb 11 18:38:22 2009 +0100
16063
16064 MPC85xx: TQM8548: add support for the TQM8548_AG module
16065
16066 The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
16067 CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
16068 with "$ make TQM8548_AG_config".
16069
16070 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16071
16072 commit ad7ee5d43b0db94079d56521dabca25674f28747
16073 Author: Wolfgang Grandegger <wg@grandegger.com>
16074 Date: Wed Feb 11 18:38:21 2009 +0100
16075
16076 MPC85xx: TQM8548: add support for the TQM8548_BE module
16077
16078 The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
16079 interface. With NAND support, the image is significantly larger and
16080 TEXT_BASE is adjusted accordingly. U-Boot can be built for this
16081 module with "$ make TQM8548_BE_config".
16082
16083 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16084
16085 commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
16086 Author: Wolfgang Grandegger <wg@grandegger.com>
16087 Date: Wed Feb 11 18:38:20 2009 +0100
16088
16089 MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
16090
16091 The TQM8548_AG module does not have the standard PCI/PCI-X interface
16092 connected but just the PCI Express interface . So far it was not
16093 possible to disable it without disabling the complete PCI interface
16094 (CONFIG_PCI) including PCI Express.
16095
16096 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16097
16098 commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
16099 Author: Wolfgang Grandegger <wg@grandegger.com>
16100 Date: Wed Feb 11 18:38:19 2009 +0100
16101
16102 MPC85xx: TQM85xx: fix flash protection for boot loader
16103
16104 As the reset vector is located at 0xfffffffc, all flash sectors from the
16105 beginning of the U-Boot binary to 0xffffffff must be protected. On the
16106 TQM8548-AG having small sectors at the end of the flash it happened that
16107 the last two sector were not protected and an "erase all" left an
16108 un-bootable system behind:
16109
16110 Bank # 2: CFI conformant FLASH (32 x 16) Size: 32 MB in 270 Sectors
16111 AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
16112 Erase timeout: 8192 ms, write timeout: 1 ms
16113
16114 FFFA0000 E RO FFFC0000 RO FFFE0000 RO FFFE4000 RO FFFE8000 RO
16115 FFFEC000 RO FFFF0000 RO FFFF4000 RO FFFF8000 E FFFFC000
16116
16117 The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
16118 board BSPs as well.
16119
16120 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16121
16122 commit a1c8a719262151f97119e76166043ee3da3f97b2
16123 Author: Peter Tyser <ptyser@xes-inc.com>
16124 Date: Fri Feb 6 14:30:40 2009 -0600
16125
16126 86xx: Update CPU info output on bootup
16127
16128 - Update style of 86xx CPU information on boot to more closely
16129 match 85xx boards
16130 - Fix detection of 8641/8641D
16131 - Use strmhz() to display frequencies
16132 - Display L1 information
16133 - Display L2 cache size
16134 - Fixed CPU/SVR version output
16135
16136 == Before ==
16137 Freescale PowerPC
16138 CPU:
16139 Core: E600 Core 0, Version: 0.2, (0x80040202)
16140 System: Unknown, Version: 2.1, (0x80900121)
16141 Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
16142 L2: Enabled
16143 Board: X-ES XPedite5170 3U VPX SBC
16144
16145 == After ==
16146 CPU: 8641D, Version: 2.1, (0x80900121)
16147 Core: E600 Core 0, Version: 2.2, (0x80040202)
16148 Clock Configuration:
16149 CPU:1066.667 MHz, MPX:533.333 MHz
16150 DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
16151 L1: D-cache 32 KB enabled
16152 I-cache 32 KB enabled
16153 L2: 512 KB enabled
16154 Board: X-ES XPedite5170 3U VPX SBC
16155
16156 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16157
16158 commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
16159 Author: Peter Tyser <ptyser@xes-inc.com>
16160 Date: Thu Feb 5 11:25:24 2009 -0600
16161
16162 86xx: Update Global Utilities structure
16163
16164 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16165
16166 commit 4ef630df773e45806d701bf5d25c328778bb4cde
16167 Author: Peter Tyser <ptyser@xes-inc.com>
16168 Date: Thu Feb 5 11:25:25 2009 -0600
16169
16170 86xx: Reset update
16171
16172 Update the 86xx reset sequence to try executing a board-specific reset
16173 function. If the board-specific reset is not implemented or does not
16174 succeed, then assert #HRESET_REQ. Using #HRESET_REQ is a more standard
16175 reset procedure than the previous method and allows all board
16176 peripherals to be reset if needed.
16177
16178 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16179
16180 commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
16181 Author: Kumar Gala <galak@kernel.crashing.org>
16182 Date: Tue Feb 10 23:53:40 2009 -0600
16183
16184 fsl-ddr: Allow system to boot if we have more than 4G of memory
16185
16186 Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
16187 an error and hang. Instead of doing that since DDR is mapped in the
16188 lowest priority LAWs we setup the DDR controller and the max amount
16189 of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
16190
16191 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16192 Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
16193
16194 commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
16195 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
16196 Date: Wed Jan 21 17:17:33 2009 -0600
16197
16198 mpc85xx: Add support for the P2020
16199
16200 Added various p2020 processor specific details:
16201 * SVR for p2020, p2020E
16202 * immap updates for LAWs and DDR on p2020
16203 * LAW defines related to p2020
16204
16205 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
16206 Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
16207 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16208
16209 commit cb69e4de8702e108324e1c40363f30ef6f2e2918
16210 Author: Kumar Gala <galak@kernel.crashing.org>
16211 Date: Tue Feb 10 17:36:15 2009 -0600
16212
16213 85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
16214
16215 Added some info that is printed out when we boot to distiquish if we
16216 built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
16217 different address maps.
16218
16219 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16220
16221 commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
16222 Author: Andy Fleming <afleming@freescale.com>
16223 Date: Fri Dec 5 20:10:22 2008 -0600
16224
16225 Fixup SGMII PHY ids in the device tree
16226
16227 The device tree's PHY addresses need to be fixed up if we're using the
16228 SGMII Riser Card.
16229
16230 The 8572, 8536, and 8544 DS boards were modified to call this function.
16231
16232 Code idea taken from Liu Yu <yu.liu@freescale.com>
16233
16234 Signed-off-by: Andy Fleming <afleming@freescale.com>
16235
16236 commit 5dc0cf68f8f101042997d75188081d8526d705ea
16237 Author: Andy Fleming <afleming@freescale.com>
16238 Date: Wed Feb 11 15:10:31 2009 -0600
16239
16240 Make some minor whitespace changes to eliminate line-wrapping
16241
16242 Signed-off-by: Andy Fleming <afleming@freescale.com>
16243
16244 commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
16245 Author: Andy Fleming <afleming@freescale.com>
16246 Date: Wed Feb 11 15:07:24 2009 -0600
16247
16248 Add eth_get_dev_by_index
16249
16250 This allows code to iterate through the ethernet devices
16251
16252 Signed-off-by: Andy Fleming <afleming@freescale.com>
16253
16254 commit b67305120aaf268a6140125346678166d14f1f47
16255 Author: Kumar Gala <galak@kernel.crashing.org>
16256 Date: Mon Feb 9 22:03:04 2009 -0600
16257
16258 85xx: Fix bug in device tree setup in 36-bit physical confg
16259
16260 In the 36-bit physical config for MPC8572DS when need the start address
16261 of memory and it size to be kept in phys_*_t instead of a ulong since
16262 we support >4G of memory in the config and ulong cant represent that.
16263 Otherwise we end up seeing the memory node in the device tree reporting
16264 back we have memory starting @ 0 and of size 0.
16265
16266 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16267
16268 commit ad97dce18445ff05bf326094e691a01aa95aa8dc
16269 Author: Kumar Gala <galak@kernel.crashing.org>
16270 Date: Mon Feb 9 22:03:05 2009 -0600
16271
16272 85xx: Fix address map for 36-bit config of MPC8572DS
16273
16274 When we introduced the 36-bit config of the MPC8572DS board we had the
16275 wrong PCI MEM bus address map. Additionally, the change to the address
16276 map exposes a small issue in our dummy read on the ULI bus. We need
16277 to use the new mapping functions to handle that read properly in the
16278 36-bit config.
16279
16280 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16281
16282 commit f8523cb0815b2d3d2d780b7d49ca614105555f58
16283 Author: Kumar Gala <galak@kernel.crashing.org>
16284 Date: Fri Feb 6 09:56:35 2009 -0600
16285
16286 85xx: Fix how we map DDR memory
16287
16288 Previously we only allowed power-of-two memory sizes and didnt
16289 handle >2G of memory. Now we will map up to CONFIG_MAX_MEM_MAPPED
16290 and should properly handle any size that we can make in the TLBs
16291 we have available to us
16292
16293 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16294
16295 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
16296 Author: Kumar Gala <galak@kernel.crashing.org>
16297 Date: Fri Feb 6 09:56:34 2009 -0600
16298
16299 fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
16300
16301 If we only have one controller we can completely ignore how
16302 memctl_intlv_ctl is set. Otherwise other levels of code get confused
16303 and think we have twice as much memory.
16304
16305 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16306
16307 commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
16308 Author: Kumar Gala <galak@kernel.crashing.org>
16309 Date: Wed Feb 4 09:35:57 2009 -0600
16310
16311 85xx: Format cpu freq printing to handle 8 cores
16312
16313 Only print 4 cpu freq per line. This way when we have 8 cores its a
16314 bit more readable.
16315
16316 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16317
16318 commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
16319 Author: Abraham, Thomas <t-abraham@ti.com>
16320 Date: Tue Oct 28 16:51:31 2008 +0530
16321
16322 USB: Remove LUN number from CDB
16323
16324 The LUN number is not part of the Command Descriptor Block (CDB) for scsi inquiry, request sense, test unit ready, read capacity and read10 commands. This patch removes the LUN number information from the CDB.
16325
16326 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
16327 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16328
16329 commit f3c0de636252f3a18654c8f9c6370a9574a7e755
16330 Author: Atin Malaviya <atin.malaviya@gmail.com>
16331 Date: Tue Feb 3 15:17:10 2009 -0500
16332
16333 Added usbtty_configured() check. Fixed attribute(packed) warnings.
16334
16335 V3: Fixed line-wrap problem due to user error in mail!
16336
16337 Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
16338 when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
16339 Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
16340
16341 Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
16342 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16343
16344 commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
16345 Author: Guennadi Liakhovetski <lg@denx.de>
16346 Date: Fri Feb 13 09:23:36 2009 +0100
16347
16348 i.MX31: Start the I2C clock on driver initialisation
16349
16350 i.MX31 powers on with most clocks running, so, after a power on this explicit
16351 clock start up is not required. However, as Linux boots it disables most clocks
16352 to save power. This includes the I2C clock. If we then soft reboot from Linux
16353 the I2C clock stays off. This breaks the phycore, which has its environment in
16354 I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
16355 initialisation routine.
16356
16357 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16358 Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16359
16360 commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
16361 Author: Mike Frysinger <vapier@gentoo.org>
16362 Date: Wed Feb 11 20:36:14 2009 -0500
16363
16364 i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
16365
16366 The Blackfin i2c driver has been rewritten thus the special ifdefs in the
16367 common code are no longer needed.
16368
16369 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16370
16371 commit c2d9befa0b4695b89476fb5d259742c09afe243f
16372 Author: Heiko Schocher <hs@denx.de>
16373 Date: Thu Feb 12 08:08:54 2009 +0100
16374
16375 82xx, mgcoge: fix compile error
16376
16377 With actual u-boot compiling the mgcoge port fails, because
16378 since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
16379 necessary to define CONFIG_NET_MULTI.
16380
16381 Seems to me the mgcoge port is the only actual existing 8260
16382 port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
16383 to be fixed.
16384
16385 Signed-off-by: Heiko Schocher <hs@denx.de>
16386
16387 commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
16388 Author: Dirk Eibach <eibach@gdsys.de>
16389 Date: Mon Feb 9 08:18:34 2009 +0100
16390
16391 ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
16392
16393 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
16394 Signed-off-by: Stefan Roese <sr@denx.de>
16395
16396 commit 7369f0e384e2a831be13a7773a58242c9173fa9c
16397 Author: Carolyn Smith <carolyn.smith@tektronix.com>
16398 Date: Thu Feb 12 06:13:44 2009 +0100
16399
16400 ppc4xx: Fix initialization of the SDRAM_CODT register
16401
16402 This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
16403 initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
16404 and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
16405
16406 Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
16407 Signed-off-by: Stefan Roese <sr@denx.de>
16408
16409 commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
16410 Author: Stefan Roese <sr@denx.de>
16411 Date: Wed Feb 11 09:29:33 2009 +0100
16412
16413 ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
16414
16415 Some AMCC eval boards do have a board_eth_init() function calling
16416 pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
16417 with the new eth_init rework.
16418
16419 Signed-off-by: Stefan Roese <sr@denx.de>
16420
16421 commit c645012aefebb301e6907d148c6c8efacac049d4
16422 Author: Adam Graham <agraham@amcc.com>
16423 Date: Mon Feb 9 13:18:12 2009 -0800
16424
16425 ppc4xx: Autocalibration can set RDCC to over aggressive value.
16426
16427 The criteria of the AMCC SDRAM Controller DDR autocalibration
16428 U-Boot code is to pick the largest passing write/read/compare
16429 window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
16430 Cycle Select value.
16431
16432 On some Kilauea boards the DDR autocalibration algorithm can
16433 find a large passing write/read/compare window with a small
16434 SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
16435 value "T1 Sample".
16436
16437 This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
16438 "T1 Sample" proves to be to aggressive when later on U-Boot
16439 relocates into DDR memory and executes.
16440
16441 The memory traces on the Kilauea board are short so on some
16442 Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
16443 value of "T1 Sample" shows up as a potentially valid value for
16444 the DDR autocalibratiion algorithm.
16445
16446 The fix is to define a weak default function which provides
16447 the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
16448 to accept for DDR autocalibration. The default will be the
16449 "T2 Sample" value. A board developer who has a well defined
16450 board and chooses to be more aggressive can always provide
16451 their own board specific string function with the more
16452 aggressive "T1 Sample" value or stick with the default
16453 minimum SDRAM_RDCC.[RDSS] value of "T2".
16454
16455 Also put in a autocalibration loop fix for case where current
16456 write/read/compare passing window size is the same as a prior
16457 window size, then in this case choose the write/read/compare
16458 result that has the associated smallest RDCC T-Sample value.
16459
16460 Signed-off-by: Adam Graham <agraham@amcc.com>
16461 Signed-off-by: Stefan Roese <sr@denx.de>
16462
16463 commit 2ede879fcb67470524847bb4fc8972651bb46184
16464 Author: Stefan Roese <sr@denx.de>
16465 Date: Wed Feb 11 09:37:12 2009 +0100
16466
16467 ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
16468
16469 CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
16470 included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
16471
16472 It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
16473 boards right now.
16474
16475 Signed-off-by: Stefan Roese <sr@denx.de>
16476
16477 commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
16478 Author: Wolfgang Denk <wd@denx.de>
16479 Date: Thu Feb 12 00:08:39 2009 +0100
16480
16481 Coding style cleanup; update CHANGELOG
16482
16483 Signed-off-by: Wolfgang Denk <wd@denx.de>
16484
16485 commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
16486 Author: Peter Tyser <ptyser@xes-inc.com>
16487 Date: Fri Jan 30 16:36:40 2009 -0600
16488
16489 Add feature-removal-schedule.txt
16490
16491 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16492
16493 commit 255d28e1642e8fc32a6753226be1a96b481ce111
16494 Author: Heiko Schocher <hs@denx.de>
16495 Date: Tue Feb 10 09:32:38 2009 +0100
16496
16497 8xx serial, smc: Coding-Style cleanup serial SMC driver
16498
16499 Signed-off-by: Heiko Schocher <hs@denx.de>
16500
16501 commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
16502 Author: Heiko Schocher <hs@denx.de>
16503 Date: Tue Feb 10 09:31:47 2009 +0100
16504
16505 8xx serial, smc: add configurable SMC Rx buffer len
16506
16507 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
16508 With this option it is possible to allow the receive
16509 buffer for the SMC on 8xx to be greater then 1. In case
16510 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
16511 old version.
16512
16513 When defining CONFIG_SYS_SMC_RXBUFLEN also
16514 CONFIG_SYS_MAXIDLE must be defined to setup the maximum
16515 idle timeout for the SMC.
16516
16517 Signed-off-by: Heiko Schocher <hs@denx.de>
16518
16519 commit e915f8bb73d74178bc21d3a457959883b1afd1c0
16520 Author: Mike Frysinger <vapier@gentoo.org>
16521 Date: Thu Feb 5 21:04:36 2009 -0500
16522
16523 common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
16524
16525 Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
16526 the COBJS-$(CONFIG_xxx) in the Makefile. Also delete unused var in kgdb
16527 code in the process.
16528
16529 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16530
16531 commit ab76e9848a1f4db64d14233741d739a3b3360c93
16532 Author: Mike Frysinger <vapier@gentoo.org>
16533 Date: Thu Feb 5 21:04:50 2009 -0500
16534
16535 bzip2: move ifdef handling to Makefile COBJS-$(...)
16536
16537 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16538
16539 commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
16540 Author: Jerry Van Baren <gvb.uboot@gmail.com>
16541 Date: Thu Feb 5 22:18:02 2009 -0500
16542
16543 Fix whitespace damage: double space changed to a tab
16544
16545 At some point an intentional double space at the end of the sentence
16546 got changed into a tab in the GPL header line:
16547 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16548
16549 This patch fixes the damage.
16550
16551 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
16552
16553 commit 4f975678de995b55749d5e84590c268972a7c835
16554 Author: Heiko Schocher <hs@denx.de>
16555 Date: Tue Feb 10 09:53:29 2009 +0100
16556
16557 cfi: make flash_get_info() non static
16558
16559 If on your board is more than one flash, you must know
16560 the size of every single flash, for example, for updating
16561 the DTS before booting Linux. So make this function
16562 flash_get_info() extern, and you can have all info
16563 about your flashes.
16564
16565 Signed-off-by: Heiko Schocher <hs@denx.de>
16566 Signed-off-by: Stefan Roese <sr@denx.de>
16567
16568 commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
16569 Author: Ben Warren <biggerbadderben@gmail.com>
16570 Date: Thu Feb 5 23:58:25 2009 -0800
16571
16572 net: removed board-specific CONFIGs from MPC5xxx FEC driver
16573
16574 Added new CONFIG options for the three type of MAC-PHY interconnect and
16575 applied them all relevant board config files
16576
16577 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16578
16579 commit 638ed3e296e70fab286d157b7adedaaa4a09a474
16580 Author: Mike Frysinger <vapier@gentoo.org>
16581 Date: Thu Feb 5 21:04:47 2009 -0500
16582
16583 net/sntp.c: move ifdef into Makefile COBJS-$(...)
16584
16585 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16586 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16587
16588 commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
16589 Author: Andy Fleming <afleming@freescale.com>
16590 Date: Tue Feb 3 18:26:41 2009 -0600
16591
16592 tsec: Fix a bug in soft-resetting
16593
16594 SOFT_RESET must be asserted for at least 3 TX clocks. Usually, that's about 30
16595 clock cycles, so it's been mostly working. But we had no guarantee, and at
16596 slower bitrates, it's just over a microsecond (over 1000 clock cycles). This
16597 enforces a 2 microsecond gap between assertion and deassertion.
16598
16599 Signed-off-by: Andy Fleming <afleming@freescale.com>
16600 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16601
16602 commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
16603 Author: Simon Munton <simon@nidoran.m5data.com>
16604 Date: Mon Feb 2 09:44:08 2009 +0000
16605
16606 Fix 100Mbs ethernet operation on sh7763 based boards
16607
16608 100Mbs ethernet does not work on sh7763 chips due to the wrong value being
16609 used in the GECMR register. Following diff fixes the problem
16610
16611 Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
16612 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16613
16614 commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
16615 Author: ksi@koi8.net <ksi@koi8.net>
16616 Date: Fri Feb 6 16:27:55 2009 -0800
16617
16618 Fix MPC8260 with ethernet on SCC
16619
16620 This fixes MPC8260 compilation with ethernet on SCC. Probably was a
16621 typo or something...
16622
16623 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
16624 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16625
16626 commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
16627 Author: Heiko Schocher <hs@denx.de>
16628 Date: Fri Jan 30 12:56:15 2009 +0100
16629
16630 82xx serial, smc: Coding-Style cleanup serial SMC driver
16631
16632 Signed-off-by: Heiko Schocher <hs@denx.de>
16633
16634 commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
16635 Author: Heiko Schocher <hs@denx.de>
16636 Date: Fri Jan 30 12:55:38 2009 +0100
16637
16638 82xx serial, smc: add configurable SMC Rx buffer len
16639
16640 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
16641 With this option it is possible to allow the receive
16642 buffer for the SMC on 82xx to be greater then 1. In case
16643 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
16644 old version.
16645
16646 When defining CONFIG_SYS_SMC_RXBUFLEN also
16647 CONFIG_SYS_MAXIDLE must be defined to setup the maximum
16648 idle timeout for the SMC.
16649
16650 Signed-off-by: Heiko Schocher <hs@denx.de>
16651
16652 commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
16653 Author: Kumar Gala <galak@kernel.crashing.org>
16654 Date: Fri Feb 6 08:08:06 2009 -0600
16655
16656 ppc: Fix roll over bug in flush_cache()
16657
16658 If we call flush_cache(0xfffff000, 0x1000) it would never
16659 terminate the loop since end = 0xffffffff and we'd roll over
16660 our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
16661
16662 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16663
16664 commit 87c9063963561d3d01064be34d0c30855a56587b
16665 Author: Kumar Gala <galak@kernel.crashing.org>
16666 Date: Thu Feb 5 20:40:58 2009 -0600
16667
16668 ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
16669
16670 Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
16671 between the two current users (lib_ppc/board.c, 44x SPD DDR2).
16672
16673 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16674 Acked-by: Stefan Roese <sr@denx.de>
16675
16676 commit 47d41cc3a11a03c6d56146d056145df73f47eb50
16677 Author: Kumar Gala <galak@kernel.crashing.org>
16678 Date: Thu Feb 5 20:40:57 2009 -0600
16679
16680 Add an architecture specific config.h for common defines
16681
16682 We have common defines that we duplicate in various ways. Having an
16683 arch specific config.h gives us a common location for those defines.
16684
16685 Eventually we should be able to replace this when we have proper
16686 Kconfig support.
16687
16688 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16689
16690 commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
16691 Author: Becky Bruce <beckyb@kernel.crashing.org>
16692 Date: Tue Feb 3 18:10:56 2009 -0600
16693
16694 mpc8641hpcn: Change PCI MEM pci bus address
16695
16696 Now that the rest of u-boot can support it, change the PCI bus
16697 address of the PCI MEM regions from 0x80000000 to 0xc0000000,
16698 and use the same bus address for both PCI1 and PCI2. This will
16699 maximize the amount of PCI address space left over to map RAM
16700 on systems with large amounts of memory.
16701
16702 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
16703
16704 commit 1785dbeed43599eed1d8875673c96912cd770141
16705 Author: Becky Bruce <beckyb@kernel.crashing.org>
16706 Date: Tue Feb 3 18:10:55 2009 -0600
16707
16708 drivers/block/ahci: Fix pci mapping bug
16709
16710 The code assumes that the pci bus address and the virtual
16711 address used to access a region are the same, but they might
16712 not be. Fix this assumption.
16713
16714 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
16715
16716 commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
16717 Author: Becky Bruce <beckyb@kernel.crashing.org>
16718 Date: Tue Feb 3 18:10:54 2009 -0600
16719
16720 MPC8641HPCN: Enable CONFIG_ADDR_MAP
16721
16722 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
16723
16724 commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
16725 Author: Becky Bruce <beckyb@kernel.crashing.org>
16726 Date: Tue Feb 3 18:10:53 2009 -0600
16727
16728 mpc8641hpcn: Clean up PCI mapping concepts
16729
16730 Clean up PCI mapping concepts in the 8641 config - rename _BASE
16731 to _BUS, as it's actually a PCI bus address, separate virtual
16732 and physical addresses into _VIRT and _PHYS, and use each
16733 appopriately.
16734
16735 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
16736
16737 commit c9315e6b4f244981de0b2eaaa29a7838a165b494
16738 Author: Becky Bruce <beckyb@kernel.crashing.org>
16739 Date: Tue Feb 3 18:10:52 2009 -0600
16740
16741 mpc86xx: Add support to populate addr map based on BATs
16742
16743 If CONFIG_ADDR_MAP is enabled, update the address map
16744 whenever we write a bat.
16745
16746 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
16747
16748 commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
16749 Author: Becky Bruce <beckyb@kernel.crashing.org>
16750 Date: Tue Feb 3 18:10:51 2009 -0600
16751
16752 powerpc: Move duplicated BAT defines to mmu.h
16753
16754 The BAT fields are architected; there's no need for these to be in
16755 cpu-specific files. Drop the duplication and move these to
16756 include/asm-ppc/mmu.h. Also, remove the BL_xxx defines that were only
16757 used by the alaska board, and switch to using the BATU_BL_xxx defines
16758 used by all the other boards. The BL_ defines previously in use
16759 had to be shifted into the proper position for use, which was inefficient.
16760
16761 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
16762
16763 commit 6e61fae4d360a1380b63e7d007b31477e366bcce
16764 Author: Becky Bruce <beckyb@kernel.crashing.org>
16765 Date: Tue Feb 3 18:10:50 2009 -0600
16766
16767 drivers/pci: Create pci_map_bar function
16768
16769 It is no longer always true that the pci bus address can be
16770 used as the virtual address for pci accesses. pci_map_bar()
16771 is created to return the virtual address for a pci region.
16772
16773 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
16774
16775 commit 2ecca3401775b125c3b9ff65766befb23989414b
16776 Author: Becky Bruce <beckyb@kernel.crashing.org>
16777 Date: Tue Feb 3 18:10:49 2009 -0600
16778
16779 mpc8641hpcn: Set up outbound pci windows before inbound
16780
16781 Because the inbound pci windows are mapped generously, set up
16782 the more specific outbound windows first. This way, when we
16783 search the pci regions for something, we will hit on the more
16784 specific region. This can actually be a problem on systems
16785 with large amounts of RAM.
16786
16787 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
16788
16789 commit b81b773ead0687114dc8a800f99ea6e504447739
16790 Author: Becky Bruce <beckyb@kernel.crashing.org>
16791 Date: Mon Feb 2 16:34:52 2009 -0600
16792
16793 mpc8641hpcn: Use physical address in flash banks defintion
16794
16795 If the VA and PA of the flash aren't the same, the banks list
16796 should be initialized to hold the physical address. Correct this.
16797
16798 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
16799
16800 commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
16801 Author: Ilya Yanok <yanok@emcraft.com>
16802 Date: Tue Feb 10 00:22:31 2009 +0100
16803
16804 qong: support for Dave/DENX QongEVB-LITE board
16805
16806 This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
16807
16808 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
16809 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16810
16811 commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
16812 Author: Ilya Yanok <yanok@emcraft.com>
16813 Date: Mon Feb 9 18:45:28 2009 +0100
16814
16815 dnet: driver for Dave DNET ethernet controller
16816
16817 Driver for Dave DNET ethernet controller (used on Dave/DENX
16818 QongEVB-LITE board).
16819
16820 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
16821 Acked-by: Ben Warren <biggerbadderben@gmail.com>
16822
16823 commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
16824 Author: Kumar Gala <galak@kernel.crashing.org>
16825 Date: Fri Feb 6 09:49:32 2009 -0600
16826
16827 pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
16828
16829 When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
16830 we should give preference to memory regions that aren't system memory.
16831
16832 Its possible that we have over mapped system memory in the regions and
16833 we want to avoid depending on the order of the regions.
16834
16835 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16836
16837 commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
16838 Author: Kumar Gala <galak@kernel.crashing.org>
16839 Date: Fri Feb 6 09:49:31 2009 -0600
16840
16841 pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
16842
16843 The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
16844 can be confusing when reading the code.
16845
16846 Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
16847 for system memory mapping purposes.
16848
16849 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16850
16851 commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
16852 Author: Ilya Yanok <yanok@emcraft.com>
16853 Date: Sun Feb 8 00:59:43 2009 +0300
16854
16855 mx31: add GPIO registers definitions
16856
16857 Added definitions for i.MX31 processor GPIO registers.
16858
16859 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
16860
16861 commit 8da601280a8acbc3385784780ed35130e53812f1
16862 Author: Peter Tyser <ptyser@xes-inc.com>
16863 Date: Wed Feb 4 13:47:22 2009 -0600
16864
16865 NAND: Add timeout for reset command
16866
16867 Without the timeout present an infinite loop can occur if the
16868 NAND device is broken or not present.
16869
16870 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16871 Signed-off-by: Scott Wood <scottwood@freescale.com>
16872
16873 commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
16874 Author: Peter Tyser <ptyser@xes-inc.com>
16875 Date: Wed Feb 4 13:39:40 2009 -0600
16876
16877 NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
16878
16879 Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
16880 for disabling the "No NAND device found!!!" warning when
16881 CONFIG_SYS_NAND_QUIET_TEST was defined. This re-adds support
16882 for silencing the warning.
16883
16884 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16885 Signed-off-by: Scott Wood <scottwood@freescale.com>
16886
16887 commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
16888 Author: Valeriy Glushkov <gvv@lstec.com>
16889 Date: Mon Jan 19 16:32:59 2009 +0200
16890
16891 NAND: Fixed invalid pointers to static relocated chip names
16892
16893 Dear Wolfgang,
16894
16895 You are right, the patch was ugly.
16896 The new one seems to be better.
16897
16898 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
16899 Signed-off-by: Scott Wood <scottwood@freescale.com>
16900
16901 commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
16902 Author: Nishanth Menon <nm@ti.com>
16903 Date: Mon Feb 2 18:20:12 2009 -0600
16904
16905 ARM:OMAP3:Zoom1: Add nand unlock option
16906
16907 Enable NAND_UNLOCK option for unlocking nand for
16908 erase/write operations
16909
16910 Signed-off-by: Nishanth Menon <nm@ti.com>
16911
16912 commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
16913 Author: derek@siconix.com <derek@siconix.com>
16914 Date: Mon Jan 26 14:08:17 2009 -0700
16915
16916 env_nand: fix env memory release
16917
16918 This fixes a bug that tmp environment memory not being released.
16919
16920 Signed-off-by: Derek Ou <dou@siconix.com>
16921 Signed-off-by: Scott Wood <scottwood@freescale.com>
16922
16923 commit 05fd88776419df59e7f37bac063a209409dd801d
16924 Author: Guennadi Liakhovetski <lg@denx.de>
16925 Date: Fri Feb 6 10:37:45 2009 +0100
16926
16927 ARM: remove unused variable
16928
16929 The "size" variable in start_armboot() in lib_arm/board.c is only really
16930 used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
16931 eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
16932
16933 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16934
16935 commit 6989e4f546d960a407dd5425f800dff9751c8132
16936 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16937 Date: Thu Feb 5 09:33:50 2009 -0500
16938
16939 Coldfire: M527x: Add missing GPIO register address defines
16940
16941 Add missing GPIO registers address definition for Coldfire M5271.
16942
16943 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16944
16945 commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
16946 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16947 Date: Fri Jan 23 14:42:58 2009 -0500
16948
16949 Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
16950
16951 Modified mii_init to support boards with PHYs that are not set to
16952 autonegotiate, but still want to use u-boot's mii commands to probe
16953 the smi bus. Such PHYs will not set the Autonegotiate-done bit.
16954
16955 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16956
16957 commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
16958 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16959 Date: Fri Jan 23 11:44:30 2009 -0500
16960
16961 Coldfire: Applied baudrate formula of serial_init to serial_setbrg
16962
16963 Applied the patch for baudrate divider value truncation for
16964 serial_init to serial_setbrg as well.
16965
16966 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16967
16968 commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
16969 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16970 Date: Fri Jan 23 14:07:05 2009 -0500
16971
16972 Coldfire: M5271EVB: Board header update (dependencies)
16973
16974 Cleanup for M5271EVB:
16975 Added clarification on the use of CONFIG_SYS_CLOCK.
16976 Modified to use u-boot's HUSH parser.
16977 Cleanup on environment settings.
16978 Removed compiler warning by defining CONFIG_SYS_CS0_*
16979
16980 Dependencies:
16981 Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
16982 This depends on a patch to include/asm-m68k/m5271.h
16983 that defines the multiplier and divider ratios.
16984
16985 Removed the definition of CONFIG_SYS_FECI2C.
16986 This depends on a patch that removes the use of it in
16987 cpu/mcf52x2/cpu_init.c
16988
16989 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16990
16991 commit e0db344fabfeb4f9649846f94838f51172f6a1f6
16992 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16993 Date: Thu Jan 29 14:36:06 2009 -0500
16994
16995 Coldfire: M5271: Allow board header file to specify clock multiplier
16996
16997 M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
16998
16999 Allow the board header file to set their own multiplier and divider.
17000 Added the #define for the multiplier and divider to the cpu header file.
17001
17002 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17003
17004 commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
17005 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17006 Date: Fri Jan 23 10:47:13 2009 -0500
17007
17008 Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
17009
17010 Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
17011 Use read-modify-write to activate the FEC pins without disabling I2C.
17012
17013 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17014
17015 commit ee73cc59ab904976af3c33b454fc84f78618b2d1
17016 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17017 Date: Fri Jan 23 09:45:34 2009 -0500
17018
17019 Coldfire: cmd_bdinfo cleanup
17020
17021 CONFIG_M68K bdinfo cleanup:
17022
17023 Fixed compiler warning about baudrate printing.
17024 format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
17025
17026 Added printing of "cpufreq"
17027
17028 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17029
17030 commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
17031 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17032 Date: Fri Jan 23 09:27:00 2009 -0500
17033
17034 Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
17035
17036 Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
17037 was causing the bus clock (not CPU clock) to be declared twice as
17038 fast as it actually is. This causes UARTS to operate at half the
17039 specified baudrate.
17040
17041 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17042
17043 commit 59d1bda7f92c8a28c3aba94e48063749d425949f
17044 Author: Dirk Eibach <eibach@gdsys.de>
17045 Date: Tue Feb 3 15:15:21 2009 +0100
17046
17047 ppc4xx: Make PCIE support selectable
17048
17049 On some platforms PCIE support is not required, but would be included
17050 because the cpu supports it. To reduce fooprint it is now configurable
17051 via CONFIG_PCI_DISABLE_PCIE.
17052
17053 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
17054 Signed-off-by: Stefan Roese <sr@denx.de>
17055
17056 commit b129eff5ede394cc1faeb6dbf6a987e91abce552
17057 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17058 Date: Tue Feb 3 22:13:16 2009 +0100
17059
17060 ppc4xx: Only fixup opb attached UARTs
17061
17062 This patch updates the fdt UART clock fixup code to
17063 only touch CPU internal UARTs on 4xx systems.
17064 Only these UARTs are definitely clocked by gd->uart_clk.
17065
17066 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17067 Signed-off-by: Stefan Roese <sr@denx.de>
17068
17069 commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
17070 Author: Mike Frysinger <vapier@gentoo.org>
17071 Date: Tue Jan 13 11:00:29 2009 -0500
17072
17073 Blackfin: move default boot SPI CS to common code
17074
17075 Move the default SPI CS that we boot from into common code so that it can
17076 be used in other SPI drivers and environment settings.
17077
17078 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17079
17080 commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
17081 Author: Mike Frysinger <vapier@gentoo.org>
17082 Date: Wed Dec 10 12:33:54 2008 -0500
17083
17084 Blackfin: dynamically update UART speed when initializing
17085
17086 Previously, booting over the UART required the baud rate to be known ahead
17087 of time. Using a bit of tricky simple math, we can calculate the new board
17088 rate based on the old divisors.
17089
17090 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17091 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
17092
17093 commit 97f265f14f23050f3cb997f617f3a6917b843ea2
17094 Author: Mike Frysinger <vapier@gentoo.org>
17095 Date: Tue Dec 9 17:21:08 2008 -0500
17096
17097 Blackfin: add support for fast SPI reads with Boot ROM
17098
17099 Newer Blackfin boot roms support using the fast SPI read command rather than
17100 just the slow one. If the functionality is available, then use it.
17101
17102 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17103
17104 commit 67619982bfc5cd62710a48e3cbffc304cb78c341
17105 Author: Mike Frysinger <vapier@gentoo.org>
17106 Date: Sat Oct 11 21:46:52 2008 -0400
17107
17108 Blackfin: check for reserved settings in DDR MMRs
17109
17110 Some bits of the DDR MMRs should not be set. If they do, bad things may
17111 happen (like random failures or hardware destruction).
17112
17113 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17114
17115 commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
17116 Author: Mike Frysinger <vapier@gentoo.org>
17117 Date: Sat Oct 11 21:54:00 2008 -0400
17118
17119 Blackfin: set default voltage levels for BF538/BF539 parts
17120
17121 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17122
17123 commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
17124 Author: Mike Frysinger <vapier@gentoo.org>
17125 Date: Sun Jun 1 01:29:57 2008 -0400
17126
17127 Blackfin: use on-chip syscontrol() rom function when available
17128
17129 Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
17130 to be used to properly program the memory and voltage settings as it will
17131 include (possibly critical) factory tested bias values.
17132
17133 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17134
17135 commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
17136 Author: Stefan Roese <sr@denx.de>
17137 Date: Thu Feb 5 11:44:52 2009 +0100
17138
17139 cfi_flash: Fix typo in cfi_flash.c
17140
17141 Patch "flash/cfi_flash: Use virtual sector start address, not phys"
17142 introduced a small typo and compilation warning for systems with CFI
17143 legacy support (e.g. hcu4). This patch fixes it.
17144
17145 Signed-off-by: Stefan Roese <sr@denx.de>
17146
17147 commit 28745db969b72693754991c838f68a7fb4a8b1ab
17148 Author: Stefan Roese <sr@denx.de>
17149 Date: Thu Jan 29 11:21:38 2009 +0100
17150
17151 jedec_flash: Only use manufacturer defines from common flash.h
17152
17153 This patch removes the double defined manufacturer defines from
17154 jedec_flash.c. Since the common defines in flash.h are 32bit
17155 we now need the (16) cast. This patch also removes the compilation
17156 warning (e.g. seen on hcu5):
17157
17158 ./MAKEALL hcu5
17159 Configuring for hcu5 board...
17160 jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
17161
17162 Signed-off-by: Stefan Roese <sr@denx.de>
17163
17164 commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
17165 Author: Stefan Roese <sr@denx.de>
17166 Date: Thu Feb 5 11:25:57 2009 +0100
17167
17168 cfi_flash: Silence compilation warning
17169
17170 Patch "flash/cfi_flash: Use virtual sector start address, not phys"
17171 introduced a small compilation warning. This patch fixes it.
17172
17173 Signed-off-by: Stefan Roese <sr@denx.de>
17174
17175 commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
17176 Author: Becky Bruce <beckyb@kernel.crashing.org>
17177 Date: Mon Feb 2 16:34:51 2009 -0600
17178
17179 flash/cfi_flash: Use virtual sector start address, not phys
17180
17181 include/flash.h was commented to say that the address in
17182 flash_info->start was a physical address. However, from u-boot's
17183 point of view, and looking at most flash code, it makes more
17184 sense for this to be a virtual address. So I corrected the
17185 comment to indicate that this was a virtual address.
17186
17187 The only flash driver that was actually treating the address
17188 as physical was the mtd/cfi_flash driver. However, this code
17189 was using it inconsistently as it actually directly dereferenced
17190 the "start" element, while it used map_physmem to get a
17191 virtual address in other places. I changed this driver so
17192 that the code which initializes the info->start field calls
17193 map_physmem to get a virtual address, eliminating the need for
17194 further map_physmem calls. The code is now consistent.
17195
17196 The *only* place a physical address should be used is when defining the
17197 flash banks list that is used to initialize the flash_info struct,
17198 usually found in the board config file.
17199
17200 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
17201 Signed-off-by: Stefan Roese <sr@denx.de>
17202
17203 commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
17204 Author: Wolfgang Denk <wd@denx.de>
17205 Date: Wed Feb 4 09:42:20 2009 +0100
17206
17207 Fix compiler warning
17208
17209 (shows up only when DEBUG is enabled)
17210
17211 Signed-off-by: Wolfgang Denk <wd@denx.de>
17212
17213 commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
17214 Author: Mike Frysinger <vapier@gentoo.org>
17215 Date: Mon Oct 6 03:45:55 2008 -0400
17216
17217 Blackfin: update anomaly lists
17218
17219 Update the anomaly lists to match latest anomaly sheets.
17220
17221 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17222
17223 commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
17224 Author: Ralph Kondziella <rk@argos-messtechnik.de>
17225 Date: Mon Jan 26 12:34:36 2009 -0700
17226
17227 ADS5121 Add PATA support
17228
17229 Original patch from Ralph Kondziella
17230 plus clean up by Wolfgang Denk
17231 plus changes by John Rigby
17232 use ips clock not lpc
17233 port forward to current u-boot release
17234
17235 Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
17236 Signed-off-by: Wolfgang Denk <wd@denx.de>
17237 Signed-off-by: John Rigby <jrigby@freescale.com>
17238
17239 commit abfbd0ae4967df18102345db4f4b529a13da107b
17240 Author: Martha Marx <mmarx@silicontkx.com>
17241 Date: Mon Jan 26 10:45:07 2009 -0700
17242
17243 ADS5121 Add IC Ident Module (IIM) support
17244
17245 IIM (IC Identification Module) is the fusebox for the mpc5121.
17246 Use #define CONFIG_IIM to turn on the clock for this module
17247 use #define CONFIG_CMD_FUSE to add fusebox commands.
17248 Fusebox commands include the ability to read
17249 the status, read the register cache, override the register cache,
17250 program the fuses and sense them.
17251
17252 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
17253 Signed-off-by: John Rigby <jrigby@freescale.com>
17254
17255 commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
17256 Author: John Rigby <jrigby@freescale.com>
17257 Date: Fri Jan 23 10:33:15 2009 -0700
17258
17259 ADS5121 Fix rev2 silicon pci iopad config
17260
17261 Reset config is not correct
17262
17263 Signed-off-by: John Rigby <jrigby@freescale.com>
17264
17265 commit 4c154252c480b13f69ce1b71a9530b0515da76a6
17266 Author: John Rigby <jrigby@freescale.com>
17267 Date: Wed Nov 19 13:57:34 2008 -0700
17268
17269 ADS5121 DIU Add diu_bmp_addr env
17270
17271 Add support for using a bmp other than
17272 FSL_Logo_BMP for the DIU splash screen.
17273
17274 Can now set the env var "diu_bmp_addr" to
17275 the address of a BMP in flash to use instead
17276 of the default FSL_Logo_BMP.
17277
17278 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
17279 Signed-off-by: John Rigby <jrigby@freescale.com>
17280
17281 commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
17282 Author: John Rigby <jrigby@freescale.com>
17283 Date: Thu Oct 30 16:39:35 2008 -0600
17284
17285 ADS5121 DIU Make inclusion of FSL logo optional
17286
17287 Make inclusion of FSL logo optional and
17288 turn it off by default.
17289
17290 Signed-off-by: John Rigby <jrigby@freescale.com>
17291
17292 commit bd99ec149abe94e7f6b2bda4766d701b4005053f
17293 Author: Remy Bohmer <linux@bohmer.net>
17294 Date: Sun Feb 1 12:27:53 2009 +0100
17295
17296 Compile warning fix in onenand_uboot.h
17297
17298 Regression since merge window after 2009.01
17299
17300 Signed-off-by: Remy Bohmer <linux@bohmer.net>
17301
17302 commit a270d1e7295c3d829f42c0480117941dfc1c6477
17303 Author: Stefan Roese <sr@denx.de>
17304 Date: Thu Jan 29 06:33:55 2009 +0100
17305
17306 USB: Add EHCI support for VCT EHCI controller (really with driver now)
17307
17308 Somehow I missed the real driver part in my last patch version. This patch
17309 now adds the driver.
17310
17311 Signed-off-by: Stefan Roese <sr@denx.de>
17312 Signed-off-by: Remy Bohmer <linux@bohmer.net>
17313
17314 commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
17315 Author: Cliff Cai <cliff.cai@analog.com>
17316 Date: Sat Nov 29 18:22:38 2008 -0500
17317
17318 Blackfin: add driver for on-chip MMC/SD controller
17319
17320 This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
17321
17322 Signed-off-by: Cliff Cai <cliff.cai@analog.com>
17323 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17324
17325 commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
17326 Author: Mike Frysinger <vapier@gentoo.org>
17327 Date: Sat Oct 11 22:47:34 2008 -0400
17328
17329 Blackfin: add port muxing for BF51x SPI
17330
17331 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17332
17333 commit fc68f9f85959664d528daea2aef5ef54974331ce
17334 Author: Mike Frysinger <vapier@gentoo.org>
17335 Date: Tue Jan 6 06:16:19 2009 -0500
17336
17337 Blackfin: output booting source when booting
17338
17339 Knowing the booting source of the part is useful, especially when the part
17340 can switch dynamically between sources.
17341
17342 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17343
17344 commit 8df3ce0f49c37947800ac7c84e751499882619fc
17345 Author: Mike Frysinger <vapier@gentoo.org>
17346 Date: Thu Dec 11 06:30:46 2008 -0500
17347
17348 Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
17349
17350 Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
17351 the Blackfin on-chip bootrom to boot out of SPI flash.
17352
17353 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17354
17355 commit 2b4a486e6fac502d8b883e344cc4012283945b3d
17356 Author: Mike Frysinger <vapier@gentoo.org>
17357 Date: Thu Dec 11 04:06:26 2008 -0500
17358
17359 Blackfin: update asm-blackfin/posix_types.h to latest Linux version
17360
17361 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17362
17363 commit e5eb93e77391bcc308697116c544ea1340aaae8a
17364 Author: Mike Frysinger <vapier@gentoo.org>
17365 Date: Sat Dec 6 02:54:52 2008 -0500
17366
17367 Blackfin: add port I bits
17368
17369 Some people need to access port I, so make sure the pins are defined.
17370
17371 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17372
17373 commit 8a6b272596d43de0db4943eac7af58c3534c4026
17374 Author: Sonic Zhang <Sonic.Zhang@analog.com>
17375 Date: Wed Nov 26 22:16:45 2008 -0500
17376
17377 Blackfin: add driver for on-chip ATAPI controller
17378
17379 This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
17380
17381 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
17382 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17383
17384 commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
17385 Author: Mike Frysinger <vapier@gentoo.org>
17386 Date: Wed Nov 26 21:43:06 2008 -0500
17387
17388 Blackfin: add driver for on-chip NAND controller
17389
17390 This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
17391
17392 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17393
17394 commit 4148e02abae9a099f4444b5e168ebc2b911d2295
17395 Author: Mike Frysinger <vapier@gentoo.org>
17396 Date: Wed Nov 12 07:18:15 2008 -0500
17397
17398 Blackfin: build with -mno-fdpic
17399
17400 Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
17401 up u-boot, including ones that output FDPIC ELF by default.
17402
17403 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17404
17405 commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
17406 Author: Mike Frysinger <vapier@gentoo.org>
17407 Date: Tue Nov 11 05:43:57 2008 -0500
17408
17409 Blackfin: fix up EBIU defines
17410
17411 The EBIU defines for EBSZ 256/512 were incorrect.
17412
17413 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17414
17415 commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
17416 Author: Mike Frysinger <vapier@gentoo.org>
17417 Date: Wed Nov 5 12:45:24 2008 -0500
17418
17419 Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
17420
17421 Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
17422 as usable with the source/destination addresses and the count size.
17423
17424 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17425
17426 commit b93c68648426f906d63b98117496b6415f505f39
17427 Author: Mike Frysinger <vapier@gentoo.org>
17428 Date: Wed Nov 5 08:50:23 2008 -0500
17429
17430 Blackfin: only flag L1 instruction for DMA memcpy
17431
17432 The performance difference from doing an 8 bit DMA memcpy vs an optimized
17433 core memcpy can be pretty big when you add in the overhead of setting up the
17434 MDMA registers, cache flushes, etc... So only use dma_memcpy() when we
17435 actually require it.
17436
17437 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17438
17439 commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
17440 Author: Mike Frysinger <vapier@gentoo.org>
17441 Date: Wed Nov 5 07:20:37 2008 -0500
17442
17443 Blackfin: dma_memcpy(): fix random failures
17444
17445 We have to make sure the DMA channel is actually disabled in hardware before
17446 attempting to reprogram it. Otherwise the new settings are ignored and we
17447 end up with random hangs/failures.
17448
17449 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17450
17451 commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
17452 Author: Mike Frysinger <vapier@gentoo.org>
17453 Date: Tue Nov 4 00:04:03 2008 -0500
17454
17455 Blackfin: rewrite cache handling functions
17456
17457 Take the cache flush functions from the kernel as they use hardware loops in
17458 order to get optimal performance.
17459
17460 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17461
17462 commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
17463 Author: Mike Frysinger <vapier@gentoo.org>
17464 Date: Mon Nov 3 22:30:05 2008 -0500
17465
17466 Blackfin: setup bi_enetaddr for single nets
17467
17468 For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
17469 based on $ethaddr, so set it up.
17470
17471 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17472
17473 commit 40599239e7875b39e2a5c12e6545992041c72c52
17474 Author: Mike Frysinger <vapier@gentoo.org>
17475 Date: Fri Oct 24 22:48:47 2008 -0400
17476
17477 Blackfin: cache core/system clock values
17478
17479 Calculating the clocks requires a bit of calls to gcc math functions, so
17480 cache the values after the first run since they'll most likely never
17481 change once U-Boot is up and running.
17482
17483 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17484
17485 commit 6957a6209b02f6b69607fc47425f13731cc477f1
17486 Author: Mike Frysinger <vapier@gentoo.org>
17487 Date: Fri Oct 24 18:18:16 2008 -0400
17488
17489 Blackfin: enable --gc-sections
17490
17491 Start building all Blackfin boards with -ffunction-sections/-fdata-sections
17492 and linking with --gc-sections.
17493
17494 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17495
17496 commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
17497 Author: Mike Frysinger <vapier@gentoo.org>
17498 Date: Mon Oct 20 21:08:54 2008 -0400
17499
17500 Blackfin: dont check baud if it wont actually get used
17501
17502 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17503
17504 commit 400f5778f375bc99c73c8488c555def261ccfab7
17505 Author: Mike Frysinger <vapier@gentoo.org>
17506 Date: Tue Oct 14 07:54:09 2008 -0400
17507
17508 Blackfin: add driver for on-chip SPI controller
17509
17510 This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
17511
17512 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17513
17514 commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
17515 Author: Mike Frysinger <vapier@gentoo.org>
17516 Date: Sat Oct 18 05:33:51 2008 -0400
17517
17518 Blackfin: only build post code when CONFIG_POST
17519
17520 Save some time by using CONFIG_POST in the Makefile rather than C files.
17521
17522 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17523
17524 commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
17525 Author: Mike Frysinger <vapier@gentoo.org>
17526 Date: Thu Jan 8 11:57:57 2009 -0500
17527
17528 Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
17529
17530 Redo how pointers are managed to get rid of ugly casts and strict pointer
17531 aliasing issues that are highlighted by gcc 4.3.
17532
17533 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17534 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17535
17536 commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
17537 Author: Mike Frysinger <vapier@gentoo.org>
17538 Date: Tue Dec 9 17:46:21 2008 -0500
17539
17540 Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
17541
17542 No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
17543 does exactly the same thing as common "CONFIG_RMII".
17544
17545 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17546 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17547
17548 commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
17549 Author: Mike Frysinger <vapier@gentoo.org>
17550 Date: Wed Nov 5 06:36:15 2008 -0500
17551
17552 Blackfin: bfin_mac: use common debug()
17553
17554 Rather then defining our own DEBUGF(), just use the common debug().
17555
17556 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17557 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17558
17559 commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
17560 Author: Mike Frysinger <vapier@gentoo.org>
17561 Date: Mon Oct 20 13:59:51 2008 -0400
17562
17563 Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
17564
17565 Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
17566 of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
17567
17568 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17569 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17570
17571 commit ac45af4e63ea925f4accc98453aab1a1166c196d
17572 Author: Mike Frysinger <vapier@gentoo.org>
17573 Date: Tue Oct 14 04:52:00 2008 -0400
17574
17575 Blackfin: bfin_mac: cleanup MII/PHY functions
17576
17577 Cleanup and rewrite the MII/PHY related functions so that we can reuse the
17578 existing common linux/miiphy.h code and hook into the `mii` command.
17579
17580 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17581 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17582
17583 commit 6b310a05f0d10c751f22468040932139f71c71d3
17584 Author: Mike Frysinger <vapier@gentoo.org>
17585 Date: Tue Oct 14 00:31:30 2008 -0400
17586
17587 Blackfin: bfin_mac: set MDCDIV based on SCLK
17588
17589 Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
17590 use the real algorithm so it gets set correctly regardless of SCLK.
17591
17592 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17593 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17594
17595 commit 930590f3e49c8f32256edf2e5861e1535a329c6c
17596 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17597 Date: Sat Jan 31 09:10:48 2009 +0100
17598
17599 ixp: move serial to drivers/serial
17600
17601 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17602
17603 commit f90c8022f448bc5e93090e4b714368e52e912f0f
17604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17605 Date: Sat Jan 31 09:04:58 2009 +0100
17606
17607 ixp: move pci init in arm/board instead of cpu
17608
17609 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17610
17611 commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
17612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17613 Date: Sat Jan 31 08:56:49 2009 +0100
17614
17615 ixp: move pci drivers to drivers/pci
17616
17617 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17618
17619 commit 012d5bab09a534e4800b02f50cf508e6837202ea
17620 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17621 Date: Sat Jan 31 08:53:44 2009 +0100
17622
17623 ixp: Move conditional compilation to Makefile
17624
17625 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17626
17627 commit f693f501d67434df1f815fd1824a71973ae08207
17628 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17629 Date: Sat Jan 31 08:53:44 2009 +0100
17630
17631 ixp: add missing os define
17632
17633 need by arm-elf toolchains and no impact on the arm-linux one
17634
17635 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17636
17637 commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
17638 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17639 Date: Sat Jan 31 09:53:39 2009 +0100
17640
17641 ixp: remove the option to include the Microcode
17642
17643 instead the board will have to load it from flash or ram
17644 which will be specified by npe_ucode env var
17645
17646 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17647
17648 commit 1b017baf2071d8daf643bce87250db898c606c66
17649 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17650 Date: Fri Jan 30 09:45:23 2009 +0100
17651
17652 ixp/npe: Move conditional compilation to Makefile
17653
17654 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17655
17656 commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
17657 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17658 Date: Wed Jan 28 21:58:04 2009 +0100
17659
17660 SX1: add hardware V2 support
17661
17662 In the V2 the 2 flash has been replace by one 32MB flash
17663
17664 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17665
17666 commit f877f2233dbcd7417c2f0babe6a849099b167f3c
17667 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17668 Date: Wed Jan 28 21:58:03 2009 +0100
17669
17670 SX1: Fix second flash mapping
17671
17672 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17673
17674 commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
17675 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17676 Date: Wed Jan 28 21:58:03 2009 +0100
17677
17678 SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
17679
17680 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17681
17682 commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
17683 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17684 Date: Wed Jan 28 21:57:59 2009 +0100
17685
17686 move Samsung's board to board/samsung
17687
17688 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17689
17690 commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
17691 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17692 Date: Thu Jan 29 12:07:21 2009 +0100
17693
17694 move ARM Ltd. to vendor dir
17695
17696 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17697
17698 commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
17699 Author: Larry Johnson <lrj@acm.org>
17700 Date: Wed Jan 28 15:30:37 2009 -0500
17701
17702 ppc4xx: Clean up configuration file for Korat board
17703
17704 This patch updates the default environmental variables for the
17705 Korat PPC 440EPx board, and makes additional minor fixes.
17706
17707 Signed-off-by: Larry Johnson <lrj@acm.org>
17708 Signed-off-by: Stefan Roese <sr@denx.de>
17709
17710 commit f20405e31680efc36293c59b4963db57c9d93df4
17711 Author: Larry Johnson <lrj@acm.org>
17712 Date: Wed Jan 28 15:30:02 2009 -0500
17713
17714 ppc4xx: Add variable "korat_usbcf" for Korat board
17715
17716 The new environment variable "korat_usbcf" selects the USB
17717 port used by the Korat board's CompactFlash controller.
17718
17719 Signed-off-by: Larry Johnson <lrj@acm.org>
17720 Signed-off-by: Stefan Roese <sr@denx.de>
17721
17722 commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
17723 Author: Gunnar Rangoy <gunnar@rangoy.com>
17724 Date: Fri Jan 23 12:56:31 2009 +0100
17725
17726 AVR32: macb - Search for PHY id
17727
17728 This patch adds support for searching through available PHY-addresses in
17729 the macb-driver. This is needed for the ATEVK1100 evaluation board,
17730 where the PHY-address will be initialized to either 1 or 7.
17731
17732 This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
17733 enabled tells the driver to search for the PHY address.
17734
17735 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
17736 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
17737 Signed-off-by: Olav Morken <olavmrk@gmail.com>
17738 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17739
17740 commit af8626e0c08a780d9ded1d9c4883a89355f60e75
17741 Author: Olav Morken <olavmrk@gmail.com>
17742 Date: Fri Jan 23 12:56:26 2009 +0100
17743
17744 Fix IP alignment problem
17745
17746 This patch removes volatile from:
17747 volatile IP_t *ip = (IP_t *)xip;
17748
17749 Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
17750 using volatile, which causes an exception since xip isn't aligned on a word
17751 boundary.
17752
17753 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
17754 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
17755 Signed-off-by: Olav Morken <olavmrk@gmail.com>
17756 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17757
17758 commit 12a8b9db12f82a189ff143a58731007f5469da61
17759 Author: Ron Madrid <ron_madrid@sbcglobal.net>
17760 Date: Wed Jan 28 16:17:21 2009 -0800
17761
17762 Marvell 88E1118 interrupt fix
17763
17764 This patch adjusts the LED control so that interrupt lines are not reading LEDs
17765 and effectively causing indefinite interrupts to the controller.
17766
17767 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
17768 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17769
17770 commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
17771 Author: Stefan Roese <sr@denx.de>
17772 Date: Wed Jan 21 17:14:26 2009 +0100
17773
17774 net: smc911x.c: Add LAN9211 to chip_ids[] array
17775
17776 Signed-off-by: Stefan Roese <sr@denx.de>
17777 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17778
17779 commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
17780 Author: Mike Frysinger <vapier@gentoo.org>
17781 Date: Tue Jan 27 16:53:39 2009 -0500
17782
17783 Move is_valid_ether_addr() to include/net.h
17784
17785 Import the is_valid_ether_addr() function from the Linux kernel.
17786
17787 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17788 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17789
17790 commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
17791 Author: Michal Simek <monstr@monstr.eu>
17792 Date: Mon Jan 5 12:25:13 2009 +0100
17793
17794 net: Sort Makefile labels
17795
17796 Signed-off-by: Michal Simek <monstr@monstr.eu>
17797 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17798
17799 commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
17800 Author: Wolfgang Denk <wd@denx.de>
17801 Date: Wed Jan 28 23:06:42 2009 +0100
17802
17803 85xx: Fix compile breakage with sbc8540 and sbc8560
17804
17805 This fixes an error which raises just a warning:
17806 sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
17807
17808 Signed-off-by: Wolfgang Denk <wd@denx.de>
17809
17810 commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
17811 Author: Mike Frysinger <vapier@gentoo.org>
17812 Date: Wed Jan 28 13:48:55 2009 -0500
17813
17814 SPD823TS: do not define CONFIG_CMD_ENV
17815
17816 Since the SPD823TS board does not actually have any writable flash to save
17817 its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
17818 disabled.
17819
17820 This fixes the build error:
17821 common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
17822 common/cmd_nvedit.c:557: undefined reference to `saveenv'
17823 make: *** [u-boot] Error 1
17824
17825 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17826
17827 commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
17828 Author: Dirk Behme <dirk.behme@googlemail.com>
17829 Date: Wed Jan 28 21:40:16 2009 +0100
17830
17831 OMAP3: Add Zoom1 board support
17832
17833 Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
17834 http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
17835
17836 Signed-off-by: Nishanth Menon <nm@ti.com>
17837 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
17838
17839 commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
17840 Author: Dirk Behme <dirk.behme@googlemail.com>
17841 Date: Wed Jan 28 21:39:58 2009 +0100
17842
17843 OMAP3: Add Pandora support
17844
17845 Add Pandora support.
17846
17847 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
17848 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17849 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
17850
17851 commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
17852 Author: Dirk Behme <dirk.behme@googlemail.com>
17853 Date: Wed Jan 28 21:39:58 2009 +0100
17854
17855 OMAP3: Add EVM board
17856
17857 Add EVM board support.
17858
17859 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
17860 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17861 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
17862
17863 commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
17864 Author: Dirk Behme <dirk.behme@googlemail.com>
17865 Date: Wed Jan 28 21:39:57 2009 +0100
17866
17867 OMAP3: Add Overo board
17868
17869 Add Overo board support.
17870
17871 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
17872 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17873 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
17874
17875 commit f904cdbb68167c647887f19929ad295dbaac8862
17876 Author: Dirk Behme <dirk.behme@googlemail.com>
17877 Date: Tue Jan 27 18:19:12 2009 +0100
17878
17879 OMAP3: Add common power code, README, and BeagleBoard
17880
17881 Add BeagleBoard support, common power code and README.
17882
17883 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
17884 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17885
17886 commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
17887 Author: Kumar Gala <galak@kernel.crashing.org>
17888 Date: Wed Jan 28 08:31:10 2009 -0600
17889
17890 85xx: Fix compile breakage with MPC8540EVAL
17891
17892 Configuring for MPC8540EVAL board...
17893 mpc8540eval.c: In function 'checkboard':
17894 mpc8540eval.c:53: error: invalid operands to binary /
17895 make[1]: *** [mpc8540eval.o] Error 1
17896
17897 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17898
17899 commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
17900 Author: Bryan Wu <bryan.wu@analog.com>
17901 Date: Sun Jan 18 23:04:27 2009 -0500
17902
17903 usb_scan_devices: fix output with no devices
17904
17905 We should check the return of usb_new_device() so that if no USB device is
17906 found, we print out the right message rather than always saying "new usb
17907 device found".
17908
17909 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
17910 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17911 Signed-off-by: Remy Bohmer <linux@bohmer.net>
17912
17913 commit f1c1f540243438246aefb703fdcf16957e3a72e1
17914 Author: Stefan Roese <sr@denx.de>
17915 Date: Thu Jan 22 10:11:21 2009 +0100
17916
17917 USB: Add high-speed (480Mb/s) to all USB related outputs
17918
17919 With this patch the USB related connection speed output ("usb tree" command and
17920 debug output) is now high-speed enabled.
17921
17922 This patch also fixes a compilation warning when debugging is enabled.
17923
17924 Signed-off-by: Stefan Roese <sr@denx.de>
17925 Signed-off-by: Remy Bohmer <linux@bohmer.net>
17926
17927 commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
17928 Author: Stefan Roese <sr@denx.de>
17929 Date: Wed Jan 21 17:12:19 2009 +0100
17930
17931 USB: Add dcache support to the EHCI driver
17932
17933 This patch adds routines to handle (flush/invalidate) the dcache for the
17934 QH and qTD structures and data buffers. This is needed on platforms using
17935 this EHCI support with dcache enabled (like the MIPS VCT board port).
17936
17937 Signed-off-by: Stefan Roese <sr@denx.de>
17938 Signed-off-by: Remy Bohmer <linux@bohmer.net>
17939
17940 commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
17941 Author: Stefan Roese <sr@denx.de>
17942 Date: Wed Jan 21 17:12:28 2009 +0100
17943
17944 USB: Add EHCI support for VCT EHCI controller
17945
17946 Signed-off-by: Stefan Roese <sr@denx.de>
17947 Signed-off-by: Remy Bohmer <linux@bohmer.net>
17948
17949 commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
17950 Author: Stefan Roese <sr@denx.de>
17951 Date: Wed Jan 21 17:12:10 2009 +0100
17952
17953 USB: Add config option to call ehci_hcd_init() again after EHCI reset
17954
17955 This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
17956 to call ehci_hcd_init() again after ehci_reset() is executed. This
17957 is needed for the upcoming VCT EHCI support which needs to re-init
17958 the hcd part again after the EHCI CMD_RESET is executed.
17959
17960 Signed-off-by: Stefan Roese <sr@denx.de>
17961 Signed-off-by: Remy Bohmer <linux@bohmer.net>
17962
17963 commit 597eb28bd9691266b7b804364cda577cdb51d106
17964 Author: Stefan Roese <sr@denx.de>
17965 Date: Wed Jan 21 17:12:01 2009 +0100
17966
17967 USB: Fix speed detection on EHCI cntr with root hub transaction translators
17968
17969 This patch fixes an issue that the speed of USB devices was not detected
17970 correctly on some EHCI controllers. This will be used on the upcoming VCT
17971 EHCI support.
17972
17973 Signed-off-by: Stefan Roese <sr@denx.de>
17974 Signed-off-by: Remy Bohmer <linux@bohmer.net>
17975
17976 commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
17977 Author: Thomas Abraham <t-abraham@ti.com>
17978 Date: Sun Jan 4 09:41:20 2009 +0530
17979
17980 usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
17981
17982 Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
17983 configuration file.
17984
17985 Signed-off-by: Ravi Babu <ravibabu@ti.com>
17986 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
17987 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
17988 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
17989 Signed-off-by: Remy Bohmer <linux@bohmer.net>
17990
17991 commit 538ef967715322f64ee08efa2296d9682111b014
17992 Author: Thomas Abraham <t-abraham@ti.com>
17993 Date: Sun Jan 4 09:41:16 2009 +0530
17994
17995 usb : musb : Enabling DM6446 (TI DaVinci) USB module power
17996
17997 Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
17998 controller hook up to USB core layer.
17999
18000 Signed-off-by: Ravi Babu <ravibabu@ti.com>
18001 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
18002 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
18003 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
18004 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18005
18006 commit e142e9f35f8ec61e74bf8019428b003f5070c33b
18007 Author: Thomas Abraham <t-abraham@ti.com>
18008 Date: Sun Jan 4 09:41:13 2009 +0530
18009
18010 usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
18011
18012 Adding DM6446 (TI DaVinci) platform specific USB functionality for
18013 USB Phy and VBUS initialization.
18014
18015 Signed-off-by: Ravi Babu <ravibabu@ti.com>
18016 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
18017 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
18018 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
18019 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18020
18021 commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
18022 Author: Thomas Abraham <t-abraham@ti.com>
18023 Date: Sun Jan 4 09:41:09 2009 +0530
18024
18025 usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
18026
18027 Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
18028 platform.
18029
18030 Signed-off-by: Ravi Babu <ravibabu@ti.com>
18031 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
18032 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
18033 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
18034 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18035
18036 commit a142896934c755e679ba87e227a8e449f39b0012
18037 Author: Thomas Abraham <t-abraham@ti.com>
18038 Date: Sun Jan 4 09:41:03 2009 +0530
18039
18040 usb : musb : Adding host controller driver for Mentor USB controller
18041
18042 Adding Mentor USB core functionality and Mentor USB Host controller
18043 functionality for Mentor USB OTG controller (musbhdrc).
18044
18045 Signed-off-by: Ravi Babu <ravibabu@ti.com>
18046 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
18047 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
18048 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
18049 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18050
18051 commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
18052 Author: Mike Frysinger <vapier@gentoo.org>
18053 Date: Thu Jan 1 18:27:27 2009 -0500
18054
18055 usb.h: use standard __LITTLE_ENDIAN from Linux headers
18056
18057 Rather than forcing people to define a custom "LITTLEENDIAN", just use the
18058 __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
18059 already setting up.
18060
18061 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18062 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18063
18064 commit 7b6e31eb17e3ff76238a60803fc531517d516223
18065 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18066 Date: Wed Dec 31 10:33:56 2008 +0100
18067
18068 USB ehci ixp4xx support
18069
18070 Add USB ehci ixp4xx host controller. Test on ixdp465 board.
18071
18072 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
18073 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18074
18075 commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
18076 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18077 Date: Wed Dec 31 10:33:22 2008 +0100
18078
18079 USB ehci remove infinite loop and use handshake function
18080
18081 USB ehci code cleanup. Use handshake instead of infinite while loop
18082 to check the STD_ASS status
18083
18084 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
18085 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18086
18087 commit 8fea2914ac974029b65926ef8247d908f84d202d
18088 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18089 Date: Wed Dec 31 10:32:41 2008 +0100
18090
18091 Add initial support for USB ehci pci
18092
18093 Add USB ehci pci support. This patch doesn't include any
18094 pci_ids and it is not tested on real hardware.
18095
18096 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
18097 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18098
18099 commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
18100 Author: Bryan Wu <Bryan.Wu@analog.com>
18101 Date: Thu Jan 1 19:48:07 2009 -0500
18102
18103 usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
18104
18105 The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
18106 does not like to be reset, so check for it.
18107
18108 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
18109 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18110 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18111
18112 commit 1eb734fed3b79a5e6106dad16e88041894fdab30
18113 Author: Thomas Abraham <t-abraham@ti.com>
18114 Date: Sun Jan 4 12:15:35 2009 +0530
18115
18116 usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
18117
18118 This patch populates the 'priv' field of the USB keyboard device_t
18119 structure. The 'priv' field is populated with the address of the
18120 'struct usb_device' structure that represents the USB device.
18121
18122 The 'priv' field can then be used in the 'usb_event_poll' function to
18123 determine the USB device that requires to be polled. An
18124 example of its usage in 'usb_event_poll' function is as below.
18125
18126 device_t *dev;
18127 struct usb_device *usb_kbd_dev;
18128
18129 <snip>
18130
18131 dev = device_get_by_name("usbkbd");
18132 usb_kbd_dev = (struct usb_device *)dev->priv;
18133 iface = &usb_kbd_dev->config.if_desc[0];
18134
18135 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
18136 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18137
18138 commit 366523c26b6320af171459b19e6e0e9e3baa83ca
18139 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18140 Date: Thu Dec 18 10:05:37 2008 +0100
18141
18142 USB change speed
18143
18144 USB changes the speed according to the port status
18145
18146 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
18147 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18148
18149 commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
18150 Author: Remy Böhmer <linux@bohmer.net>
18151 Date: Sat Dec 13 22:51:58 2008 +0100
18152
18153 EHCI fix code and ixp4xx test.
18154 USB ehci configuration parameter:
18155
18156 #define CONFIG_CMD_USB 1
18157 #define CONFIG_USB_STORAGE 1
18158 #define CONFIG_USB_EHCI
18159 #define CONFIG_USB_EHCI_IXP4XX 1
18160 #define CONFIG_EHCI_IS_TDI 1
18161 #define CONFIG_EHCI_DESC_BIG_ENDIAN 1
18162 #define CONFIG_EHCI_MMIO_BIG_ENDIAN 1
18163 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
18164 #define CONFIG_LEGACY_USB_INIT_SEQ 1
18165
18166 2 USB Device(s) found
18167 scanning bus for storage devices... 0 Storage Device(s) found
18168 => usb tree
18169
18170 Device Tree:
18171 1 Hub (1.5MBit/s, 0mA)
18172 | u-boot EHCI Host Controller
18173 |
18174 |+-2 Mass Storage (12MBit/s, 100mA)
18175 Sony Storage Media 0C07040930296
18176
18177 =>
18178
18179 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
18180 Signed-off-by: Remy Böhmer <linux@bohmer.net>
18181
18182 commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
18183 Author: michael <michael@panicking.retis>
18184 Date: Thu Dec 11 13:43:55 2008 +0100
18185
18186 [PATCH] This patch add varius fix to the ehci.
18187 - fix ehci_readl, ehci_writel
18188 - introduce new define in ehci.h
18189 - introduce the handshake function for waiting on a register
18190 - fix usb_ehci_fsl with the new HC_LENGTH macro
18191
18192 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
18193 Signed-off-by: Remy Böhmer <linux@bohmer.net>
18194
18195 commit db63299b1dd2894ade542278210bccd046de6435
18196 Author: michael <michael@panicking.retis>
18197 Date: Wed Dec 10 17:55:19 2008 +0100
18198
18199 [PATCH] Fix EHCI usb. I start to test on a
18200 IXP465 board and I find some errors in the code. This
18201 patch fix:
18202 - descriptor initizialization (config, interface and endpoint
18203 must be one next-to the other when the USB_DT_CONFIG message
18204 is send.
18205 - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
18206 and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
18207 - Introduce the linux version of the usb_config_descriptor and
18208 usb_interface descriptor. This descriptor does't contains
18209 u-boot extension.
18210
18211 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
18212 Signed-off-by: Remy Böhmer <linux@bohmer.net>
18213
18214 commit 6b92487dcf9afe83a3570153d66940fdb293be76
18215 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18216 Date: Fri Nov 28 13:22:09 2008 +0100
18217
18218 USB ehci freescale support
18219
18220 Add USB ehci freescale support
18221
18222 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18223 Signed-off-by: Remy Böhmer <linux@bohmer.net>
18224
18225 commit aaf098cfeed04595d4c5100ffd39095d79edbf90
18226 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18227 Date: Fri Nov 28 13:20:46 2008 +0100
18228
18229 USB ehci core support
18230
18231 Add USB ehci core support
18232
18233 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18234 Signed-off-by: Remy Böhmer <linux@bohmer.net>
18235
18236 commit 3e126484df7868e341545cce740b24b62b0cd3b7
18237 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18238 Date: Fri Nov 28 13:19:19 2008 +0100
18239
18240 Prepare USB layer for ehci
18241
18242 Prepare USB layer for ehci support
18243
18244 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18245 Signed-off-by: Remy Böhmer <linux@bohmer.net>
18246
18247 commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
18248 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
18249 Date: Wed Dec 10 15:52:06 2008 +0100
18250
18251 USB storage cleanup patch
18252
18253 Cleanup usb storage
18254
18255 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
18256 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18257
18258 commit fe033ad6d0883063fe857237abb9436fab03208c
18259 Author: Mike Frysinger <vapier@gentoo.org>
18260 Date: Sun Oct 12 06:02:55 2008 -0400
18261
18262 Blackfin: fixup misc warnings such as printf's and missing casts
18263
18264 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18265
18266 commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
18267 Author: Mike Frysinger <vapier@gentoo.org>
18268 Date: Sun Oct 12 22:09:26 2008 -0400
18269
18270 Blackfin: convert old boards to use COBJS-y Makefile style
18271
18272 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18273
18274 commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
18275 Author: Mike Frysinger <vapier@gentoo.org>
18276 Date: Sat Oct 11 22:38:37 2008 -0400
18277
18278 Blackfin: bf533-stamp: rewrite resource swap logic
18279
18280 The old swap function tended to clobber unrelated pins and screw up masks.
18281 Rewrite the thing from scratch so it only uses the resources it needs.
18282
18283 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18284
18285 commit 29d4ea0a9073c82469184331010136f52edf8db6
18286 Author: Mike Frysinger <vapier@gentoo.org>
18287 Date: Sat Oct 11 22:08:42 2008 -0400
18288
18289 Blackfin: bootldr: implement BF53x/BF56x LDR loader
18290
18291 The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
18292 arbitrary memory locations, so implement a basic one in software.
18293
18294 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18295
18296 commit 8b35e3aeff6c2d747c37697997b3f8a808432329
18297 Author: Mike Frysinger <vapier@gentoo.org>
18298 Date: Sat Oct 11 22:05:42 2008 -0400
18299
18300 Blackfin: implement real write support for OTP
18301
18302 Now that real documentation has been released for the OTP interface and
18303 the on-chip ROM wrt writing/timings, implement support for reading/writing
18304 as well as dumping/locking.
18305
18306 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18307
18308 commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
18309 Author: Mike Frysinger <vapier@gentoo.org>
18310 Date: Sat Oct 11 22:04:05 2008 -0400
18311
18312 Blackfin: update on-chip ROM API
18313
18314 This brings the API for the on-chip ROM in line with the toolchain and
18315 hardware documentation.
18316
18317 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18318
18319 commit 7633903bff432ec7b27905dce7396958553f2be6
18320 Author: Mike Frysinger <vapier@gentoo.org>
18321 Date: Sat Oct 11 21:52:17 2008 -0400
18322
18323 Blackfin: allow serial console to be disabled
18324
18325 Some devices have no UART device pulled out, so allow people to disable the
18326 driver completely in favor of other methods (like JTAG-console).
18327
18328 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18329
18330 commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
18331 Author: Mike Frysinger <vapier@gentoo.org>
18332 Date: Sat Oct 11 21:51:20 2008 -0400
18333
18334 Blackfin: support console-over-JTAG
18335
18336 The Blackfin JTAG has the ability to pass data via a back-channel without
18337 halting the processor. Utilize that channel to emulate a console.
18338
18339 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18340
18341 commit cf8f2efb5f39c5225da92391c14a07eecbeca881
18342 Author: Mike Frysinger <vapier@gentoo.org>
18343 Date: Sat Oct 11 21:49:06 2008 -0400
18344
18345 Blackfin: handle new anomalies with reset
18346
18347 Workaround fun new anomalies related to software reset of the processor.
18348
18349 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18350
18351 commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
18352 Author: Mike Frysinger <vapier@gentoo.org>
18353 Date: Sat Oct 11 21:44:00 2008 -0400
18354
18355 Blackfin: pass RETX to Linux
18356
18357 Make sure we save the value of RETX at power on and then pass it on to the
18358 kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
18359
18360 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18361
18362 commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
18363 Author: Mike Frysinger <vapier@gentoo.org>
18364 Date: Sat Oct 11 21:40:26 2008 -0400
18365
18366 Blackfin: clarify relocation comment during init
18367
18368 People often ask questions about the init process and when things go
18369 from flash to relocated base, so clarify the comments a bit.
18370
18371 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18372
18373 commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
18374 Author: Mike Frysinger <vapier@gentoo.org>
18375 Date: Sat Oct 11 21:23:41 2008 -0400
18376
18377 Blackfin: just set SP register directly during init
18378
18379 No need to set the SP register indirectly to the configured value when it
18380 can be set directly.
18381
18382 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18383
18384 commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
18385 Author: Mike Frysinger <vapier@gentoo.org>
18386 Date: Sat Oct 11 21:15:53 2008 -0400
18387
18388 Blackfin: add portmuxing for UARTs on the BF51x
18389
18390 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18391
18392 commit 4f6a313240c531042f16909a3a170ab047b95779
18393 Author: Mike Frysinger <vapier@gentoo.org>
18394 Date: Sun Jun 1 01:26:29 2008 -0400
18395
18396 Blackfin: respect CONFIG_CLKIN_HALF
18397
18398 As pointed out by Ivan Koryakovskiy, the initialization code was not
18399 actually respecting the CONFIG_CLKIN_HALF option when configuring the
18400 PLL_CTL register.
18401
18402 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18403
18404 commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
18405 Author: Mike Frysinger <vapier@gentoo.org>
18406 Date: Sun Jun 1 01:21:34 2008 -0400
18407
18408 Blackfin: use common memcpy routine during init
18409
18410 Rather than using a local custom memcpy function, just call the existing
18411 optimized Blackfin version.
18412
18413 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18414
18415 commit 362c943347364e9373af4c5530778491ab56ec2e
18416 Author: Mike Frysinger <vapier@gentoo.org>
18417 Date: Wed Apr 9 02:27:06 2008 -0400
18418
18419 Blackfin: set default boot SPI CS for BF538/BF539
18420
18421 The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
18422 Blackfin parts.
18423
18424 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18425
18426 commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
18427 Author: Mike Frysinger <vapier@gentoo.org>
18428 Date: Wed Apr 9 02:20:59 2008 -0400
18429
18430 Blackfin: punt unused BF533-STAMP definitions
18431
18432 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18433
18434 commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
18435 Author: Mike Frysinger <vapier@gentoo.org>
18436 Date: Fri Apr 18 20:44:11 2008 -0400
18437
18438 Blackfin: resurrect BF533-STAMP video splash driver
18439
18440 This video driver used to live in the Blackfin cpu directory, but it was
18441 lost during the unification process. This brings it back.
18442
18443 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18444
18445 commit a750d038f2548d846ea1e046d873dc932d041319
18446 Author: Mike Frysinger <vapier@gentoo.org>
18447 Date: Wed Apr 9 02:31:29 2008 -0400
18448
18449 Blackfin: tighten up post memory coding style
18450
18451 No functional changes here; just cleanup code style a bit.
18452
18453 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18454
18455 commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
18456 Author: Mike Frysinger <vapier@gentoo.org>
18457 Date: Wed Apr 9 02:29:18 2008 -0400
18458
18459 Blackfin: bf537-stamp nand: fix more style errors in previous commit
18460
18461 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18462
18463 commit 41f3325ae9add641036d7cb362e884b698e53f07
18464 Author: Mike Frysinger <vapier@gentoo.org>
18465 Date: Sat Oct 11 20:31:17 2008 -0400
18466
18467 Blackfin: drop dead/wrong debug code in initdram()
18468
18469 The DEBUG code in initdram() is quite old and was never really useful, so
18470 just drop it altogether. Common Blackfin debug code does a better job.
18471
18472 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18473
18474 commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
18475 Author: Mike Frysinger <vapier@gentoo.org>
18476 Date: Sat Oct 11 20:30:28 2008 -0400
18477
18478 Blackfin: bf533-ezkit: shuffle flash defines a little
18479
18480 Some of the flash defines weren't in the correct location and caused build
18481 problems in some configurations, so let's move types and defines to better
18482 local locations.
18483
18484 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18485
18486 commit be853bf86b41e91f4c422f0f56fdf87ea3191266
18487 Author: Mike Frysinger <vapier@gentoo.org>
18488 Date: Mon Oct 6 04:16:47 2008 -0400
18489
18490 Blackfin: overhaul i2c driver
18491
18492 The current Blackfin i2c driver does not work properly with certain devices
18493 due to it breaking up transfers incorrectly. This is a rewrite of the
18494 driver and relocates it to the newer place in the source tree.
18495
18496 Also remove duplicated I2C speed defines in Blackfin board configs and
18497 disable I2C slave address usage since it isn't implemented.
18498
18499 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18500
18501 commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
18502 Author: Mike Frysinger <vapier@gentoo.org>
18503 Date: Mon Oct 6 04:00:07 2008 -0400
18504
18505 Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
18506
18507 Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
18508 128kB when setting up the default flash protection region for U-Boot
18509 itself.
18510
18511 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18512
18513 commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
18514 Author: Mike Frysinger <vapier@gentoo.org>
18515 Date: Mon Oct 6 03:57:39 2008 -0400
18516
18517 Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
18518
18519 When setting up the global data, rather than relying on sizeof(), use the
18520 common CONFIG_SYS_GBL_DATA_SIZE define.
18521
18522 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18523
18524 commit 01815c2d06c5b838f2cd536703e47bd2c9148194
18525 Author: Mike Frysinger <vapier@gentoo.org>
18526 Date: Mon Oct 6 03:52:24 2008 -0400
18527
18528 Blackfin: implement general support for CONFIG_STATUS_LED
18529
18530 Here are the Blackfin-specific and board-independent pieces for status leds.
18531
18532 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18533
18534 commit 6882b5a79a3247494b62c05015fa672557f1bfaa
18535 Author: Mike Frysinger <vapier@gentoo.org>
18536 Date: Mon Oct 6 03:49:32 2008 -0400
18537
18538 Blackfin: do not init i2c in Blackfin board init
18539
18540 The common code takes care of calling i2c_init() when needed, so no point
18541 in us doing it as well.
18542
18543 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18544
18545 commit 1118ea73698eee6e72ef5cbfc00e41746040304f
18546 Author: Mike Frysinger <vapier@gentoo.org>
18547 Date: Mon Oct 6 03:42:20 2008 -0400
18548
18549 Blackfin: bfin_mac: update port muxing
18550
18551 Adds support more Blackfin parts and fixes broken muxing for older ones.
18552
18553 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18554
18555 commit 05b75e48832fc4afeecf8e76d704349557dffa35
18556 Author: Mike Frysinger <vapier@gentoo.org>
18557 Date: Mon Oct 6 03:35:44 2008 -0400
18558
18559 Blackfin: fix dcache handling when doing dma memcpy's
18560
18561 Our dcache invalidate function doesn't just invalidate, it also flushes.
18562 So rename the function accordingly and fix the dma_memcpy() function so it
18563 doesn't inadvertently corrupt the data destination.
18564
18565 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18566
18567 commit 68e5632494168095d75f120af70043b68afd2476
18568 Author: Mike Frysinger <vapier@gentoo.org>
18569 Date: Thu Aug 7 18:56:56 2008 -0400
18570
18571 Blackfin: dont generate ldrs with --force
18572
18573 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18574
18575 commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
18576 Author: Mike Frysinger <vapier@gentoo.org>
18577 Date: Thu Aug 7 18:55:30 2008 -0400
18578
18579 Blackfin: pass --bmode/--initcode when creating ldr
18580
18581 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18582
18583 commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
18584 Author: Mike Frysinger <vapier@gentoo.org>
18585 Date: Thu Aug 7 18:39:27 2008 -0400
18586
18587 Blackfin: minimize time cache is turned off when replacing cplb entries
18588
18589 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18590
18591 commit 21d631360430cf0ae9099612273cd4de28911ba9
18592 Author: Mike Frysinger <vapier@gentoo.org>
18593 Date: Thu Aug 7 15:31:13 2008 -0400
18594
18595 Blackfin: split cache handling out of dma_memcpy()
18596
18597 Creating a new dma_memcpy() function that skips all cache checks allows us
18598 to use the function in very early init where the cache is not yet setup.
18599
18600 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18601
18602 commit d31eb38512bed377d5d4b3c696662e52120a2e4c
18603 Author: Mike Frysinger <vapier@gentoo.org>
18604 Date: Thu Aug 7 15:30:49 2008 -0400
18605
18606 Blackfin: abort dma_memcpy() for L1 scratchpad
18607
18608 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18609
18610 commit 81b799add709177e838466461f7b9989488b0fd5
18611 Author: Mike Frysinger <vapier@gentoo.org>
18612 Date: Thu Aug 7 15:27:52 2008 -0400
18613
18614 Blackfin: rename bootm.c to boot.c
18615
18616 The boot file contains functions for more than just "bootm", so rename it
18617 accordingly.
18618
18619 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18620
18621 commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
18622 Author: Mike Frysinger <vapier@gentoo.org>
18623 Date: Thu Aug 7 13:22:37 2008 -0400
18624
18625 Blackfin: set more sane default board config values
18626
18627 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18628
18629 commit 36cd52a00794fb15ffab05d640acca92d7482993
18630 Author: Mike Frysinger <vapier@gentoo.org>
18631 Date: Thu Aug 7 15:24:59 2008 -0400
18632
18633 Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
18634
18635 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18636
18637 commit c8054bc12e00669bd7588f2b30fef48aa94babac
18638 Author: Mike Frysinger <vapier@gentoo.org>
18639 Date: Thu Aug 7 13:21:27 2008 -0400
18640
18641 Blackfin: add bit defines for DDR parts
18642
18643 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18644
18645 commit 154502fe0796f3b7a4698378c5d2080ae28a9782
18646 Author: Mike Frysinger <vapier@gentoo.org>
18647 Date: Thu Aug 7 13:21:11 2008 -0400
18648
18649 Blackfin: add defines to describe active bootrom behavior
18650
18651 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18652
18653 commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
18654 Author: Kim Phillips <kim.phillips@freescale.com>
18655 Date: Tue Jan 27 16:03:53 2009 -0600
18656
18657 mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
18658
18659 extend commit c70564e6b1bd08f3230182392238907f3531a87e
18660 "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
18661 to the simpc8313 build and fix this:
18662
18663 ...Large Page NAND...Configuring for SIMPC8313 board...
18664 nand_boot_fsl_elbc.o: In function `nand_boot':
18665 nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
18666 make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
18667 make: *** [nand_spl] Error 2
18668
18669 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18670
18671 commit 54a7cc4912feefa45be961cc47cc159563725d2f
18672 Author: Wolfgang Denk <wd@denx.de>
18673 Date: Wed Jan 28 09:25:31 2009 +0100
18674
18675 mpc8536ds.c: include sata.h to for needed function prototypes
18676
18677 Signed-off-by: Wolfgang Denk <wd@denx.de>
18678
18679 commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
18680 Author: Peter Tyser <ptyser@xes-inc.com>
18681 Date: Tue Jan 27 18:03:12 2009 -0600
18682
18683 Command usage cleanup
18684
18685 Remove command name from all command "usage" fields and update
18686 common/command.c to display "name - usage" instead of
18687 just "usage". Also remove newlines from command usage fields.
18688
18689 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18690
18691 commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
18692 Author: Peter Tyser <ptyser@xes-inc.com>
18693 Date: Tue Jan 27 18:03:11 2009 -0600
18694
18695 amcc: Clean up command usage output
18696
18697 Update taihu and taishan commands to use cmd_usage() function
18698 to display usage messages.
18699
18700 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18701
18702 commit 62c3ae7c6ef215b1afa614abdf61acf077752207
18703 Author: Peter Tyser <ptyser@xes-inc.com>
18704 Date: Tue Jan 27 18:03:10 2009 -0600
18705
18706 Standardize command usage messages with cmd_usage()
18707
18708 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18709
18710 commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
18711 Author: Peter Tyser <ptyser@xes-inc.com>
18712 Date: Tue Jan 27 18:03:09 2009 -0600
18713
18714 pcs440ep: Clean up led command definition
18715
18716 The pcs440ep's led command usage formatting is non-standard. It
18717 was made standard in preparation for larger command usage updates.
18718
18719 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18720
18721 commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
18722 Author: Peter Tyser <ptyser@xes-inc.com>
18723 Date: Tue Jan 27 18:03:08 2009 -0600
18724
18725 Clean up diufb command definitions
18726
18727 The diufb command usage formatting is non-standard. It was
18728 made standard in preparation for larger command usage updates.
18729
18730 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18731
18732 commit 6450a8485836fc80615ae6de6a864c33369b44f5
18733 Author: Wolfgang Denk <wd@denx.de>
18734 Date: Wed Jan 28 00:29:26 2009 +0100
18735
18736 Update CHANGELOG, tiny coding style cleanup.
18737
18738 Signed-off-by: Wolfgang Denk <wd@denx.de>
18739
18740 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
18741 Author: Mike Frysinger <vapier@gentoo.org>
18742 Date: Tue Jan 27 16:12:21 2009 -0500
18743
18744 SATA: do not auto-initialize during boot
18745
18746 Rather than have the board code initialize SATA automatically during boot,
18747 make the user manually run "sata init". This brings the SATA subsystem in
18748 line with common U-Boot policy.
18749
18750 Rather than having a dedicated weak function "is_sata_supported", people
18751 can override sata_initialize() to do their weird board stuff. Then they
18752 can call the actual __sata_initialize().
18753
18754 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18755
18756 commit 50970839712dda35399e2fa83fe818df9354d618
18757 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
18758 Date: Mon Jan 26 08:45:14 2009 -0500
18759
18760 part_efi: Fix partition size calculation due to inclusive ending LBA.
18761
18762 The ending LBA is inclusive. Hence, the partition size should be
18763 ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
18764
18765 This is confirmed against the results from the parted tool.
18766 (e.g. use parted /dev/sda -s unit S print) and observe the size.
18767
18768 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
18769
18770 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
18771 Author: Tomasz Figa <tomasz.figa@gmail.com>
18772 Date: Tue Dec 30 18:35:57 2008 +0100
18773
18774 jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
18775
18776 This patch fixes a bug (?) introduced after inclusion of the new
18777 JFFS2 code.
18778
18779 When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
18780 fill in part->sector_size (keeping it as 0), but a correct value is
18781 needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
18782 to be in the same place of the memory, what obviously means
18783 impossibility to use the JFFS2 partition.
18784
18785 This problem is fixed in this patch by including sector size
18786 calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
18787
18788 Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
18789
18790 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
18791 Author: Mike Frysinger <vapier@gentoo.org>
18792 Date: Tue Dec 30 02:59:25 2008 -0500
18793
18794 saveenv: standardize enablement
18795
18796 Rather than special casing each environment type for enabling the saveenv
18797 command, have them all behave the same. This avoids bitrot as new env
18798 sources are added/removed.
18799
18800 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18801
18802 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
18803 Author: Andrew Dyer <adyer@righthandtech.com>
18804 Date: Mon Dec 29 17:36:01 2008 -0600
18805
18806 soft_i2c.c add option for repeated start in i2c_read()
18807
18808 This patch adds a #define to optionally change the behaviour of
18809 i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
18810 stop-start between sending the device address pointer write and
18811 reading back the data. The current behaviour is retained as the
18812 default.
18813
18814 While most devices will work either way, I have a smart battery(*)
18815 that requires repeated start, and someone at some point found a
18816 device that required a stop-start.
18817
18818 (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
18819
18820 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
18821
18822 commit 3429071700963ca2f944c51d695a7481af0cee33
18823 Author: Wolfgang Denk <wd@denx.de>
18824 Date: Tue Jan 27 22:07:14 2009 +0100
18825
18826 {delta,zylonite}/lowlevel_init.S: fix typo
18827
18828 Commit 9d803d8c mistakenly changed some constants
18829 from 0x300 into 300 - this patch fixes it.
18830
18831 Pointed out by Tom Evans <tom@ceos.com.au>, see
18832 http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
18833 details.
18834
18835 Signed-off-by: Wolfgang Denk <wd@denx.de>
18836
18837 commit 1bc434373013af241835c14011ac3f291dccbf53
18838 Author: Stefan Althoefer <stefan.althoefer@web.de>
18839 Date: Sat Dec 20 19:40:41 2008 +0100
18840
18841 drivers/net/e1000.c: missing terminator for supported devices
18842
18843 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
18844
18845 commit 65f7d41031a70b1649b35020995c505edca91533
18846 Author: Wolfgang Denk <wd@denx.de>
18847 Date: Tue Jan 27 21:36:28 2009 +0100
18848
18849 fat.c: fix warning: array subscript is above array bounds
18850
18851 Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
18852
18853 Signed-off-by: Wolfgang Denk <wd@denx.de>
18854
18855 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
18856 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18857 Date: Fri Jan 2 15:11:41 2009 +0100
18858
18859 Fix gunzip in case of insufficient output buffer
18860
18861 U-Boot's gunzip() function does not handle the return code
18862 of zlib's inflate() function correctly. gunzip() is implemented
18863 to uncompress all input data in one run. So the correct return
18864 code for the good case is Z_STREAM_END. In case of insufficient
18865 output buffer memory inflate returns Z_OK. For gunzip() this
18866 is an error.
18867
18868 It also makes sense to me to call inflateEnd() also in case
18869 of an error.
18870
18871 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18872
18873 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
18874 Author: Stefan Roese <sr@denx.de>
18875 Date: Wed Jan 21 17:25:01 2009 +0100
18876
18877 MIPS: Add VCT board series support (Part 3/3)
18878
18879 Signed-off-by: Stefan Roese <sr@denx.de>
18880
18881 commit ae691e5719c48f1d2826cb72722497d1d162765b
18882 Author: Stefan Roese <sr@denx.de>
18883 Date: Wed Jan 21 17:24:49 2009 +0100
18884
18885 MIPS: Add VCT board series support (Part 2/3)
18886
18887 Signed-off-by: Stefan Roese <sr@denx.de>
18888
18889 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
18890 Author: Stefan Roese <sr@denx.de>
18891 Date: Wed Jan 21 17:24:39 2009 +0100
18892
18893 MIPS: Add VCT board series support (Part 1/3)
18894
18895 Signed-off-by: Stefan Roese <sr@denx.de>
18896
18897 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
18898 Author: Stefan Roese <sr@denx.de>
18899 Date: Wed Jan 21 17:20:20 2009 +0100
18900
18901 MIPS: Add flush_dcache_range() and invalidate_dcache_range()
18902
18903 This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
18904 Those functions are needed for the upcoming dcache support for the USB
18905 EHCI driver. I chose this API because those cache handling functions are
18906 already present in the PPC architecture.
18907
18908 Signed-off-by: Stefan Roese <sr@denx.de>
18909 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18910
18911 commit de832a99414ff06a4b2cdc9f5280b387da039834
18912 Author: Stefan Roese <sr@denx.de>
18913 Date: Mon Jan 26 10:05:20 2009 +0100
18914
18915 nand_spl: Fix compile problem with board_nand_init() prototype
18916
18917 This patch removes the now obsolete and additionally wrongly defined
18918 board_nand_init() prototype from nand_spl/nand_boot.c.
18919
18920 Signed-off-by: Stefan Roese <sr@denx.de>
18921 Signed-off-by: Scott Wood <scottwood@freescale.com>
18922
18923 commit e8eac437189430d8e04a5d254ed92c58bc534a79
18924 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
18925 Date: Wed Jan 14 08:44:26 2009 -0500
18926
18927 CFI: Add geometry reversal for STMicro M29W320ET
18928
18929 Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
18930
18931 Modeled after flash_fixup_amd, this patch handles the geometry reversal
18932 or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
18933 Since I cannot test all STM's chips, the detection is implemented as
18934 narrow as possible for now.
18935
18936 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
18937 Signed-off-by: Stefan Roese <sr@denx.de>
18938
18939 commit 0f8e851e897b535959a0781171910cd97f33c30c
18940 Author: Jens Gehrlein <sew_s@tqs.de>
18941 Date: Tue Dec 16 17:25:55 2008 +0100
18942
18943 CFI: increase performance of function find_sector()
18944
18945 Tested on TQM5200S-BD with Samsung K8P2815UQB
18946
18947 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
18948 Signed-off-by: Stefan Roese <sr@denx.de>
18949
18950 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
18951 Author: Jens Gehrlein <sew_s@tqs.de>
18952 Date: Tue Dec 16 17:25:54 2008 +0100
18953
18954 CFI: avoid redundant function call in single word programming mode
18955
18956 The function find_sector() doesn't need to be called twice in
18957 the case of AMD command set.
18958 Tested on TQM5200S-BD with Samsung K8P2815UQB.
18959
18960 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
18961 Signed-off-by: Stefan Roese <sr@denx.de>
18962
18963 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
18964 Author: Stefan Roese <sr@denx.de>
18965 Date: Mon Jan 26 10:15:23 2009 +0100
18966
18967 ppc4xx: Remove compilation warning in gdppc440etc.c
18968
18969 Signed-off-by: Stefan Roese <sr@denx.de>
18970
18971 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
18972 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18973 Date: Fri Jan 2 12:19:47 2009 +0100
18974
18975 ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
18976
18977 Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
18978 Either they define or undef it. Because it's not used in any source
18979 files this patch removes any references to it.
18980
18981 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18982 Signed-off-by: Stefan Roese <sr@denx.de>
18983
18984 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
18985 Author: Dirk Eibach <eibach@gdsys.de>
18986 Date: Tue Dec 9 13:12:40 2008 +0100
18987
18988 ppc4xx: Add GDsys PowerPC 440 ETX board support.
18989
18990 Board support for the Guntermann & Drunck PowerPC 440 ETX module.
18991 Based on the AMCC Yosemite board support by Stefan Roese.
18992
18993 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
18994 Signed-off-by: Stefan Roese <sr@denx.de>
18995
18996 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
18997 Author: Dirk Eibach <eibach@gdsys.de>
18998 Date: Tue Dec 9 11:00:07 2008 +0100
18999
19000 ppc4xx: Improve DDR autodetect
19001
19002 Added support for a second memory bank to DDR autodetection for 440
19003 platforms.
19004 Made hardcoded values configurable.
19005
19006 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
19007 Signed-off-by: Stefan Roese <sr@denx.de>
19008
19009 commit 71a040f4f556cca4d30f06805d82e717b3ef1020
19010 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19011 Date: Fri Nov 21 12:06:26 2008 +0900
19012
19013 sh: sh7763rdp: Update sh7763rdp config
19014
19015 Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
19016
19017 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19018 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19019
19020 commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
19021 Author: Gary Jennejohn <garyj@denx.de>
19022 Date: Thu Nov 20 12:28:38 2008 +0100
19023
19024 mgcoge make ether_scc.c work with CONFIG_NET_MULTI
19025
19026 This change is needed for mgcoge because it uses two ethernet drivers.
19027
19028 Add a check for the presence of the PIGGY board on mgcoge. Without this
19029 board networking cannot work and the initialization must be aborted.
19030
19031 Only allocate rtx once to prevent DPRAM exhaustion.
19032
19033 Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
19034 soon) in eth.c.
19035
19036 Signed-off-by: Gary Jennejohn <garyj@denx.de>
19037 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19038
19039 commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
19040 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19041 Date: Fri Nov 21 12:04:18 2008 +0900
19042
19043 sh: sh_eth: Change new network API
19044
19045 sh_eth used old network API. This patch changed new API.
19046
19047 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19048 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19049
19050 commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
19051 Author: Stefan Roese <sr@denx.de>
19052 Date: Wed Nov 12 13:31:02 2008 +0100
19053
19054 net: smc911x: Make register read/write functions weak
19055
19056 This patch changes the reg_read/_write to smc911x_reg_read/_write
19057 and defines then as weak so that they can be overridden by board
19058 specific version.
19059
19060 This will be used by the upcoming VCTH board support.
19061
19062 Signed-off-by: Stefan Roese <sr@denx.de>
19063 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19064
19065 commit 8b69b563039989885969d24465c56f8ac4c07c4c
19066 Author: Heiko Schocher <hs@denx.de>
19067 Date: Thu Nov 20 09:57:14 2008 +0100
19068
19069 powerpc: net: support for the SMSC LAN8700 PHY
19070
19071 Signed-off-by: Heiko Schocher <hs@denx.de>
19072 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19073
19074 commit d5254f149da9e6cd649d887b042ce577ef3ba78d
19075 Author: Alessandro Rubini <rubini@unipv.it>
19076 Date: Sat Jan 24 18:10:37 2009 +0100
19077
19078 Initial support for Nomadik 8815 development board
19079
19080 The NMDK8815 board is distributed by ST Microelectornics.
19081 Other (proprietary) code must be run to unlock the CPU before
19082 U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
19083
19084 This is the initial port, with basic infrastructure and
19085 a working serial port.
19086
19087 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
19088 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
19089 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19090
19091 commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
19092 Author: Dirk Behme <dirk.behme@googlemail.com>
19093 Date: Sun Dec 14 09:47:18 2008 +0100
19094
19095 OMAP3: Add I2C support
19096
19097 Add I2C support.
19098
19099 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
19100
19101 commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
19102 Author: Dirk Behme <dirk.behme@googlemail.com>
19103 Date: Sun Dec 14 09:47:17 2008 +0100
19104
19105 OMAP3: Add MMC support
19106
19107 Add MMC support.
19108
19109 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
19110
19111 commit 12201a13547ec22ddcdae278e74465e54a3be60c
19112 Author: Dirk Behme <dirk.behme@googlemail.com>
19113 Date: Sun Dec 14 09:47:16 2008 +0100
19114
19115 OMAP3: Add NAND support
19116
19117 Add NAND support.
19118
19119 Signed-off-by: Nishanth Menon <nm@ti.com>
19120 Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
19121 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
19122
19123 commit 91eee546737ae21d930af479530997174c342b13
19124 Author: Dirk Behme <dirk.behme@googlemail.com>
19125 Date: Sun Dec 14 09:47:15 2008 +0100
19126
19127 OMAP3: Add common board, interrupt and system info
19128
19129 Add common board, interrupt and system info code.
19130
19131 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
19132
19133 commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
19134 Author: Dirk Behme <dirk.behme@googlemail.com>
19135 Date: Sun Dec 14 09:47:14 2008 +0100
19136
19137 OMAP3: Add common clock, memory and low level code
19138
19139 Add common clock, memory and low level code
19140
19141 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
19142
19143 commit 0b02b184003e6a5023e05d5f31de54db279b1431
19144 Author: Dirk Behme <dirk.behme@googlemail.com>
19145 Date: Sun Dec 14 09:47:13 2008 +0100
19146
19147 OMAP3: Add common cpu and start code
19148
19149 Add common cpu and start code.
19150
19151 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
19152
19153 commit a8b6450546cd507d331b8fde384791d84bde5651
19154 Author: Dirk Behme <dirk.behme@googlemail.com>
19155 Date: Sun Dec 14 09:47:12 2008 +0100
19156
19157 OMAP3: Add OMAP3, memory and function prototype headers
19158
19159 Add OMAP3, memory and function prototype header files for OMAP3.
19160
19161 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
19162
19163 commit 2c803210a464abbac35752ca1c737514360b4c32
19164 Author: Dirk Behme <dirk.behme@googlemail.com>
19165 Date: Sun Dec 14 09:47:11 2008 +0100
19166
19167 OMAP3: Add pin mux, clock and cpu headers
19168
19169 Add pin mux, clock and cpu header files for OMAP3.
19170
19171 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
19172
19173 commit 685533646f4ff17a84ec9265cabb60af325b6e1f
19174 Author: Maxim Artamonov <scn1874@yandex.ru>
19175 Date: Wed Dec 3 05:38:17 2008 +0300
19176
19177 bugfix for i.mx31 CCM_UPCTL reg
19178
19179 Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
19180
19181 commit 24113a44ed5cd3257a0237c3961e121812fca6db
19182 Author: Mike Frysinger <vapier@gentoo.org>
19183 Date: Tue Dec 30 03:15:38 2008 -0500
19184
19185 easylogo: add optional gzip support
19186
19187 Some images can be quite large, so add an option to compress the
19188 image data with gzip in the U-Boot image. Then at runtime, the
19189 board can decompress it with the normal zlib functions.
19190
19191 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19192
19193 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
19194 Author: Bryan Wu <bryan.wu@analog.com>
19195 Date: Fri Jan 2 20:47:45 2009 -0500
19196
19197 fat: fix unaligned errors
19198
19199 A couple of buffers in the fat code are declared as an array of bytes.
19200 But it is then cast up to a structure with 16bit and 32bit members.
19201 Since GCC assumes structure alignment here, we have to force the
19202 buffers to be aligned according to the structure usage.
19203
19204 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
19205 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19206
19207 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
19208 Author: Brad Bozarth <bflinux@yumbrad.com>
19209 Date: Thu Jan 1 22:45:47 2009 -0500
19210
19211 spi flash: fix crash due to spi flash miscommunication
19212
19213 Higher spi flash layers expect to be given back a pointer that was
19214 malloced so that it can free the result, but the lower layers return
19215 a pointer that is in the middle of the malloced memory. Reorder the
19216 members of the lower spi structures so that things work out.
19217
19218 Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
19219 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19220 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19221
19222 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
19223 Author: Yuri Tikhonov <yur@emcraft.com>
19224 Date: Sat Dec 20 14:54:21 2008 +0300
19225
19226 FPU POST: fix warnings when building with 2.18 binutils
19227
19228 When compile u-boot with the 2.18 binutils the following
19229 warning messages for each object file in post/lib_ppc/fpu/ is
19230 produced at the linking stage:
19231
19232 post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
19233 ...
19234
19235 This is because of the fact that, in general, the soft-float and
19236 hard-float ABIs are incompatible; the 2.18 binutils do checking
19237 of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
19238 produce the worning like above if these are not compatible.
19239
19240 The incompatibility of ABIs is concerned only the float values:
19241 e.g. the soft-float ABI assumes the float argument passing in the
19242 pair of rX registers, and the hard-float ABI assumes passing of
19243 the float argument in the fX register. When we don't pass the float
19244 arguments between the functions compiled with different floatness,
19245 then such an application will work correctly.
19246 This is the case for the FPU POST: u-boot (compiled with soft-float)
19247 doesn't pass to (and doesn't get from) the FPU POST functions any
19248 floats; there are no functions exported from the post/lib_ppc/fpu/
19249 objects which would work with float parameters/returns too. So, we
19250 can reassure the linker not to worry about the difference in ABI
19251 attributes of linking files just by setting the 'soft-float'
19252 attribute for the objects in post/lib_ppc/fpu. And this patch does
19253 this.
19254
19255 Also, to avoid passing both soft- and hard-float options in CFLAGS
19256 when compiling the files from post/lib_ppc/fpu (which is OK, but
19257 looks rather dirty) this patch removes the soft-float string from
19258 CFLAGS in post/lib_ppc/fpu/Makefile.
19259
19260 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19261
19262 commit a7c9310457e85b4598abe5b304108edf11332e2f
19263 Author: Peter Tyser <ptyser@xes-inc.com>
19264 Date: Wed Dec 17 16:36:22 2008 -0600
19265
19266 Add support for Maxim's DS4510 I2C device
19267
19268 Initial support for the DS4510, a CPU supervisor with
19269 integrated EEPROM, SRAM, and 4 programmable non-volatile
19270 GPIO pins. The CONFIG_DS4510 define enables support
19271 for the device while the CONFIG_CMD_DS4510 define
19272 enables the ds4510 command. The additional
19273 CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
19274 CONFIG_DS4510_RST defines add additional sub-commands
19275 to the ds4510 command when defined.
19276
19277 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19278
19279 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
19280 Author: Dirk Eibach <eibach@gdsys.de>
19281 Date: Tue Dec 16 14:51:56 2008 +0100
19282
19283 common: Iteration limit for memory test.
19284
19285 The iteration limit is passed to mtest as a fourth parameter:
19286 [start [end [pattern [iterations]]]]
19287 If no fourth parameter is supplied, there is no iteration limit and the
19288 test will loop forever.
19289
19290 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
19291
19292 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
19293 Author: Stefan Roese <sr@denx.de>
19294 Date: Mon Dec 15 15:40:12 2008 +0100
19295
19296 serial: Rename driver vcth to vct to support other board variants
19297
19298 Moved driver vcth.c to vct.c to better reflect the VCT board series.
19299 This driver is now used by the VCT platforms:
19300
19301 vct_premium
19302 vct_platinum
19303 vct_platinumsvc
19304
19305 Signed-off-by: Stefan Roese <sr@denx.de>
19306
19307 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
19308 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19309 Date: Fri Dec 12 00:45:27 2008 +0900
19310
19311 nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
19312
19313 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19314
19315 commit c3284b030b1cd492b4f46c576aea01bef258599d
19316 Author: Peter Korsgaard <jacmet@sunsite.dk>
19317 Date: Wed Dec 10 16:24:16 2008 +0100
19318
19319 common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
19320
19321 Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
19322 similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
19323 !CONFIG_AUTOBOOT_KEYED case.
19324
19325 Do this by reversing the loop so we do at least one iteration before
19326 checking for timeout.
19327
19328 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
19329
19330 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
19331 Author: Niklaus Giger <niklaus.giger@netstal.com>
19332 Date: Mon Dec 8 17:24:08 2008 +0100
19333
19334 Added legacy flash ST Micro M29W040B
19335
19336 commit 626d07348e5f9f302f4ea182161a89f7362a0488
19337 Author: Graeme Russ <graeme.russ@gmail.com>
19338 Date: Mon Dec 8 20:04:51 2008 +1100
19339
19340 Fixed off-by-one errors in lib_m68k/interrupts.c
19341
19342 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19343
19344 commit a5989c42ae5e295f274a795c426c47819bbdbfda
19345 Author: Graeme Russ <graeme.russ@gmail.com>
19346 Date: Sun Dec 7 10:29:05 2008 +1100
19347
19348 Removed all references to CONFIG_SYS_RESET_GENERIC
19349
19350 Generic i386 reset - #define made redundant by weak function
19351
19352 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19353
19354 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
19355 Author: Graeme Russ <graeme.russ@gmail.com>
19356 Date: Sun Dec 7 10:29:04 2008 +1100
19357
19358 Remove #ifdef CONFIG_SC520 in source code
19359
19360 CONFIG_SC520 is now used for conditional compile
19361
19362 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19363
19364 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
19365 Author: Graeme Russ <graeme.russ@gmail.com>
19366 Date: Sun Dec 7 10:29:03 2008 +1100
19367
19368 Added MMCR reset functionality
19369
19370 Reset function specific to AMD SC520 microcontroller - Is more of a
19371 'hard reset' that the triple fault.
19372
19373 Requires CONFIG_SYS_RESET_SC520 to be defined in config
19374
19375 I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
19376 but ld requires that a object file in a library arhive MUST contain
19377 at least one function which does not override a weak function (and is
19378 called from outside the object file) in order for that object file to
19379 be extracted from the archive. This would be the only function on the
19380 new file, and hence, will never get linked in.
19381
19382 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19383
19384 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
19385 Author: Graeme Russ <graeme.russ@gmail.com>
19386 Date: Sun Dec 7 10:29:02 2008 +1100
19387
19388 Moved generic (triple fault) reset code
19389
19390 Moved from interrupts.c to cpu.c and made into a weak function to
19391 allow vendor specific override
19392
19393 Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
19394 added to the vendor specific code without the need to remember to
19395 #undef usage of the generic method and if you forget to include your
19396 custom reset method, you will always get the default.
19397
19398 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19399
19400 commit 9933d609020c297788f53f334c8465fa7a99b10c
19401 Author: Graeme Russ <graeme.russ@gmail.com>
19402 Date: Sun Dec 7 10:29:01 2008 +1100
19403
19404 Moved definition of set_vector() to new header file
19405
19406 This allows for future tidy ups and functionality that will require
19407 set_vector ()
19408
19409 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19410
19411 commit 407976185e0dda2c90e89027121a1071b9c77bfb
19412 Author: Graeme Russ <graeme.russ@gmail.com>
19413 Date: Sun Dec 7 10:29:00 2008 +1100
19414
19415 Moved sc520 specific code into new cpu/i386/sc520 folder
19416
19417 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19418 Signed-off-by: Wolfgang Denk <wd@denx.de>
19419
19420 commit 85ffbbd51914925a542d8528be7f072e5ab02157
19421 Author: Graeme Russ <graeme.russ@gmail.com>
19422 Date: Sun Dec 7 10:28:58 2008 +1100
19423
19424 Renamed cpu/i386/reset.S to resetvec.S
19425
19426 Brings i386 in line with other CPUs with a reset vector and frees up reset.c
19427 for CPU reset functions
19428
19429 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19430
19431 commit a3f4c123f569474e80ea012b8db0de46afdb6443
19432 Author: Wolfgang Denk <wd@denx.de>
19433 Date: Sat Jan 24 01:01:49 2009 +0100
19434
19435 Makefile: keep lists sorted.
19436
19437 Signed-off-by: Wolfgang Denk <wd@denx.de>
19438
19439 commit c620c01e96814558470698ed5cab1bf2f504d1b5
19440 Author: Graeme Russ <graeme.russ@gmail.com>
19441 Date: Sun Dec 7 10:28:57 2008 +1100
19442
19443 Added initial eNET board support
19444
19445 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19446
19447 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
19448 Author: Gary Jennejohn <garyj@denx.de>
19449 Date: Thu Nov 20 11:37:26 2008 +0100
19450
19451 POWERPC 82xx: add the SCC as an HDLC controller
19452
19453 Right now this is only used by keymile.
19454
19455 Signed-off-by: Gary Jennejohn <garyj@denx.de>
19456
19457 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
19458 Author: Heiko Schocher <hs@denx.de>
19459 Date: Thu Nov 20 09:59:09 2008 +0100
19460
19461 powerpc, keymile boards: extract identical config options
19462
19463 This patch extracts the identical config options for the
19464 keymile boards mgcoge, mgsuvd and kmeter1 in a new
19465 common config file keymile-common.h.
19466
19467 Signed-off-by: Heiko Schocher <hs@denx.de>
19468
19469 commit 210c8c00aad3328145204adab434bb7d70b06b75
19470 Author: Heiko Schocher <hs@denx.de>
19471 Date: Fri Nov 21 08:29:40 2008 +0100
19472
19473 powerpc: keymile: Add a check for the PIGGY debug board
19474
19475 Check the presence of the PIGGY on the keymile boards mgcoge,
19476 mgsuvd and kmeter1. If the PIGGY is not present, dont register
19477 this Ethernet device.
19478
19479 Signed-off-by: Heiko Schocher <hs@denx.de>
19480 Acked-by: Ben Warren <biggerbadderben@gmail.com>
19481
19482 commit de0443614af4d16675ab436665aeb11ddc9f7214
19483 Author: Heiko Schocher <hs@denx.de>
19484 Date: Thu Nov 20 09:57:47 2008 +0100
19485
19486 powerpc: 83xx: add support for the kmeter1 board
19487
19488 This patch adds support for the kmeter1 board from Keymile,
19489 based on a Freescale MPC8360 CPU.
19490
19491 - serial console on UART 1
19492 - 256 MB DDR2 RAM
19493 - 64 MB NOR Flash
19494 - Ethernet RMII Mode over UCC4
19495 - PHY SMSC LAN8700
19496
19497 Signed-off-by: Heiko Schocher <hs@denx.de>
19498
19499 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
19500 Author: Sergei Poselenov <sposelenov@emcraft.com>
19501 Date: Tue Nov 4 13:51:18 2008 +0100
19502
19503 Add a do_div() wrapper macro, lldiv().
19504
19505 Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
19506 the dividend and returns the result of division, so it is useful
19507 in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
19508
19509 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19510
19511 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
19512 Author: Kumar Gala <galak@kernel.crashing.org>
19513 Date: Fri Jan 23 14:22:14 2009 -0600
19514
19515 85xx: Add a 36-bit physical configuration for MPC8572DS
19516
19517 We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
19518 to allow for larger memory sizes.
19519
19520 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19521
19522 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
19523 Author: Kumar Gala <galak@kernel.crashing.org>
19524 Date: Fri Jan 23 14:22:13 2009 -0600
19525
19526 85xx: Handle eLBC difference w/36-bit physical
19527
19528 The eLBC only handles 32-bit physical address in systems with 36-bit
19529 physical. The previos generation of LBC handled 34-bit physical
19530 address in 36-bit systems. Added a new CONFIG option to convey
19531 the difference between the LBC and eLBC.
19532
19533 Also added defines for XAM bits used in LBC for the extended 34-bit
19534 support.
19535
19536 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19537
19538 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
19539 Author: Kumar Gala <galak@kernel.crashing.org>
19540 Date: Fri Jan 23 14:22:12 2009 -0600
19541
19542 85xx: Use BR_ADDR macro for NAND chipselects
19543
19544 Use the new BR_ADDR macro to properly setup the address field of the
19545 localbus chipselects used by NAND.
19546
19547 This allows us to deal with 36-bit phys on these boards in the future.
19548
19549 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19550
19551 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
19552 Author: Haiying Wang <Haiying.Wang@freescale.com>
19553 Date: Thu Jan 15 11:58:35 2009 -0500
19554
19555 Add secondary CPUs processor frequency for e500 core
19556
19557 This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
19558 and prints each CPU's frequency separately. It also fixes up each CPU's
19559 frequency in "clock-frequency" of fdt blob.
19560
19561 Signed-off-by: James Yang <James.Yang@freescale.com>
19562 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
19563
19564 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
19565 Author: Dave Liu <daveliu@freescale.com>
19566 Date: Fri Nov 21 16:31:53 2008 +0800
19567
19568 85xx: enable the auto self refresh for wake up ARP
19569
19570 The wake up ARP feature need use the memory to process
19571 wake up packet, we enable auto self refresh to support it.
19572
19573 Signed-off-by: Dave Liu <daveliu@freescale.com>
19574 Acked-by: Andy Fleming <afleming@freescale.com>
19575
19576 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
19577 Author: Dave Liu <daveliu@freescale.com>
19578 Date: Fri Nov 21 16:31:43 2008 +0800
19579
19580 fsl-ddr: use the 1T timing as default configuration
19581
19582 For light loaded system, we use the 1T timing to gain better
19583 memory performance, but for some heavily loaded system,
19584 you have to add the 2T timing options to board files.
19585
19586 Signed-off-by: Dave Liu <daveliu@freescale.com>
19587 Acked-by: Andy Fleming <afleming@freescale.com>
19588
19589 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
19590 Author: Dave Liu <daveliu@freescale.com>
19591 Date: Fri Nov 21 16:31:35 2008 +0800
19592
19593 fsl-ddr: make the self refresh idle threshold configurable
19594
19595 Some 85xx processors have the advanced power management feature,
19596 such as wake up ARP, that needs enable the automatic self refresh.
19597
19598 If the DDR controller pass the SR_IT (self refresh idle threshold)
19599 idle cycles, it will automatically enter self refresh. However,
19600 anytime one transaction is issued to the DDR controller, it will
19601 reset the counter and exit self refresh state.
19602
19603 Signed-off-by: Dave Liu <daveliu@freescale.com>
19604 Acked-by: Andy Fleming <afleming@freescale.com>
19605
19606 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
19607 Author: Dave Liu <daveliu@freescale.com>
19608 Date: Fri Nov 21 16:31:29 2008 +0800
19609
19610 fsl-ddr: clean up the ddr code for DDR3 controller
19611
19612 - The DDR3 controller is expanding the bits for timing config
19613 - Add the DDR3 32-bit bus mode support
19614
19615 Signed-off-by: Dave Liu <daveliu@freescale.com>
19616 Acked-by: Andy Fleming <afleming@freescale.com>
19617
19618 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
19619 Author: Dave Liu <daveliu@freescale.com>
19620 Date: Fri Nov 21 16:31:22 2008 +0800
19621
19622 fsl-ddr: update the bit mask for DDR3 controller
19623
19624 According to the latest 8572 UM, the DDR3 controller
19625 is expanding the bit mask, and we use the extend ACTTOPRE
19626 mode when tRAS more than 19 MCLK.
19627
19628 Signed-off-by: Dave Liu <daveliu@freescale.com>
19629
19630 commit aca5f018a8386b85469482ed9867e3e29a2437d0
19631 Author: Kumar Gala <galak@kernel.crashing.org>
19632 Date: Tue Dec 2 16:08:40 2008 -0600
19633
19634 85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
19635
19636 Introduce a new define to seperate out the virtual address that PCI
19637 IO space is at from the physical address. In most situations these are
19638 mapped 1:1. However any code accessing the bus should use VIRT.
19639
19640 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19641 Acked-by: Andy Fleming <afleming@freescale.com>
19642
19643 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
19644 Author: Kumar Gala <galak@kernel.crashing.org>
19645 Date: Tue Dec 2 16:08:39 2008 -0600
19646
19647 85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
19648
19649 Introduce a new define to seperate out the virtual address that PCI
19650 memory is at from the physical address. In most situations these are
19651 mapped 1:1. However any code accessing the bus should use VIRT.
19652
19653 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19654 Acked-by: Andy Fleming <afleming@freescale.com>
19655
19656 commit a6e04c344ad1eefd47a75484441b385da815b8df
19657 Author: Kumar Gala <galak@kernel.crashing.org>
19658 Date: Tue Dec 2 16:08:38 2008 -0600
19659
19660 85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
19661
19662 Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
19663 of TLBs. This is what we should have always been using from the start.
19664
19665 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19666 Acked-by: Andy Fleming <afleming@freescale.com>
19667
19668 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
19669 Author: Kumar Gala <galak@kernel.crashing.org>
19670 Date: Tue Dec 2 16:08:37 2008 -0600
19671
19672 85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
19673
19674 Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
19675 of _IO_BASE so we are more explicit.
19676
19677 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19678
19679 commit 10795f42cb94e71bcb262b615084f69dd886399a
19680 Author: Kumar Gala <galak@kernel.crashing.org>
19681 Date: Tue Dec 2 16:08:36 2008 -0600
19682
19683 85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
19684
19685 Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
19686 of _MEM_BASE so we are more explicit.
19687
19688 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19689 Acked-by: Andy Fleming <afleming@freescale.com>
19690
19691 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
19692 Author: Kumar Gala <galak@kernel.crashing.org>
19693 Date: Tue Dec 2 14:19:34 2008 -0600
19694
19695 85xx: separate FLASH BASE virtual from physical address
19696
19697 Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
19698 maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
19699
19700 This allows us to deal with 36-bit phys on these boards in the future.
19701
19702 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19703 Acked-by: Andy Fleming <afleming@freescale.com>
19704
19705 commit 52b565f5ad23b682489055b187767d8bf1c2e444
19706 Author: Kumar Gala <galak@kernel.crashing.org>
19707 Date: Tue Dec 2 14:19:33 2008 -0600
19708
19709 85xx: separate PIXIS virtual from physical address
19710
19711 Added a PIXIS_BASE_PHYS for use as the physical address and maintain
19712 PIXIS_BASE as the virtual address of the PIXIS fpga registers.
19713
19714 This allows us to deal with 36-bit phys on these boards in the future.
19715
19716 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19717 Acked-by: Andy Fleming <afleming@freescale.com>
19718
19719 commit 30837e5b21d5a742983581ab9ee3fac085311d19
19720 Author: Haiying Wang <Haiying.Wang@freescale.com>
19721 Date: Tue Nov 11 08:52:09 2008 -0500
19722
19723 Add README file for MPC8572DS board
19724
19725 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
19726 Acked-by: Andy Fleming <afleming@freescale.com>
19727
19728 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
19729 Author: Mike Frysinger <vapier@gentoo.org>
19730 Date: Mon Oct 20 16:15:04 2008 -0400
19731
19732 Blackfin: use common strmhz() in system output
19733
19734 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19735
19736 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
19737 Author: Ron Madrid <ron_madrid@sbcglobal.net>
19738 Date: Thu Jan 22 15:05:24 2009 -0800
19739
19740 mpc83xx: New board support for SIMPC8313
19741
19742 This patch will create a new board, SIMPC8313, from Sheldon Instruments. This
19743 board boots from NAND devices and is configureable for either large or small
19744 page devices. The board supports non-soldered DDR2, one ethernet port, a
19745 Marvell 88E1118 PHY, and PCI host support. The board also has a FPGA connected
19746 to the eLBC providing glue logic to a TMS320C67xx DSP.
19747
19748 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
19749 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19750
19751 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
19752 Author: Mike Frysinger <vapier@gentoo.org>
19753 Date: Sun Jan 18 19:46:06 2009 -0500
19754
19755 nand: fixup printf modifiers to match types used
19756
19757 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19758 Signed-off-by: Scott Wood <scottwood@freescale.com>
19759
19760 commit 389e6620e2271096df3316917528003627db4021
19761 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
19762 Date: Tue Jan 20 16:57:55 2009 +0100
19763
19764 nand read.jffs2 (nand_legacy) in common/cmd_nand.c
19765
19766 Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
19767 With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
19768 "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
19769 tested before ".jffs2s" and only the first two characters are compared.
19770
19771 Correction:
19772 Test for ".jffs2s" first and compare the first 7 characters.
19773
19774 Signed-off-by: Scott Wood <scottwood@freescale.com>
19775
19776 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
19777 Author: Wolfgang Grandegger <wg@grandegger.com>
19778 Date: Fri Jan 16 18:55:54 2009 +0100
19779
19780 NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
19781
19782 This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
19783 changes the default from 8 to 1 for the legacy and the new MTD
19784 NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
19785 in the board config files because none of the boards use multi
19786 chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
19787 define
19788
19789 #define NAND_MAX_CHIPS CONFIG_SYS_MAX_NAND_DEVICE
19790
19791 but that's bogus and did not work anyhow.
19792
19793 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
19794 Signed-off-by: Scott Wood <scottwood@freescale.com>
19795
19796 commit c70564e6b1bd08f3230182392238907f3531a87e
19797 Author: Dave Liu <daveliu@freescale.com>
19798 Date: Tue Dec 2 11:48:51 2008 +0800
19799
19800 NAND: Fix cache and memory inconsistency issue
19801
19802 We load the secondary stage u-boot image from NAND to
19803 system memory by nand_load, but we did not flush d-cache
19804 to memory, nor invalidate i-cache before we jump to RAM.
19805 When the system has cache enabled and the TLB/page attribute
19806 of system memory is cacheable, it will cause issues.
19807
19808 - 83xx family is using the d-cache lock, so all of d-cache
19809 access is cache-inhibited. so you can't see the issue.
19810 - 85xx family is using d-cache, i-cache enable, partial
19811 cache lock. you will see the issue.
19812
19813 This patch fixes the cache issue.
19814
19815 Signed-off-by: Dave Liu <daveliu@freescale.com>
19816 Signed-off-by: Scott Wood <scottwood@freescale.com>
19817
19818 commit 50657c273278f74378e1ac39b41d612b92fdffa0
19819 Author: Nishanth Menon <menon.nishanth@gmail.com>
19820 Date: Sat Dec 13 09:43:06 2008 -0600
19821
19822 NAND: Enable nand lock, unlock feature
19823
19824 Enable nand lock, unlock and status of lock feature.
19825 Not every device and platform requires this, hence,
19826 it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
19827
19828 Nand unlock and status operate on block boundary instead
19829 of page boundary. Details in:
19830 http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
19831
19832 Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
19833 Includes preliminary suggestions from Scott Wood
19834
19835 Signed-off-by: Nishanth Menon <nm@ti.com>
19836 Signed-off-by: Scott Wood <scottwood@freescale.com>
19837
19838 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
19839 Author: Mike Frysinger <vapier@gentoo.org>
19840 Date: Sat Dec 6 02:40:55 2008 -0500
19841
19842 NAND: move board_nand_init to nand.h
19843
19844 Rather than putting the function prototype for board_nand_init() in the one
19845 place where it gets called, put it into nand.h so that every place that also
19846 defines it gets the prototype. Otherwise, errors can go silently unnoticed
19847 such as using the wrong return value (void rather than int) when defining
19848 the function.
19849
19850 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19851 Signed-off-by: Scott Wood <scottwood@freescale.com>
19852
19853 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
19854 Author: Stefan Roese <sr@denx.de>
19855 Date: Tue Dec 2 11:06:47 2008 +0100
19856
19857 OneNAND: Additional sync with 2.6.27
19858
19859 - Add subpage write support
19860 - Add onenand_oob_64/32 ecclayout
19861
19862 This has been missing and without it UBI has some incompatibilies issues
19863 with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
19864 placed differently (2048 instead of 512) without this fix.
19865
19866 Signed-off-by: Stefan Roese <sr@denx.de>
19867 Signed-off-by: Scott Wood <scottwood@freescale.com>
19868
19869 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
19870 Author: Kyungmin Park <kmpark@infradead.org>
19871 Date: Thu Nov 13 15:14:33 2008 +0900
19872
19873 Add markbad function
19874
19875 Add missing markbad function
19876 If not, it's hang when it entered the mtd->mark_bad().
19877
19878 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
19879
19880 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
19881 Author: Stefan Roese <sr@denx.de>
19882 Date: Wed Nov 12 13:47:24 2008 +0100
19883
19884 OneNAND: Bad block aware read/write command support
19885
19886 Update OneNAND command to support bad block awareness.
19887 Also change the OneNAND command style to better match the
19888 NAND version.
19889
19890 Signed-off-by: Stefan Roese <sr@denx.de>
19891 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
19892
19893 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
19894 Author: Stefan Roese <sr@denx.de>
19895 Date: Tue Nov 11 10:29:09 2008 +0100
19896
19897 OneNAND: Save version_id in onenand_chip struct
19898
19899 The version (ver_id) was not stored in the onenand_chip structure and
19900 because of this the continuous locking scheme could be enabled on some
19901 chips.
19902
19903 Signed-off-by: Stefan Roese <sr@denx.de>
19904
19905 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
19906 Author: Stefan Roese <sr@denx.de>
19907 Date: Tue Nov 11 10:28:53 2008 +0100
19908
19909 OneNAND: Fix compiler warnings
19910
19911 Signed-off-by: Stefan Roese <sr@denx.de>
19912
19913 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
19914 Author: Dave Liu <daveliu@freescale.com>
19915 Date: Tue Nov 4 14:55:06 2008 +0800
19916
19917 mpc83xx: enable eLBC NAND support for MPC8315ERDB board
19918
19919 Signed-off-by: Dave Liu <daveliu@freescale.com>
19920
19921 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
19922 Author: Kyungmin Park <kmpark@infradead.org>
19923 Date: Tue Nov 4 09:24:07 2008 +0900
19924
19925 Sync with 2.6.27
19926
19927 Sync with OneNAND kernel codes
19928
19929 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
19930
19931 commit e7f325be9edeb84bb457301776bbac1f7257dafc
19932 Author: Michal Simek <monstr@monstr.eu>
19933 Date: Mon Jan 5 13:35:31 2009 +0100
19934
19935 microblaze: Use cache functions (especially cache status)
19936 in systems which are configured without flash
19937
19938 commit e9b737deb2c30125362d20e24170617476026e94
19939 Author: Michal Simek <monstr@monstr.eu>
19940 Date: Mon Jan 5 13:29:32 2009 +0100
19941
19942 microblaze: Add cache flush
19943
19944 commit b4f8dda35bfad447b4106828232705b2e878d168
19945 Author: Michal Simek <monstr@monstr.eu>
19946 Date: Mon Jan 5 13:28:40 2009 +0100
19947
19948 microblaze: Add bootup messages to board.c
19949
19950 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
19951 Author: Michal Simek <monstr@monstr.eu>
19952 Date: Fri Dec 19 13:25:55 2008 +0100
19953
19954 microblaze: Change microblaze-generic config file
19955
19956 Signed-off-by: Michal Simek <monstr@monstr.eu>
19957
19958 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
19959 Author: Michal Simek <monstr@monstr.eu>
19960 Date: Fri Dec 19 13:14:05 2008 +0100
19961
19962 microblaze: Rename ml401 to microblaze-generic
19963
19964 Signed-off-by: Michal Simek <monstr@monstr.eu>
19965
19966 commit 6677876181cc8772bca8a372479a500d160f3993
19967 Author: Scott Wood <scottwood@freescale.com>
19968 Date: Tue Jan 20 11:56:11 2009 -0600
19969
19970 83xx: Use the proper sequence for updating IMMR.
19971
19972 This ensures that subsequent accesses properly hit the new window.
19973
19974 The dcbi during the NAND loop was accidentally working around this;
19975 it's no longer necessary, as the cache is not enabled.
19976
19977 Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
19978 Signed-off-by: Scott Wood <scottwood@freescale.com>
19979 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19980
19981 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
19982 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
19983 Date: Thu Jan 8 04:26:19 2009 +0300
19984
19985 mpc83xx: Add PCI-E support for MPC837XEMDS boards
19986
19987 MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
19988 provides two PCI-E (x2) ports. Though, only one port can be used in x2
19989 mode. Two ports can function simultaneously in x1 mode.
19990
19991 PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
19992
19993 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
19994 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19995
19996 commit 8f11e34b31a7be124a3239653f33af9510502045
19997 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
19998 Date: Thu Jan 8 04:26:17 2009 +0300
19999
20000 mpc83xx: Add PCI-E support for MPC8315ERDB boards
20001
20002 MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
20003 support them.
20004
20005 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20006 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20007
20008 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
20009 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20010 Date: Thu Jan 8 04:26:12 2009 +0300
20011
20012 mpc83xx: Add support for MPC83xx PCI-E controllers
20013
20014 This patch adds support for MPC83xx PCI-E controllers in Root Complex
20015 mode.
20016
20017 The patch is based on Tony Li and Dave Liu work[1].
20018
20019 Though unlike the original patch, by default we don't register PCI-E
20020 buses for use in U-Boot, we only configure the controllers for future
20021 use in other OSes (Linux). This is done because we don't have enough
20022 of spare BATs to map all the PCI-E regions.
20023
20024 To actually use PCI-E in U-Boot, users should explicitly define
20025 CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
20026 only then U-Boot will able to access PCI-E, but at the cost of disabled
20027 address translation.
20028
20029 [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
20030
20031 Signed-off-by: Tony Li <tony.li@freescale.com>
20032 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20033 Acked-by: Dave Liu <daveliu@freescale.com>
20034 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20035
20036 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
20037 Author: Ira Snyder <iws@ovro.caltech.edu>
20038 Date: Mon Jan 12 13:33:17 2009 -0800
20039
20040 MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
20041
20042 When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
20043 not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
20044 "Clocking in PCI Agent Mode".
20045
20046 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
20047 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20048
20049 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
20050 Author: Ira Snyder <iws@ovro.caltech.edu>
20051 Date: Mon Jan 12 13:32:26 2009 -0800
20052
20053 83xx: PCI agent mode fixes for multi-board systems
20054
20055 When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
20056 the boards will lock up the PCI bus by scanning against each other.
20057
20058 The boards lock against each other by trying to access the PCI bus before
20059 clearing their configuration lock bit. Both boards end up in a loop,
20060 sending and receiving "Target Not Ready" messages forever.
20061
20062 When running in PCI agent mode, the scanning now takes place after the
20063 boards have cleared their configuration lock bit.
20064
20065 Also, add a missing declaration to the mpc83xx.h header file, fixing a
20066 build warning.
20067
20068 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
20069 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20070
20071 commit 455a46915b82896cc2070eb326d075555c2bc580
20072 Author: Ron Madrid <ron_madrid@sbcglobal.net>
20073 Date: Fri Dec 12 13:12:45 2008 -0800
20074
20075 mpc83xx: Size optimization of start.S
20076
20077 Currently there are in excess of 100 bytes located at the beginning of the image
20078 built by start.S that are not being utilized. This patch moves a few functions
20079 into this part of the image. This will create a greater number of *available*
20080 bytes that can be used by board specific code in NAND builds and will decrease
20081 the size of the assembled code in other builds.
20082
20083 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
20084 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20085
20086 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
20087 Author: Wolfgang Denk <wd@denx.de>
20088 Date: Wed Jan 21 23:08:12 2009 +0100
20089
20090 Prepare v2009.01
20091
20092 Signed-off-by: Wolfgang Denk <wd@denx.de>
20093
20094 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
20095 Author: Wolfgang Denk <wd@denx.de>
20096 Date: Sun Jan 18 21:37:48 2009 +0100
20097
20098 Prepare 2009.01-rc3
20099
20100 Update CHANGELOG
20101
20102 Signed-off-by: Wolfgang Denk <wd@denx.de>
20103
20104 commit 4cda437898f7873752f0201757cd33f12196ce87
20105 Author: Mike Frysinger <vapier@gentoo.org>
20106 Date: Sat Jan 17 13:32:42 2009 -0500
20107
20108 build system: treat all Darwin's alike
20109
20110 The x86 based version of Darwin behaves the same quirky way as the powerpc
20111 Darwin, so only check HOSTOS when setting up Darwin workarounds.
20112
20113 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20114
20115 commit c088a108c75db565e07292fd668dfa5491e85bc2
20116 Author: Peter Korsgaard <jacmet@sunsite.dk>
20117 Date: Wed Jan 14 13:52:24 2009 +0100
20118
20119 fdt_resize(): fix actualsize calculations with unaligned blobs
20120
20121 The code in fdt_resize() to extend the fdt size to end on a page boundary
20122 is wrong for fdt's not located at an address aligned on a page boundary.
20123 What's even worse, the code would make actualsize shrink rather than grow
20124 if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
20125 causing fdt_add_mem_rsv to fail.
20126
20127 Fix it by aligning end address (blob + size) to a page boundary instead.
20128 For aligned fdt's this is equivalent to what we had before.
20129
20130 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
20131
20132 commit fadad1573fb16c90025f08a2861d6047d093cba7
20133 Author: Mike Frysinger <vapier@gentoo.org>
20134 Date: Fri Jan 9 04:38:17 2009 -0500
20135
20136 ncb: use socklen_t
20137
20138 The recvfrom() function takes a socklen_t, not an int.
20139
20140 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20141
20142 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
20143 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20144 Date: Sun Jan 11 16:35:16 2009 +0100
20145
20146 sh: serial: use readx/writex accessors
20147
20148 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20149 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20150
20151 commit 9e1fa628bdb64745811cdd26c4f953846c076180
20152 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20153 Date: Sun Jan 11 16:35:15 2009 +0100
20154
20155 sh: serial: coding style cleanup
20156
20157 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20158 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20159
20160 commit c9935c992575922b7ef13eec0656ed8665d324e3
20161 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20162 Date: Sun Jan 11 17:48:56 2009 +0900
20163
20164 sh: Fix compile error on lowlevel_init file
20165
20166 lowlevel_init of SH was corrected to use the write/readXX macro.
20167 However, there was a problem that was not able to be compiled partially.
20168 This patch corrected this.
20169
20170 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20171
20172 commit a5b04d00bfeb940c62232972ce644d50b45797f9
20173 Author: Kieran Bingham <kieranbingham@gmail.com>
20174 Date: Tue Dec 30 01:16:03 2008 +0000
20175
20176 sh: Fix up rsk7203 target for out of tree build
20177
20178 Fix up rsk7203 target to build successfully using out-of-tree build.
20179
20180 Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
20181 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20182
20183 commit f7e78f3b74aae9caca2997bad865a72338326c0a
20184 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20185 Date: Sat Dec 20 19:29:49 2008 +0100
20186
20187 sh: use write{8,16,32} in all lowlevel_init
20188
20189 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20190 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20191
20192 commit e4430779623af500de1cee7892c379f07ef59813
20193 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20194 Date: Sat Dec 20 19:29:48 2008 +0100
20195
20196 sh: lowlevel_init coding style cleanup
20197
20198 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20199 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20200
20201 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
20202 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20203 Date: Sat Dec 20 15:27:45 2008 +0100
20204
20205 sh: update sh2/sh2a timer coding style
20206
20207 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20208 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20209
20210 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
20211 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20212 Date: Sat Dec 20 15:25:22 2008 +0100
20213
20214 sh: update sh timer coding style
20215
20216 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20217 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20218
20219 commit 0e3ece33801e377be67ffa29f083421ad820f28b
20220 Author: Wolfgang Denk <wd@denx.de>
20221 Date: Wed Jan 14 23:26:05 2009 +0100
20222
20223 Prepare 2009.01-rc2
20224
20225 Update CHANGELOG.
20226
20227 Signed-off-by: Wolfgang Denk <wd@denx.de>
20228
20229 commit e92c9a860e44c14513c8909ce4299e253a775eeb
20230 Author: Wolfgang Denk <wd@denx.de>
20231 Date: Wed Jan 14 22:35:30 2009 +0100
20232
20233 cpu/mpc824x/Makefile: fix warning with parallel builds
20234
20235 Parallel builds would occasionally issue this build warning:
20236
20237 ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
20238
20239 Use "ln -sf" as quick work around for the issue.
20240
20241 Signed-off-by: Wolfgang Denk <wd@denx.de>
20242
20243 commit 3ba605d4beec649438539e7df97b5fedb26592fb
20244 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20245 Date: Fri Jan 2 12:18:49 2009 +0100
20246
20247 ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
20248
20249 This patch adds esd's loadpci BSP command to CPCI4052 and
20250 CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
20251
20252 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20253 Signed-off-by: Stefan Roese <sr@denx.de>
20254
20255 commit 600fe46fb3dab7f07604f9009904f31584415114
20256 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20257 Date: Fri Jan 2 12:18:12 2009 +0100
20258
20259 ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
20260
20261 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20262 Signed-off-by: Stefan Roese <sr@denx.de>
20263
20264 commit f6a1f490d224c600a09137e58d1026d150b8e679
20265 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20266 Date: Fri Jan 2 12:17:36 2009 +0100
20267
20268 ppc4xx: Cleanup CPCI405 board code
20269
20270 This patch cleans up CPCI405 board support:
20271 - wrap long lines
20272 - unification of spaces in function calls
20273 - remove dead code
20274
20275 Use correct io accessors on peripherals.
20276
20277 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20278 Signed-off-by: Stefan Roese <sr@denx.de>
20279
20280 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
20281 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20282 Date: Fri Jan 2 12:16:35 2009 +0100
20283
20284 ppc4xx: Enable auto RS485 mode on PLU405 boards
20285
20286 This patch turns on the auto RS485 mode in the 2nd external
20287 uart on PLU405 boards. This is a special mode of the used
20288 Exar XR16C2850 uart. Because these boards only have a 485 physical
20289 layer connected it's a good idea to turn it on by default.
20290
20291 Signed-off-by: Matthias Fuchs <mf@esd.eu>
20292 Signed-off-by: Stefan Roese <sr@denx.de>
20293
20294 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
20295 Author: Haiying Wang <Haiying.Wang@freescale.com>
20296 Date: Tue Jan 13 16:29:28 2009 -0500
20297
20298 Some changes of TLB entry setting for MPC8572DS
20299
20300 - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
20301 all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
20302 can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
20303
20304 - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
20305
20306 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20307
20308 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
20309 Author: Haiying Wang <Haiying.Wang@freescale.com>
20310 Date: Tue Jan 13 16:29:22 2009 -0500
20311
20312 Change DDR tlb start entry to CONFIG param for 85xx
20313
20314 So that we can locate the DDR tlb start entry to the value other than 8. By
20315 default, it is still 8.
20316
20317 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20318
20319 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
20320 Author: Roy Zang <tie-fei.zang@freescale.com>
20321 Date: Fri Jan 9 16:02:35 2009 +0800
20322
20323 Change PCIE1&2 deciide logic on MPC8544DS board more readable
20324
20325 The IO port selection for MPC8544DS board:
20326 Port cfg_io_ports
20327 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
20328 PCIE2 0x4, 0x5, 0x6, 0x7
20329 PCIE3 0x6, 0x7
20330 This patch changes the PCIE12 and PCIE2 logic more readable.
20331 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
20332
20333 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
20334 Author: Roy Zang <tie-fei.zang@freescale.com>
20335 Date: Fri Jan 9 16:01:52 2009 +0800
20336
20337 PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
20338
20339 PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
20340 PCIE1 bit.
20341 On MPC8572DS board, PCIE refers to PCIE1.
20342 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
20343
20344 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
20345 Author: Roy Zang <tie-fei.zang@freescale.com>
20346 Date: Fri Jan 9 16:00:55 2009 +0800
20347
20348 Fix IO port selection issue on MPC8544DS and MPC8572DS boards
20349
20350 The IO port selection is not correct on MPC8572DS and MPC8544DS board.
20351 This patch fixes this issue.
20352 For MPC8572
20353 Port cfg_io_ports
20354 PCIE1 0x2, 0x3, 0x7, 0xb, 0xc, 0xf
20355 PCIE2 0x3, 0x7
20356 PCIE3 0x7
20357
20358 For MPC8544
20359 Port cfg_io_ports
20360 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
20361 PCIE2 0x4, 0x5, 0x6, 0x7
20362 PCIE3 0x6, 0x7
20363 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
20364
20365 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
20366 Author: Becky Bruce <beckyb@kernel.crashing.org>
20367 Date: Wed Dec 3 22:36:44 2008 -0600
20368
20369 mpc8610hpcd: Fix PCI mapping concepts
20370
20371 Rename _BASE to _BUS, as it's actually a PCI bus address,
20372 separate virtual and physical addresses into _VIRT and _PHYS,
20373 and use each appopriately. This makes the code easier to read
20374 and understand, and facilitates mapping changes going forward.
20375
20376 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
20377
20378 commit 79e436cad3b4a7db88408c3f05175028f30d700d
20379 Author: Becky Bruce <beckyb@kernel.crashing.org>
20380 Date: Wed Dec 3 22:36:26 2008 -0600
20381
20382 sbc8641d: Fix PCI mapping concepts
20383
20384 Rename _BASE to _BUS, as it's actually a PCI bus address,
20385 separate virtual and physical addresses into _VIRT and _PHYS,
20386 and use each appopriately. This makes the code easier to read
20387 and understand, and facilitates mapping changes going forward.
20388
20389 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
20390
20391 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
20392 Author: Wolfgang Denk <wd@denx.de>
20393 Date: Mon Jan 12 14:50:35 2009 +0100
20394
20395 MPC86xx: fix build warnings
20396
20397 Signed-off-by: Wolfgang Denk <wd@denx.de>
20398
20399 commit 032a1c934ef4dc003281f57302b6e693062c1868
20400 Author: Mike Frysinger <vapier@gentoo.org>
20401 Date: Mon Jan 5 16:09:44 2009 -0500
20402
20403 bf537-stamp/nand: fix board_nand_init prototype
20404
20405 The board_nand_init() function should return an int, not void.
20406
20407 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20408
20409 commit 687f952e4119594ab913be11c90f7f018c2a7a79
20410 Author: Mike Frysinger <vapier@gentoo.org>
20411 Date: Thu Dec 11 07:04:48 2008 -0500
20412
20413 Blackfin: drop CONFIG_SPI handling in board init
20414
20415 The eeprom SPI init functions are duplicated as the common code already
20416 executes these for us.
20417
20418 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20419
20420 commit e7e684b10d73a303902208594c7c3e7e0d753282
20421 Author: Mike Frysinger <vapier@gentoo.org>
20422 Date: Fri Oct 24 17:51:57 2008 -0400
20423
20424 Blackfin: fix out-of-tree building with ldscripts
20425
20426 Many of the Blackfin board linker scripts are preprocessed, so make sure we
20427 output the linker script into the build tree rather than the source tree.
20428
20429 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20430
20431 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
20432 Author: Mike Frysinger <vapier@gentoo.org>
20433 Date: Fri Oct 24 17:48:54 2008 -0400
20434
20435 Blackfin: fix linker scripts to work with --gc-sections
20436
20437 Make sure all .text sections get pulled in and the entry point is properly
20438 referenced so they don't get discarded when linking with --gc-sections.
20439
20440 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20441
20442 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
20443 Author: Mike Frysinger <vapier@gentoo.org>
20444 Date: Sat Oct 11 20:45:44 2008 -0400
20445
20446 Blackfin: set proper LDRFLAGS for parallel booting LDRs
20447
20448 In order to boot an LDR out of parallel flash, the ldr utility needs a few
20449 flags to tell it to generate the right header.
20450
20451 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20452
20453 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
20454 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20455 Date: Tue Jan 6 21:41:59 2009 +0100
20456
20457 at91rm9200: move define from lowlevel_init to header
20458
20459 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20460
20461 commit 8a48686fac2030287765f1970ea046bd5734b733
20462 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20463 Date: Sat Jan 3 17:22:26 2009 +0100
20464
20465 m501sk: move to the common memory setup
20466
20467 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20468
20469 commit d481c80d78f954133c035dae6c7d22de3625795d
20470 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20471 Date: Sat Jan 3 17:22:25 2009 +0100
20472
20473 at91rm9200: rename lowlevel init value to CONFIG_SYS_
20474
20475 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20476
20477 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
20478 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
20479 Date: Tue Jan 6 21:13:14 2009 +0100
20480
20481 at91: add at91sam9xeek board support
20482
20483 At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
20484 it as another entry for at91sam9260 in the Makefile.
20485
20486 Check documentation at :
20487 http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
20488
20489 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
20490 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20491
20492 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
20493 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20494 Date: Tue Jan 6 21:15:57 2009 +0100
20495
20496 fix bmp_logo.h make dependencies to allow parallel build
20497
20498 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20499
20500 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
20501 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20502 Date: Sat Jan 3 17:22:24 2009 +0100
20503
20504 at91: Fix Atmel's at91sam9 boards out of tree build
20505
20506 introduced in commit 89a7a87f084c
20507
20508 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20509
20510 commit 0668236bafaa1c11c521652a2facebc74beecbf0
20511 Author: Wolfgang Denk <wd@denx.de>
20512 Date: Tue Dec 30 22:56:11 2008 +0100
20513
20514 README: update mailing list name and hits to patch submission.
20515
20516 Signed-off-by: Wolfgang Denk <wd@denx.de>
20517
20518 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
20519 Author: Peter Tyser <ptyser@xes-inc.com>
20520 Date: Tue Dec 23 16:32:01 2008 -0600
20521
20522 85xx: Enable inbound PCI config cycles for X-ES boards cleanup
20523
20524 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20525
20526 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
20527 Author: Peter Tyser <ptyser@xes-inc.com>
20528 Date: Tue Dec 23 16:32:00 2008 -0600
20529
20530 XPedite5200 board support cleanup
20531
20532 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20533
20534 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
20535 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20536 Date: Tue Dec 2 21:58:04 2008 +0100
20537
20538 usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
20539
20540 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20541 Signed-off-by: Remy Böhmer <linux@bohmer.net>
20542
20543 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
20544 Author: Trent Piepho <tpiepho@freescale.com>
20545 Date: Wed Dec 3 15:16:37 2008 -0800
20546
20547 mpc8[56]xx: Put localbus clock in sysinfo and gd
20548
20549 Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
20550 and print it out, but don't save it.
20551
20552 This changes where its calculated and stored to be more consistent with the
20553 CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
20554
20555 The localbus frequency is added to sysinfo and calculated when sysinfo is
20556 set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
20557
20558 get_clocks() copies the frequency into the global data, as the other
20559 frequencies are, into a new field that is only enabled for MPC85xx and
20560 MPC86xx.
20561
20562 checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
20563 from sysinfo, like the other frequencies, instead of calculating it on the
20564 spot.
20565
20566 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
20567 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20568 Acked-by: Jon Loeliger <jdl@freescale.com>
20569
20570 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
20571 Author: Trent Piepho <tpiepho@freescale.com>
20572 Date: Wed Dec 3 15:16:36 2008 -0800
20573
20574 mpc86xx: Double local bus clock divider
20575
20576 The local bus clock divider should be doubled for both 8610 and 8641.
20577
20578 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
20579 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20580 Acked-by: Jon Loeliger <jdl@freescale.com>
20581
20582 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
20583 Author: Trent Piepho <tpiepho@freescale.com>
20584 Date: Wed Dec 3 15:16:35 2008 -0800
20585
20586 mpc8568: Double local bus clock divider
20587
20588 The clock divider for the MPC8568 local bus should be doubled, like the
20589 other newer MPC85xx chips.
20590
20591 Since there are now more chips with a 2x divider than a 1x, and any new
20592 85xx chips will probably be 2x, invert the sense of the #if so that it
20593 lists the 1x chips instead of the 2x ones.
20594
20595 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
20596 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20597 Acked-by: Jon Loeliger <jdl@freescale.com>
20598
20599 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
20600 Author: Dave Liu <daveliu@freescale.com>
20601 Date: Tue Dec 16 12:09:27 2008 +0800
20602
20603 85xx: Fix the boot window issue
20604
20605 If one custom board is using the 8MB flash, it is set
20606 as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
20607 The current start.S code will be broken at switch_as.
20608
20609 It is because the TLB1[15] is set as 16MB page size,
20610 EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
20611
20612 For the 8MB flash case, the EPN = 0xefxxxxxx,
20613 RPN = 0xffxxxxxx. Assume the virt address of switch_as
20614 is 0xef7ff18c, the real address of the instruction at
20615 switch_as should be 0xff7ff18c. the 0xff7ff18c is out
20616 of the range of the default 8MB boot LAW window
20617 0xff800000 - 0xffffffff.
20618
20619 So when we switch to AS1 address space at switch_as,
20620 the core can't fetch the instruction at switch_as any
20621 more. It will cause broken issue.
20622
20623 Signed-off-by: Dave Liu <daveliu@freescale.com>
20624
20625 commit 58da8890d5fbd074746037722a423de9ac408616
20626 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
20627 Date: Thu Dec 11 15:47:50 2008 -0500
20628
20629 sbc8548: use proper PHY address
20630
20631 The values given for the PHY address were wrong, so the code
20632 read no valid PHY ID, and fell through to the generic PHY
20633 support, which would work on 1000M but would not auto negotiate
20634 down to 100M or 10M.
20635
20636 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
20637
20638 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
20639 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
20640 Date: Thu Dec 11 15:47:51 2008 -0500
20641
20642 sbc8548: enable command line editing by default.
20643
20644 Lets make things a bit more user friendly. It isn't 1985 anymore.
20645
20646 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
20647
20648 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
20649 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
20650 Date: Thu Dec 11 15:47:49 2008 -0500
20651
20652 sbc8548: don't enable the 3rd and 4th eTSEC
20653
20654 These interfaces don't have usable connectors on the board, so don't
20655 bother enumerating or configuring them.
20656
20657 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
20658
20659 commit 181a3650113883728927928b3ac81ad6dade4b2c
20660 Author: Haiying Wang <Haiying.Wang@freescale.com>
20661 Date: Wed Dec 3 10:08:19 2008 -0500
20662
20663 Set IVPR to kenrel entry point in second core boot page
20664
20665 Assuming the OSes exception vectors start from the base of kernel address, and
20666 the kernel physical starting address can be relocated to an non-zero address.
20667 This patch enables the second core to have a valid IVPR for debugger before
20668 kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
20669 value for second core which runs kernel at different physical address other
20670 than 0x0.
20671
20672 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20673
20674 commit a5d212a263c58cc746481bf1fc878510533ce7d6
20675 Author: Trent Piepho <tpiepho@freescale.com>
20676 Date: Wed Dec 3 15:16:34 2008 -0800
20677
20678 mpc8xxx: LCRR[CLKDIV] is sometimes five bits
20679
20680 On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
20681 instead of four.
20682
20683 In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems. It
20684 should be safe as the fifth bit was defined as reserved and set to 0.
20685
20686 Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
20687
20688 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
20689 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20690 Acked-by: Jon Loeliger <jdl@freescale.com>
20691
20692 commit 58ec4866ed916c7e422f5107bb27b0822084728e
20693 Author: Trent Piepho <tpiepho@freescale.com>
20694 Date: Wed Dec 3 15:16:38 2008 -0800
20695
20696 mpc8[56]xx: Put localbus clock in device tree
20697
20698 Export the localbus frequency in the device tree, the same way the CPU, TB,
20699 CCB, and various other frequencies are exported in their respective device
20700 tree nodes.
20701
20702 Some localbus devices need this information to be programed correctly, so
20703 it makes sense to export it along with the other frequencies.
20704
20705 Unfortunately, when someone wrote the localbus dts bindings, they didn't
20706 bother to define what the "compatible" property should be. So it seems no
20707 one was quite sure what to put in their dts files.
20708
20709 Based on current existing dts files in the kernel source, I've used
20710 "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
20711 of the 85xx devices, and are looked for by the Linux code. The eLBC is
20712 apparently not entirely backward compatible with the pq3 LBC and so eLBC
20713 equipped platforms like 8572 won't use pq3-localbus.
20714
20715 For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
20716 and is also looked for by the Linux code. On MPC8641, I've also used
20717 "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
20718 which don't use "fsl,elbc" or any other acceptable name to match on.
20719
20720 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
20721 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20722 Acked-by: Jon Loeliger <jdl@freescale.com>
20723
20724 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
20725 Author: Kumar Gala <galak@kernel.crashing.org>
20726 Date: Tue Dec 16 14:59:22 2008 -0600
20727
20728 NAND FSL elbc: Use virt_to_phys to determine which bank is in use
20729
20730 The current code that determines which bank/chipselect is used for a
20731 given NAND instance only worked for 32-bit addresses and assumed
20732 a 1:1 mapping. This breaks in 36-bit physical configs.
20733
20734 The proper way to handle this is to use the virt_to_phys() and
20735 BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
20736 with the the virtual address the NAND code uses.
20737
20738 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20739 Acked-by: Scott Wood <scottwood@freescale.com>
20740
20741 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
20742 Author: Kumar Gala <galak@kernel.crashing.org>
20743 Date: Tue Dec 16 14:59:21 2008 -0600
20744
20745 ppc: Use addrmap in virt_to_phys and map_physmem.
20746
20747 If we have addr map support enabled use the mapping functions to
20748 implement virt_to_phys() and map_physmem().
20749
20750 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20751
20752 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
20753 Author: Kumar Gala <galak@kernel.crashing.org>
20754 Date: Tue Dec 16 14:59:20 2008 -0600
20755
20756 85xx: Add support to populate addr map based on TLB settings
20757
20758 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20759
20760 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
20761 Author: Peter Tyser <ptyser@xes-inc.com>
20762 Date: Mon Dec 1 13:47:13 2008 -0600
20763
20764 XPedite5200 board support
20765
20766 Initial support for Extreme Engineering Solutions XPedite5200 -
20767 a MPC8548-based PMC single board computer.
20768
20769 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20770
20771 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
20772 Author: Peter Tyser <ptyser@xes-inc.com>
20773 Date: Wed Oct 29 12:39:27 2008 -0500
20774
20775 85xx: Enable inbound PCI config cycles for X-ES boards
20776
20777 Update X-ES Freescale boards to allow inbound PCI configuration
20778 cycles when configured as agent/endpoint.
20779
20780 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20781
20782 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
20783 Author: Peter Tyser <ptyser@xes-inc.com>
20784 Date: Wed Dec 17 16:36:23 2008 -0600
20785
20786 XPedite5370 board support
20787
20788 Initial support for Extreme Engineering Solutions XPedite5370 -
20789 a MPC8572-based 3U VPX single board computer with a PMC/XMC
20790 site.
20791
20792 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20793
20794 commit e92739d34e2d6b6aca93b2598248210710897ce8
20795 Author: Peter Tyser <ptyser@xes-inc.com>
20796 Date: Wed Dec 17 16:36:21 2008 -0600
20797
20798 Add support for PCA953x I2C gpio devices
20799
20800 Initial support for NXP's 4 and 8 bit I2C gpio expanders
20801 (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
20802 enables support for the devices while the CONFIG_CMD_PCA953X
20803 define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
20804 define enables an 'info' sub-command which provides summary
20805 information for the given pca953x device.
20806
20807 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20808
20809 commit 7a8979591171676417ab36852d8811a8c46accd8
20810 Author: Peter Tyser <ptyser@xes-inc.com>
20811 Date: Wed Oct 29 12:39:26 2008 -0500
20812
20813 pci/fsl_pci_init: Enable inbound PCI config cycles
20814
20815 Add fsl_pci_config_unlock() function to enable a
20816 PCI/PCIe interface configured in agent/endpoint mode to
20817 respond to inbound PCI configuration cycles.
20818
20819 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20820
20821 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
20822 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20823 Date: Wed Dec 17 16:43:18 2008 +0100
20824
20825 avr32: Remove second definition of virt_to_phys()
20826
20827 The second definition introduced by 65e43a1063 conflicts with the
20828 existing one.
20829
20830 Also, convert the existing definition to use phys_addr_t. The volatile
20831 qualifier is still needed due to brain damage elsewhere.
20832
20833 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20834
20835 commit b616f2b545f73757669b37386f0b37bb61fc6797
20836 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20837 Date: Mon Sep 8 22:27:18 2008 +0200
20838
20839 MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
20840
20841 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20842 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20843
20844 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
20845 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20846 Date: Tue Dec 16 22:10:31 2008 +0100
20847
20848 MIPS: qemu_mips: update doc to use all disk and boot linux kernel
20849
20850 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20851 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20852
20853 commit 13095b2f07dacb1f863772266c1789d47a523a8a
20854 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20855 Date: Tue Dec 16 22:10:30 2008 +0100
20856
20857 MIPS: qemu_mips: move env storage just after u-boot
20858
20859 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20860 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20861
20862 commit aced78d852d0b009e8aaa1445af8cb40861ee549
20863 Author: Wolfgang Denk <wd@denx.de>
20864 Date: Tue Dec 16 23:48:27 2008 +0100
20865
20866 Prepare 2009.01-rc1
20867
20868 Signed-off-by: Wolfgang Denk <wd@denx.de>
20869
20870 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
20871 Author: Wolfgang Denk <wd@denx.de>
20872 Date: Tue Dec 16 23:13:46 2008 +0100
20873
20874 include/configs/at91cap9adk.h: fix typo.
20875
20876 Signed-off-by: Wolfgang Denk <wd@denx.de>
20877
20878 commit 45ca04f2377361593151d2d4da51f8ba4832d233
20879 Author: Wolfgang Denk <wd@denx.de>
20880 Date: Tue Dec 16 22:32:25 2008 +0100
20881
20882 board/trab/memory.c: Fix compile problems.
20883
20884 Apply changes from commit 44b4dbed to board/trab/memory.c, too.
20885
20886 Actually we'd need a major cleanup here - as it turns out,
20887 board/trab/memory.c is more or less a verbatim copy of
20888 post/drivers/memory.c ... but then, trab is EOL anyway,r
20889 so this is not worth the effort.
20890
20891 Signed-off-by: Wolfgang Denk <wd@denx.de>
20892
20893 commit ff49ea8977b56916edd5b1766d9939010e30b181
20894 Author: Scott Wood <scottwood@freescale.com>
20895 Date: Tue Dec 16 14:24:16 2008 -0600
20896
20897 NAND: Mark the BBT as scanned prior to calling scan_bbt.
20898
20899 Otherwise, recursion can occur if scan_bbt does not find a bad block
20900 table, and tries to write one, and the attempt to erase the BBT area
20901 causes a bad block check.
20902
20903 Signed-off-by: Scott Wood <scottwood@freescale.com>
20904
20905 commit 584eedab66d0828f2d571a24b10526c4e65f547b
20906 Author: Ilya Yanok <yanok@emcraft.com>
20907 Date: Thu Dec 11 05:51:57 2008 +0300
20908
20909 jffs2: include <linux/mtd/compat.h> instead of defining own min_t
20910
20911 Include <linux/mtd/compat.h> header for min_t definition instead of
20912 providing our own one. Removes warnings in case of OneNAND support
20913 enabled.
20914
20915 Although I thinks it's a bit silly to include <linux/mtd/compat.h>
20916 just for min_t...
20917
20918 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
20919 Acked-by: Stefan Roese <sr@denx.de>
20920
20921 commit b1ffecec37b57a59c139042267faac458e5324e9
20922 Author: Becky Bruce <beckyb@kernel.crashing.org>
20923 Date: Wed Dec 3 23:04:37 2008 -0600
20924
20925 powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
20926
20927 Casting a pointer to a phys_addr_t when it's an unsigned long long
20928 on a 32-bit system without first casting to a non-pointer type
20929 generates a compiler warning. Fix this.
20930
20931 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
20932
20933 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
20934 Author: Wolfgang Denk <wd@denx.de>
20935 Date: Tue Dec 16 16:22:50 2008 +0100
20936
20937 trab: make trab_fkt standalone code independent of libgcc
20938
20939 Use our own local functions in lib_arm/ instead.
20940
20941 Signed-off-by: Wolfgang Denk <wd@denx.de>
20942
20943 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
20944 Author: Wolfgang Denk <wd@denx.de>
20945 Date: Tue Dec 16 14:44:06 2008 +0100
20946
20947 post/Makefile: fix dependency problem with parallel builds
20948
20949 Parallel builds (using "make -jN") would occasionally fail with error
20950 messages like
20951 ppc_4xxFP-objdump: string.o: File format not recognized
20952 or
20953 post/libpost.a(cpu.o): In function `cpu_post_test':
20954 /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
20955 or similar. We now make sure to run the 'postdeps" step before
20956 attempting to build the specific POST libraries.
20957
20958 Signed-off-by: Wolfgang Denk <wd@denx.de>
20959
20960 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
20961 Author: Wolfgang Denk <wd@denx.de>
20962 Date: Tue Dec 16 14:41:02 2008 +0100
20963
20964 Makefile: fix dependency problem with parallel builds
20965
20966 Parallel builds (using "make -jN") would occasionally fail with error
20967 messages like
20968 include/autoconf.mk:212: *** missing separator. Stop.
20969 Line numbers and affected boards were changing. Obviously some
20970 Makefiles included autoconf.mk while it was still being written to.
20971 As a fix, we now write to a temporary file first and then rename it,
20972 so that it is really ready to use as soon as it appears.
20973
20974 Signed-off-by: Wolfgang Denk <wd@denx.de>
20975
20976 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
20977 Author: Wolfgang Denk <wd@denx.de>
20978 Date: Tue Dec 16 01:02:17 2008 +0100
20979
20980 Coding style cleanup, update CHANGELOG.
20981
20982 Signed-off-by: Wolfgang Denk <wd@denx.de>
20983
20984 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
20985 Author: Mike Frysinger <vapier@gentoo.org>
20986 Date: Thu Dec 11 18:39:08 2008 -0500
20987
20988 spi/stmicro: fix debug() display of cmd
20989
20990 The stmicro_wait_ready() func tries to show the actual opcode that was sent
20991 to the device, but instead it displays the array pointer. Fix it to pull
20992 out the opcode from the start of the array.
20993
20994 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20995
20996 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
20997 Author: Mike Frysinger <vapier@gentoo.org>
20998 Date: Thu Dec 11 06:23:37 2008 -0500
20999
21000 env_sf: support embedded environments
21001
21002 If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
21003 size is larger than the env size, then it means the env is embedded in a
21004 block. So we have to save/restore the part of the sector which is not the
21005 environment. Previously, saving the environment in SPI flash in this
21006 setup would probably brick the board as the rest of the sector tends to
21007 contain actual U-Boot data/code.
21008
21009 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21010 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21011
21012 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
21013 Author: Timur Tabi <timur@freescale.com>
21014 Date: Wed Dec 3 11:28:30 2008 -0600
21015
21016 i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
21017
21018 All implementations of the functions i2c_reg_read() and
21019 i2c_reg_write() are identical. We can save space and simplify the
21020 code by converting these functions into inlines and putting them in
21021 i2c.h.
21022
21023 Signed-off-by: Timur Tabi <timur@freescale.com>
21024 Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21025
21026 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
21027 Author: Dave Liu <daveliu@freescale.com>
21028 Date: Fri Dec 5 15:36:14 2008 +0800
21029
21030 lib_ppc: rework the flush_cache
21031
21032 - It is possible to miss flush/invalidate the last
21033 cache line, we fix it at here.
21034 - add the volatile and memory clobber.
21035
21036 They are pointed by Scott Wood.
21037
21038 Signed-off-by: Dave Liu <daveliu@freescale.com>
21039
21040 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
21041 Author: Kumar Gala <galak@kernel.crashing.org>
21042 Date: Sat Dec 13 17:20:28 2008 -0600
21043
21044 Introduce addr_map library
21045
21046 Add a library that helps in translating between virtual and physical
21047 addresses. This library can be useful as a simple means to implement
21048 map_physmem() and virt_to_phys() for platforms that need functionality
21049 beyond the simple 1:1 mapping.
21050
21051 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21052
21053 commit 65e43a10631537dcb92c302d36301a12308216c3
21054 Author: Kumar Gala <galak@kernel.crashing.org>
21055 Date: Sat Dec 13 17:20:27 2008 -0600
21056
21057 Introduce virt_to_phys()
21058
21059 virt_to_phys() returns the physical address given a virtual. In most
21060 cases this will be just the input value as the vast majority of
21061 systems run in a 1:1 mode.
21062
21063 However in systems that are not running this way it should report the
21064 physical address or ~0 if no mapping exists for the given virtual
21065 address.
21066
21067 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21068
21069 commit 45845301af3de8675c1f7bbc815c6de35452605a
21070 Author: Yuri Tikhonov <yur@emcraft.com>
21071 Date: Sun Dec 7 22:12:50 2008 +0100
21072
21073 POST Make: fix the sub-dir dependencies missing.
21074
21075 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21076
21077 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
21078 Author: Martin Michlmayr <tbm@cyrius.com>
21079 Date: Wed Aug 6 14:44:05 2008 +0300
21080
21081 Fix a typo in fw_env.config
21082
21083 Reported-by: Martin Michlmayr <tbm@cyrius.com>
21084 Signed-off-by: Wolfgang Denk <wd@denx.de>
21085
21086 commit ba490b7761c62b549c222a9723e532dc801a3899
21087 Author: Peter Tyser <ptyser@xes-inc.com>
21088 Date: Mon Dec 1 16:22:45 2008 -0600
21089
21090 Remove unused CONFIG_ADDR_STREAMING defines
21091
21092 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21093
21094 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
21095 Author: Peter Tyser <ptyser@xes-inc.com>
21096 Date: Mon Nov 24 11:54:47 2008 -0600
21097
21098 cmd_mem: Remove unused variable
21099
21100 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21101
21102 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
21103 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21104 Date: Sun Dec 14 10:29:39 2008 +0100
21105
21106 Fix new found CFG_
21107
21108 Also fix some minor typos.
21109
21110 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21111 Signed-off-by: Wolfgang Denk <wd@denx.de>
21112
21113 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
21114 Author: Sergei Poselenov <sposelenov@emcraft.com>
21115 Date: Fri Sep 19 12:07:34 2008 +0200
21116
21117 Remove compiler warning: target CPU does not support interworking
21118
21119 This warning is issued by modern ARM-EABI GCC on non-thumb targets.
21120
21121 Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
21122 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
21123
21124 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
21125 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21126 Date: Mon Nov 24 13:33:51 2008 +0100
21127
21128 Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
21129
21130 FDT support is used for both FIT style images and for architectures
21131 that can pass a fdt blob to an OS (ppc, m68k, sparc).
21132
21133 For other architectures and boards which do not pass a fdt blob to an
21134 OS but want to use the new uImage format, we just need FIT support.
21135
21136 Now we can have the 4 following configurations :
21137
21138 1) FIT only CONFIG_FIT
21139 2) fdt blob only CONFIG_OF_LIBFDT
21140 3) both CONFIG_OF_LIBFDT & CONFIG_FIT
21141 4) none none
21142
21143 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21144
21145 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
21146 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21147 Date: Wed Dec 10 15:13:32 2008 +0100
21148
21149 ppc4xx: Disable EEPROM write access on PMC440 boards
21150
21151 This patch disables EEPROM wrtie access by default on PMC440 board.
21152
21153 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21154
21155 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
21156 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21157 Date: Wed Dec 10 15:12:56 2008 +0100
21158
21159 ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
21160
21161 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21162
21163 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
21164 Author: Stefan Roese <sr@denx.de>
21165 Date: Tue Nov 18 16:36:12 2008 +0100
21166
21167 MIPS: Flush data cache upon relocation
21168
21169 This patch now adds a flush to the data cache upon relocation. The
21170 current implementation is missing this. Only a comment states that it
21171 should be done. So let's really do it now.
21172
21173 Signed-off-by: Stefan Roese <sr@denx.de>
21174 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21175
21176 commit 44174343688dba32571a34550dba08971c65fef1
21177 Author: Stefan Roese <sr@denx.de>
21178 Date: Tue Nov 18 16:36:22 2008 +0100
21179
21180 MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
21181
21182 This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
21183 enables support for boards where the lowlevel initialization is
21184 already done when U-Boot runs (e.g. via OnChip ROM).
21185
21186 This will be used in the upcoming VCTH board support.
21187
21188 Signed-off-by: Stefan Roese <sr@denx.de>
21189 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21190
21191 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
21192 Author: Stefan Roese <sr@denx.de>
21193 Date: Wed Nov 12 13:18:02 2008 +0100
21194
21195 MIPS: Add board_early_init_f() to init_sequence
21196
21197 This patch adds the board_early_init_f() call to the MIPS init
21198 sequence. A weak dummy implementation is also added which can be
21199 overridden by a board specific version.
21200
21201 This will be used by the upcoming VCTH board support.
21202
21203 Signed-off-by: Stefan Roese <sr@denx.de>
21204 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21205
21206 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
21207 Author: Stefan Roese <sr@denx.de>
21208 Date: Wed Nov 12 13:18:19 2008 +0100
21209
21210 MIPS: Add onenand_init() to board.c and move nand_init()
21211
21212 This patch adds a call to onenand_init() for OneNAND support and moves
21213 the nand_init() call to an earlier place, so that the environment can
21214 be used from NAND and OneNAND.
21215
21216 Signed-off-by: Stefan Roese <sr@denx.de>
21217 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21218
21219 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
21220 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21221 Date: Tue Dec 9 11:32:46 2008 +0900
21222
21223 sh: Update sh2/sh2a timer
21224
21225 Renesas SH2/SH2A timer broken.
21226 This patch fix timer function.
21227
21228 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21229 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21230
21231 commit a319f1496210117b73198e3d889ffffaf6825d00
21232 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21233 Date: Fri Dec 5 07:27:37 2008 +0100
21234
21235 sh: r2dplus fix register access
21236
21237 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21238 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21239
21240 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
21241 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21242 Date: Tue Dec 2 07:40:03 2008 +0100
21243
21244 sh: r2dplus/lowlevel_init: coding style fix
21245
21246 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21247 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21248
21249 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
21250 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21251 Date: Tue Nov 25 11:05:19 2008 +0900
21252
21253 sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
21254
21255 SH4 is different a value of CACHE_OC_NUM_ENTRIES and
21256 CACHE_OC_WAY_SHIFT every CPU.
21257 This patch corrects these values.
21258
21259 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21260 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21261
21262 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
21263 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21264 Date: Thu Nov 20 16:44:42 2008 +0900
21265
21266 sh: Update sh timer function
21267
21268 Change to write/readX function and fix timer problem.
21269
21270 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21271 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21272
21273 commit b81786cff476c41e332eaeb679158f6527cd67d4
21274 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21275 Date: Tue Nov 4 11:58:58 2008 +0900
21276
21277 sh: Migo-R: Update BSC value
21278
21279 A value of BSC CS4 was wrong, Fixed it.
21280
21281 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21282 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21283
21284 commit 5783758fd260a02f44566ad8f29f899565cd0403
21285 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21286 Date: Mon Nov 17 16:52:09 2008 +0900
21287
21288 sh: Update ms7722se board config
21289
21290 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21291 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21292
21293 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
21294 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21295 Date: Mon Nov 17 16:53:09 2008 +0900
21296
21297 sh: Update SuperH serial driver
21298
21299 The address of SCFSR register is wrong at SH7720/SH7721.
21300 This patch fix this.
21301
21302 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21303 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21304
21305 commit 9a1d3557dcd47365c12eeab584b822e57d994352
21306 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21307 Date: Tue Nov 11 22:20:15 2008 +0100
21308
21309 sh: fix rsk7203 and MigoR out of tree build
21310
21311 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21312 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21313
21314 commit 1951f847f0a851853871b613ad7cf21a5242226c
21315 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21316 Date: Wed Dec 10 14:41:25 2008 +0100
21317
21318 ppc4xx: Update TEXT_BASE for CPCI405 boards
21319
21320 This patch fixes building U-Boot for CPCI405 boards.
21321
21322 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21323 Signed-off-by: Stefan Roese <sr@denx.de>
21324
21325 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
21326 Author: Stefan Roese <sr@denx.de>
21327 Date: Tue Dec 9 20:08:01 2008 +0100
21328
21329 ppc4xx: Remove some features from ALPR to fit into 256k again
21330
21331 Signed-off-by: Stefan Roese <sr@denx.de>
21332
21333 commit 3b089e4f889a2902449d55e081c886ae607cae89
21334 Author: Stefan Roese <sr@denx.de>
21335 Date: Wed Dec 10 10:32:59 2008 +0100
21336
21337 UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
21338
21339 With this patch we set the type back to NONE upon failing UBI partition
21340 initialization. Otherwise further calls to the UBI subsystem would try
21341 to really access the non-existing UBI partition.
21342
21343 Thanks to Michael Lawnick for pointing this out.
21344
21345 Signed-off-by: Stefan Roese <sr@denx.de>
21346
21347 commit 817329351639a8895cd9b87b33aeff043f3d5a44
21348 Author: Stefan Roese <sr@denx.de>
21349 Date: Wed Dec 10 10:28:33 2008 +0100
21350
21351 UBI: Return -ENOMEM upon failing malloc
21352
21353 Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
21354 failing malloc().
21355
21356 Signed-off-by: Stefan Roese <sr@denx.de>
21357
21358 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
21359 Author: Ben Warren <biggerbadderben@gmail.com>
21360 Date: Tue Dec 9 23:34:15 2008 -0800
21361
21362 Fix compile error in building MBX860T.
21363
21364 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21365
21366 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
21367 Author: Michal Simek <monstr@monstr.eu>
21368 Date: Tue Nov 25 11:42:20 2008 +0100
21369
21370 microblaze: Remove XUPV2P board
21371
21372 ---
21373
21374 Microblaze platforms use generic settings and to have
21375 many platforms is confusing that's why I decided to remove this
21376 platform from U-BOOT. ml401 tree is sufficient for covering
21377 all Microblaze platforms.
21378
21379 This change will go through microblaze custodian tree.
21380
21381 commit 99ba6f353582720defff6e6e6761dc455a207d31
21382 Author: Michal Simek <monstr@monstr.eu>
21383 Date: Mon Nov 24 18:25:41 2008 +0100
21384
21385 microblaze: Remove CONFIG_LIBFDT due to error in common files
21386
21387 commit e7d591e823a991513833af7030468409e25a3b13
21388 Author: Michal Simek <monstr@monstr.eu>
21389 Date: Mon Nov 24 11:43:00 2008 +0100
21390
21391 microblaze: Fix ml401 uart16550 setting
21392
21393 Signed-off-by: Michal Simek <monstr@monstr.eu>
21394
21395 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
21396 Author: Michal Simek <monstr@monstr.eu>
21397 Date: Mon Nov 24 11:38:22 2008 +0100
21398
21399 microblaze: Set up relocation is done
21400
21401 commit bcb6dd9187d4b23c748704767bd12d20c829e996
21402 Author: Mike Frysinger <vapier@gentoo.org>
21403 Date: Tue Dec 9 23:20:31 2008 -0500
21404
21405 tools/netconsole: new script for working with netconsole over UDP
21406
21407 While the doc/README.NetConsole does have a snippet for people to
21408 create their own netcat script, it's a lot easier to make a simple
21409 dedicated script and tell people to use it.
21410
21411 Also spruce it up a bit to make it user friendly.
21412
21413 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21414
21415 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
21416 Author: Sonic Zhang <Sonic.Zhang@analog.com>
21417 Date: Tue Dec 9 23:20:18 2008 -0500
21418
21419 fs/fat: handle FAT on SATA
21420
21421 The FAT file system driver should also handle FAT on SATA devices.
21422
21423 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
21424 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21425
21426 commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
21427 Author: Ben Warren <biggerbadderben@gmail.com>
21428 Date: Tue Dec 9 23:26:31 2008 -0800
21429
21430 Fix compile error in building MBX860T.
21431 Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
21432
21433 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21434
21435 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
21436 Author: Jerry Van Baren <gvb.uboot@gmail.com>
21437 Date: Mon Nov 24 08:15:02 2008 -0500
21438
21439 libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
21440
21441 Compiling U-Boot in an old OS environment (RedHat-7.3 :-) gives the
21442 following warnings from FDT:
21443
21444 include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
21445 /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
21446
21447 Fix: Protect the definition of uintptr_t when compiling on the host
21448 system.
21449
21450 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21451
21452 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
21453 Author: Graeme Russ <graeme.russ@gmail.com>
21454 Date: Sat Nov 22 08:43:29 2008 +1100
21455
21456 Moved sc520 PCI definitions to stand-alone file
21457
21458 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
21459
21460 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
21461 Author: Graeme Russ <graeme.russ@gmail.com>
21462 Date: Sat Nov 22 08:43:21 2008 +1100
21463
21464 Fixed path to sc520 SSI include file
21465
21466 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
21467
21468 commit d4f70da544c33db3e4fce6473dea4ecca4322545
21469 Author: Graeme Russ <graeme.russ@gmail.com>
21470 Date: Fri Nov 21 06:28:05 2008 +1100
21471
21472 Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
21473
21474 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
21475
21476 commit c034075a713b60e654c64e88e87da29440f31bb4
21477 Author: Stefan Roese <sr@denx.de>
21478 Date: Wed Nov 12 13:30:10 2008 +0100
21479
21480 serial: Add vcth UART driver
21481
21482 This patch adds the UART driver for the upcoming VCTH board support.
21483
21484 Signed-off-by: Stefan Roese <sr@denx.de>
21485
21486 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
21487 Author: Ilya Yanok <yanok@emcraft.com>
21488 Date: Thu Nov 13 19:49:36 2008 +0300
21489
21490 jffs2: cache data_crc results
21491
21492 As we moved data_crc() invocation from jffs2_1pass_build_lists() to
21493 jffs2_1pass_read_inode() data_crc is going to be calculated on each
21494 inode access. This patch adds caching of data_crc() results. There
21495 is no significant improvement in speed (because of flash access
21496 caching added in previous patch I think, crc in RAM is really fast)
21497 but this patch impacts memory usage -- every b_node structure uses
21498 12 bytes instead of 8.
21499
21500 Signed-off-by: Alexey Neyman <avn@emcraft.com>
21501 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
21502
21503 commit 9b7076229ec6a958bd835ab70745f7676297ce82
21504 Author: Ilya Yanok <yanok@emcraft.com>
21505 Date: Thu Nov 13 19:49:35 2008 +0300
21506
21507 jffs2: summary support
21508
21509 This patch adds support for reading fs information from summary
21510 node instead of scanning full eraseblock.
21511
21512 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
21513
21514 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
21515 Author: Ilya Yanok <yanok@emcraft.com>
21516 Date: Thu Nov 13 19:49:34 2008 +0300
21517
21518 jffs2: add buffer to cache flash accesses
21519
21520 With this patch JFFS2 code allocates memory buffer of max_totlen size
21521 (size of the largest node, calculated during scan time) and uses it to
21522 store entire node. Speeds up loading. If malloc fails we use old ways
21523 to do things.
21524
21525 Signed-off-by: Alexey Neyman <avn@emcraft.com>
21526 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
21527
21528 commit 8a36d31f72411144ac0412ee7e1880e801acd754
21529 Author: Ilya Yanok <yanok@emcraft.com>
21530 Date: Thu Nov 13 19:49:33 2008 +0300
21531
21532 jffs2: rewrite jffs2 scanning code based on Linux one
21533
21534 Rewrites jffs2_1pass_build_lists() function in style of Linux's
21535 jffs2_scan_medium() and jffs2_scan_eraseblock().
21536 This includes:
21537 - Caching flash acceses
21538 - Smart dealing with free space
21539
21540 Signed-off-by: Alexey Neyman <avn@emcraft.com>
21541 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
21542
21543 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
21544 Author: Ilya Yanok <yanok@emcraft.com>
21545 Date: Thu Nov 13 19:49:32 2008 +0300
21546
21547 jffs2: add sector_size field to part_info structure
21548
21549 This patch adds sector_size field to part_info structure (used
21550 by new JFFS2 code).
21551
21552 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
21553
21554 commit f73846956778a7dfee83403ef9747aff77198848
21555 Author: Ilya Yanok <yanok@emcraft.com>
21556 Date: Thu Nov 13 19:49:31 2008 +0300
21557
21558 jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
21559
21560 We need to update i_version inside cycle to find really latest version
21561 inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
21562 dump_inode() instead of calling expensive jffs2_1pass_read_inode().
21563
21564 Signed-off-by: Alexey Neyman <avn@emcraft.com>
21565 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
21566
21567 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
21568 Author: Wolfgang Denk <wd@denx.de>
21569 Date: Tue Dec 9 23:13:51 2008 +0100
21570
21571 evb64260: fix "cast to pointer from integer of different size" warnings
21572
21573 Signed-off-by: Wolfgang Denk <wd@denx.de>
21574
21575 commit d2776827315c3d469b8cb4cec14d58877798daa2
21576 Author: Stefan Althoefer <stefan.althoefer@web.de>
21577 Date: Sun Dec 7 19:39:11 2008 +0100
21578
21579 USB: descriptor handling
21580
21581 Hi,
21582
21583 I found a bug when working with the u-boot USB subsystem on IXP425 processor
21584 (big endian Xscale aka ARMv5).
21585 I recognized that the second usb_endpoint_descriptor of the attached memory
21586 stick was corrupted.
21587
21588 The reason for this are the packed structures below (either u-boot and
21589 u-boot-usb):
21590
21591 --------------
21592 /* Endpoint descriptor */
21593 struct usb_endpoint_descriptor {
21594 unsigned char bLength;
21595 unsigned char bDescriptorType;
21596 unsigned char bEndpointAddress;
21597 unsigned char bmAttributes;
21598 unsigned short wMaxPacketSize;
21599 unsigned char bInterval;
21600 unsigned char bRefresh;
21601 unsigned char bSynchAddress;
21602
21603 } __attribute__ ((packed));
21604 /* Interface descriptor */
21605 struct usb_interface_descriptor {
21606 unsigned char bLength;
21607 unsigned char bDescriptorType;
21608 unsigned char bInterfaceNumber;
21609 unsigned char bAlternateSetting;
21610 unsigned char bNumEndpoints;
21611 unsigned char bInterfaceClass;
21612 unsigned char bInterfaceSubClass;
21613 unsigned char bInterfaceProtocol;
21614 unsigned char iInterface;
21615
21616 unsigned char no_of_ep;
21617 unsigned char num_altsetting;
21618 unsigned char act_altsetting;
21619 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
21620 } __attribute__ ((packed));
21621 ------------
21622
21623 As usb_endpoint_descriptor is only 7byte in length, the start of all
21624 odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
21625 of these structures also not word aligned.
21626
21627 ARMv5 Architecture however does not support non-aligned multibyte
21628 data type (see A2.8 of ARM Architecture Reference Manual).
21629
21630 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
21631 Signed-off-by: Remy Böhmer <linux@bohmer.net>
21632
21633 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
21634 Author: Kumar Gala <galak@kernel.crashing.org>
21635 Date: Tue Dec 9 10:27:33 2008 -0600
21636
21637 drivers/fsl_pci_init: Fix compile warning
21638
21639 fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
21640 fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
21641
21642 The check only makes sense if we are CONFIG_PHYS_64BIT
21643
21644 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21645
21646 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
21647 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21648 Date: Sun Dec 7 09:45:35 2008 +0100
21649
21650 usbtty/omap: update to current API
21651
21652 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21653 Signed-off-by: Remy Böhmer <linux@bohmer.net>
21654
21655 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
21656 Author: Anatolij Gustschin <agust@denx.de>
21657 Date: Tue Dec 9 17:52:05 2008 +0100
21658
21659 video: fix FADS823 and RRvision compiling issues
21660
21661 Since commit 561858ee building for FADS823 and RRvision
21662 doesn't work. Let's include version.h and timestamp.h
21663 unconditionally to fix the problem.
21664
21665 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21666
21667 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
21668 Author: Stefan Roese <sr@denx.de>
21669 Date: Tue Dec 2 10:53:47 2008 +0100
21670
21671 UBI: Fix size parsing in "ubi create"
21672
21673 Signed-off-by: Stefan Roese <sr@denx.de>
21674
21675 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
21676 Author: Stefan Roese <sr@denx.de>
21677 Date: Thu Nov 27 14:07:09 2008 +0100
21678
21679 UBI: Enable re-initializing of the "ubi part" command
21680
21681 With this patch now, the user can call "ubi part" multiple times to
21682 re-connect the UBI device to another MTD partition.
21683
21684 Signed-off-by: Stefan Roese <sr@denx.de>
21685
21686 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
21687 Author: Stefan Roese <sr@denx.de>
21688 Date: Thu Nov 27 14:05:15 2008 +0100
21689
21690 MTD: Fix problem based on non-working relocation (list head mtd_partitions)
21691
21692 Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
21693 first call of add_mtd_partitions(). Otherwise this won't work on platforms
21694 where the relocation is broken (like MIPS or PPC).
21695
21696 Signed-off-by: Stefan Roese <sr@denx.de>
21697
21698 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
21699 Author: Trent Piepho <tpiepho@freescale.com>
21700 Date: Wed Nov 12 17:29:48 2008 -0800
21701
21702 Section name should be ".data", not "data"
21703
21704 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
21705 Signed-off-by: Wolfgang Denk <wd@denx.de>
21706
21707 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
21708 Author: Wolfgang Denk <wd@denx.de>
21709 Date: Tue Dec 9 00:39:08 2008 +0100
21710
21711 MAKEALL: Automatically use parallel builds
21712
21713 Add logic to the MAKEALL script to determine the number of CPU cores
21714 on the system, and run a parallel build if there is more than one.
21715 Usually this significantrly accelerates builds.
21716
21717 Allow to manually adjust the number of parallel make jobs by using
21718 the "BUILD_NCPUS" environment variable.
21719
21720 Signed-off-by: Wolfgang Denk <wd@denx.de>
21721
21722 commit 268405fa7c44156c5192a70779920c70906af8d6
21723 Author: Wolfgang Denk <wd@denx.de>
21724 Date: Tue Dec 9 00:24:30 2008 +0100
21725
21726 vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
21727
21728 Signed-off-by: Wolfgang Denk <wd@denx.de>
21729
21730 commit 153176a9414120ca1736f3cc4951623d6e14e6af
21731 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21732 Date: Tue Nov 11 06:08:59 2008 +0100
21733
21734 avr32/bootm: remove unused variable 'ret'
21735
21736 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21737 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21738
21739 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
21740 Author: Peter Tyser <ptyser@xes-inc.com>
21741 Date: Wed Nov 12 13:06:48 2008 -0600
21742
21743 Remove unneeded CONFIG_SHELL references
21744
21745 Make should be using the bash shell by default which makes
21746 CONFIG_SHELL unnecessary
21747
21748 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21749
21750 commit cf7a7b99794bac936899819b95539be1dbd71708
21751 Author: Peter Tyser <ptyser@xes-inc.com>
21752 Date: Wed Nov 12 12:33:20 2008 -0600
21753
21754 Use bash for default GNU Make shell application
21755
21756 Some Make script commands rely on bash-specific features like brace
21757 expansion, so default to bash for the SHELL variable with a fallback
21758 to the standard sh shell
21759
21760 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21761
21762 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
21763 Author: Heiko Schocher <hs@denx.de>
21764 Date: Wed Nov 12 09:50:45 2008 +0100
21765
21766 jffs2: rename devices_init () in common/jffs2.c
21767
21768 rename devices_init () in common/jffs2.c to
21769 jffs2_devices_init (), because there is also a
21770 devices_init () in common/devices.c.
21771
21772 Signed-off-by: Heiko Schocher <hs@denx.de>
21773
21774 commit af5eb847a10f1037590001355d88bab3fe7be48b
21775 Author: Daniel Hellstrom <daniel@gaisler.com>
21776 Date: Mon Nov 10 12:46:20 2008 +0000
21777
21778 SPARC: Fixed compiler error introduced by commit c160a9544743
21779
21780 This patch fixes a build error for the SPARC platform. It was
21781 introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
21782
21783 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21784
21785 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
21786 Author: Gary Jennejohn <garyj@denx.de>
21787 Date: Sun Nov 9 12:50:59 2008 +0100
21788
21789 mgsuvd add the board-specific part of the HDLC driver
21790
21791 Signed-off-by: Gary Jennejohn <garyj@denx.de>
21792
21793 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
21794 Author: Gary Jennejohn <garyj@denx.de>
21795 Date: Sun Nov 9 12:45:03 2008 +0100
21796
21797 mgcoge add the board-specific part of the HDLC driver
21798
21799 Signed-off-by: Gary Jennejohn <garyj@denx.de>
21800
21801 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
21802 Author: Gary Jennejohn <garyj@denx.de>
21803 Date: Sun Nov 9 12:36:15 2008 +0100
21804
21805 keymile add the common parts of the HDLC driver
21806
21807 This implements the ICN protocol used across the backplane and is
21808 needed by all the keymile boards.
21809
21810 Signed-off-by: Gary Jennejohn <garyj@denx.de>
21811
21812 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
21813 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21814 Date: Fri Nov 7 22:46:22 2008 +0100
21815
21816 drivers/bios_emulator: Move conditional compilation to Makefile
21817
21818 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21819
21820 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
21821 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21822 Date: Thu Nov 6 14:01:51 2008 -0500
21823
21824 common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
21825
21826 Corrected endian order printing for compact flash serial number.
21827
21828 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21829
21830 commit 16a28ef219c27423a1ef502f19070c4d375079b8
21831 Author: Gary Jennejohn <garyj@denx.de>
21832 Date: Thu Nov 6 15:04:23 2008 +0100
21833
21834 IOMUX: Add console multiplexing support.
21835
21836 Modifications to support console multiplexing. This is controlled using
21837 CONFIG_SYS_CONSOLE_MUX in the board configuration file.
21838
21839 This allows a user to specify multiple console devices in the environment
21840 with a command like this: setenv stdin serial,nc. As a result, the user can
21841 enter text on both the serial and netconsole interfaces.
21842
21843 All devices - stdin, stdout and stderr - can be set in this manner.
21844
21845 1) common/iomux.c and include/iomux.h contain the environment setting
21846 implementation.
21847 2) doc/README.iomux contains a somewhat more detailed description.
21848 3) The implementation in (1) is called from common/cmd_nvedit.c to
21849 handle setenv and from common/console.c to handle initialization of
21850 input/output devices at boot time.
21851 4) common/console.c also contains the code needed to poll multiple console
21852 devices for input and send output to all devices registered for output.
21853 5) include/common.h includes iomux.h and common/Makefile generates iomux.o
21854 when CONFIG_SYS_CONSOLE_MUX is set.
21855
21856 Signed-off-by: Gary Jennejohn <garyj@denx.de>
21857
21858 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
21859 Author: Mike Frysinger <vapier@gentoo.org>
21860 Date: Tue Nov 4 16:03:46 2008 -0500
21861
21862 strings: use puts() rather than printf()
21863
21864 When running `strings` on really long strings, the stack tends to get
21865 smashed due to printf(). Switch to puts() instead since we're only passing
21866 the data through.
21867
21868 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21869
21870 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
21871 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
21872 Date: Mon Nov 3 22:16:18 2008 +0100
21873
21874 Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
21875
21876 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
21877
21878 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
21879 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
21880 Date: Mon Nov 3 22:15:34 2008 +0100
21881
21882 cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
21883
21884 - fix size too small by one in sprintf
21885 - changed old (pre 2004) device name ibmEmac to emac
21886 - boot device may be overriden in board config
21887 - servername may be defined in board config
21888 - additional parameters may be defined in board config
21889 - fixed some line wrappings
21890 - replaced redundant MAX define by max
21891
21892 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
21893
21894 commit e9084b23d16102f44ace24379a1c0c352497ef80
21895 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
21896 Date: Mon Nov 3 22:14:36 2008 +0100
21897
21898 Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
21899
21900 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
21901
21902 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
21903 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
21904 Date: Mon Nov 3 22:13:47 2008 +0100
21905
21906 README: Document CONFIG_SYS parameters for vxworks
21907
21908 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
21909
21910 commit ace514837cac656e29c37a19569cb8ea83071126
21911 Author: Peter Tyser <ptyser@xes-inc.com>
21912 Date: Fri Oct 31 11:12:38 2008 -0500
21913
21914 lcd: Let the board code show board-specific info cleanup
21915
21916 remove unneeded version.h from lcd.c
21917
21918 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21919 Signed-off-by: Wolfgang Denk <wd@denx.de>
21920
21921 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
21922 Author: Peter Tyser <ptyser@xes-inc.com>
21923 Date: Mon Nov 3 09:30:59 2008 -0600
21924
21925 Update U-Boot's build timestamp on every compile
21926
21927 Use the GNU 'date' command to auto-generate a new U-Boot
21928 timestamp on every compile.
21929
21930 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21931
21932 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
21933 Author: Remy Bohmer <linux@bohmer.net>
21934 Date: Thu Dec 4 22:25:57 2008 +0100
21935
21936 Remove redundant armv4 flag from arm926ejs compile flags
21937
21938 Currently the arm926ejs tree has the armv4 option set during compilation.
21939 This flag does not belong here because a arm926 CPU is always a armv5 CPU.
21940
21941 Signed-off-by: Remy Bohmer <linux@bohmer.net>
21942
21943 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
21944 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
21945 Date: Sat Dec 6 13:11:14 2008 +0100
21946
21947 at91: Choose environment variables location within make config target
21948
21949 This patch adds the possiblity to choose the media where the environment will
21950 be located. This allow to choose this fundamental configuration without editing
21951 config files.
21952
21953 Documentation file added.
21954
21955 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
21956 Acked-by: Stelian Pop <stelian@popies.net>
21957 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21958
21959 commit 1450c4a6682378567030414a9f1198c39b7730c7
21960 Author: Anatolij Gustschin <agust@denx.de>
21961 Date: Mon Nov 3 15:30:34 2008 +0100
21962
21963 lwmon, tqm8xx: Fix build errors
21964
21965 Commit 6b59e03e0237a40a2305ea385defdfd92000978b
21966 lcd: Let the board code show board-specific info
21967
21968 introduced some bugs which prevent U-Boot building
21969 for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
21970 be defined in the board configuration.
21971
21972 Also "LCD enabled" building for TQM823L doesn't work
21973 since this commit.
21974
21975 This patch fixes above-mentioned issues.
21976
21977 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21978
21979 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
21980 Author: Mike Frysinger <vapier@gentoo.org>
21981 Date: Sun Nov 2 01:18:18 2008 -0400
21982
21983 ignore .gdb_history files
21984
21985 When using gdb, history files will often get generated. So ignore them.
21986
21987 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21988
21989 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
21990 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21991 Date: Fri Oct 31 12:26:55 2008 +0100
21992
21993 FPGA: move fpga drivers to drivers/fpga
21994
21995 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21996
21997 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
21998 Author: Peter Tyser <ptyser@xes-inc.com>
21999 Date: Mon Dec 1 16:29:38 2008 -0600
22000
22001 net: Fix TftpStart() ip:filename bug
22002
22003 The TftpStart() function modifies the 'BootFile'
22004 string when 'BootFile' contains both an IP address
22005 and filename (eg 1.2.3.4:/path/file). This causes
22006 subsequent calls to TftpStart to incorrectly parse
22007 the TFTP filename and server IP address to use.
22008 For example:
22009
22010 => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
22011 Speed: 100, half duplex
22012 Using eTSEC1 device
22013 TFTP from server 10.52.0.62; our IP address is 10.52.253.79
22014 ^^^^^^^^^^ CORRECT
22015 Filename '/home/ptyser/non_existant'.
22016 ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
22017 Load address: 0x100000
22018 Loading: *
22019 TFTP error: 'File not found' (1)
22020 Starting again
22021
22022 eTSEC2: No link.
22023 Speed: 100, half duplex
22024 Using eTSEC1 device
22025 TFTP from server 10.52.0.33; our IP address is 10.52.253.79
22026 ^^^^^^^^^^ WRONG
22027 Filename '10.52.0.62'.
22028 ^^^^^^^^^^ WRONG
22029 Load address: 0x100000
22030 Loading: *
22031 TFTP error: 'File not found' (1)
22032 Starting again
22033
22034 TftpStart() was modified to not modify the 'BootFile' string.
22035
22036 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22037 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22038
22039 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
22040 Author: Peter Tyser <ptyser@xes-inc.com>
22041 Date: Mon Dec 1 16:26:21 2008 -0600
22042
22043 net: Add additional IP fragmentation check
22044
22045 Ignore IP packets which have the "more fragments" flag bit
22046 set. This flag indicates the IP packet is fragmented and
22047 must be ignored by U-Boot.
22048
22049 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22050 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22051
22052 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
22053 Author: Peter Tyser <ptyser@xes-inc.com>
22054 Date: Mon Dec 1 16:26:20 2008 -0600
22055
22056 net: Define IP flag field values
22057
22058 These defines were pulled from the "Add simple
22059 IP/UDP fragmentation support" patch from Frank
22060 Haverkamp <haver@vnet.ibm.com>.
22061
22062 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22063 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22064
22065 commit 23afaba65ec5206757e589ef334a8b38168c045f
22066 Author: Anatolij Gustschin <agust@denx.de>
22067 Date: Tue Dec 2 10:31:04 2008 +0100
22068
22069 net: tsec: Fix Marvell 88E1121R phy init
22070
22071 This patch tries to ensure that phy interrupt pin
22072 won't be asserted after booting. We experienced
22073 following issues with current 88E1121R phy init:
22074
22075 Marvell 88E1121R phy can be hardware-configured
22076 to share MDC/MDIO and interrupt pins for both ports
22077 P0 and P1 (e.g. as configured on socrates board).
22078 Port 0 interrupt pin will be shared by both ports
22079 in such configuration. After booting Linux and
22080 configuring eth0 interface, port 0 phy interrupts
22081 are enabled. After rebooting without proper eth0
22082 interface shutdown port 0 phy interrupts remain
22083 enabled so any change on port 0 (link status, etc.)
22084 cause assertion of the interrupt. Now booting Linux
22085 and configuring eth1 interface will cause permanent
22086 phy interrupt storm as the registered phy 1 interrupt
22087 handler doesn't acknowledge phy 0 interrupts. This
22088 of course should be fixed in Linux driver too.
22089
22090 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22091 Acked-by: Andy Fleming <afleming@freescale.com>
22092 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22093
22094 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
22095 Author: Peter Tyser <ptyser@xes-inc.com>
22096 Date: Tue Dec 2 12:59:51 2008 -0600
22097
22098 net: Fix download command parsing
22099
22100 When CONFIG_SYS_HUSH_PARSER is defined network download
22101 commands with 1 argument in the format 'tftp "/path/file"'
22102 do not work as expected. The hush command parser strips
22103 the quotes from "/path/file" which causes the network
22104 commands to interpret "/path/file" as an address
22105 instead of the intended filename.
22106
22107 The previous check for a leading quote in netboot_common()
22108 was replaced with a check which ensures only valid
22109 numbers are treated as addresses.
22110
22111 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22112 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22113
22114 commit 3c2c2f427905040c1513d0c51d637689cba48346
22115 Author: Remy Bohmer <linux@bohmer.net>
22116 Date: Thu Nov 27 22:30:27 2008 +0100
22117
22118 Remove non-ascii characters from fat code
22119
22120 This code contains some non-ascii characters in comment lines and code.
22121 Most editors do not display those characters properly and editing those
22122 files results always in diffs at these places which are usually not required
22123 to be changed at all. This is error prone.
22124
22125 So, remove those weird characters and replace them by normal C-style
22126 equivalents for which the proper defines were already in the header.
22127
22128 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22129
22130 commit dc889e865356497d3e495570118c2245ebce2631
22131 Author: Dave Liu <daveliu@freescale.com>
22132 Date: Fri Nov 28 20:16:58 2008 +0800
22133
22134 85xx: fix the wrong DDR settings for MPC8572DS
22135
22136 The default DDR freq is 400MHz or 800M data rate,
22137 the old settings is pure wrong for the default case.
22138
22139 Signed-off-by: Dave Liu <daveliu@freescale.com>
22140 Acked-by: Andy Fleming <afleming@freescale.com>
22141
22142 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
22143 Author: Kumar Gala <galak@kernel.crashing.org>
22144 Date: Mon Nov 24 10:29:26 2008 -0600
22145
22146 85xx: init gd as early as possible
22147
22148 Moved up the initialization of GD so C code like set_tlb() can use
22149 gd->flags to determine if we've relocated or not in the future.
22150
22151 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22152 Acked-by: Andy Fleming <afleming@freescale.com>
22153
22154 commit aed461af81012a398a205e9be67ab37667491838
22155 Author: Kumar Gala <galak@kernel.crashing.org>
22156 Date: Mon Nov 24 10:29:25 2008 -0600
22157
22158 85xx: Fix relocation of CCSRBAR
22159
22160 If the virtual address for CCSRBAR is the same after relocation but
22161 the physical address is changing we'd end up having two TLB entries with
22162 the same VA. Instead we new us the new CCSRBAR virt address + 4k as a
22163 temp virt address to access the old CCSRBAR to relocate it.
22164
22165 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22166 Acked-by: Andy Fleming <afleming@freescale.com>
22167
22168 commit ea154a1781135d822eedee7567cc156089eae93c
22169 Author: Kumar Gala <galak@kernel.crashing.org>
22170 Date: Mon Nov 24 10:25:14 2008 -0600
22171
22172 FSL: Moved BR_PHYS_ADDR for localbus to common header
22173
22174 The BR_PHYS_ADDR macro is useful on all machines that have local bus
22175 which is pretty much all 83xx/85xx/86xx chips.
22176
22177 Additionally most 85xx & 86xx will need it if they want to support
22178 36-bit physical addresses.
22179
22180 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22181 Acked-by: Andy Fleming <afleming@freescale.com>
22182
22183 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
22184 Author: Peter Tyser <ptyser@xes-inc.com>
22185 Date: Mon Dec 1 13:47:12 2008 -0600
22186
22187 85xx: Add PORDEVSR_PCI1 define
22188
22189 Add define used to determine if PCI1 interface is in PCI or PCIX mode.
22190
22191 Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
22192
22193 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22194 Signed-off-by: Andy Fleming <afleming@freescale.com>
22195
22196 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
22197 Author: Becky Bruce <becky.bruce@freescale.com>
22198 Date: Fri Nov 21 19:24:22 2008 -0600
22199
22200 drivers/fsl_pci_init: Fix inbound window mapping bug
22201
22202 The current code will cause the creation of a 4GB window
22203 starting at 0 if we have more than 4GB of RAM installed,
22204 which overlaps with PCI_MEM space and causes pci_bus_to_phys()
22205 to return erroneous information. Limit the size to 4GB - 1;
22206 which causes the code to create one 2GB and one 1GB window
22207 instead.
22208
22209 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
22210 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22211 Acked-by: Andy Fleming <afleming@freescale.com>
22212
22213 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
22214 Author: Jon Loeliger <jdl@freescale.com>
22215 Date: Thu Nov 20 15:36:48 2008 -0600
22216
22217 Removed unused CONFIG_L1_INIT_RAM symbol.
22218
22219 Prevent further viral propogation of the unused
22220 symbol CONFIG_L1_INIT_RAM by just removing it.
22221
22222 Signed-off-by: Jon Loeliger <jdl@freescale.com>
22223 Acked-by: Andy Fleming <afleming@freescale.com>
22224
22225 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
22226 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
22227 Date: Wed Oct 29 09:21:44 2008 -0500
22228
22229 fsl ddr skip interleaving if not supported.
22230
22231 Removed while(1) hang if memctl_intlv_ctl is set wrong.
22232 Remove embedded tabs from strings.
22233
22234 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
22235 Acked-by: Kumar Gala <galak@kernel.crashing.org>
22236 Acked-by: Andy Fleming <afleming@freescale.com>
22237
22238 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
22239 Author: Anatolij Gustschin <agust@denx.de>
22240 Date: Thu Nov 13 18:08:57 2008 +0100
22241
22242 85xx: socrates: fix DDR SDRAM tlb entry configuration
22243
22244 since commit be0bd8234b9777ecd63c4c686f72af070d886517
22245 tlb entry for socrates DDR SDRAM will be reconfigured
22246 by setup_ddr_tlbs() from initdram() causing an
22247 inconsistency with previously configured DDR SDRAM tlb
22248 entry from tlb_table:
22249
22250 socrates>l2cam 7 9
22251 IDX PID EPN SIZE V TS RPN U0-U3 WIMGE UUUSSS
22252 7 : 00 00000000 256MB V 0 -> 0_00000000 0000 -I-G- ---RWX
22253 8 : 00 00000000 256MB V 0 -> 0_00000000 0000 ----- ---RWX
22254 9 : 00 10000000 256MB V 0 -> 0_10000000 0000 ----- ---RWX
22255
22256 This patch makes the presence of the DDR SDRAM tlb entry in
22257 the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
22258 inconsistency.
22259
22260 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22261 Acked-by: Andy Fleming <afleming@freescale.com>
22262
22263 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
22264 Author: Peter Tyser <ptyser@xes-inc.com>
22265 Date: Tue Nov 11 10:17:10 2008 -0600
22266
22267 85xx: Add CPU 2 errata workaround to all 8548 boards
22268
22269 All mpc8548-based boards should implement the suggested workaround
22270 to CPU 2 errata. Without the workaround, its possible for the
22271 8548's core to hang while executing a msync or mbar 0 instruction
22272 and a snoopable transaction from an I/O master tagged to make
22273 quick forward progress is present.
22274
22275 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22276 Acked-by: Andy Fleming <afleming@freescale.com>
22277
22278 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
22279 Author: Dave Liu <daveliu@freescale.com>
22280 Date: Tue Oct 28 17:53:45 2008 +0800
22281
22282 85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
22283
22284 we need TLB entry for DDR at !SPD case.
22285
22286 Signed-off-by: Dave Liu <daveliu@freescale.com>
22287 Acked-by: Andy Fleming <afleming@freescale.com>
22288
22289 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
22290 Author: Dave Liu <daveliu@freescale.com>
22291 Date: Tue Oct 28 17:53:38 2008 +0800
22292
22293 85xx: remove the unused ddr_enable_ecc in the board file
22294
22295 The DDR controller of 8548/8544/8568/8572/8536 processors
22296 have the ECC data init feature, and the new DDR code is
22297 using the feature, and we don't need the way with DMA to
22298 init memory any more.
22299
22300 Signed-off-by: Dave Liu <daveliu@freescale.com>
22301 Acked-by: Andy Fleming <afleming@freescale.com>
22302
22303 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
22304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22305 Date: Sun Nov 30 19:36:53 2008 +0100
22306
22307 at91rm9200dk: Fix typo
22308
22309 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22310
22311 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
22312 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22313 Date: Sun Nov 30 19:36:50 2008 +0100
22314
22315 AT91: remove non supported board AT91RM9200DF macro
22316
22317 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22318
22319 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
22320 Author: Ilko Iliev <iliev@ronetix.at>
22321 Date: Tue Dec 2 17:27:54 2008 +0100
22322
22323 mtd/dataflash.c: fix a problem with the last partition
22324
22325 This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
22326 partition can be defined to use the area to the end of dataflash size.
22327 Now it is possible to have only one dataflash partition from 0 to the end
22328 of of dataflash size.
22329
22330 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
22331
22332 commit 03f797793b124dccaae145b977d15d6cb9e74504
22333 Author: Ilko Iliev <iliev@ronetix.at>
22334 Date: Tue Dec 2 17:20:17 2008 +0100
22335
22336 fix some coding style violations.
22337
22338 This patch fix some coding style violations.
22339
22340 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
22341
22342 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
22343 Author: Stefan Roese <sr@denx.de>
22344 Date: Thu Nov 27 14:11:37 2008 +0100
22345
22346 OneNAND: Add missing mtd info struct before calling onenand_erase()
22347
22348 Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
22349 for use in UBI) via CONFIG_MTD_PARTITIONS.
22350
22351 Signed-off-by: Stefan Roese <sr@denx.de>
22352 Signed-off-by: Scott Wood <scottwood@freescale.com>
22353
22354 commit 29382d4064fbaff5daacff4c3209370fa5713966
22355 Author: Becky Bruce <becky.bruce@freescale.com>
22356 Date: Thu Nov 20 16:43:52 2008 -0600
22357
22358 mpc8641: Fix error in README
22359
22360 I made some updates to the code that didn't make it into the
22361 README - fix this
22362
22363 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22364
22365 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
22366 Author: Jon Loeliger <jdl@freescale.com>
22367 Date: Thu Nov 20 12:01:02 2008 -0600
22368
22369 Removed unused CONFIG_L1_INIT_RAM symbol.
22370
22371 Prevent further viral propogation of the unused
22372 symbol CONFIG_L1_INIT_RAM by just removing it.
22373
22374 Signed-off-by: Jon Loeliger <jdl@freescale.com>
22375
22376 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
22377 Author: Jon Loeliger <jdl@freescale.com>
22378 Date: Thu Nov 20 14:02:56 2008 -0600
22379
22380 86xx: Fix non-64-bit compilation problems.
22381
22382 Introducing 64-bit (36-bit) support for the MPC8641HPCN
22383 failed to accomodate the other two 86xx boards.
22384 Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
22385 CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
22386 with nominal 32-bit values.
22387
22388 Signed-off-by: Jon Loeliger <jdl@freescale.com>
22389 Acked-by: Becky Bruce <becky.bruce@freescale.com>
22390
22391 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
22392 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
22393 Date: Wed Nov 26 17:40:37 2008 +0100
22394
22395 Remove obsolete command (apply afte USB style patch, 80 chars strict)
22396
22397 Remove USB obsolete commmand
22398
22399 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
22400 Signed-off-by: Remy Böhmer <linux@bohmer.net>
22401
22402 commit de39f8c19d7c12017248c49d432dcb81db68f724
22403 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
22404 Date: Wed Nov 26 17:41:34 2008 +0100
22405
22406 USB style patch, 80 chars strict
22407
22408 USB Code style patch
22409
22410 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
22411 Signed-off-by: Remy Böhmer <linux@bohmer.net>
22412
22413 commit d10c5a87cb8affbb4d35a311370316d4383d598e
22414 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22415 Date: Fri Nov 7 22:46:21 2008 +0100
22416
22417 drivers/usb: Move conditional compilation to Makefile
22418
22419 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22420 Signed-off-by: Remy Böhmer <linux@bohmer.net>
22421
22422 commit 2077e348c2a84901022ad95311b47b70361e6daa
22423 Author: Scott Wood <scottwood@freescale.com>
22424 Date: Tue Nov 25 10:47:02 2008 -0600
22425
22426 NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
22427
22428 This caused the operation to be needlessly repeated if there were
22429 no bad blocks and no errors.
22430
22431 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
22432 Signed-off-by: Scott Wood <scottwood@freescale.com>
22433
22434 commit 89295028e7d8f7a524f485328279d72fdb102385
22435 Author: Michal Simek <monstr@monstr.eu>
22436 Date: Mon Nov 24 12:09:50 2008 +0100
22437
22438 ppc4xx: ml300 remove Xilinx BSP from ml300 folder
22439
22440 This BSP should be outside u-boot source tree.
22441 The second reason is that xilinx ppc405 was moved to generic platform.
22442
22443 Signed-off-by: Michal Simek <monstr@monstr.eu>
22444 Signed-off-by: Stefan Roese <sr@denx.de>
22445
22446 commit 24eea623d4974a169026a975ba12fb23d48154b1
22447 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22448 Date: Mon Nov 24 15:11:10 2008 +0100
22449
22450 ppc4xx: Remove unused features
22451
22452 This patch disables some unused features from the PCI405 configuration
22453 to keep U-Boot image size below 192k.
22454
22455 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22456 Signed-off-by: Stefan Roese <sr@denx.de>
22457
22458 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
22459 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22460 Date: Mon Nov 24 15:11:09 2008 +0100
22461
22462 ppc4xx: Use correct io accessors for PCI405
22463
22464 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22465 Signed-off-by: Stefan Roese <sr@denx.de>
22466
22467 commit 348c849d86a6f0785752b9bc497a34658713d1d1
22468 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22469 Date: Mon Nov 24 15:11:08 2008 +0100
22470
22471 ppc4xx: Remove unused code from PCI405 code
22472
22473 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22474 Signed-off-by: Stefan Roese <sr@denx.de>
22475
22476 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
22477 Author: Heiko Schocher <hs@denx.de>
22478 Date: Thu Nov 20 09:59:09 2008 +0100
22479
22480 powerpc, keymile boards: extract identical config options
22481
22482 This patch extracts the identical config options for the
22483 keymile boards mgcoge, mgsuvd and kmeter1 in a new
22484 common config file keymile-common.h.
22485
22486 Signed-off-by: Heiko Schocher <hs@denx.de>
22487 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22488
22489 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
22490 Author: Heiko Schocher <hs@denx.de>
22491 Date: Fri Nov 21 08:29:40 2008 +0100
22492
22493 powerpc: keymile: Add a check for the PIGGY debug board
22494
22495 Check the presence of the PIGGY on the keymile boards mgcoge,
22496 mgsuvd and kmeter1. If the PIGGY is not present, dont register
22497 this Ethernet device.
22498
22499 Signed-off-by: Heiko Schocher <hs@denx.de>
22500 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22501
22502 commit 58c696eed839af894e0265064669c402dc28b371
22503 Author: Wolfgang Denk <wd@xpert.denx.de>
22504 Date: Mon Nov 24 21:50:59 2008 +0100
22505
22506 AT91RM9200DK: fix broken boot from NOR flash
22507
22508 Signed-off-by: Wolfgang Denk <wd@denx.de>
22509
22510 commit 8052352f20b33bef8f9872fc983eac73d4693c38
22511 Author: Jens Scharsig <esw@bus-elektronik.de>
22512 Date: Tue Nov 18 10:48:46 2008 +0100
22513
22514 at91rm9200: fix broken boot from nor flash
22515
22516 This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
22517 CONFIG_AT91RM9200 is defined and nor preloader is used.
22518
22519 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
22520
22521 commit 25ea652e907516a283b38237e83712a918f125d7
22522 Author: Piotr Ziecik <kosmo@semihalf.com>
22523 Date: Mon Nov 17 15:58:00 2008 +0100
22524
22525 UBI: Add proof-of-concept CFI flash support
22526
22527 With this patch UBI can be used on CFI flash chips.
22528
22529 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
22530 Signed-off-by: Stefan Roese <sr@denx.de>
22531
22532 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
22533 Author: Piotr Ziecik <kosmo@semihalf.com>
22534 Date: Mon Nov 17 15:57:59 2008 +0100
22535
22536 mtd: Remove a printf() from add_mtd_device().
22537
22538 Remove a printf() from add_mtd_device(), which produces spurious output.
22539
22540 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
22541 Signed-off-by: Stefan Roese <sr@denx.de>
22542
22543 commit 91809ed51d8327a8dbbf29aa98a091154c282171
22544 Author: Piotr Ziecik <kosmo@semihalf.com>
22545 Date: Mon Nov 17 15:57:58 2008 +0100
22546
22547 cfi-mtd: Add cfi-mtd driver.
22548
22549 Add cfi-mtd driver, which exports CFI flash to MTD layer.
22550 This allows CFI flash devices to be used from MTD layer.
22551
22552 Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
22553 option. Initialization is done by calling cfi_mtd_init() from
22554 flash_init().
22555
22556 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
22557 Signed-off-by: Stefan Roese <sr@denx.de>
22558
22559 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
22560 Author: Piotr Ziecik <kosmo@semihalf.com>
22561 Date: Mon Nov 17 15:49:32 2008 +0100
22562
22563 cfi_flash: Add interface for flash verbosity control
22564
22565 Add interface for flash verbosity control. It allows
22566 to disable output from low-level flash API. It is useful
22567 when calling these low-level functions from context other
22568 than flash commands (for example the MTD/CFI interface
22569 implmentation).
22570
22571 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
22572 Signed-off-by: Stefan Roese <sr@denx.de>
22573
22574 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
22575 Author: Piotr Ziecik <kosmo@semihalf.com>
22576 Date: Thu Nov 20 15:17:38 2008 +0100
22577
22578 cfi_flash: Export flash_sector_size() function.
22579
22580 Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
22581 so that it can be used in the upcoming cfi-mtd driver.
22582
22583 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
22584 Signed-off-by: Stefan Roese <sr@denx.de>
22585
22586 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
22587 Author: Stefan Roese <sr@denx.de>
22588 Date: Mon Nov 17 14:45:22 2008 +0100
22589
22590 cfi_flash: Make all flash access functions weak
22591
22592 This patch defines all flash access functions as weak so that
22593 they can be overridden by board specific versions.
22594
22595 This will be used by the upcoming VCTH board support where the NOR
22596 FLASH unfortunately can't be accessed memory-mapped. Special
22597 accessor functions are needed here.
22598
22599 To enable this weak functions you need to define
22600 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
22601 Otherwise the "old" default functions will be used resulting
22602 in smaller code.
22603
22604 Signed-off-by: Stefan Roese <sr@denx.de>
22605 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22606
22607 commit a5c4067017631d903e1afa6ad615f0ce19fea517
22608 Author: Stefan Roese <sr@denx.de>
22609 Date: Mon Nov 24 08:31:16 2008 +0100
22610
22611 UBI: Change parsing of size in commands to default to hex
22612
22613 Currently the size parameters of the UBI commands (e.g. "ubi write") are
22614 decoded as decimal instead of hex as default. This patch now interprets
22615 all these values consistantly as hex, as all other standard U-Boot commands
22616 do.
22617
22618 Signed-off-by: Stefan Roese <sr@denx.de>
22619
22620 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
22621 Author: Stefan Roese <sr@denx.de>
22622 Date: Fri Nov 21 13:06:06 2008 +0100
22623
22624 ppc4xx: ML2 shouldn't include the 4xx EMAC driver
22625
22626 Signed-off-by: Stefan Roese <sr@denx.de>
22627
22628 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
22629 Author: Yuri Tikhonov <yur@emcraft.com>
22630 Date: Fri Nov 14 16:19:19 2008 +0300
22631
22632 ppc4xx: katmai: Change default config
22633
22634 This patch enables support for EXT2, and increases the
22635 CONFIG_SYS_BOOTMAPSZ size for the default configuration
22636 of the katmai boards to use them as the RAID-reference
22637 AMCC setups.
22638
22639 EXT2 enabling allows one to boot kernels from the EXT2
22640 formatted Compact Flash cards.
22641
22642 CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
22643 Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
22644 the memory area with DTB file (which is placed at the
22645 end of the bootmap area) will turn out to be overlapped
22646 with the BSS segment of the 256KB kernel, and zeroed
22647 in early_init() of Linux.
22648
22649 Actually, increasing of the bootmap size could be done
22650 via setting of the bootm_size U-Boot variable, but it looks
22651 like the current U-Boot implementation have some bootm_size-
22652 related functionality lost. In many places through the U-Boot
22653 code the CONFIG_SYS_BOOTMAPSZ definition is used directly
22654 (instead of trying to read the corresponding value from the
22655 environment). The same is truth for the boot_jump_linux()
22656 function in lib_ppc/bootm.c, where U-Boot transfers control
22657 to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
22658 value to the booting kernel.
22659
22660 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
22661 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
22662 Signed-off-by: Stefan Roese <sr@denx.de>
22663
22664 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
22665 Author: Dave Mitchell <dmitch71@gmail.com>
22666 Date: Thu Nov 20 14:09:50 2008 -0600
22667
22668 ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
22669
22670 Expanded OCM TLB to allow access to 64K OCM as well as 256K of
22671 internal SRAM.
22672
22673 Adjusted internal SRAM initialization to match updated user
22674 manual recommendation.
22675
22676 OCM & ISRAM are now mapped as follows:
22677 physical virtual size
22678 ISRAM 0x4_0000_0000 0xE300_0000 256k
22679 OCM 0x4_0004_0000 0xE304_0000 64k
22680
22681 A single TLB was used for this mapping.
22682
22683 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
22684 Signed-off-by: Stefan Roese <sr@denx.de>
22685
22686 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
22687 Author: Dave Mitchell <dmitch71@gmail.com>
22688 Date: Thu Nov 20 14:00:49 2008 -0600
22689
22690 ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
22691
22692 Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
22693 L2 cache DCRs from ppc440.h to this new header.
22694
22695 Also converted these DCR defines from lowercase to uppercase and
22696 modified referencing modules to use them.
22697
22698 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
22699 Signed-off-by: Stefan Roese <sr@denx.de>
22700
22701 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
22702 Author: Steven A. Falco <sfalco@harris.com>
22703 Date: Thu Nov 20 14:37:57 2008 -0500
22704
22705 ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
22706
22707 The definitions of bits in SDR_CFG are incorrect, and not used within
22708 U-Boot. Therefore, they can be removed.
22709
22710 The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
22711 and are unused, so they can be removed too.
22712
22713 A definition for SDR0_DDRCFG is added.
22714
22715 Signed-off-by: Steven A. Falco <sfalco@harris.com>
22716 Signed-off-by: Stefan Roese <sr@denx.de>
22717
22718 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
22719 Author: Dirk Behme <dirk.behme@gmail.com>
22720 Date: Mon Nov 10 20:15:25 2008 +0100
22721
22722 ARM: OMAP: Convert IO macros
22723
22724 Convert IO macros to readx/writex.
22725
22726 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
22727
22728 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
22729 Author: Ilko Iliev <iliev@ronetix.at>
22730 Date: Sun Nov 9 15:53:14 2008 +0100
22731
22732 lib_arm: do_bootm_linux() - correct a small mistake
22733
22734 This patch corrects a small bug in the "if" condition:
22735 the parameter "flag" is 0 and the "if" condition is always true.
22736 The result is - the boom command doesn't start the kernel.
22737 Affected targets: all arm based.
22738
22739 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
22740
22741 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
22742 Author: Stelian Pop <stelian@popies.net>
22743 Date: Sun Nov 9 00:14:46 2008 +0100
22744
22745 AT91: Enable PLLB for USB
22746
22747 At least some (old ?) versions of the AT91Bootstrap do not set up the
22748 PLLB correctly to 48 MHz in order to make USB host function correctly.
22749
22750 This patch sets up the PLLB to the same values Linux uses, and makes USB
22751 work ok on the following CPUs:
22752 - AT91CAP9
22753 - AT91SAM9260
22754 - AT91SAM9263
22755
22756 This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
22757 the relevant AT91CAP9/AT91SAM9 atmel boards.
22758
22759 Signed-off-by: Stelian Pop <stelian@popies.net>
22760 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22761
22762 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
22763 Author: Stelian Pop <stelian@popies.net>
22764 Date: Fri Nov 7 13:55:14 2008 +0100
22765
22766 AT91: Use AT91_CPU_CLOCK in displays
22767
22768 Introduce AT91_CPU_CLOCK and use it for displaying the CPU
22769 speed in the LCD driver.
22770
22771 Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
22772 corresponding board clocks.
22773
22774 Signed-off-by: Stelian Pop <stelian@popies.net>
22775
22776 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
22777 Author: Heiko Schocher <hs@denx.de>
22778 Date: Thu Nov 20 09:57:47 2008 +0100
22779
22780 powerpc: 83xx: add support for the kmeter1 board
22781
22782 This patch adds support for the kmeter1 board from Keymile,
22783 based on a Freescale MPC8360 CPU.
22784
22785 - serial console on UART 1
22786 - 256 MB DDR2 RAM
22787 - 64 MB NOR Flash
22788 - Ethernet RMII Mode over UCC4
22789 - PHY SMSC LAN8700
22790
22791 Signed-off-by: Heiko Schocher <hs@denx.de>
22792 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22793
22794 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
22795 Author: Stefan Roese <sr@denx.de>
22796 Date: Thu Nov 20 11:46:20 2008 +0100
22797
22798 ppc4xx: Clear all potentially pending exceptions in MCSR
22799
22800 This is needed on Canyonlands which still has an exception pending
22801 while running relocate_code(). This leads to a failure after trap_init()
22802 is moved to the top of board_init_r().
22803
22804 Signed-off-by: Stefan Roese <sr@denx.de>
22805
22806 commit facdad5f2602e899a01746916beddbf9e856b5ee
22807 Author: Heiko Schocher <hs@denx.de>
22808 Date: Wed Nov 19 10:10:30 2008 +0100
22809
22810 powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
22811
22812 Signed-off-by: Heiko Schocher <hs@denx.de>
22813 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22814
22815 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
22816 Author: Howard Gregory <Greg.Howard@freescale.com>
22817 Date: Tue Nov 4 14:55:33 2008 +0800
22818
22819 mpc83xx: Improve the performance of DDR memory
22820
22821 modify the CAS timings. my understanding is that these
22822 settings decrease various wait times in the DDR interface.
22823 Because these wait times are in clock cycles, and the DDR
22824 clock on the 8315 RDB runs slower than on some other 83xx
22825 platforms, we can dial down these values without a problem,
22826 thereby decreasing the latency of memory a little.
22827
22828 Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
22829 Signed-off-by: Dave Liu <daveliu@freescale.com>
22830 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22831
22832 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
22833 Author: Kyungmin Park <kyungmin.park@samsung.com>
22834 Date: Fri Oct 24 14:55:33 2008 +0200
22835
22836 ARM: Add Apollon UBI support
22837
22838 To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
22839 macro.
22840
22841 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22842 Signed-off-by: Stefan Roese <sr@denx.de>
22843
22844 commit 694a0b3f1c0accd0de94b89555155d69f8022824
22845 Author: Kyungmin Park <kyungmin.park@samsung.com>
22846 Date: Wed Nov 19 11:47:05 2008 +0100
22847
22848 UBI: Add UBI command support
22849
22850 This patch adds these UBI commands:
22851
22852 ubi part [nand|onenand] [part] - Show or set current partition
22853 ubi info [l[ayout]] -Display volume and UBI layout information
22854 ubi create[vol] volume [size] [type] - Create volume name with size
22855 ubi write[vol] address volume size - Write volume from address with size
22856 ubi read[vol] address volume [size] - Read volume to address with size
22857 ubi remove[vol] volume - Remove volume
22858
22859 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22860 Signed-off-by: Stefan Roese <sr@denx.de>
22861
22862 commit 58be3a1056d88c6d05f3e914389282807e69923a
22863 Author: Kyungmin Park <kyungmin.park@samsung.com>
22864 Date: Wed Nov 19 16:38:24 2008 +0100
22865
22866 UBI: Add basic UBI support to U-Boot (Part 8/8)
22867
22868 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
22869 It's based on the Linux UBI version and basically has a "OS"
22870 translation wrapper that defines most Linux specific calls
22871 (spin_lock() etc.) into no-ops. Some source code parts have been
22872 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
22873 this version with the Linux version and simplifies future UBI
22874 ports/bug-fixes from the Linux version.
22875
22876 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22877 Signed-off-by: Stefan Roese <sr@denx.de>
22878
22879 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
22880 Author: Kyungmin Park <kyungmin.park@samsung.com>
22881 Date: Wed Nov 19 16:36:36 2008 +0100
22882
22883 UBI: Add basic UBI support to U-Boot (Part 7/8)
22884
22885 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
22886 It's based on the Linux UBI version and basically has a "OS"
22887 translation wrapper that defines most Linux specific calls
22888 (spin_lock() etc.) into no-ops. Some source code parts have been
22889 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
22890 this version with the Linux version and simplifies future UBI
22891 ports/bug-fixes from the Linux version.
22892
22893 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22894 Signed-off-by: Stefan Roese <sr@denx.de>
22895
22896 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
22897 Author: Kyungmin Park <kyungmin.park@samsung.com>
22898 Date: Wed Nov 19 16:32:36 2008 +0100
22899
22900 UBI: Add basic UBI support to U-Boot (Part 6/8)
22901
22902 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
22903 It's based on the Linux UBI version and basically has a "OS"
22904 translation wrapper that defines most Linux specific calls
22905 (spin_lock() etc.) into no-ops. Some source code parts have been
22906 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
22907 this version with the Linux version and simplifies future UBI
22908 ports/bug-fixes from the Linux version.
22909
22910 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22911 Signed-off-by: Stefan Roese <sr@denx.de>
22912
22913 commit c91a719daa331b5856109313371e4ece5ec06d96
22914 Author: Kyungmin Park <kyungmin.park@samsung.com>
22915 Date: Wed Nov 19 16:28:06 2008 +0100
22916
22917 UBI: Add basic UBI support to U-Boot (Part 5/8)
22918
22919 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
22920 It's based on the Linux UBI version and basically has a "OS"
22921 translation wrapper that defines most Linux specific calls
22922 (spin_lock() etc.) into no-ops. Some source code parts have been
22923 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
22924 this version with the Linux version and simplifies future UBI
22925 ports/bug-fixes from the Linux version.
22926
22927 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22928 Signed-off-by: Stefan Roese <sr@denx.de>
22929
22930 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
22931 Author: Kyungmin Park <kyungmin.park@samsung.com>
22932 Date: Wed Nov 19 16:27:23 2008 +0100
22933
22934 UBI: Add basic UBI support to U-Boot (Part 4/8)
22935
22936 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
22937 It's based on the Linux UBI version and basically has a "OS"
22938 translation wrapper that defines most Linux specific calls
22939 (spin_lock() etc.) into no-ops. Some source code parts have been
22940 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
22941 this version with the Linux version and simplifies future UBI
22942 ports/bug-fixes from the Linux version.
22943
22944 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22945 Signed-off-by: Stefan Roese <sr@denx.de>
22946
22947 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
22948 Author: Kyungmin Park <kyungmin.park@samsung.com>
22949 Date: Wed Nov 19 16:26:54 2008 +0100
22950
22951 UBI: Add basic UBI support to U-Boot (Part 3/8)
22952
22953 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
22954 It's based on the Linux UBI version and basically has a "OS"
22955 translation wrapper that defines most Linux specific calls
22956 (spin_lock() etc.) into no-ops. Some source code parts have been
22957 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
22958 this version with the Linux version and simplifies future UBI
22959 ports/bug-fixes from the Linux version.
22960
22961 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22962 Signed-off-by: Stefan Roese <sr@denx.de>
22963
22964 commit 961df83361aff9a14f226214224eb8a06e05ba24
22965 Author: Kyungmin Park <kyungmin.park@samsung.com>
22966 Date: Wed Nov 19 16:25:44 2008 +0100
22967
22968 UBI: Add basic UBI support to U-Boot (Part 2/8)
22969
22970 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
22971 It's based on the Linux UBI version and basically has a "OS"
22972 translation wrapper that defines most Linux specific calls
22973 (spin_lock() etc.) into no-ops. Some source code parts have been
22974 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
22975 this version with the Linux version and simplifies future UBI
22976 ports/bug-fixes from the Linux version.
22977
22978 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22979 Signed-off-by: Stefan Roese <sr@denx.de>
22980
22981 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
22982 Author: Kyungmin Park <kyungmin.park@samsung.com>
22983 Date: Wed Nov 19 16:23:06 2008 +0100
22984
22985 UBI: Add basic UBI support to U-Boot (Part 1/8)
22986
22987 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
22988 It's based on the Linux UBI version and basically has a "OS"
22989 translation wrapper that defines most Linux specific calls
22990 (spin_lock() etc.) into no-ops. Some source code parts have been
22991 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
22992 this version with the Linux version and simplifies future UBI
22993 ports/bug-fixes from the Linux version.
22994
22995 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22996 Signed-off-by: Stefan Roese <sr@denx.de>
22997
22998 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
22999 Author: Kyungmin Park <kyungmin.park@samsung.com>
23000 Date: Wed Nov 19 16:20:36 2008 +0100
23001
23002 MTD: Add MTD paritioning infrastructure
23003
23004 This MTD part infrastructure will be used by the upcoming
23005 UBI support.
23006
23007 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
23008 Signed-off-by: Stefan Roese <sr@denx.de>
23009
23010 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
23011 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
23012 Date: Thu Oct 16 22:54:03 2008 +0530
23013
23014 Align end of bss by 4 bytes
23015
23016 Most of the bss initialization loop increments 4 bytes
23017 at a time. And the loop end is checked for an 'equal'
23018 condition. Make the bss end address aligned by 4, so
23019 that the loop will end as expected.
23020
23021 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
23022 Signed-off-by: Wolfgang Denk <wd@denx.de>
23023
23024 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
23025 Author: Becky Bruce <becky.bruce@freescale.com>
23026 Date: Mon Nov 10 19:45:35 2008 -0600
23027
23028 mpc8641: fix address-cells default in old .dts detection
23029
23030 address-cells defaults to 2, not 1; so in the unlikely
23031 event that it isn't specified, this patch is required
23032 for correct operation.
23033
23034 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23035
23036 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
23037 Author: Becky Bruce <becky.bruce@freescale.com>
23038 Date: Fri Oct 31 17:14:39 2008 -0500
23039
23040 lib_ppc: Move trap_init to occur earlier
23041
23042 Doing trap_init immediately once we're running from RAM
23043 means we're no longer dependent on the physical location of
23044 the flash on non-BookE platforms. Before trap_init, those
23045 platforms switch to real mode and go to 0xfff00100 on exception.
23046 After the switch, they go to 0x00000100 This makes it easier to
23047 move the flash location.
23048
23049 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23050
23051 commit d52082b12c6e545705a19433a2f4142526536189
23052 Author: Becky Bruce <becky.bruce@freescale.com>
23053 Date: Fri Nov 7 13:46:19 2008 -0600
23054
23055 mpc8641: Try to detect old .dts files
23056
23057 Since we've changed the memory map of the board, be nice and
23058 add some checking to try to catch out-of-date .dts files. We do
23059 this by checking the CCSRBAR location in the .dts and comparing
23060 it to the CCSRBAR location in u-boot. If they don't match, a
23061 warning msg is printed. This isn't foolproof, but it's simple and
23062 will catch most of the cases where an out-of-date .dts is present,
23063 including all of the cases where a new u-boot is used with an old
23064 standard MPC8641 .dts file as supplied with Linux.
23065
23066 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23067
23068 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
23069 Author: Becky Bruce <becky.bruce@freescale.com>
23070 Date: Thu Nov 6 13:04:09 2008 -0600
23071
23072 toplevel Makefile: Add MPC8641HPCN_36BIT target
23073
23074 This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
23075
23076 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23077
23078 commit 3111d32c494e8251b90917447796a7206b757e1e
23079 Author: Becky Bruce <becky.bruce@freescale.com>
23080 Date: Thu Nov 6 17:37:35 2008 -0600
23081
23082 mpc8641: Support 36-bit physical addressing
23083
23084 This patch creates a memory map with all the devices
23085 in 36-bit physical space, in addition to the 32-bit map.
23086 The CCSR relocation is moved (again, sorry) to
23087 allow for the physical address to be 36 bits - this
23088 requires translation to be enabled. With 36-bit physical
23089 addressing enabled, we are no longer running with VA=PA
23090 translations. This means we have to distinguish between
23091 the two in the config file. The existing region name is
23092 used to indicate the virtual address, and a _PHYS variety
23093 is created to represent the physical address.
23094
23095 Large physical addressing is not enabled by default.
23096 Set CONFIG_PHYS_64BIT in the config file to turn this on.
23097
23098 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23099
23100 commit c759a01a0022de9378a3a761f49786f87684c916
23101 Author: Becky Bruce <becky.bruce@freescale.com>
23102 Date: Thu Nov 6 17:36:04 2008 -0600
23103
23104 mpc8641: Change 32-bit memory map
23105
23106 The memory map on the 8641hpcn is modified to look more like
23107 the 85xx boards; this is a step towards a more standardized
23108 layout going forward. As part of this change, we now relocate
23109 the flash.
23110
23111 The regions for some of the mappings were far larger than they
23112 needed to be. I have reduced the mappings to match the
23113 actual sizes supported by the hardware.
23114
23115 In addition I have removed the comments at the head
23116 of the BAT blocks in the config file, rather than updating
23117 them. These get horribly out of date, and it's a simple
23118 matter to look at the defines to see what they are set to
23119 since everything is right here in the same file.
23120
23121 Documentation has been changed to reflect the new map, as this
23122 change is user visible, and affects the OS which runs post-uboot.
23123
23124 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23125
23126 commit bf9a8c34309ed9276258295db9e9212aabb2531a
23127 Author: Becky Bruce <becky.bruce@freescale.com>
23128 Date: Wed Nov 5 14:55:35 2008 -0600
23129
23130 mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
23131
23132 We define CONFIG_MONITOR_BASE_EARLY to define the initial location
23133 of the bootpage in flash. Use this to create an early mapping
23134 definition for the FLASH, and change the early_bats code to use this.
23135
23136 This change facilitates the relocation of the flash since the early
23137 mappings are no longer tied to the final location of the flash.
23138
23139 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23140
23141 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
23142 Author: Becky Bruce <becky.bruce@freescale.com>
23143 Date: Wed Nov 5 14:55:34 2008 -0600
23144
23145 mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
23146
23147 Using a mtmsr/blr means that you have to be executing at the
23148 same virtual address once you enable translation. This is
23149 unnecessarily restrictive, and is not really how this is
23150 usually done. Change it to use the more common mtspr SRR0/SRR1
23151 and rfi method.
23152
23153 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23154
23155 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
23156 Author: Becky Bruce <becky.bruce@freescale.com>
23157 Date: Wed Nov 5 14:55:33 2008 -0600
23158
23159 mpc8641: make DIAG_ADDR == FLASH_BASE
23160
23161 Currently, that's what it is, but it's hardcoded.
23162
23163 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23164
23165 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
23166 Author: Becky Bruce <becky.bruce@freescale.com>
23167 Date: Wed Nov 5 14:55:32 2008 -0600
23168
23169 mpc8641: Drop imaginary second flash bank, map 8MB
23170
23171 There's a lot of setup and foo for the second flash
23172 bank. The problem is, this board doesn't actually have one.
23173 Clean this up. Also, the flash is 8M in size. Get rid
23174 of the confusing aliased overmapping, and just map 8M.
23175
23176 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23177
23178 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
23179 Author: Becky Bruce <becky.bruce@freescale.com>
23180 Date: Wed Nov 5 14:55:31 2008 -0600
23181
23182 mpc8641: only define CONFIG_ENV_SIZE once
23183
23184 It's currently defined twice inside in an if/else block, but
23185 both halves set the same value. Move the define outside
23186 the if.
23187
23188 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23189
23190 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
23191 Author: Becky Bruce <becky.bruce@freescale.com>
23192 Date: Wed Nov 5 14:55:30 2008 -0600
23193
23194 mpc86xx: Move setup_bats into cpu_init_f
23195
23196 In order to later allow for a physical relocation of the
23197 flash, setup_bats, which sets up the final BAT mapping
23198 for the board, needs to happen *after* init_laws().
23199 Otherwise, there will be no window programmed for the flash
23200 at the new physical location at the point when we change
23201 the mmu translation.
23202
23203 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23204
23205 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
23206 Author: Becky Bruce <becky.bruce@freescale.com>
23207 Date: Wed Nov 5 14:55:29 2008 -0600
23208
23209 mpc8641: Remove extra "0" from BR2 define
23210
23211 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23212
23213 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
23214 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
23215 Date: Thu Oct 23 09:08:18 2008 -0400
23216
23217 drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
23218
23219 Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
23220 This adds support for PHY-less MAC connections to the UEC.
23221
23222 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
23223 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23224
23225 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
23226 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23227 Date: Thu Oct 23 16:27:24 2008 +0000
23228
23229 ColdFire: Add mii driver in drivers/net
23230
23231 All CF platforms' mii.c are consolidated into one
23232
23233 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23234 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23235
23236 commit 25a859066b3af1070eb69f12022113c0a91bd813
23237 Author: Ben Warren <biggerbadderben@gmail.com>
23238 Date: Mon Oct 27 23:53:17 2008 -0700
23239
23240 Moved initialization of PPC4xx EMAC to cpu_eth_init()
23241
23242 Removed initialization of the driver from net/eth.c
23243
23244 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23245 Acked-by: Stefan Roese <sr@denx.de>
23246
23247 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
23248 Author: Ben Warren <biggerbadderben@gmail.com>
23249 Date: Sun Nov 9 21:29:23 2008 -0800
23250
23251 Moved PPC4xx EMAC driver to drivers/net
23252
23253 Also changed path in all linker scripts that reference this driver
23254
23255 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23256 Acked-by: Stefan Roese <sr@denx.de>
23257
23258 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
23259 Author: Ben Warren <biggerbadderben@gmail.com>
23260 Date: Mon Oct 27 23:50:15 2008 -0700
23261
23262 Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
23263
23264 All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
23265
23266 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23267 Acked-by: Stefan Roese <sr@denx.de>
23268
23269 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
23270 Author: Ben Warren <biggerbadderben@gmail.com>
23271 Date: Thu Oct 23 22:02:49 2008 -0700
23272
23273 Moved initialization of MPC8XX SCC to cpu_eth_init()
23274
23275 Removed initialization of the driver from net/eth.c
23276
23277 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23278
23279 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
23280 Author: Ben Warren <biggerbadderben@gmail.com>
23281 Date: Wed Oct 22 23:47:51 2008 -0700
23282
23283 Moved initialization of MPC8220 FEC to cpu_eth_init()
23284
23285 Removed initialization of the driver from net/eth.c
23286
23287 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23288
23289 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
23290 Author: Ben Warren <biggerbadderben@gmail.com>
23291 Date: Wed Oct 22 23:32:48 2008 -0700
23292
23293 Moved initialization of QE Ethernet controller to cpu_eth_init()
23294
23295 Removed initialization of the driver from net/eth.c
23296
23297 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23298
23299 commit 3456a148276d5494b53ee40242efb6462d163504
23300 Author: Ben Warren <biggerbadderben@gmail.com>
23301 Date: Wed Oct 22 23:20:29 2008 -0700
23302
23303 Moved initialization of FCC Ethernet controller to cpu_eth_init
23304
23305 Affected boards:
23306 Several MPC8xx boards
23307 Several MPC8260/MPC8272 boards
23308 Several MPC85xx boards
23309
23310 Removed initialization of the driver from net/eth.c
23311
23312 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23313
23314 commit 62e15b497f5c6334c059512678c8db7940ae4c61
23315 Author: Ben Warren <biggerbadderben@gmail.com>
23316 Date: Thu Oct 30 22:15:35 2008 -0700
23317
23318 Fix typo in cpu/mpc85xx/cpu.c
23319
23320 CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
23321
23322 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23323
23324 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
23325 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23326 Date: Sun Oct 19 12:08:50 2008 +0900
23327
23328 net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
23329
23330 This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
23331 as a part of ongoing eth_initialize cleanup work. The function ret value
23332 is also fixed as it should be negative on fail.
23333
23334 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23335 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23336
23337 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
23338 Author: Ben Warren <biggerbadderben@gmail.com>
23339 Date: Fri Sep 5 01:55:22 2008 -0400
23340
23341 Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
23342
23343 Also, removed the driver initialization from net/eth.c
23344
23345 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23346
23347 commit f2a7806fc23e82d30c8548911369e0c530607354
23348 Author: Clive Stubbings <uboot@xentech.co.uk>
23349 Date: Mon Oct 27 15:05:00 2008 +0000
23350
23351 xilinx_emaclite buffer overrun
23352
23353 Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
23354 PKTSIZE_ALIGN bytes long.
23355
23356 Acked-by: Michal Simek <monstr@monstr.eu>
23357
23358 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23359
23360 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
23361 Author: richardretanubun <richardretanubun@ruggedcom.com>
23362 Date: Fri Sep 26 08:59:12 2008 -0400
23363
23364 NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
23365
23366 The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
23367 This patch makes these function use the devname argument that is passed in to
23368 allow access to the phy registers of other devices in devlist[].
23369
23370 Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
23371
23372 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23373
23374 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
23375 Author: richardretanubun <richardretanubun@ruggedcom.com>
23376 Date: Mon Oct 6 15:31:43 2008 -0400
23377
23378 Adds two more ethernet interface to 83xx
23379
23380 Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
23381 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
23382 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23383
23384 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
23385 Author: Stelian Pop <stelian@popies.net>
23386 Date: Fri Nov 7 13:54:31 2008 +0100
23387
23388 AT91: Replace AT91_BASE_EMAC by the board specific values.
23389
23390 AT91_BASE_EMAC is never used outside the board specific files,
23391 so replace its usage by the board specific AT91xxx_BASE_EMAC.
23392
23393 Signed-off-by: Stelian Pop <stelian@popies.net>
23394 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23395
23396 commit c91e17affa175ce06afa89b04752301eb4a61666
23397 Author: Stelian Pop <stelian@popies.net>
23398 Date: Fri Nov 7 12:09:21 2008 +0100
23399
23400 AT91: Replace (undefined) AT91_ID_US* by the board specific values.
23401
23402 AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
23403 Since they are never used outside the board specific files, they can
23404 be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
23405 AT91xxx_ID_US2.
23406
23407 Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
23408
23409 Signed-off-by: Stelian Pop <stelian@popies.net>
23410 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23411
23412 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
23413 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23414 Date: Sat Nov 1 10:47:59 2008 +0100
23415
23416 Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
23417
23418 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23419
23420 commit 1079432e04ccf71aa3684181186182cd63512f19
23421 Author: Sergey Lapin <slapin@ossfans.org>
23422 Date: Fri Oct 31 12:28:43 2008 +0100
23423
23424 Custom AFEB9260 board support
23425
23426 This patch provides support for AFEB9260 board, a product of
23427 OpenSource hardware and software. Some commertial projects
23428 are made with this design. A board is basically AT91SAM9260-EK
23429 with some modifications and different peripherals and different
23430 parts used. Main purpose of this project is to gain experience in
23431 hardware design.
23432 More info: http://groups.google.com/group/arm9fpga-evolution-board
23433 (In Russian only, sorry).
23434 Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
23435
23436 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
23437
23438 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
23439 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
23440 Date: Tue Oct 21 13:17:16 2008 +0900
23441
23442 Change to use "do_div" macro
23443
23444 Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
23445
23446 commit e352495318d8056a00faa21b633b3e4374bfbf52
23447 Author: Roman Mashak <romez777@gmail.com>
23448 Date: Wed Oct 22 16:00:26 2008 -0400
23449
23450 ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
23451
23452 OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
23453 It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
23454
23455 Signed-off-by: Roman Mashak <romez777@gmail.com>
23456
23457 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
23458 Author: Roman Mashak <romez777@gmail.com>
23459 Date: Tue Oct 21 03:01:41 2008 -0700
23460
23461 ARM/Versatile port: Removed unused functions
23462
23463 Removal of never used functions.
23464
23465 Signed-off-by: Roman Mashak <romez777@gmail.com>
23466
23467 commit 1266df887781c779deaf6d05eea2ef90a470cb34
23468 Author: Becky Bruce <becky.bruce@freescale.com>
23469 Date: Mon Nov 3 15:44:01 2008 -0600
23470
23471 powerpc: change 86xx SMP boot method
23472
23473 We put the bootpg for the secondary cpus into memory and use
23474 BPTR to get to it. This is a step towards converting to the
23475 ePAPR boot methodology. Also, the code is written to
23476 deal properly with more than 4GB of RAM.
23477
23478 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23479
23480 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
23481 Author: Becky Bruce <becky.bruce@freescale.com>
23482 Date: Fri Oct 31 17:13:49 2008 -0500
23483
23484 8641HPCN: Config file cleanup
23485
23486 There are several items in the config file that were hardcoded
23487 but that should really be based on other config options, since
23488 the regions are contiguous and depend on being so. This cleans
23489 that up a bit. Also, add BR_PHYS_ADDR() macro to convert
23490 addresses into the proper format for BR registers.
23491
23492 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23493
23494 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
23495 Author: Becky Bruce <becky.bruce@freescale.com>
23496 Date: Fri Oct 31 17:13:32 2008 -0500
23497
23498 86xx: Make dram_size a phys_size_t
23499
23500 It's currently a long and should be phys_size_t.
23501
23502 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23503
23504 commit 104992fc541302a6bac74448e01e7fdad20abca0
23505 Author: Becky Bruce <becky.bruce@freescale.com>
23506 Date: Sun Nov 2 18:19:32 2008 -0600
23507
23508 powerpc 86xx: Handle CCSR relocation earlier
23509
23510 Currently, the CCSR gets relocated while translation is
23511 enabled, meaning we need 2 BAT translations to get to both the
23512 old location and the new location. Also, the DEFAULT
23513 CCSR location has a dependency on the BAT that maps the
23514 FLASH region. Moving the relocation removes this unnecessary
23515 dependency. This makes it easier and more intutive to
23516 modify the board's memory map.
23517
23518 Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
23519 BAT for CCSR space.
23520
23521 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23522
23523 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
23524 Author: Becky Bruce <becky.bruce@freescale.com>
23525 Date: Fri Oct 31 17:14:14 2008 -0500
23526
23527 mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
23528
23529 You can't actually have both, and with some coming changes to
23530 change the memory map for the board and support 36-bit physical,
23531 we need the extra BAT that is being consumed by having both.
23532
23533 I also make non-PCI configs build cleanly, for the sake of sanity.
23534
23535 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23536
23537 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
23538 Author: Becky Bruce <becky.bruce@freescale.com>
23539 Date: Fri Oct 31 17:14:00 2008 -0500
23540
23541 mpc8641: Stop supporting non-PCI_PNP configs
23542
23543 We don't actually ever do this, remove the code so we
23544 can stop maintaining it.
23545
23546 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
23547
23548 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
23549 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23550 Date: Fri Oct 24 12:59:12 2008 +0000
23551
23552 ColdFire: Fix M5329EVB and M5373EVB nand issue
23553
23554 Fix compilation issue caused by a few mismatches.
23555 Provide proper nand chip select enable/disable in
23556 nand_hwcontrol() rather than in board_nand_init()
23557 just enable once. Remove redundant local nand driver
23558 functions - nand_read_byte(), nand_write_byte() and
23559 nand_dev_ready() to use common nand driver.
23560
23561 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23562
23563 commit 1b2708442224a551a0b865b52710306333888932
23564 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23565 Date: Wed Oct 22 11:55:30 2008 +0000
23566
23567 ColdFire: Fix compilation error
23568
23569 The error was caused by the change for strmhz() in cpu.c.
23570 A few of them were one extra close parenthesis.
23571
23572 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23573
23574 commit 536e7dac16769954915a484e682a2efb28699133
23575 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23576 Date: Wed Oct 22 11:38:21 2008 +0000
23577
23578 ColdFire: Add MCF5301x CPU and M53017EVB support
23579
23580 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23581
23582 commit a21d0c2cc9add8894d971ab791f4032f077db817
23583 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23584 Date: Tue Oct 21 15:37:02 2008 +0000
23585
23586 ColdFire: Add SBF support for M52277EVB
23587
23588 Add serial boot support
23589
23590 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23591
23592 commit b202816c61042c183fe67d097a5893b0f2dafba0
23593 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23594 Date: Tue Oct 21 14:19:26 2008 +0000
23595
23596 ColdFire: Use CFI driver for M5272C3
23597
23598 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23599
23600 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
23601 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23602 Date: Tue Oct 21 13:47:54 2008 +0000
23603
23604 ColdFire: Relocate FEC's GPIO and mii functions protocols
23605
23606 Place FEC pin assignments in cpu_init.c from platform's
23607 mii.c
23608
23609 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23610
23611 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
23612 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23613 Date: Tue Oct 21 12:15:44 2008 +0000
23614
23615 ColdFire: Remove platforms mii.c file
23616
23617 Will use mcfmii.c driver in drivers/net rather than
23618 keep creating new mii.c for each future platform.
23619 Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
23620 M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
23621 M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
23622 mii.c
23623
23624 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23625
23626 commit 012522fef3b382469125beb46a315ab4dee02fb0
23627 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23628 Date: Tue Oct 21 10:03:07 2008 +0000
23629
23630 ColdFire: Modules header files cleanup
23631
23632 Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
23633 MDHA, SKHA, INTC, and FlexBus structures and
23634 definitions in immap_5xxx.h to more unify modules
23635 header files. Append DSPI support for m547x_8x.
23636 SSI cleanup. Remove USB Host structure from immap_539.h.
23637 Apply changes to use FlexBus structures in mcf52x2's
23638 cpu_init.c and platform configuration files.
23639
23640 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23641
23642 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
23643 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23644 Date: Tue Oct 21 08:52:36 2008 +0000
23645
23646 ColdFire: Remove linker file
23647
23648 Each different build for M54455EVB and M5235EVB will
23649 create a u-boot.lds linker file. It is redundant to
23650 keep the u-boot.lds
23651
23652 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23653
23654 commit 0829323073c505556ed5f5073f91adb504584d45
23655 Author: Peter Tyser <ptyser@xes-inc.com>
23656 Date: Fri Oct 31 11:26:44 2008 -0500
23657
23658 ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
23659
23660 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23661
23662 commit a80b21d5127583171d6e9bc7f722947641898012
23663 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23664 Date: Fri Oct 31 12:12:12 2008 +0100
23665
23666 common/Makefile: create others group for non core, environment and command files
23667
23668 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23669
23670 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
23671 Author: Wolfgang Denk <wd@denx.de>
23672 Date: Fri Oct 31 01:13:37 2008 +0100
23673
23674 TQM8260: use CFI flash driver instead of custom driver.
23675
23676 Signed-off-by: Wolfgang Denk <wd@denx.de>
23677
23678 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
23679 Author: Andy Fleming <afleming@freescale.com>
23680 Date: Thu Oct 30 17:35:30 2008 -0500
23681
23682 Consolidate MAX/MIN definitions
23683
23684 There were several, now there is one (two if you count the lower-case
23685 versions).
23686
23687 Signed-off-by: Andy Fleming <afleming@freescale.com>
23688
23689 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
23690 Author: Heiko Schocher <hs@denx.de>
23691 Date: Thu Oct 30 09:23:09 2008 +0100
23692
23693 mgsuvd: remove unused defines in config file.
23694
23695 Signed-off-by: Heiko Schocher <hs@denx.de>
23696
23697 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
23698 Author: Wolfgang Denk <wd@denx.de>
23699 Date: Sun Nov 2 16:14:22 2008 +0100
23700
23701 Coding Style cleanup, update CHANGELOG
23702
23703 Signed-off-by: Wolfgang Denk <wd@denx.de>
23704
23705 commit a47f957ab523019992fdef857af01bd71c58a4da
23706 Author: Alessandro Rubini <rubini-list@gnudd.com>
23707 Date: Fri Oct 31 22:33:21 2008 +0100
23708
23709 NAND: Allow NAND and OneNAND to coexist
23710
23711 This removes in nand.h code that is verbatim duplicated from bbm.h,
23712 including directly bbm.h in nand.h. The previous state of affairs
23713 prevented compiling code for a board hosting both NAND and OneNAND chips.
23714
23715 Reported-by: Scott Wood <scottwood@freescale.com>
23716 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
23717 Signed-off-by: Scott Wood <scottwood@freescale.com>
23718
23719 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
23720 Author: Scott Wood <scottwood@freescale.com>
23721 Date: Fri Oct 31 13:51:12 2008 -0500
23722
23723 JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
23724
23725 Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
23726 Signed-off-by: Scott Wood <scottwood@freescale.com>
23727
23728 commit c57fc28947e248fb03c49a28b467686299895055
23729 Author: Jason Jin <Jason.Jin@freescale.com>
23730 Date: Fri Oct 31 05:07:04 2008 -0500
23731
23732 NAND: Add NAND support for MPC8536DS board
23733
23734 This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
23735 for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
23736 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
23737
23738 Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
23739 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23740 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23741
23742 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
23743 Author: Haiying Wang <Haiying.Wang@freescale.com>
23744 Date: Fri Oct 31 05:06:14 2008 -0500
23745
23746 NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
23747
23748 CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
23749
23750 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23751 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23752
23753 commit 51b572a801be57790fe26adaa530210e7fba59cc
23754 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23755 Date: Fri Oct 24 10:49:48 2008 +0900
23756
23757 sh: rsk7203: Moved rsk7203 board to board/renesas
23758
23759 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23760
23761 commit 58453b00b3ebb26aaa901210023f99504a90bb00
23762 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23763 Date: Fri Oct 24 10:48:31 2008 +0900
23764
23765 sh: MigoR: Moved MigoR board to board/renesas
23766
23767 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23768
23769 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
23770 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23771 Date: Fri Oct 24 10:39:44 2008 +0900
23772
23773 sh: r2dplus: Moved r2dplus board to board/renesas
23774
23775 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23776
23777 commit 78385bf2359d828184d0b3649f7ae6b933420000
23778 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23779 Date: Fri Oct 24 10:36:13 2008 +0900
23780
23781 sh: sh7763rdp: Moved sh7763rdp board to board/renesas
23782
23783 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23784
23785 commit c6525d459c350bfc246ea7826456af77e1e314eb
23786 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23787 Date: Fri Oct 24 10:35:19 2008 +0900
23788
23789 sh: sh7785lcr: Moved sh7785lcr board to board/renesas
23790
23791 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23792
23793 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
23794 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23795 Date: Fri Oct 24 10:34:21 2008 +0900
23796
23797 sh: r7780mp: Moved r7780mp board to board/renesas
23798
23799 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23800
23801 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
23802 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23803 Date: Fri Oct 24 10:32:14 2008 +0900
23804
23805 sh: ap325rxa: Moved ap325rxa board to board/renesas
23806
23807 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23808
23809 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
23810 Author: Wolfgang Denk <wd@xpert.denx.de>
23811 Date: Fri Oct 31 01:12:28 2008 +0100
23812
23813 CFI Driver: Fix "flash not ready" problem
23814
23815 This patch fixes a problem on systems where the NOR flash is attached
23816 to a 64 bit bus. The toggle bit detection in flash_toggle() is based
23817 on the assumption that the same flash address is read twice without
23818 any other interjacent flash accesses. However, on 32 bit systems the
23819 function flash_read64() [as currently implemented] does not perform
23820 an atomic 64 bit read - instead, this is broken down into two 32 bit
23821 read accesses on addresses "addr" and "addr + 4". So instead of
23822 reading a 64 bit value twice from "addr", we see a sequence of 4 32
23823 bit reads from "addr", "addr + 4", "addr", and "addr + 4". The
23824 consequence is that flash_toggle() fails to work.
23825
23826 This patch implements a simple, but somewhat ugly solution, as it
23827 avoids the use of flash_read64() in this critical place (by breaking
23828 it down manually into 32 bit read operations) instead of rewriting
23829 flash_read64() such to perform atomic 64 bit reads as one could
23830 expect. However, such a rewrite would require the use of floating
23831 point load operations, which becomes pretty complex:
23832
23833 save MSR;
23834 set Floating Point Enable bit in MSR;
23835 use "lfd" instruction to perform atomic 64 bit read;
23836 use "stfd" to store value to temporary variable on stack;
23837 load u64 value from temporary variable;
23838 restore saved MSR;
23839 return u64 value;
23840
23841 The benefit-cost ratio of such an implementation was considered too
23842 bad to actually attempt this, especially as we can expect that such
23843 an implementation would not only have a bigger memory footprint but
23844 also cause a performance degradation.
23845
23846 Signed-off-by: Wolfgang Denk <wd@denx.de>
23847 Signed-off-by: Stefan Roese <sr@denx.de>
23848
23849 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
23850 Author: Stefan Roese <sr@denx.de>
23851 Date: Fri Oct 31 10:48:08 2008 +0100
23852
23853 ppc4xx: Fix spelling error in MAINTAINERS file
23854
23855 Signed-off-by: Stefan Roese <sr@denx.de>
23856
23857 commit be270798900b75ad9c47c7b79c72f70441196c56
23858 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23859 Date: Tue Oct 28 13:37:00 2008 +0100
23860
23861 ppc4xx: Update PMC440 board support
23862
23863 This patch brings PMC440 board support up to date:
23864
23865 - fix GPIO configuration
23866 - add misc_init_f()
23867 - use better values for usbact variable
23868 - fix USB 2.0 phy reset sequence
23869 - shrink BAR2 to save PCI address space
23870 - add FDT support
23871
23872 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23873 Signed-off-by: Stefan Roese <sr@denx.de>
23874
23875 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
23876 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23877 Date: Tue Oct 28 13:36:59 2008 +0100
23878
23879 ppc4xx: Fix PMC440 BSP commands
23880
23881 This patch fixes the PMC440 BSP commands painit and selfreset
23882
23883 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23884 Signed-off-by: Stefan Roese <sr@denx.de>
23885
23886 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
23887 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23888 Date: Tue Oct 28 13:36:58 2008 +0100
23889
23890 ppc4xx: Update PMC440 board configuration
23891
23892 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23893 Signed-off-by: Stefan Roese <sr@denx.de>
23894
23895 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
23896 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23897 Date: Tue Oct 28 13:36:57 2008 +0100
23898
23899 ppc4xx: Fix esd loadpci command
23900
23901 This patch fixes esd's loadpci command when not all
23902 memory on adapter boards is accessable via PCI.
23903
23904 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23905 Signed-off-by: Stefan Roese <sr@denx.de>
23906
23907 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
23908 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23909 Date: Tue Oct 28 13:36:56 2008 +0100
23910
23911 ppc4xx: Clean up PMC440 header
23912
23913 -Codingstyle cleanup
23914 -Remove unused GPIO define
23915
23916 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23917 Signed-off-by: Stefan Roese <sr@denx.de>
23918
23919 commit 295133258a44f97a57fb2ec339aecfda11f4db95
23920 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23921 Date: Tue Oct 28 13:36:55 2008 +0100
23922
23923 ppc4xx: Handle other board variant in PMC440 FPGA code
23924
23925 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23926 Signed-off-by: Stefan Roese <sr@denx.de>
23927
23928 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
23929 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23930 Date: Mon Oct 27 12:35:59 2008 +0100
23931
23932 ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
23933
23934 Xilinx ppc440 and ppc405 have many similarities. This patch merge the
23935 config files of both infrastuctures
23936
23937 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23938 Signed-off-by: Stefan Roese <sr@denx.de>
23939
23940 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
23941 Author: Stefan Roese <sr@denx.de>
23942 Date: Sat Oct 25 06:45:31 2008 +0200
23943
23944 ppc4xx: Correctly configure the GPIO pin muxing on Arches
23945
23946 Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
23947 pin multiplexing correctly
23948
23949 Signed-off-by: Stefan Roese <sr@denx.de>
23950
23951 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
23952 Author: Bartlomiej Sieka <tur@semihalf.com>
23953 Date: Thu Oct 30 23:22:04 2008 +0100
23954
23955 Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
23956
23957 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23958
23959 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
23960 Author: David Gibson <david@gibson.dropbear.id.au>
23961 Date: Wed Oct 29 23:27:45 2008 -0500
23962
23963 libfdt: Fix bug in fdt_subnode_offset_namelen()
23964
23965 There's currently an off-by-one bug in fdt_subnode_offset_namelen()
23966 which causes it to keep searching after it's finished the subnodes of
23967 the given parent, and into the subnodes of siblings of the original
23968 node which come after it in the tree.
23969
23970 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
23971 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23972
23973 commit f242a08871839eac081ba5b599af979f3a148a0d
23974 Author: Peter Korsgaard <jacmet@sunsite.dk>
23975 Date: Tue Oct 28 08:26:52 2008 +0100
23976
23977 fdt_resize(): ensure minimum padding
23978
23979 fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
23980 (16 bytes), so make sure that fdt_resize at least adds that much
23981 padding, no matter what the location or size of the fdt is.
23982
23983 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
23984 Acked-by: Andy Fleming <afleming@freescale.com>
23985
23986 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
23987 Author: Dave Liu <daveliu@freescale.com>
23988 Date: Thu Oct 23 21:59:35 2008 +0800
23989
23990 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
23991
23992 The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
23993
23994 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
23995
23996 This is needed in unlock_ram_in_cache() because it is called from C and
23997 will corrupt the small data area anchor that is kept in R2.
23998
23999 lock_ram_in_cache() is modified similarly as good coding practice, but
24000 is not called from C.
24001
24002 Signed-off-by: Nick Spence <nick.spence@freescale.com>
24003
24004 also, the r2 is used as global data pointer.
24005
24006 Signed-off-by: Dave Liu <daveliu@freescale.com>
24007
24008 commit e053ab1903ccae6048ef759025b9f675bba91450
24009 Author: Scott Wood <scottwood@freescale.com>
24010 Date: Tue Oct 28 11:45:04 2008 -0500
24011
24012 mpc83xx pci: Round up memory size in inbound window.
24013
24014 The current calculation will fail to cover all memory if
24015 its size is not a power of two.
24016
24017 Signed-off-by: Scott Wood <scottwood@freescale.com>
24018 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24019
24020 commit 1c671977dc81359628be27ac99c174e76e8069ba
24021 Author: Dave Liu <daveliu@freescale.com>
24022 Date: Thu Oct 23 21:19:13 2008 +0800
24023
24024 86xx: remove the unused definition
24025
24026 Signed-off-by: Dave Liu <daveliu@freescale.com>
24027
24028 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
24029 Author: Dave Liu <daveliu@freescale.com>
24030 Date: Tue Oct 28 17:47:49 2008 +0800
24031
24032 86xx: remove the redundant r2 global data pointer save
24033
24034 The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
24035 the another global data pointer save, but in fact the
24036 global data pointer will be initialized in the board_init_r,
24037 so remove it such as the 85xx/83xx family.
24038
24039 Signed-off-by: Dave Liu <daveliu@freescale.com>
24040 Acked-by: Kumar Gala <kumar.gala@freescale.com>
24041
24042 commit bd888e9544419665334a6f47f81f34011cea38f3
24043 Author: Dave Liu <daveliu@freescale.com>
24044 Date: Tue Oct 28 17:47:41 2008 +0800
24045
24046 86xx: remove the unused code for 86xx family
24047
24048 I believe these code was copied from 74xx family, but for
24049 86xx, it is unused.
24050
24051 Signed-off-by: Dave Liu <daveliu@freescale.com>
24052 Acked-by: Kumar Gala <kumar.gala@freescale.com>
24053
24054 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
24055 Author: Dave Liu <daveliu@freescale.com>
24056 Date: Tue Oct 28 17:46:35 2008 +0800
24057
24058 86xx: remove the second DDR LAW setting for mpc8641hpcn
24059
24060 The DDR1 LAW will precedence the DDR2 LAW, so remove
24061 the second DDR LAW.
24062
24063 Signed-off-by: Dave Liu <daveliu@freescale.com>
24064 Acked-by: Becky Bruce <becky.bruce@freescale.com>
24065
24066 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
24067 Author: Dave Liu <daveliu@freescale.com>
24068 Date: Tue Oct 28 17:46:23 2008 +0800
24069
24070 86xx: remove the unused ddr_enable_ecc in the board file
24071
24072 The DDR controller of 86xx processors have the ECC data init
24073 feature, and the new DDR code is using the feature, we don't
24074 need the way with DMA to init memory again.
24075
24076 Signed-off-by: Dave Liu <daveliu@freescale.com>
24077 Acked-by: Kumar Gala <kumar.gala@freescale.com>
24078
24079 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
24080 Author: Dave Liu <daveliu@freescale.com>
24081 Date: Tue Oct 28 17:46:12 2008 +0800
24082
24083 86xx: Move the clear_tlbs before MMU turn on
24084
24085 We must invalidate TLBs before MMU turn on, but
24086 currently the code is not, if there are some stale
24087 TLB entry valid in the TLBs, it will cause strange
24088 issue.
24089
24090 Signed-off-by: Dave Liu <daveliu@freescale.com>
24091 Acked-by: Becky Bruce <becky.bruce@freescale.com>
24092
24093 commit 5cdade07b118d07154cb882650f9778cecc8a87c
24094 Author: Scott Wood <scottwood@freescale.com>
24095 Date: Mon Oct 27 15:57:08 2008 -0500
24096
24097 mpc8313erdb: Document NAND boot.
24098
24099 Previously, the documentation claimed that NAND boot is not supported.
24100 This is no longer true.
24101
24102 Signed-off-by: Scott Wood <scottwood@freescale.com>
24103
24104 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
24105 Author: Scott Wood <scottwood@freescale.com>
24106 Date: Wed Oct 29 14:20:26 2008 -0500
24107
24108 NAND: Properly create JFFS2 cleanmarkers.
24109
24110 As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
24111 command is currently broken, and among other things causes all blocks
24112 to be marked bad.
24113
24114 This implements it properly using MTD_OOB_AUTO, along with some
24115 indentation fixes.
24116
24117 Signed-off-by: Scott Wood <scottwood@freescale.com>
24118
24119 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
24120 Author: Scott Wood <scottwood@freescale.com>
24121 Date: Wed Oct 29 13:42:41 2008 -0500
24122
24123 NAND fsl elbc: Set FMR[ECCM] based on page size.
24124
24125 Hardware expects ECCM 0 for small page and ECCM 1 for large page
24126 when booting from NAND, so use those defaults.
24127
24128 Signed-off-by: Scott Wood <scottwood@freescale.com>
24129
24130 commit c013b74975dab0805ef6d369b013230c4e8a660d
24131 Author: Haiying Wang <Haiying.Wang@freescale.com>
24132 Date: Wed Oct 29 13:32:59 2008 -0400
24133
24134 NAND: Add support for MPC8572DS board
24135
24136 This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
24137 0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
24138 config file.
24139
24140 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
24141 make room for the increased code size with NAND enabled.
24142
24143 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
24144 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
24145 Signed-off-by: Scott Wood <scottwood@freescale.com>
24146
24147 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
24148 Author: Haiying Wang <Haiying.Wang@freescale.com>
24149 Date: Wed Oct 29 11:05:55 2008 -0400
24150
24151 Make Freescale local bus registers available for both 83xx and 85xx.
24152
24153 - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
24154 can be shared by both 83xx and 85xx
24155 - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
24156 files which use lbus83xx_t.
24157 - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
24158 85xx can share them.
24159
24160 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
24161 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
24162 Signed-off-by: Scott Wood <scottwood@freescale.com>
24163
24164 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
24165 Author: Scott Wood <scottwood@freescale.com>
24166 Date: Mon Oct 27 15:38:30 2008 -0500
24167
24168 NAND: Align right column of the shorthelp with other commands.
24169
24170 I accidentally broke this in when making consistent the partial
24171 alignment of the longhelp.
24172
24173 Signed-off-by: Scott Wood <scottwood@freescale.com>
24174
24175 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
24176 Author: Karl Beldan <karl.beldan@gmail.com>
24177 Date: Mon Sep 15 16:08:03 2008 +0200
24178
24179 NAND: Reset chip on power-up
24180
24181 Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
24182 The first command sent is NAND_CMD_READID.
24183 Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
24184 Tested with an MT29F4G08AAC.
24185
24186 Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
24187 Signed-off-by: Scott Wood <scottwood@freescale.com>
24188
24189 commit c45912d8abc52de796b9059a58faf7c4166eab58
24190 Author: Scott Wood <scottwood@freescale.com>
24191 Date: Fri Oct 24 16:20:43 2008 -0500
24192
24193 NAND: sync with 2.6.27
24194
24195 This brings the core NAND code up to date with the Linux kernel.
24196
24197 Since there were several drivers in Linux as of the last update that are
24198 not in u-boot, I'm not bringing over new drivers that have been added
24199 since in the absence of an interested party.
24200
24201 I did not update OneNAND since it was recently synced by Kyungmin Park,
24202 and I'm not sure exactly what the common ancestor is.
24203
24204 Signed-off-by: Scott Wood <scottwood@freescale.com>
24205
24206 commit b1d0db1805c3395149777e507b6da53410abac4e
24207 Author: Kumar Gala <galak@kernel.crashing.org>
24208 Date: Tue Oct 21 17:25:47 2008 -0500
24209
24210 bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
24211
24212 Added the ability to config out bootm support for Linux, NetBSD, RTEMS
24213
24214 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24215
24216 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
24217 Author: Kumar Gala <galak@kernel.crashing.org>
24218 Date: Tue Oct 21 17:25:46 2008 -0500
24219
24220 bootm: support subcommands in linux ppc bootm
24221
24222 Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
24223
24224 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24225
24226 commit 49c3a861d11735838f1f1b11999ce433006dc919
24227 Author: Kumar Gala <galak@kernel.crashing.org>
24228 Date: Tue Oct 21 17:25:45 2008 -0500
24229
24230 bootm: Add subcommands
24231
24232 Add the ability to break the steps of the bootm command into several
24233 subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
24234
24235 This allows us to do things like manipulate device trees before
24236 they are passed to a booting kernel or setup memory for a secondary
24237 core in multicore situations.
24238
24239 Not all OS types support all subcommands (currently only start, loados,
24240 ramdisk, fdt, and go are supported).
24241
24242 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24243
24244 commit be08315933537f061bc1ce61f33a29c56458bbad
24245 Author: Kumar Gala <galak@kernel.crashing.org>
24246 Date: Tue Oct 21 17:25:44 2008 -0500
24247
24248 bootm: Move to using a function pointer table for the boot os function
24249
24250 This removes a bit of code and makes it easier for the upcoming sub bootm
24251 command support to call into the proper OS specific handler.
24252
24253 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24254 Signed-off-by: Wolfgang Denk <wd@denx.de>
24255
24256 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
24257 Author: Graeme Russ <graeme.russ@gmail.com>
24258 Date: Mon Sep 29 23:03:14 2008 +1000
24259
24260 i386: Renamed show_boot_progress in assembler code
24261
24262 Renamed show_boot_progress in assembler init phase to
24263 show_boot_progress_asm to avoid link conflicts with C version
24264
24265 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
24266
24267 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
24268 Author: Peter Tyser <ptyser@xes-inc.com>
24269 Date: Mon Oct 27 16:42:00 2008 -0500
24270
24271 85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
24272
24273 The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
24274 processors have a 3-bit wide IO_SEL field but have the most
24275 significant bit is wired to 0 so this change should not affect
24276 them.
24277
24278 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24279
24280 commit cd4251624205cb97104f6e32679dc7754934f711
24281 Author: Becky Bruce <becky.bruce@freescale.com>
24282 Date: Mon Oct 27 16:09:42 2008 -0500
24283
24284 powerpc: fix pci window initialization to work with > 4GB DRAM
24285
24286 The existing code has a few errors that need to be fixed in
24287 order to support large RAM sizes. Fix those, and add a
24288 comment to make it clearer.
24289
24290 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
24291 Acked-by: Kumar Gala <galak@kernel.crashing.org>
24292
24293 commit 219542a1a66ca017b12860920714a9859b18a5d7
24294 Author: Kumar Gala <galak@kernel.crashing.org>
24295 Date: Mon Oct 27 13:16:20 2008 -0500
24296
24297 pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
24298
24299 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24300
24301 commit 6b59e03e0237a40a2305ea385defdfd92000978b
24302 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24303 Date: Mon Sep 1 16:21:22 2008 +0200
24304
24305 lcd: Let the board code show board-specific info
24306
24307 The information displayed when CONFIG_LCD_INFO is set is inherently
24308 board-specific, so it should be done by the board code. The current code
24309 dealing with this only handles two cases, and is already a horrible mess
24310 of #ifdeffery.
24311
24312 Yes, this duplicates some code, but it also allows boards to print more
24313 board-specific information; this used to be very difficult.
24314
24315 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24316 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24317
24318 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
24319 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24320 Date: Mon Sep 1 16:21:21 2008 +0200
24321
24322 lcd: Set lcd_is_enabled before clearing the screen
24323
24324 This allows the logo/info rendering routines to use the regular
24325 lcd_putc/lcd_puts/lcd_printf calls.
24326
24327 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24328 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24329
24330 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
24331 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24332 Date: Mon Sep 1 16:21:20 2008 +0200
24333
24334 lcd: Implement lcd_printf()
24335
24336 lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
24337 this by borrowing the lcd_printf() implementation from the cogent board
24338 code (which appears to use its own LCD framework.)
24339
24340 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24341 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24342
24343 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
24344 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24345 Date: Mon Sep 1 16:21:19 2008 +0200
24346
24347 atmel_lcdfb: Straighten out funky vl_sync logic
24348
24349 If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
24350 otherwise we don't. WTF?
24351
24352 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24353 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24354
24355 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
24356 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24357 Date: Mon Sep 1 16:21:18 2008 +0200
24358
24359 atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
24360
24361 atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
24362 includes a file that does, asm/arch/gpio.h, but this file doesn't
24363 include <asm/arch/hardware.h> like it's supposed to.
24364
24365 Add the missing include to asm/arch/gpio.h and remove the workaround
24366 from the atmel_lcdfb driver. This makes the driver compile on avr32.
24367
24368 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24369 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24370
24371 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
24372 Author: Kumar Gala <galak@kernel.crashing.org>
24373 Date: Wed Oct 22 14:38:55 2008 -0500
24374
24375 86xx: Convert all fsl_pci_init users to new APIs
24376
24377 Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
24378 fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
24379
24380 With these changes the board code is a bit smaller and we get dma-ranges
24381 set in the device tree for these boards.
24382
24383 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24384 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24385 Acked-by: Jon Loeliger <jdl@freescale.com>
24386
24387 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
24388 Author: Kumar Gala <galak@kernel.crashing.org>
24389 Date: Tue Oct 21 08:28:33 2008 -0500
24390
24391 85xx: Convert all fsl_pci_init users to new APIs
24392
24393 Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
24394 MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
24395 and ft_fsl_pci_setup().
24396
24397 With these changes the board code is a bit smaller and we get dma-ranges
24398 set in the device tree for these boards.
24399
24400 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24401 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24402
24403 commit a2aab460727e5f674353a83a81000ef794bffcae
24404 Author: Kumar Gala <galak@kernel.crashing.org>
24405 Date: Thu Oct 23 00:01:06 2008 -0500
24406
24407 pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
24408
24409 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24410 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24411
24412 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
24413 Author: Kumar Gala <galak@kernel.crashing.org>
24414 Date: Wed Oct 22 14:06:24 2008 -0500
24415
24416 pci/fsl_pci_init: Add a common PCI inbound setup function
24417
24418 Add a common setup function that determines the pci_region(s) based
24419 on how much memory we have in the system.
24420
24421 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24422 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24423
24424 commit 612ea01018a459234d54ed57ec6a5a244ce75678
24425 Author: Kumar Gala <galak@kernel.crashing.org>
24426 Date: Tue Oct 21 10:13:14 2008 -0500
24427
24428 pci/fsl_pci_init: Enable larger address and setting inbound windows properly
24429
24430 * PCI Inbound window was setup incorrectly. The PCI address and system
24431 address were swapped. The PCI address should be setting piwar/piwbear
24432 and the system address should be setting pitar.
24433
24434 * Removed masking of addresses to allow for system address to support
24435 system address & PCI address >32-bits
24436
24437 * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
24438
24439 * Respect the PCI_REGION_PREFETCH for inbound windows
24440
24441 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24442 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24443
24444 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
24445 Author: Kumar Gala <galak@kernel.crashing.org>
24446 Date: Wed Oct 22 23:33:56 2008 -0500
24447
24448 fdt: Added helper to set PCI dma-ranges property
24449
24450 Added fdt_pci_dma_ranges() that parses the pci_region info from the
24451 struct pci_controller and populates the dma-ranges based on it.
24452
24453 The max # of windws/dma-ranges we support is 3 since on embedded
24454 PowerPC based systems this is the max number of windows.
24455
24456 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24457 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24458
24459 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
24460 Author: Kumar Gala <galak@kernel.crashing.org>
24461 Date: Thu Oct 23 00:05:47 2008 -0500
24462
24463 fdt: Add fdt_getprop_u32_default helpers
24464
24465 Add helper functions to return find a node and return it's property
24466 or a default value.
24467
24468 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24469 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24470 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
24471
24472 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
24473 Author: Kumar Gala <galak@kernel.crashing.org>
24474 Date: Tue Oct 21 18:06:15 2008 -0500
24475
24476 86xx: Enable 64-bit PCI resources on all Freescale boards
24477
24478 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24479 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24480
24481 commit 0151cbaccf4504821ecfde0217299bd740086bb6
24482 Author: Kumar Gala <galak@kernel.crashing.org>
24483 Date: Tue Oct 21 11:33:58 2008 -0500
24484
24485 85xx: Enable 64-bit PCI resources on all Freescale boards
24486
24487 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24488 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24489
24490 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
24491 Author: Kumar Gala <galak@kernel.crashing.org>
24492 Date: Tue Oct 21 08:36:08 2008 -0500
24493
24494 pci: Allow for PCI addresses to be 64-bit
24495
24496 PCI bus is inherently 64-bit. While not all system require access to
24497 the full 64-bit PCI address range some do. This allows those systems
24498 to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
24499
24500 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24501 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
24502 Acked-by: Wolfgang Denk <wd@denx.de>
24503
24504 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
24505 Author: Dave Liu <daveliu@freescale.com>
24506 Date: Thu Oct 23 21:18:53 2008 +0800
24507
24508 85xx: Fix the incorrect register used for DDR erratum1
24509
24510 The 8572 DDR erratum1:
24511 DDR controller may enter an illegal state when operating
24512 in 32-bit bus mode with 4-beat bursts.
24513
24514 Description:
24515 When operating with a 32-bit bus, it is recommended that
24516 DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
24517 This forces the DDR controller to use 4-beat bursts when
24518 communicating to the DRAMs. However, an issue exists that
24519 could lead to data corruption when the DDR controller is
24520 in 32-bit bus mode while using 4-beat bursts.
24521
24522 Projected Impact:
24523 If the DDR controller is operating in 32-bit bus mode with
24524 4-beat bursts, then the controller may enter into a bad state.
24525 All subsequent reads from memory is corrupted.
24526 Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
24527 Therefore, this erratum does not affect DDR3 mode.
24528
24529 Work Arounds:
24530 To work around this issue, software must set DEBUG_1[31] in
24531 DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
24532 and CCSRBAR offset + 0x6f00 for DDR_2).
24533
24534 Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
24535 as condition, but it should be DDR_SDRAM_CFG register.
24536
24537 Signed-off-by: Dave Liu <daveliu@freescale.com>
24538
24539 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
24540 Author: Dave Liu <daveliu@freescale.com>
24541 Date: Thu Oct 23 21:17:19 2008 +0800
24542
24543 85xx: remove unused config definition
24544
24545 Signed-off-by: Dave Liu <daveliu@freescale.com>
24546
24547 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
24548 Author: Kumar Gala <galak@kernel.crashing.org>
24549 Date: Thu Oct 23 01:47:38 2008 -0500
24550
24551 85xx: Add basic e500mc core support
24552
24553 Introduce CONFIG_E500MC to deal with the minor differences between
24554 e500v2 and e500mc.
24555
24556 * Certain fields of HID0/1 don't exist anymore on e500mc
24557 * Cache line size is 64-bytes on e500mc
24558 * reset value of PIR is different
24559
24560 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24561
24562 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
24563 Author: Kumar Gala <galak@kernel.crashing.org>
24564 Date: Thu Oct 23 01:47:37 2008 -0500
24565
24566 85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
24567
24568 Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
24569 e500mc's 64-byte cacheline properly when it gets added.
24570
24571 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24572
24573 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
24574 Author: Georg Schardt <schardt@team-ctech.de>
24575 Date: Fri Oct 24 13:51:52 2008 +0200
24576
24577 ppc4xx: New board avnet fx12 minimodul
24578
24579 This patch adds support for the avnet fx12 minimodul.
24580 It needs the "ppc4xx: Generic architecture for xilinx ppc405"
24581 patch from Ricardo.
24582
24583 Signed-off-by: Georg Schardt <schardt@team-ctech.de>
24584 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24585 Signed-off-by: Stefan Roese <sr@denx.de>
24586
24587 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
24588 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24589 Date: Tue Oct 21 18:29:46 2008 +0200
24590
24591 ppc4xx: Generic architecture for xilinx ppc405(v3)
24592
24593 As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
24594 ppc440 boards, this patch presents a common architecture for all the
24595 xilinx ppc405 boards.
24596
24597 Any custom xilinx ppc405 board can be added very easily with no code
24598 duplicity.
24599
24600 This patch also adds a simple generic board, that can be used on almost
24601 any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
24602
24603 This patch is prepared to work with the latest version of EDK (10.1)
24604
24605 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24606 Signed-off-by: Stefan Roese <sr@denx.de>
24607
24608 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
24609 Author: Stefan Roese <sr@denx.de>
24610 Date: Fri Oct 24 08:56:09 2008 +0200
24611
24612 ppc4xx: Disable DDR2 autocalibration on Kilauea for now
24613
24614 Since the new autocalibration still has some problems on some Kilauea
24615 boards with 200MHz DDR2 frequency we disable the autocalibration and
24616 use the hardcoded values as done before. This seems to work reliably
24617 on all known DDR2 frequencies.
24618
24619 After the autocalibration issue is fixed we will enable it again.
24620
24621 Signed-off-by: Stefan Roese <sr@denx.de>
24622
24623 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
24624 Author: Mike Frysinger <vapier@gentoo.org>
24625 Date: Wed Apr 9 02:02:07 2008 -0400
24626
24627 Blackfin: fix up UART status bit handling
24628
24629 Some Blackfin UARTs are read-to-clear while others are write-to-clear.
24630 This can cause problems when we poll the LSR and then later try and handle
24631 any errors detected.
24632
24633 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24634
24635 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
24636 Author: Mike Frysinger <vapier@gentoo.org>
24637 Date: Sat Oct 11 20:42:17 2008 -0400
24638
24639 Blackfin: bf561-ezkit: drop redundant code
24640
24641 Common Blackfin code already announces CPU information.
24642
24643 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24644
24645 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
24646 Author: Mike Frysinger <vapier@gentoo.org>
24647 Date: Sat Oct 11 20:43:10 2008 -0400
24648
24649 Blackfin: bf561-ezkit: drop pointless USB code
24650
24651 The USB/LAN register settings are not actually used/needed in order to
24652 drive things from U-Boot, so drop the code.
24653
24654 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24655
24656 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
24657 Author: Mike Frysinger <vapier@gentoo.org>
24658 Date: Sat Oct 11 20:47:58 2008 -0400
24659
24660 Blackfin: linker scripts: force start.o and set initcode boundaries
24661
24662 Make sure that the start.o object is always the first object in our linker
24663 script regardless of configuration settings, and add some linker symbols
24664 so the ldr utility can properly locate the initcode when generating a LDR.
24665
24666 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24667
24668 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
24669 Author: Mike Frysinger <vapier@gentoo.org>
24670 Date: Sat Oct 11 21:19:39 2008 -0400
24671
24672 Blackfin: small cpu init optimization while setting interrupt mask
24673
24674 Use the sti instruction to set the initial interrupt mask rather than
24675 banging on the core IMASK MMR to save both space and time.
24676
24677 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24678
24679 commit 960922291c9594acb575cec7e47d7bed9b58182c
24680 Author: Mike Frysinger <vapier@gentoo.org>
24681 Date: Sat Oct 11 21:18:10 2008 -0400
24682
24683 Blackfin: set initial stack correctly according to Blackfin ABI
24684
24685 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24686
24687 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
24688 Author: Mike Frysinger <vapier@gentoo.org>
24689 Date: Sun Apr 20 03:11:53 2008 -0400
24690
24691 Blackfin: make baud calculation more accurate
24692
24693 We should use the algorithm in the Linux kernel so that the UART divisor
24694 calculation is more accurate. It also fixes problems on some picky UARTs
24695 that have sampling anomalies.
24696
24697 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24698
24699 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
24700 Author: Mike Frysinger <vapier@gentoo.org>
24701 Date: Mon Oct 6 04:21:41 2008 -0400
24702
24703 Blackfin: decode hwerrcause/excause when crashing
24704
24705 Having to decode hwerrcause/excause values is a pain, so automate it.
24706
24707 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24708
24709 commit 2de95bb20c488f20298df6881b700a5a757ee780
24710 Author: Mike Frysinger <vapier@gentoo.org>
24711 Date: Mon Oct 6 04:20:54 2008 -0400
24712
24713 Blackfin: fix register dump messages
24714
24715 Make sure we report RETI/IPEND correctly.
24716
24717 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24718
24719 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
24720 Author: Mike Frysinger <vapier@gentoo.org>
24721 Date: Mon Oct 6 04:19:34 2008 -0400
24722
24723 Blackfin: don't bother displaying reboot msg when crashing
24724
24725 The hang function already tells you to reboot, so no point in showing it
24726 twice.
24727
24728 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24729
24730 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
24731 Author: Mike Frysinger <vapier@gentoo.org>
24732 Date: Sun Jun 1 01:23:48 2008 -0400
24733
24734 Blackfin: enable support for nested interrupts
24735
24736 During cpu init, make sure we initialize the CEC properly so that
24737 interrupts can fire and be handled while U-Boot is running.
24738
24739 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24740
24741 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
24742 Author: Mike Frysinger <vapier@gentoo.org>
24743 Date: Mon Oct 6 03:55:25 2008 -0400
24744
24745 Blackfin: init NAND before relocating env
24746
24747 If booting out of NAND, we need to make sure we initialize it properly
24748 before attempting to relocate the environment.
24749
24750 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24751
24752 commit 0f9a8819416ba40a53de50af148847a0e508f84d
24753 Author: Mike Frysinger <vapier@gentoo.org>
24754 Date: Thu Aug 7 18:40:13 2008 -0400
24755
24756 Blackfin: check cache bits, not cplb bits
24757
24758 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24759
24760 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
24761 Author: Mike Frysinger <vapier@gentoo.org>
24762 Date: Thu Aug 7 17:52:59 2008 -0400
24763
24764 Blackfin: drop unused cache flush code
24765
24766 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24767
24768 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
24769 Author: Mike Frysinger <vapier@gentoo.org>
24770 Date: Thu Aug 7 15:21:47 2008 -0400
24771
24772 Blackfin: unify cache handling code
24773
24774 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24775
24776 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
24777 Author: Mike Frysinger <vapier@gentoo.org>
24778 Date: Mon Oct 6 03:39:07 2008 -0400
24779
24780 Blackfin: only initialize the RTC when actually used
24781
24782 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24783
24784 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
24785 Author: Mike Frysinger <vapier@gentoo.org>
24786 Date: Mon Oct 6 03:44:33 2008 -0400
24787
24788 Blackfin: fix SWRST register definition
24789
24790 The SWRST register is a 16bit, not 32bit, register.
24791
24792 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24793
24794 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
24795 Author: Mike Frysinger <vapier@gentoo.org>
24796 Date: Thu Aug 7 18:54:57 2008 -0400
24797
24798 Blackfin: build with -fomit-frame-pointer
24799
24800 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24801
24802 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
24803 Author: Mike Frysinger <vapier@gentoo.org>
24804 Date: Thu Aug 7 17:50:26 2008 -0400
24805
24806 Blackfin: document some of the blackfin directories
24807
24808 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24809
24810 commit e4337968e43698a68ba608369f46d4a4114111ca
24811 Author: Mike Frysinger <vapier@gentoo.org>
24812 Date: Thu Aug 7 15:16:56 2008 -0400
24813
24814 Blackfin: only enable hardware error irq by default
24815
24816 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24817
24818 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
24819 Author: Mike Frysinger <vapier@gentoo.org>
24820 Date: Thu Aug 7 13:36:43 2008 -0400
24821
24822 Blackfin: punt old unused mem_init.h header
24823
24824 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24825
24826 commit bcc121a01608042066a19ab5bff5bcfb805bf406
24827 Author: Mike Frysinger <vapier@gentoo.org>
24828 Date: Thu Aug 7 13:18:55 2008 -0400
24829
24830 Blackfin: delete unused page_descriptor_table_size define
24831
24832 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24833
24834 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
24835 Author: Mike Frysinger <vapier@gentoo.org>
24836 Date: Thu Aug 7 13:17:03 2008 -0400
24837
24838 Blackfin: fix typo in boot mode comment and add NAND define
24839
24840 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24841
24842 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
24843 Author: Ben Maan <moo@cow>
24844 Date: Thu Aug 7 13:14:21 2008 -0400
24845
24846 Blackfin: fix port mux defines for BF54x
24847
24848 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24849
24850 commit 0656ef2ba274910d31364fe022f6c7db0051660d
24851 Author: Mike Frysinger <vapier@gentoo.org>
24852 Date: Thu Aug 7 13:09:50 2008 -0400
24853
24854 Blackfin: update anomaly lists
24855
24856 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24857
24858 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
24859 Author: Mike Frysinger <vapier@gentoo.org>
24860 Date: Thu Aug 7 13:08:54 2008 -0400
24861
24862 Blackfin: unify DSPID/DBGSTAT MMR definitions
24863
24864 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24865
24866 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
24867 Author: Wolfgang Denk <wd@denx.de>
24868 Date: Tue Oct 21 15:53:51 2008 +0200
24869
24870 Fix strmhz(): avoid printing negative fractions
24871
24872 Signed-off-by: Wolfgang Denk <wd@denx.de>
24873
24874 commit 4a7f6b750d8de543fdf8e58acd86745010054571
24875 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
24876 Date: Fri Oct 17 08:55:51 2008 -0400
24877
24878 mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
24879
24880 This is done to allow other 83XX based platforms which also have UPM
24881 (e.g. 8360) to configure and use their UPM in u-boot.
24882
24883 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24884 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24885
24886 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
24887 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24888 Date: Tue Oct 14 22:58:53 2008 +0400
24889
24890 mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
24891
24892 With this patch u-boot can fixup the dr_mode and phy_type properties
24893 for the Dual-Role USB controller.
24894
24895 While at it, also remove #ifdefs around includes, they are not needed.
24896
24897 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24898 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24899
24900 commit b3379f3fd13969934c00097c05754e7a8990fd39
24901 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24902 Date: Wed Oct 8 20:52:54 2008 +0400
24903
24904 mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
24905
24906 Though NAND chip is replaceable on the MPC837XE-MDS boards, the
24907 current settings don't work with the default chip on the board.
24908 Nevertheless Freescale's U-Boot sets the option register correctly,
24909 so I just dumped the register from the working u-boot. My guess is
24910 that the old settings were applicable for some pilot boards, not
24911 found in the production.
24912
24913 This patch also enables FSL ELBC driver so that we could access
24914 the NAND storage in the u-boot.
24915
24916 The NAND support costs about 45KB, so the u-boot no longer fits
24917 into two 128KB NOR flash sectors, thus we also have to adjust
24918 environment location: add another 128KB to the monitor length.
24919
24920 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24921
24922 It is due to hardware design and logic defect, that is the
24923 I/O[0:7] of NAND chip is connected to LAD[7:0], so when
24924 the NAND chip connected to nLCS3, you have to set up the
24925 OR3[BCTLD] = '1' for normal operation, otherwise it will have
24926 bus contention due to the pin 48/25 of U60 is enabled.
24927
24928 Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
24929 asserted upon access to the NAND chip, keep the default state.
24930
24931 Acked-by: Dave Liu <daveliu@freescale.com>
24932 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24933
24934 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
24935 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24936 Date: Thu Oct 2 19:17:33 2008 +0400
24937
24938 mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
24939
24940 The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
24941 standalone or acting as a PCI agent. User's Guide says:
24942
24943 - When the CPLD recognizes its location on the PIB it automatically
24944 configures RCW to the PCI Host.
24945 - If the CPLD fails to recognize its location then it is automatically
24946 configured as an Agent and the PCI is configured to an external arbiter.
24947
24948 This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
24949 flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
24950 PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
24951 any arbiter bad things will happen (here the board hangs during any config
24952 space reads).
24953
24954 In this situation we must disable the PCI. And in case of anybody really
24955 want to use an external arbiter, we provide "pci_external_aribter"
24956 environment variable.
24957
24958 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24959 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24960
24961 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
24962 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24963 Date: Thu Oct 2 18:32:25 2008 +0400
24964
24965 mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
24966
24967 This involves configuring the SerDes and fixing up the flags and
24968 PHY addresses for the TSECs.
24969
24970 For Linux we also fix up the device tree.
24971
24972 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24973 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24974
24975 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
24976 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24977 Date: Thu Oct 2 18:31:59 2008 +0400
24978
24979 mpc83xx: add TSECs' HRCWH masks for MPC837x processors
24980
24981 We'll use these masks to parse TSEC modes out of HRCWH.
24982
24983 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24984 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24985
24986 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
24987 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24988 Date: Thu Oct 2 18:31:56 2008 +0400
24989
24990 mpc83xx: serdes: add forgotten shifts for rfcks
24991
24992 The rfcks should be shifted by 28 bits left. We didn't notice the bug
24993 because we were using only 100MHz clocks (for which rfcks == 0).
24994
24995 Though, for SGMII we'll need 125MHz clocks.
24996
24997 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24998 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24999
25000 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
25001 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25002 Date: Thu Oct 2 18:31:53 2008 +0400
25003
25004 mpc83xx: fix serdes setup for the MPC8378E boards
25005
25006 MPC837xE specs says that SerDes1 has:
25007
25008 — Two lanes running x1 SGMII at 1.25 Gbps;
25009 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
25010
25011 And for SerDes2:
25012
25013 — Two lanes running x1 PCI Express at 2.5 Gbps;
25014 — One lane running x2 PCI Express at 2.5 Gbps;
25015 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
25016
25017 The spec also explicitly states that PEX options are not valid for
25018 the SD1.
25019
25020 Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
25021 which is wrong to do.
25022
25023 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25024 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25025
25026 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
25027 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25028 Date: Wed Sep 10 18:12:37 2008 +0400
25029
25030 mpc83xx: mpc8360emds: rework LBC SDRAM setup
25031
25032 Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
25033 it difficult to use (b/c then the memory is discontinuous and
25034 there is quite big memory hole between the DDR/SDRAM regions).
25035
25036 This patch reworks LBC SDRAM setup so that now we dynamically
25037 place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
25038 DDR memory).
25039
25040 With this patch we're able to:
25041
25042 - Boot without external DDR memory;
25043 - Use most "DDR + SDRAM" setups without need to support for
25044 sparse/discontinuous memory model in the software.
25045
25046 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25047 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25048
25049 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
25050 Author: Wolfgang Denk <wd@xpert.denx.de>
25051 Date: Tue Oct 21 11:23:56 2008 +0200
25052
25053 FDT: don't use private kernel header files
25054
25055 On some systems (for example Fedora Core 4) U-Boot builds with the
25056 following wanrings only:
25057
25058 ...
25059 In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
25060 from fdt.c:51:
25061 /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
25062
25063 This patch fixes this problem.
25064
25065 Signed-off-by: Wolfgang Denk <wd@denx.de>
25066
25067 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
25068 Author: Stefan Roese <sr@denx.de>
25069 Date: Mon Oct 13 15:15:31 2008 +0200
25070
25071 ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
25072
25073 Signed-off-by: Stefan Roese <sr@denx.de>
25074
25075 commit 43cbce69d48d052574d71f50724be546d90a46a4
25076 Author: Stefan Roese <sr@denx.de>
25077 Date: Mon Oct 13 10:45:14 2008 +0200
25078
25079 ppc4xx: Correctly setup ranges property in ebc node
25080
25081 Previously only the NOR flash mapping was written into the ranges
25082 property of the ebc node. This patch now writes all enabled chip
25083 select areas into the ranges property.
25084
25085 Signed-off-by: Stefan Roese <sr@denx.de>
25086
25087 commit d7b26d58328f137471ea97de382bfa63f7239931
25088 Author: Dirk Eibach <eibach@gdsys.de>
25089 Date: Wed Oct 8 15:37:50 2008 +0200
25090
25091 ppc4xx: Add GDSys neo 405EP board support
25092
25093 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
25094 Signed-off-by: Stefan Roese <sr@denx.de>
25095
25096 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
25097 Author: Niklaus Giger <niklaus.giger@netstal.com>
25098 Date: Wed Oct 1 14:46:13 2008 +0200
25099
25100 ppc4xx: Update configs for Netstal boards
25101
25102 I reorganized my config files, putting the common stuff into netstal-common.h
25103 (got the idea by looking a amcc-common.h from Stefan).
25104
25105 Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
25106
25107 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
25108 Signed-off-by: Stefan Roese <sr@denx.de>
25109
25110 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
25111 Author: Adam Graham <agraham@amcc.com>
25112 Date: Wed Oct 8 10:13:19 2008 -0700
25113
25114 ppc4xx: Add routine to retrieve CPU number
25115
25116 Provide a weak defined routine to retrieve the CPU number for
25117 reference boards that have multiple CPU's. Default behavior
25118 is the existing single CPU print output. Reference boards with
25119 multiple CPU's need to provide a board specific routine.
25120 See board/amcc/arches/arches.c for an example.
25121
25122 Signed-off-by: Adam Graham <agraham@amcc.com>
25123 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
25124 Signed-off-by: Stefan Roese <sr@denx.de>
25125
25126 commit 59217bae40e90982ab5400d849c08af683ace036
25127 Author: Adam Graham <agraham@amcc.com>
25128 Date: Wed Oct 8 10:13:14 2008 -0700
25129
25130 ppc4xx: Add static support for 44x IBM SDRAM Controller
25131
25132 This patch add the capability to configure a PPC440 based IBM SDRAM
25133 Controller with static, compiled-in, values. PPC440 memory subsystem
25134 includes a Memory Queue core.
25135
25136 Signed-off-by: Adam Graham <agraham@amcc.com>
25137 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
25138 Signed-off-by: Stefan Roese <sr@denx.de>
25139
25140 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
25141 Author: Adam Graham <agraham@amcc.com>
25142 Date: Wed Oct 8 10:12:53 2008 -0700
25143
25144 ppc4xx: Add AMCC Arches board support (dual 460GT)
25145
25146 The Arches Evaluation board is based on the AMCC 460GT SoC chip.
25147 This board is a dual processor board with each processor providing
25148 independent resources for Rapid IO, Gigabit Ethernet, and serial
25149 communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
25150 FLASH, UART, EEPROM and temperature sensor, along with a shared debug
25151 port. The two 460GT's will communicate with each other via shared
25152 memory, Gigabit Ethernet and x1 PCI-Express.
25153
25154 Signed-off-by: Adam Graham <agraham@amcc.com>
25155 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
25156 Signed-off-by: Stefan Roese <sr@denx.de>
25157
25158 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
25159 Author: Wolfgang Denk <wd@xpert.denx.de>
25160 Date: Sun Oct 19 21:54:30 2008 +0200
25161
25162 TQM8260: environment in flash instead EEPROM, baudrate 115k
25163
25164 Several customers have reported problems with the environment in
25165 EEPROM, including corrupted content after board reset. Probably the
25166 code to prevent I2C Enge Conditions is not working sufficiently.
25167
25168 We move the environment to flash now, which allows to have a backup
25169 copy plus gives much faster boot times.
25170
25171 Also, change the default console initialization to 115200 bps as used
25172 on most other boards.
25173
25174 Signed-off-by: Wolfgang Denk <wd@denx.de>
25175
25176 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
25177 Author: Kumar Gala <galak@kernel.crashing.org>
25178 Date: Sun Oct 19 12:49:19 2008 -0500
25179
25180 85xx: Fix compile warning in mpc8536ds.c
25181
25182 mpc8536ds.c: In function 'is_sata_supported':
25183 mpc8536ds.c:615: warning: unused variable 'devdisr'
25184
25185 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25186
25187 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
25188 Author: Wolfgang Denk <wd@denx.de>
25189 Date: Sun Oct 19 02:35:50 2008 +0200
25190
25191 Cleanup: fix "MHz" spelling
25192
25193 Signed-off-by: Wolfgang Denk <wd@denx.de>
25194
25195 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
25196 Author: Wolfgang Denk <wd@denx.de>
25197 Date: Sun Oct 19 02:35:49 2008 +0200
25198
25199 Use strmhz() to format clock frequencies
25200
25201 Signed-off-by: Wolfgang Denk <wd@denx.de>
25202
25203 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
25204 Author: Wolfgang Denk <wd@denx.de>
25205 Date: Sun Oct 19 02:35:48 2008 +0200
25206
25207 strmhz(): Round numbers when printing clock frequencies
25208
25209 Round clock frequencies for printing.
25210
25211 Many boards printed off clock frequencies like 399 MHz instead of the
25212 exact 400 MHz because numberes were not rounded. This is fixed now.
25213
25214 Signed-off-by: Wolfgang Denk <wd@denx.de>
25215
25216 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
25217 Author: Timur Tabi <timur@freescale.com>
25218 Date: Mon Oct 20 15:16:47 2008 -0500
25219
25220 85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
25221
25222 Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
25223 to add a comment that the correct value disagrees with the 8544 reference
25224 manual. The changelog for that commit is also wrong, as it says "bit 28"
25225 when it should be "bit 24".
25226
25227 Signed-off-by: Timur Tabi <timur@freescale.com>
25228
25229 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
25230 Author: Heiko Schocher <hs@denx.de>
25231 Date: Fri Oct 17 18:24:06 2008 +0200
25232
25233 mgcoge: add redundant environment sector
25234
25235 Signed-off-by: Heiko Schocher <hs@denx.de>
25236
25237 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
25238 Author: Heiko Schocher <hs@denx.de>
25239 Date: Fri Oct 17 18:23:27 2008 +0200
25240
25241 mgsuvd: update size of environment
25242
25243 Signed-off-by: Heiko Schocher <hs@denx.de>
25244
25245 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
25246 Author: Jason Jin <Jason.jin@freescale.com>
25247 Date: Fri Oct 10 11:41:00 2008 +0800
25248
25249 Enabled the Freescale SGMII riser card on 8536DS
25250
25251 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
25252
25253 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
25254 Author: Liu Yu <yu.liu@freescale.com>
25255 Date: Fri Oct 10 11:40:59 2008 +0800
25256
25257 Enabled the Freescale SGMII riser card on 8572DS
25258
25259 This patch based on Andy's work.
25260 Including command 'pixis_set_sgmii' support.
25261
25262 Signed-off-by: Liu Yu <yu.liu@freescale.com>
25263
25264 commit bff188baf9427c35745356439435acf3864d4c65
25265 Author: Liu Yu <yu.liu@freescale.com>
25266 Date: Fri Oct 10 11:40:58 2008 +0800
25267
25268 Make pixis_set_sgmii more general to support MPC85xx boards.
25269
25270 The pixis sgmii command depend on the FPGA support on the board, some 85xx
25271 boards support SGMII riser card but did not support this command, define
25272 CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
25273
25274 Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
25275 are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
25276 PIXIS_VCFGEN1_MASK in header file for both boards.
25277
25278 Signed-off-by: Liu Yu <yu.liu@freescale.com>
25279
25280 commit 5e981d683d2363204c76773941c2e9c2044c808f
25281 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
25282 Date: Wed Oct 8 23:38:02 2008 -0500
25283
25284 Add cpu/8xxx to TAGS_SUBDIRS
25285
25286 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
25287
25288 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
25289 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
25290 Date: Thu Oct 9 01:25:55 2008 -0500
25291
25292 fsl_law clear enable before changing.
25293
25294 Debug sessions may have left enabled laws.
25295 Changing lawbar with an unkown enabled tgtid could cause problems.
25296
25297 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
25298
25299 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
25300 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
25301 Date: Thu Oct 9 00:29:27 2008 -0500
25302
25303 mpc8572 additional end-point mode
25304
25305 mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
25306 Include host_agent == 0 decode for end-point determination.
25307
25308 This is not needed for the ds reference board since pcie3 will be a host
25309 in order to connect to the uli chip. Include it here as a reference for
25310 other mpc8572 boards.
25311
25312 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
25313
25314 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
25315 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
25316 Date: Wed Oct 8 23:37:59 2008 -0500
25317
25318 85xx if NUM_CPUS>1, print cpu number
25319
25320 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
25321
25322 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
25323 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
25324 Date: Wed Oct 8 23:38:01 2008 -0500
25325
25326 pixis do not print long help if not configured
25327
25328 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
25329
25330 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
25331 Author: Andy Fleming <afleming@freescale.com>
25332 Date: Tue Oct 7 08:09:50 2008 -0500
25333
25334 Have u-boot pass stashing parameters into device tree
25335
25336 Some cores don't support ethernet stashing at all, and some
25337 instances have errata. Adds 3 properties to gianfar nodes
25338 which support stashing. For now, just add this support to
25339 85xx SoCs.
25340
25341 Signed-off-by: Andy Fleming <afleming@freescale.com>
25342
25343 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
25344 Author: Haiying Wang <Haiying.Wang@freescale.com>
25345 Date: Fri Oct 3 12:37:57 2008 -0400
25346
25347 Add DDR options setting on MPC8641HPCN board
25348
25349 * Add board specific parameter table to choose correct cpo, clk_adjust,
25350 write_data_delay based on board ddr frequency and n_ranks.
25351
25352 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
25353
25354 Signed-off-by: James Yang <James.Yang@freescale.com>
25355 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25356
25357 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
25358 Author: Haiying Wang <Haiying.Wang@freescale.com>
25359 Date: Fri Oct 3 12:37:41 2008 -0400
25360
25361 Add ddr interleaving suppport for MPC8572DS board
25362
25363 * Add board specific parameter table to choose correct cpo, clk_adjust,
25364 write_data_delay, 2T based on board ddr frequency and n_ranks.
25365
25366 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
25367
25368 * Set memory controller interleaving mode to bank interleaving, and disable
25369 bank(chip select) interleaving mode by default, because the default on-board
25370 DDR DIMMs are 2x512MB single-rank.
25371
25372 * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
25373
25374 Signed-off-by: James Yang <James.Yang@freescale.com>
25375 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25376
25377 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
25378 Author: Haiying Wang <Haiying.Wang@freescale.com>
25379 Date: Fri Oct 3 12:37:26 2008 -0400
25380
25381 Add debug information for DDR controller registers
25382
25383 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25384
25385 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
25386 Author: Haiying Wang <Haiying.Wang@freescale.com>
25387 Date: Fri Oct 3 12:37:10 2008 -0400
25388
25389 Check DDR interleaving mode
25390
25391 * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
25392 ba_intlv_ctl.
25393 * Print DDR interleaving mode information
25394 * Add doc/README.fsl-ddr to describe the interleaving setting
25395
25396 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25397
25398 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
25399 Author: Haiying Wang <Haiying.Wang@freescale.com>
25400 Date: Fri Oct 3 12:36:55 2008 -0400
25401
25402 Pass dimm parameters to populate populate controller options
25403
25404 Because some dimm parameters like n_ranks needs to be used with the board
25405 frequency to choose the board parameters like clk_adjust etc. in the
25406 board_specific_paramesters table of the board ddr file, we need to pass
25407 the dimm parameters to the board file.
25408
25409 * move ddr dimm parameters header file from /cpu to /include directory.
25410 * add ddr dimm parameters to populate board specific options.
25411 * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
25412
25413 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25414
25415 commit dbbbb3abeff325855cae76e33d69d5665631443f
25416 Author: Haiying Wang <Haiying.Wang@freescale.com>
25417 Date: Fri Oct 3 12:36:39 2008 -0400
25418
25419 Make DDR interleaving mode work correctly
25420
25421 Fix some bugs:
25422 1. Correctly set intlv_ctl in cs_config.
25423 2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
25424 3. Set base_address and total memory for each ddr controller in memory
25425 controller interleaving mode.
25426
25427 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25428
25429 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
25430 Author: Kumar Gala <galak@kernel.crashing.org>
25431 Date: Mon Sep 22 23:40:42 2008 -0500
25432
25433 85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
25434
25435 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25436
25437 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
25438 Author: Kumar Gala <galak@kernel.crashing.org>
25439 Date: Mon Sep 22 14:11:11 2008 -0500
25440
25441 85xx: Improve flash remapping on MPC8572DS & MPC8536DS
25442
25443 Changing the flash from cacheable to cache-inhibited was taking a significant
25444 amount of time due to the fact that we were iterating over the full 256M of
25445 flash. Instead we can just flush the L1 d-cache and invalidate the i-cache.
25446
25447 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25448
25449 commit 54e091d3b603a3332c619199ca83a07e95960da4
25450 Author: Kumar Gala <galak@kernel.crashing.org>
25451 Date: Mon Sep 22 14:11:10 2008 -0500
25452
25453 85xx: Export invalidate_{i,d}cache and add flush_dcache
25454
25455 Added the ability for C code to invalidate the i/d-cache's and
25456 to flush the d-cache. This allows us to more efficient change mappings
25457 from cache-able to cache-inhibited.
25458
25459 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25460
25461 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
25462 Author: Heiko Schocher <hs@denx.de>
25463 Date: Fri Oct 17 16:11:52 2008 +0200
25464
25465 mgcoge, mgsuvd: extract more common code
25466
25467 in ft_blob_update () for both boards was an unneccessary
25468 repetition of code, which this patch moves in a common
25469 function for this boards.
25470
25471 Signed-off-by: Heiko Schocher <hs@denx.de>
25472
25473 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
25474 Author: Heiko Schocher <hs@denx.de>
25475 Date: Fri Oct 17 12:15:55 2008 +0200
25476
25477 mgcoge, mgsuvd: use in_*/out_* accesors
25478
25479 Signed-off-by: Heiko Schocher <hs@denx.de>
25480
25481 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
25482 Author: Heiko Schocher <hs@denx.de>
25483 Date: Fri Oct 17 13:52:51 2008 +0200
25484
25485 mgsuvd: fix compiler warning when using soft_i2c driver
25486
25487 Signed-off-by: Heiko Schocher <hs@denx.de>
25488
25489 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
25490 Author: Heiko Schocher <hs@denx.de>
25491 Date: Fri Oct 17 12:15:05 2008 +0200
25492
25493 mgsuvd: fix coding style
25494
25495 Signed-off-by: Heiko Schocher <hs@denx.de>
25496
25497 commit 5f4c3137f4f051787707c548133823f1656eb508
25498 Author: Heiko Schocher <hs@denx.de>
25499 Date: Fri Oct 17 12:13:30 2008 +0200
25500
25501 mgcoge: Second Flash on CS5 not on CS1
25502
25503 Signed-off-by: Heiko Schocher <hs@denx.de>
25504
25505 commit 76da19df5b8e186d269f29190696bd31fb6c836b
25506 Author: Kumar Gala <galak@kernel.crashing.org>
25507 Date: Thu Oct 16 21:52:08 2008 -0500
25508
25509 Added arch_lmb_reserve to allow arch specific memory regions protection
25510
25511 Each architecture has different ways of determine what regions of memory
25512 might not be valid to get overwritten when we boot. This provides a
25513 hook to allow them to reserve any regions they care about. Currently
25514 only ppc, m68k and sparc need/use this.
25515
25516 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25517
25518 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
25519 Author: Heiko Schocher <hs@denx.de>
25520 Date: Thu Oct 16 16:32:35 2008 +0200
25521
25522 mgcoge: added CONFIG_FIT to support the new u-boot image format
25523
25524 Signed-off-by: Heiko Schocher <hs@denx.de>
25525
25526 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
25527 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25528 Date: Thu Oct 16 15:01:15 2008 +0200
25529
25530 rename CFG_ macros to CONFIG_SYS
25531
25532 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25533
25534 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
25535 Author: Kumar Gala <galak@kernel.crashing.org>
25536 Date: Mon Oct 13 14:12:55 2008 -0500
25537
25538 74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
25539
25540 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25541
25542 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
25543 Author: Kumar Gala <galak@kernel.crashing.org>
25544 Date: Tue Sep 23 10:05:02 2008 -0500
25545
25546 Expose command table search for sub-commands
25547
25548 Sub-command can benefit from using the same table and search functions
25549 that top level commands have. Expose this functionality by refactoring
25550 find_cmd() and introducing find_cmd_tbl() that sub-command processing
25551 can call.
25552
25553 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25554
25555 commit f7e51b27508446f8cae3927975817137979ad5e8
25556 Author: Heiko Schocher <hs@denx.de>
25557 Date: Wed Oct 15 09:41:33 2008 +0200
25558
25559 mgsuvd, mgcoge: added BOOTCOUNT feature.
25560
25561 Signed-off-by: Heiko Schocher <hs@denx.de>
25562
25563 commit 8f64da7f83b553889bc08400c97047998382e9d2
25564 Author: Heiko Schocher <hs@denx.de>
25565 Date: Wed Oct 15 09:41:00 2008 +0200
25566
25567 mgcoge, mgsuvd: added support for the IVM EEprom.
25568
25569 The EEprom contains some Manufacturerinformation,
25570 which are read from u-boot at boot time, and saved
25571 in same hush shell variables.
25572
25573 Signed-off-by: Heiko Schocher <hs@denx.de>
25574
25575 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
25576 Author: Heiko Schocher <hs@denx.de>
25577 Date: Wed Oct 15 09:40:28 2008 +0200
25578
25579 hush: add showvar command for hush shell.
25580
25581 This new command shows the local variables defined in
25582 the hush shell:
25583
25584 => help showvar
25585 showvar
25586 - print values of all hushshell variables
25587 showvar name ...
25588 - print value of hushshell variable 'name'
25589
25590 Also make the set_local_var() and unset_local_var ()
25591 no longer static, so it is possible to define local
25592 hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
25593 is defined, u-boot calls hush_init_var (), where
25594 boardspecific code can define local hush shell
25595 variables at boottime.
25596
25597 Signed-off-by: Heiko Schocher <hs@denx.de>
25598
25599 commit 67b23a322848d828a5e45c0567b72762bfde7abf
25600 Author: Heiko Schocher <hs@denx.de>
25601 Date: Wed Oct 15 09:39:47 2008 +0200
25602
25603 I2C: adding new "i2c bus" Command to the I2C Subsystem.
25604
25605 With this Command it is possible to add new I2C Busses,
25606 which are behind 1 .. n I2C Muxes. Details see README.
25607
25608 Signed-off-by: Heiko Schocher <hs@denx.de>
25609
25610 commit c24853644ddd2dd2e4246b5854a93e6254a14092
25611 Author: Heiko Schocher <hs@denx.de>
25612 Date: Wed Oct 15 09:39:08 2008 +0200
25613
25614 mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
25615
25616 As documented in doc/I2C_Edge_Conditions, adding a
25617 board specific deblocking mechanism via CFG_I2C_INIT_BOARD
25618 for the mgcoge and mgsuvd board.
25619
25620 This code was originally written by Keymile in association
25621 with Anatech and Atmel in 1998. The Code toggels the SCL
25622 until the SCA line goes to HIGH (max. 16 times).
25623 And after this, a start condition is sent.
25624
25625 This is another approach to deblock the I2C Bus. The
25626 soft I2C driver actually sends 9 clocks with SDA High,
25627 and then a stop at the end, to deblock the I2C Bus.
25628
25629 Maybe we should use the approach from Keymile as
25630 the new standard?
25631
25632 Signed-off-by: Heiko Schocher <hs@denx.de>
25633
25634 commit 4ca107effebfbabac1057c39632105dacef95957
25635 Author: Heiko Schocher <hs@denx.de>
25636 Date: Wed Oct 15 09:38:38 2008 +0200
25637
25638 soft_i2c: Add CFG_I2C_INIT_BOARD option
25639
25640 This patch adds the option for a boardspecific
25641 I2C deblocking mechanism for the soft i2c driver.
25642
25643 Signed-off-by: Heiko Schocher <hs@denx.de>
25644
25645 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
25646 Author: Heiko Schocher <hs@denx.de>
25647 Date: Wed Oct 15 09:38:07 2008 +0200
25648
25649 mgcoge, mgsuvd: add DTT (LM75) support.
25650
25651 Signed-off-by: Heiko Schocher <hs@denx.de>
25652
25653 commit 8e442df438ab677057571e3ac01846bff7719bce
25654 Author: Heiko Schocher <hs@denx.de>
25655 Date: Wed Oct 15 09:37:34 2008 +0200
25656
25657 lm75: Make the LM75 MULTI_BUS compatible.
25658
25659 Signed-off-by: Heiko Schocher <hs@denx.de>
25660
25661 commit 12f1678127c1df2b2878ba93c88948bedc060775
25662 Author: Heiko Schocher <hs@denx.de>
25663 Date: Wed Oct 15 09:37:04 2008 +0200
25664
25665 lm75: fix Codingstyle issues.
25666
25667 Signed-off-by: Heiko Schocher <hs@denx.de>
25668
25669 commit f2202450c75ba6934b356024101500ddcde6e2a6
25670 Author: Heiko Schocher <hs@denx.de>
25671 Date: Wed Oct 15 09:36:33 2008 +0200
25672
25673 mgcoge, mgsuvd: added EEprom support.
25674
25675 Signed-off-by: Heiko Schocher <hs@denx.de>
25676
25677 commit 9661bf9d120f760238b2a073b84f2baf05010057
25678 Author: Heiko Schocher <hs@denx.de>
25679 Date: Wed Oct 15 09:36:03 2008 +0200
25680
25681 mgcoge, mgsuvd: add I2C support.
25682
25683 Signed-off-by: Heiko Schocher <hs@denx.de>
25684
25685 commit 98aed379586a155292efbf3209356836584b601c
25686 Author: Heiko Schocher <hs@denx.de>
25687 Date: Wed Oct 15 09:35:26 2008 +0200
25688
25689 soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
25690
25691 This patch fixes the following warnings, when using
25692 the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
25693 systems:
25694
25695 soft_i2c.c: In function 'send_reset':
25696 soft_i2c.c:93: warning: unused variable 'immr'
25697 soft_i2c.c: In function 'send_start':
25698 soft_i2c.c:124: warning: unused variable 'immr'
25699 soft_i2c.c: In function 'send_stop':
25700 soft_i2c.c:146: warning: unused variable 'immr'
25701 soft_i2c.c: In function 'send_ack':
25702 soft_i2c.c:171: warning: unused variable 'immr'
25703 soft_i2c.c: In function 'write_byte':
25704 soft_i2c.c:196: warning: unused variable 'immr'
25705 soft_i2c.c: In function 'read_byte':
25706 soft_i2c.c:244: warning: unused variable 'immr'
25707
25708 Signed-off-by: Heiko Schocher <hs@denx.de>
25709
25710 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
25711 Author: Heiko Schocher <hs@denx.de>
25712 Date: Wed Oct 15 09:34:45 2008 +0200
25713
25714 i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
25715
25716 Signed-off-by: Heiko Schocher <hs@denx.de>
25717
25718 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
25719 Author: Heiko Schocher <hs@denx.de>
25720 Date: Wed Oct 15 09:34:05 2008 +0200
25721
25722 mgcoge: fix Coding Style issues.
25723
25724 Signed-off-by: Heiko Schocher <hs@denx.de>
25725
25726 commit e43a27c49712203fe8848a17714330623edfb2eb
25727 Author: Heiko Schocher <hs@denx.de>
25728 Date: Wed Oct 15 09:33:30 2008 +0200
25729
25730 I2C: add new command i2c reset.
25731
25732 If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
25733 it is not possible to get out of this, until the
25734 complete Hardware gets a reset. This new commando
25735 calls again i2c_init (and that calls i2c_init_board
25736 if defined), which will deblock the I2C Bus.
25737
25738 Signed-off-by: Heiko Schocher <hs@denx.de>
25739 Signed-off-by: Wolfgang Denk <wd@denx.de>
25740
25741 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
25742 Author: Heiko Schocher <hs@denx.de>
25743 Date: Wed Oct 15 09:32:25 2008 +0200
25744
25745 mgsuvd, mgcoge: move this 2 boards in one dir.
25746
25747 There are some more extensions, which are for both boards
25748 and some more boards from this manufacturer will follow soon.
25749
25750 Signed-off-by: Heiko Schocher <hs@denx.de>
25751 Signed-off-by: Wolfgang Denk <wd@denx.de>
25752
25753 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
25754 Author: Dirk Eibach <eibach@gdsys.de>
25755 Date: Wed Oct 8 13:44:27 2008 +0200
25756
25757 hwmon: Add LM63 support
25758
25759 This patch adds support for the National LM63 temperature
25760 sensor with integrated fan control. It's used on the GDSys
25761 Neo board (405EP) which will be submitted later.
25762
25763 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
25764 Acked-by: Stefan Roese <sr@denx.de>
25765
25766 commit 7ba890bf2f2b92831420243c058951aa831119fd
25767 Author: Kyungmin Park <kmpark@infradead.org>
25768 Date: Wed Oct 8 11:01:17 2008 +0900
25769
25770 Add Red Black Tree support
25771
25772 Now it's used at UBI module. Of course other modules can use it.
25773 If you want to use it, please define CONFIG_RBTREE
25774
25775 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
25776
25777 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
25778 Author: richardretanubun <richardretanubun@ruggedcom.com>
25779 Date: Mon Oct 6 16:10:53 2008 -0400
25780
25781 CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
25782
25783 Added support for CONFIG_EFI_PARTITION to ext2 commands.
25784 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
25785
25786 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
25787 Author: richardretanubun <richardretanubun@ruggedcom.com>
25788 Date: Fri Sep 26 11:13:22 2008 -0400
25789
25790 Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
25791
25792 The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
25793 of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
25794
25795 Based on linux/fs/partitions/efi.[ch]
25796
25797 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
25798
25799 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
25800 Author: Bartlomiej Sieka <tur@semihalf.com>
25801 Date: Wed Oct 1 15:26:32 2008 +0200
25802
25803 FIT: output image load address for type 'firmware', fix message while there
25804
25805 Now that the auto-update feature uses the 'firmware' type for updates, it is
25806 useful to inspect the load address of such images.
25807
25808 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25809
25810 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
25811 Author: Bartlomiej Sieka <tur@semihalf.com>
25812 Date: Wed Oct 1 15:26:31 2008 +0200
25813
25814 Automatic software update from TFTP server
25815
25816 The auto-update feature allows to automatically download software updates
25817 from a TFTP server and store them in Flash memory during boot. Updates are
25818 contained in a FIT file and protected with SHA-1 checksum.
25819
25820 More detailed description can be found in doc/README.update.
25821
25822 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
25823 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25824
25825 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
25826 Author: Bartlomiej Sieka <tur@semihalf.com>
25827 Date: Wed Oct 1 15:26:27 2008 +0200
25828
25829 flash: factor out adjusting of Flash address to the end of sector
25830
25831 The upcoming automatic update feature needs the ability to adjust an
25832 address within Flash to the end of its respective sector. Factor out
25833 this functionality to a new function flash_sect_roundb().
25834
25835 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
25836 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25837 Signed-off-by: Stefan Roese <sr@denx.de>
25838
25839 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
25840 Author: Bartlomiej Sieka <tur@semihalf.com>
25841 Date: Wed Oct 1 15:26:29 2008 +0200
25842
25843 net: Make TFTP server timeout configurable
25844
25845 There are two aspects of a TFTP transfer involving timeouts:
25846 1. timeout waiting for initial server reply after sending RRQ
25847 2. timeouts while transferring actual data from the server
25848
25849 Since the upcoming auto-update feature attempts a TFTP download during each
25850 boot, it is undesirable to have a long delay when the TFTP server is not
25851 available. Thus, this commit makes the server timeout (1.) configurable by two
25852 global variables:
25853
25854 TftpRRQTimeoutMSecs
25855 TftpRRQTimeoutCountMax
25856
25857 TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
25858 server, TftpRRQTimeoutCountMax overrides default number of connection retries.
25859 The total delay when trying to download a file from a non-existing TFTP server
25860 is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
25861
25862 Timeouts during file transfers (2.) are unaffected.
25863
25864 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
25865 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25866 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25867
25868 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
25869 Author: Bartlomiej Sieka <tur@semihalf.com>
25870 Date: Wed Oct 1 15:26:28 2008 +0200
25871
25872 net: express the first argument to NetSetTimeout() in milliseconds
25873
25874 Enforce millisecond semantics of the first argument to NetSetTimeout() --
25875 the change is transparent for well-behaving boards (CFG_HZ == 1000 and
25876 get_timer() countiing in milliseconds).
25877
25878 Rationale for this patch is to enable millisecond granularity for
25879 network-related timeouts, which is needed for the upcoming automatic
25880 software update feature.
25881
25882 Summary of changes:
25883 - do not scale the first argument to NetSetTimeout() by CFG_HZ
25884 - change timeout values used in the networking code to milliseconds
25885
25886 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
25887 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25888 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25889
25890 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
25891 Author: richardretanubun <richardretanubun@ruggedcom.com>
25892 Date: Mon Sep 29 18:28:23 2008 -0400
25893
25894 Adds two more ethernet interface to 83xx
25895
25896 Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
25897 Six eth interface is chosen because the platform I am using combines
25898 UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
25899
25900 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
25901 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25902
25903 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
25904 Author: Haiying Wang <Haiying.Wang@freescale.com>
25905 Date: Wed Sep 24 11:42:12 2008 -0500
25906
25907 Change UEC PHY interface to RGMII on MPC8568MDS
25908
25909 Change UEC phy interface from GMII to RGMII on MPC8568MDS board
25910
25911 Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
25912 but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
25913
25914 Now both UEC1 and UEC2 can work properly under u-boot.
25915
25916 It is also in consistent with the kernel setting for 8568 UEC phy interface.
25917
25918 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25919 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25920
25921 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
25922 Author: Wolfgang Denk <wd@denx.de>
25923 Date: Sat Oct 18 21:30:31 2008 +0200
25924
25925 Prepare v2008.10 release: update CHANGELOG & Makefile
25926
25927 Signed-off-by: Wolfgang Denk <wd@denx.de>
25928
25929 commit f7a35a60cf45491871a5c28e9ad24db005487857
25930 Author: Heiko Schocher <hs@denx.de>
25931 Date: Fri Oct 17 18:24:06 2008 +0200
25932
25933 mgcoge: add redundant environment sector
25934
25935 Signed-off-by: Heiko Schocher <hs@denx.de>
25936 Signed-off-by: Wolfgang Denk <wd@denx.de>
25937
25938 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
25939 Author: Heiko Schocher <hs@denx.de>
25940 Date: Fri Oct 17 18:23:27 2008 +0200
25941
25942 mgsuvd: update size of environment
25943
25944 Signed-off-by: Heiko Schocher <hs@denx.de>
25945
25946 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
25947 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
25948 Date: Thu Oct 16 13:38:00 2008 -0500
25949
25950 83xx NAND boot: wait for LTESR[CC]
25951
25952 At least some revisions of the 8313, and possibly other chips, do not
25953 wait for all pages of the initial 4K NAND region to be loaded before
25954 beginning execution; thus, we wait for it before branching out of the
25955 first NAND page.
25956
25957 This fixes warm reset problems when booting from NAND on 8313erdb.
25958
25959 Signed-off-by: Scott Wood <scottwood@freescale.com>
25960 Acked-by: Kim Phillips <kim.phillips@freescale.com>
25961
25962 commit bf29e0ea0af03d593c64614136acc723a7a022a2
25963 Author: Yuri Tikhonov <yur@emcraft.com>
25964 Date: Fri Oct 17 12:54:18 2008 +0200
25965
25966 ppc4xx: PPC44x MQ initialization
25967
25968 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
25969 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
25970 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
25971
25972 Previously the appropriate initialization had been made in Linux, by the
25973 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
25974 registers after normal operation has begun is not supported and could
25975 have unpredictable results.
25976
25977 Comment from Stefan: This patch doesn't change the resulting value of the
25978 MQ registers. It explicitly sets/clears all bits to the desired state which
25979 better documents the resulting register value instead of relying on pre-set
25980 default values.
25981
25982 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25983 Signed-off-by: Stefan Roese <sr@denx.de>
25984
25985 commit ec081c2c190148b374e86a795fb6b1c49caeb549
25986 Author: Stefan Roese <sr@denx.de>
25987 Date: Fri Oct 17 12:51:46 2008 +0200
25988
25989 ppc4xx: PPC44x MQ initialization
25990
25991 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
25992 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
25993 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
25994
25995 Previously the appropriate initialization had been made in Linux, by the
25996 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
25997 registers after normal operation has begun is not supported and could
25998 have unpredictable results.
25999
26000 Comment from Stefan: This patch doesn't change the resulting value of the
26001 MQ registers. It explicitly sets/clears all bits to the desired state which
26002 better documents the resulting register value instead of relying on pre-set
26003 default values.
26004
26005 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26006 Signed-off-by: Stefan Roese <sr@denx.de>
26007
26008 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
26009 Author: Kumar Gala <galak@kernel.crashing.org>
26010 Date: Thu Oct 16 21:58:50 2008 -0500
26011
26012 85xx: Using proper I2C source clock divider for MPC8544
26013
26014 The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
26015 bit 26, instead it should be bit 28. This caused in incorrect
26016 interpretation of the i2c_clk which is the same as the SEC clk on
26017 MPC8544. The SEC clk is controlled by cfg_sec_freq that is reported
26018 in PORDEVSR2.
26019
26020 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26021
26022 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
26023 Author: Kumar Gala <galak@kernel.crashing.org>
26024 Date: Thu Oct 16 21:58:49 2008 -0500
26025
26026 Revert "85xx: Using proper I2C source clock divider for MPC8544"
26027
26028 This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
26029
26030 The fix introduced by this patch is not correct. The problem is
26031 that the documentation is not correct for the MPC8544 with regards
26032 to which bit in PORDEVSR2 is for the SEC_CFG.
26033
26034 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26035
26036 commit 2179c4766bffeece98e5e92040629a96c97e230c
26037 Author: Kumar Gala <galak@kernel.crashing.org>
26038 Date: Wed Oct 15 10:19:41 2008 -0500
26039
26040 85xx: Fix compile warning
26041
26042 mpc8536ds.c: In function 'is_sata_supported':
26043 mpc8536ds.c:614: warning: unused variable 'devdisr'
26044
26045 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26046
26047 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
26048 Author: Jason Jin <Jason.jin@freescale.com>
26049 Date: Wed Oct 15 10:40:24 2008 +0800
26050
26051 Fix the function conflict in x86emu when DEBUG is on
26052
26053 The function parse_line() in common/main.c was exposed globally by commit
26054 6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
26055 name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
26056 This patch fix this by renaming the function in the debug.c file.
26057
26058 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
26059
26060 commit b4dbacf69a669a17487054552fc2761149dd6767
26061 Author: Wolfgang Denk <wd@denx.de>
26062 Date: Wed Oct 15 15:50:45 2008 +0200
26063
26064 Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
26065
26066 Signed-off-by: Wolfgang Denk <wd@denx.de>
26067
26068 commit 374b9038293d01d8744a46af9b7854a6fd99b228
26069 Author: Heiko Schocher <hs@denx.de>
26070 Date: Wed Oct 15 09:51:19 2008 +0200
26071
26072 Fix compiler warning in lib_ppc/board.c
26073
26074 Fix compiler warning introduced by commit 0f8cbc18
26075
26076 Signed-off-by: Heiko Schocher <hs@denx.de>
26077 Signed-off-by: Wolfgang Denk <wd@denx.de>
26078
26079 commit 9724555755a6f1066636481b41f7094e0ce93a69
26080 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
26081 Date: Thu Oct 9 10:29:14 2008 +0530
26082
26083 mpc83xx: wait till UPM completes the write to array
26084
26085 Reference manual states that MxMR[MAD] increment is the indication
26086 of write to UPM array is complete. Honour that. Also, make the dummy
26087 write explicit.
26088
26089 also fix the comment.
26090
26091 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
26092 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26093
26094 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
26095 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
26096 Date: Wed Oct 8 18:12:20 2008 -0500
26097
26098 Remove unwanted ';' at end of define.
26099
26100 Currently this is not creating any problem. But it will result
26101 in compilation error when used as below.
26102
26103 printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
26104
26105 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
26106
26107 continuation of the theme based on git grep "^#define CFG_.*;$" include/
26108
26109 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26110
26111 commit b2934a56650e9a6c54432f9ce6dc36757967385e
26112 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
26113 Date: Mon Oct 6 10:53:59 2008 -0400
26114
26115 ARM DaVinci: Add maintainer information for SFFSDR board.
26116
26117 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
26118
26119 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
26120 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26121 Date: Sat Oct 4 19:26:16 2008 +0200
26122
26123 api: fix type mismatch
26124
26125 This patch fixes a type mismatch and thus removes a compiler
26126 warning when compiling with CONFIG_API on powerpc.
26127
26128 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26129
26130 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
26131 Author: Peter Tyser <ptyser@xes-inc.com>
26132 Date: Wed Oct 1 12:25:04 2008 -0500
26133
26134 cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
26135
26136 Original code displayed:
26137 => help i2c
26138 i2c i2c speed [speed] - show or set I2C bus speed
26139 i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
26140 ...
26141
26142 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26143
26144 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
26145 Author: Wolfgang Denk <wd@denx.de>
26146 Date: Tue Oct 14 22:13:41 2008 +0200
26147
26148 Update CHANGELOG
26149
26150 Signed-off-by: Wolfgang Denk <wd@denx.de>
26151
26152 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
26153 Author: Jason Jin <Jason.jin@freescale.com>
26154 Date: Fri Oct 10 11:41:01 2008 +0800
26155
26156 Do not init SATA when disabled on 8536DS.
26157
26158 SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
26159 driver still try to access the SATA registers, the cpu will hangup.
26160 This patch try to fix this by reading the serdes status before the SATA
26161 initialize.
26162
26163 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
26164 Acked-by: Andy Fleming <afleming@freescale.com>
26165
26166 commit 9dbc366744960013965fce8851035b6141f3b3ae
26167 Author: Remy Bohmer <linux@bohmer.net>
26168 Date: Fri Oct 10 10:23:22 2008 +0200
26169
26170 The PIPE_INTERRUPT flag is used wrong
26171
26172 At a lot of places in the code the PIPE_INTERRUPT flags and friends
26173 are used wrong. The wrong bits are compared to this flag resulting
26174 in wrong conditions. Also there are macros that should be used for
26175 PIPE_* flags.
26176 This patch tries to fix them all, however, I was not able to test the
26177 changes, because I do not have any of these boards.
26178
26179 Review required!
26180
26181 Signed-off-by: Remy Bohmer <linux@bohmer.net>
26182 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
26183
26184 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
26185 Author: Remy Bohmer <linux@bohmer.net>
26186 Date: Fri Oct 10 10:23:21 2008 +0200
26187
26188 fix USB initialisation procedure
26189
26190 The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
26191 At some places directly 8,16,32,64 was used instead of the encoded
26192 value. Made a enum for the options to make this more clear and to help
26193 preventing similar errors in the future.
26194
26195 After fixing this bug it became clear that another bug existed where
26196 the 'pipe' is and-ed with PIPE_* flags, where it should have been
26197 'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
26198
26199 Also removed the triple 'get_device_descriptor' sequence, it has no use,
26200 and Windows nor Linux behaves that way.
26201 There is also a poll going on with a timeout when usb_control_msg() fails.
26202 However, the poll is useless, because the flag will never be set on a error,
26203 because there is no code that runs in a parallel that can set this flag.
26204 Changed this to something more logical.
26205
26206 Tested on AT91SAM9261ek and compared the flow on the USB bus to what
26207 Linux is doing. There is no difference anymore in the early initialisation
26208 sequence.
26209
26210 Signed-off-by: Remy Bohmer <linux@bohmer.net>
26211 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
26212
26213 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
26214 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
26215 Date: Fri Oct 3 00:03:55 2008 +0400
26216
26217 fsl_diu: fix alignment error that caused malloc corruption
26218
26219 When aligning malloc()ed screen_base, invalid offset was added.
26220 This not only caused misaligned result (which did not cause hardware
26221 misbehaviour), but - worse - caused screen_base + smem_len to
26222 be out of malloc()ed space, which in turn caused breakage of
26223 futher malloc()/free() operation.
26224
26225 This patch fixes screen_base alignment.
26226
26227 Also this patch makes memset() that cleans framebuffer to be executed
26228 on first initialization of diu, not only on re-initialization. It looks
26229 correct to clean the framebuffer instead of displaying random garbage;
26230 I believe that was disabled only because that memset caused breakage
26231 of malloc/free described above - which no longer happens with the fix
26232 described above.
26233
26234 Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
26235
26236 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
26237 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26238 Date: Wed Sep 24 10:29:37 2008 +0200
26239
26240 api: Fix building with CONFIG_API
26241
26242 This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
26243
26244 USB_MAX_STOR_DEV is defined in include/usb.h, but
26245 needed in api/api_storage.c.
26246
26247 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26248
26249 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
26250 Author: Peter Tyser <ptyser@xes-inc.com>
26251 Date: Tue Sep 23 12:39:40 2008 -0500
26252
26253 Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
26254
26255 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26256
26257 commit 81e612014c40c922ec35488d17c504d4e9286f06
26258 Author: Peter Tyser <ptyser@xes-inc.com>
26259 Date: Tue Sep 23 12:38:42 2008 -0500
26260
26261 Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
26262
26263 The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
26264 CFG_EEPROM_PAGE_WRITE_BITS in various temperature
26265 sensor drivers are not necessary
26266
26267 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26268
26269 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
26270 Author: Mike Frysinger <vapier@gentoo.org>
26271 Date: Tue Oct 14 07:04:38 2008 -0400
26272
26273 cmd_spi: remove broken signed casting for display
26274
26275 Since we're working with unsigned data, you can't apply a signed pointer
26276 cast and then attempt to print the result. Otherwise you get wrong output
26277 when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
26278
26279 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26280
26281 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
26282 Author: Mike Frysinger <vapier@gentoo.org>
26283 Date: Tue Oct 14 07:05:24 2008 -0400
26284
26285 strings cmd: drop old CONFIG_CFG_STRINGS define
26286
26287 We don't need CONFIG_CFG_STRINGS anymore now that we have the define
26288 CONFIG_CMD_STRINGS and Makefile control.
26289
26290 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26291
26292 commit fecb5ade3b37f62981f2b05b621005850173aaa9
26293 Author: Jason Jin <Jason.jin@freescale.com>
26294 Date: Fri Sep 19 17:32:49 2008 +0800
26295
26296 Fix the NAND size overflow issue.
26297
26298 When the total size of all NAND devices exceeds 4 GiB, the size will
26299 overflow. This patch tries to fix this.
26300
26301 Note that we still have a problem when a single NAND device is bigger
26302 than 4 GiB: then the overflow would actually happen earlier, i. e.
26303 when storing the size in nand_info[].size, as nand_info[].size is an
26304 "u_int32_t".
26305
26306 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
26307 Signed-off-by: Wolfgang Denk <wd@denx.de>
26308
26309 commit 30f574717277238b9014b8136c90eea77196490f
26310 Author: Louis Su <louis@asix.com.tw>
26311 Date: Wed Jul 9 11:01:37 2008 +0800
26312
26313 AX88180: new gigabit network driver
26314
26315 Signed-off-by: Louis Su <louis@asix.com.tw>
26316 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26317
26318 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
26319 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
26320 Date: Tue Aug 19 16:07:03 2008 +0200
26321
26322 enable 10/100M at VSC8601 at tsec driver
26323
26324 Currently VSC8601 doesn't link with 10/100M partners if the
26325 EEPROM/Strapping is not set up.
26326 Setting the auto-neg register fixes this.
26327
26328 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
26329 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26330
26331 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
26332 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26333 Date: Tue Sep 30 15:02:53 2008 +0900
26334
26335 net: ne2000: Divided a function of NE2000 driver
26336
26337 get_prom function was used __attriute__ , but it is not enable.
26338 ax88796.o does not do link besides ne2000.o. When ld is carried
26339 out, get_prom function of ax88796.c is ignored.
26340 This problem is a thing by specifications of ld.
26341 I checked and test this patch on SuperH and MIPS.
26342
26343 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26344 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26345
26346 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
26347 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26348 Date: Tue Oct 14 11:10:59 2008 +0900
26349
26350 sh: rsk7203: Add smc911x driver support to board config file
26351
26352 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26353 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26354
26355 commit cae6f909baf86357b3c0bd01acfc414348c4d175
26356 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26357 Date: Thu Oct 9 13:54:33 2008 +0900
26358
26359 sh: Fix cannot execute a stand-alone application
26360
26361 Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
26362
26363 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26364 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26365
26366 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
26367 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
26368 Date: Wed Oct 8 23:38:00 2008 -0500
26369
26370 fsl_pci_init do not scan bus when configured as an end-point
26371
26372 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
26373 Acked-by: Andy Fleming <afleming@freescale.com>
26374
26375 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
26376 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
26377 Date: Tue Sep 16 17:07:53 2008 -0400
26378
26379 ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
26380
26381 This is no longer necessary now that the GD_FLG_RELOC flag is set for
26382 all ARM boards.
26383
26384 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
26385
26386 commit d977a57356657ba241256231efca32828a5822f9
26387 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
26388 Date: Sat Sep 13 10:04:32 2008 +0200
26389
26390 Fix lzma uncompress call (image_start wrongly used instead image_len)
26391
26392 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
26393
26394 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
26395 Author: Nick Spence <nick.spence@freescale.com>
26396 Date: Thu Aug 28 14:09:15 2008 -0700
26397
26398 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
26399
26400 This is needed in unlock_ram_in_cache() because it is called from C and
26401 will corrupt the small data area anchor that is kept in R2.
26402
26403 lock_ram_in_cache() is modified similarly as good coding practice, but
26404 is not called from C.
26405
26406 Signed-off-by: Nick Spence <nick.spence@freescale.com>
26407
26408 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
26409 Author: Kumar Gala <galak@kernel.crashing.org>
26410 Date: Tue Aug 19 15:05:34 2008 -0500
26411
26412 86xx: remove redudant code with lib_ppc/interrupts.c
26413
26414 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
26415 Not know how that happened, but there is no good reason for it.
26416
26417 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
26418 they exist.
26419
26420 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26421
26422 commit 0d01f66d235118515b5086b88f82498bc0695d6a
26423 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
26424 Date: Thu Oct 9 01:26:36 2008 -0500
26425
26426 CFI: cfi_flash write fix for AMD legacy
26427
26428 The flash_unlock_seq requires a sector for AMD_LEGACY.
26429 Fix a retcode check typeo.
26430
26431 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
26432 Signed-off-by: Stefan Roese <sr@denx.de>
26433
26434 commit 542b385a620a1783454a00424930e51895f45073
26435 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26436 Date: Tue Oct 7 13:13:10 2008 +0200
26437
26438 ppc4xx: Fix USB 2.0 phy reset sequence
26439
26440 This patch fixes USB 2.0 communication issues on some DU440 boards.
26441
26442 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26443 Signed-off-by: Stefan Roese <sr@denx.de>
26444
26445 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
26446 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26447 Date: Tue Oct 7 13:13:09 2008 +0200
26448
26449 ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
26450
26451 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26452 Signed-off-by: Stefan Roese <sr@denx.de>
26453
26454 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
26455 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26456 Date: Tue Oct 7 13:13:08 2008 +0200
26457
26458 ppc4xx: Fix DU440 GPIO configuration
26459
26460 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26461 Signed-off-by: Stefan Roese <sr@denx.de>
26462
26463 commit 35dd025c70fcc4389317db2f2a9d14795172137d
26464 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26465 Date: Tue Oct 7 13:13:07 2008 +0200
26466
26467 ppc4xx: Update DU440 config
26468
26469 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26470 Signed-off-by: Stefan Roese <sr@denx.de>
26471
26472 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
26473 Author: Kumar Gala <galak@kernel.crashing.org>
26474 Date: Wed Oct 8 15:36:39 2008 -0500
26475
26476 MPC8572DS: Fix compile warnings
26477
26478 Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
26479 compile warnings:
26480
26481 cmd_i2c.c:112: warning: missing braces around initializer
26482 cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
26483
26484 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26485
26486 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
26487 Author: Wolfgang Grandegger <wg@grandegger.com>
26488 Date: Tue Sep 30 10:55:57 2008 +0200
26489
26490 85xx: Using proper I2C source clock divider for MPC8544
26491
26492 Measurements with our MPC8544 board showed that the I2C bus frequency
26493 is wrong by a factor of 1.5. Obviously, the interpretation of the
26494 MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
26495 correct. There seems to be an error in the 8544 RM.
26496
26497 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26498
26499 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
26500 Author: Rafal Czubak <rcz@semihalf.com>
26501 Date: Wed Oct 8 13:41:30 2008 +0200
26502
26503 FSL: Fix get_cpu_board_revision() return value.
26504
26505 get_cpu_board_revision() returned board revision based on information stored
26506 in global static struct eeprom. It should instead use one from local struct
26507 board_eeprom, to which the data is actually read from EEPROM. The bug led to
26508 system hang after printing L1 cache information on U-Boot startup. The problem
26509 was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
26510 boards using CFG_I2C_EEPROM_CCID.
26511
26512 The change has been successfully tested on MPC8555CDS system.
26513
26514 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
26515
26516 commit 747f316cca484ed627a97dd3391febabce384186
26517 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26518 Date: Tue Sep 30 20:08:49 2008 +0200
26519
26520 update uImage FIT multi documentation
26521
26522 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26523
26524 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
26525 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26526 Date: Tue Sep 30 20:08:36 2008 +0200
26527
26528 move README.imx31 to doc/ and merge with README.mx31
26529
26530 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26531
26532 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
26533 Author: Guennadi Liakhovetski <lg@denx.de>
26534 Date: Thu Sep 25 20:54:37 2008 +0200
26535
26536 i.MX31: switch to CFG_HZ=1000
26537
26538 Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
26539 cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
26540 provides 2% or 0.4% precision depending on the
26541 CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
26542 boot-delay.
26543
26544 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26545
26546 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
26547 Author: gnusercn <gnusercn@gmail.com>
26548 Date: Wed Oct 8 18:58:58 2008 +0200
26549
26550 Fix bug: in arch-arm, env_get_char dose not work fine
26551
26552 due to the arm implementation which supposed that U-Boot is in RAM
26553 when we jump to start_armboot
26554
26555 Signed-off-by: gnusercn <gnusercn@gmail.com>
26556 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26557
26558 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
26559 Author: Adam Graham <agraham@amcc.com>
26560 Date: Mon Oct 6 10:16:13 2008 -0700
26561
26562 ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
26563
26564 After changing SDRAM_CLKTR phase value rerun the memory preload
26565 initialization sequence (INITPLR) to reset and relock the memory
26566 DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
26567 adjustment effects the phase relationship of the internal, to the
26568 PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
26569
26570 Signed-off-by: Adam Graham <agraham@amcc.com>
26571 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
26572 Signed-off-by: Stefan Roese <sr@denx.de>
26573
26574 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
26575 Author: Haiying Wang <Haiying.Wang@freescale.com>
26576 Date: Fri Oct 3 11:48:03 2008 -0400
26577
26578 Remove redundant #define for MPC8536DS
26579
26580 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
26581
26582 commit 445a7b38308eb05b41de74165b20855db58c7ee5
26583 Author: Haiying Wang <Haiying.Wang@freescale.com>
26584 Date: Fri Oct 3 11:47:30 2008 -0400
26585
26586 Add ID EEPROM support for MPC8572DS
26587
26588 The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
26589 system information like mac addresses etc. This patch enables it.
26590
26591 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
26592
26593 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
26594 Author: Haiying Wang <Haiying.Wang@freescale.com>
26595 Date: Fri Oct 3 11:46:59 2008 -0400
26596
26597 Minor fixes for I2C address on MPC8572DS
26598
26599 MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
26600 according to the board spec, and adds the 2nd i2c bus offset.
26601
26602 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
26603
26604 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
26605 Author: Jason Jin <Jason.jin@freescale.com>
26606 Date: Sat Sep 27 14:40:57 2008 +0800
26607
26608 Fix the incorrect DDR clk freq reporting on 8536DS
26609
26610 On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
26611 The display is still sync mode DDR freq. This patch try to fix
26612 this. The display DDR freq is now the actual freq in both
26613 sync and async mode.
26614
26615 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
26616
26617 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
26618 Author: Kumar Gala <galak@kernel.crashing.org>
26619 Date: Tue Oct 7 10:28:46 2008 -0500
26620
26621 85xx: Remove setting of *cache-line-size in device trees
26622
26623 ePAPR says if the *cache-block-size is the same as *cache-line-size
26624 than we don't need the *cache-line-size property.
26625
26626 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26627
26628 commit a69a42338dd25408f9fd5390a83bc501749c7e1b
26629 Author: Mark Jackson <mpfj@mimc.co.uk>
26630 Date: Fri Oct 3 11:48:57 2008 +0100
26631
26632 MIMC200 board now uses CONFIG_DISABLE_CONSOLE
26633
26634 Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
26635 Also fixed default uImage location.
26636
26637 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
26638 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26639
26640 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
26641 Author: Gerald Van Baren <vanbaren@cideas.com>
26642 Date: Sat Oct 4 07:56:06 2008 -0400
26643
26644 libfdt: Fix error in documentation for fdt_get_alias_namelen()
26645
26646 Oops, screwed up the function name in the documenting comment for this
26647 function. Trivial correction in this patch.
26648
26649 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
26650 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
26651
26652 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
26653 Author: David Gibson <david@gibson.dropbear.id.au>
26654 Date: Wed Aug 20 16:55:14 2008 +1000
26655
26656 libfdt: Add function to explicitly expand aliases
26657
26658 Kumar has already added alias expansion to fdt_path_offset().
26659 However, in some circumstances it may be convenient for the user of
26660 libfdt to explicitly get the string expansion of an alias. This patch
26661 adds a function to do this, fdt_get_alias(), and uses it to implement
26662 fdt_path_offset().
26663
26664 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
26665
26666 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
26667 Author: Mike Frysinger <vapier@gentoo.org>
26668 Date: Thu Oct 2 01:55:38 2008 -0400
26669
26670 cfi_flash: do not reset flash when probe fails
26671
26672 The CFI flash driver starts at flash_init() which calls down into
26673 flash_get_size(). This starts by calling flash_detect_cfi(). If said
26674 function fails, flash_get_size() finishes by attempting to reset the
26675 flash. Unfortunately, it does this with an info->portwidth set to 0x10
26676 which filters down into flash_make_cmd() and that happily smashes the
26677 stack by sticking info->portwidth bytes into a cfiword_t variable that
26678 lives on the stack. On a 64bit system you probably won't notice, but
26679 killing the last 8 bytes on a 32bit system usually leads to a corrupt
26680 return address. Which is what happens on a Blackfin system.
26681
26682 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26683 Signed-off-by: Stefan Roese <sr@denx.de>
26684
26685 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
26686 Author: Stefan Roese <sr@denx.de>
26687 Date: Fri Sep 26 17:03:26 2008 +0200
26688
26689 fdt: Overwrite /chosen node in bootm if it already exists in the dtb
26690
26691 Set force parameter in fdt_chosen() call in do_bootm_linux() call.
26692 Without this, the chosen node is not overwritten if it already
26693 exists.
26694
26695 Signed-off-by: Stefan Roese <sr@denx.de>
26696
26697 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
26698 Author: Jon Loeliger <jdl@freescale.com>
26699 Date: Thu Sep 25 11:02:17 2008 -0500
26700
26701 Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
26702
26703 Using Gcc 4.3 detected this problem:
26704
26705 ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
26706 ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
26707 occur when assuming that (X + c) < X is always false
26708
26709 To fix the problem, treat the offset as an unsigned int.
26710
26711 The problem report and proposed fix were provided
26712 by Steve Papacharalambous <stevep@freescale.com>.
26713
26714 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26715
26716 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
26717 Author: David Gibson <david@gibson.dropbear.id.au>
26718 Date: Fri Aug 29 14:19:13 2008 +1000
26719
26720 libfdt: Fix bugs in fdt_get_path()
26721
26722 The current implementation of fdt_get_path() has a couple of bugs,
26723 fixed by this patch.
26724
26725 First, contrary to its documentation, on success it returns the length
26726 of the node's path, rather than 0. The testcase is correspondingly
26727 wrong, and the patch fixes this as well.
26728
26729 Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
26730 instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
26731 Specifically this happens when there is insufficient space even to
26732 hold the path's second last component. This behaviour is corrected,
26733 and the testcase updated to check it.
26734
26735 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
26736
26737 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
26738 Author: Wolfgang Denk <wd@denx.de>
26739 Date: Wed Oct 1 12:34:58 2008 +0200
26740
26741 TQM5200: enable support for ATAPI devices
26742
26743 Signed-off-by: Wolfgang Denk <wd@denx.de>
26744
26745 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
26746 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26747 Date: Mon Sep 15 05:48:25 2008 +0200
26748
26749 Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
26750
26751 we need this due to the arm implementation which supposed that U-Boot
26752 is in RAM when we jump to start_armboot
26753
26754 This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
26755 in order to do it for all arm board
26756
26757 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26758
26759 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
26760 Author: Kim Phillips <kim.phillips@freescale.com>
26761 Date: Wed Sep 24 08:46:25 2008 -0500
26762
26763 mpc83xx: don't disable autoboot
26764
26765 bootdelay set to -1 'permanently' disables autobooting, even if
26766 bootcmd is specified. Change to a positive value to allow
26767 autobooting when a bootcmd is set.
26768
26769 Reported-by: Coray Tate <Coray.Tate@freescale.com>
26770 Cc: Scott Wood <scottwood@freescale.com>
26771 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26772
26773 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
26774 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26775 Date: Wed Sep 24 10:42:15 2008 +0900
26776
26777 mpc83xx: Fix typo in include/mpc83xx.h
26778
26779 Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
26780
26781 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26782 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26783
26784 commit 162c41c03179727a1d14262f703c9a8bc40231fa
26785 Author: Kim Phillips <kim.phillips@freescale.com>
26786 Date: Tue Sep 23 09:38:49 2008 -0500
26787
26788 mpc83xx: add h/w flash protection to board configs
26789
26790 the operating system may leave flash in a h/w locked state after writing.
26791 This allows u-boot to continue to write flash by enabling h/w unlocking
26792 by default.
26793
26794 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26795
26796 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
26797 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
26798 Date: Thu Sep 11 21:35:36 2008 +0400
26799
26800 mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
26801
26802 The spd_dram code shifts the base address, then masks 20 bits, but
26803 forgets to shift the base address back. Fix this by just masking the
26804 base address correctly.
26805
26806 Found this bug while trying to relocate a DDR memory at the base != 0.
26807
26808 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26809 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26810
26811 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
26812 Author: Stefan Roese <sr@denx.de>
26813 Date: Mon Sep 22 16:10:43 2008 +0200
26814
26815 ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
26816
26817 Depending on the configuration jumper "SATA SELECT", U-Boot disabled
26818 either one PCIe node or the SATA node in the device tree blob. This
26819 patch removes the unnecessary and even confusing warning, when the node
26820 is not found at all.
26821
26822 Signed-off-by: Stefan Roese <sr@denx.de>
26823
26824 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
26825 Author: Remy Bohmer <linux@bohmer.net>
26826 Date: Fri Sep 19 13:30:06 2008 +0200
26827
26828 Add missing device types to dev_print() in part.c
26829
26830 Signed-off-by: Remy Bohmer <linux@bohmer.net>
26831
26832 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
26833 Author: Wolfgang Denk <wd@denx.de>
26834 Date: Mon Sep 22 22:23:06 2008 +0200
26835
26836 Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
26837 eventually leads to a machine check. This change assures that DPRAM
26838 is allocated only once in that case.
26839
26840 Signed-off-by: Gary Jennejohn <garyj@denx.de>
26841 Signed-off-by: Wolfgang Denk <wd@denx.de>
26842
26843 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
26844 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
26845 Date: Wed Sep 17 17:57:34 2008 +0200
26846
26847 Fix Spartan-3 definitions.
26848
26849 A few Spartan-3 definitions erroneously use Spartan-3E size
26850 constants. This patch fixes them.
26851
26852 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
26853
26854 commit 28113e1f0da4146b823ffce37680d31d5685a60b
26855 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
26856 Date: Wed Sep 17 17:41:58 2008 +0200
26857
26858 Remove duplicate Spartan-3E definition.
26859
26860 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
26861 Signed-off-by: Wolfgang Denk <wd@denx.de>
26862
26863 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
26864 Author: Anatolij Gustschin <agust@denx.de>
26865 Date: Wed Sep 17 13:46:17 2008 +0200
26866
26867 socrates: change default mtest address range
26868
26869 Running mtest command on socrates without specifying
26870 an address range crashes the board. This patch changes
26871 default mtest address range to prevent this behavior.
26872
26873 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26874
26875 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
26876 Author: Anatolij Gustschin <agust@denx.de>
26877 Date: Wed Sep 17 12:34:45 2008 +0200
26878
26879 socrates: fix crash after relocation
26880
26881 Currently U-Boot crashes after relocation to RAM.
26882 Changing the CPO value of the DDR SDRAM TIMING_CFG_2
26883 register to READ_LAT + 1 (to the value it was before
26884 conversion of socrates to new DDR code) fixes the
26885 problem.
26886
26887 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26888
26889 commit 562788b0a303f3528b920d81f547f5ca77ba528e
26890 Author: Anatolij Gustschin <agust@denx.de>
26891 Date: Wed Sep 17 11:45:51 2008 +0200
26892
26893 socrates: fix SPD EEPROM address
26894
26895 Commit be0bd8234b9777ecd63c4c686f72af070d886517
26896 changed SPD EEPROM address to 0x51 and DDR SDRAM
26897 detection stopped working. Change this address
26898 back to 0x50.
26899
26900 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26901
26902 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
26903 Author: Stefan Roese <sr@denx.de>
26904 Date: Mon Sep 22 11:06:50 2008 +0200
26905
26906 Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
26907
26908 This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
26909
26910 Signed-off-by: Stefan Roese <sr@denx.de>
26911
26912 commit e58c41e26cf3c8accd60311be579f452e368e97e
26913 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26914 Date: Thu Sep 18 20:13:08 2008 +0900
26915
26916 usb: Fix compile warning of r8a66597-hcd
26917
26918 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26919 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
26920
26921 commit b5d10a13525c07ec6374adf840d7c87553b5f189
26922 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26923 Date: Thu Sep 18 19:34:36 2008 +0900
26924
26925 sh: Fix compile warning
26926
26927 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26928
26929 commit 4a065abf926f128beb36d93449defa0d690e7fef
26930 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26931 Date: Thu Sep 18 19:04:26 2008 +0900
26932
26933 sh: Add support watchdog for SH4A core
26934
26935 Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
26936 And fix some compile warning.
26937
26938 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26939
26940 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
26941 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26942 Date: Wed Sep 17 11:45:26 2008 +0900
26943
26944 sh: Fix typo in SH serial driver
26945
26946 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26947 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26948
26949 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
26950 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26951 Date: Wed Sep 17 11:08:36 2008 +0900
26952
26953 sh: Add support any page size and empty_zero_page to SH Linux uImage
26954
26955 Old U-Boot supported 4KB page size only. If this version, Linux
26956 kernel can not get command line from U-Boot.
26957 SH Linux kernel can change page size and empty_zero_page.
26958 This patch support this function and fix promlem.
26959
26960 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26961 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26962
26963 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
26964 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26965 Date: Thu Aug 28 13:40:52 2008 +0900
26966
26967 sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
26968
26969 Add function of smc911x, pkt_data_pull and pkt_data_push.
26970
26971 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26972 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26973
26974 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
26975 Author: Wolfgang Denk <wd@denx.de>
26976 Date: Thu Sep 18 13:57:32 2008 +0200
26977
26978 ADS5121: fix typo in "rootpath" default setting
26979
26980 Signed-off-by: Wolfgang Denk <wd@denx.de>
26981
26982 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
26983 Author: Remy Bohmer <linux@bohmer.net>
26984 Date: Tue Sep 16 14:55:44 2008 +0200
26985
26986 USB layer of U-Boot causes USB protocol errors while using USB memory sticks
26987
26988 There are several differences between Linux, Windows and U-boot for initialising the
26989 USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
26990 things really different, and some are wrong (compared to the USB standard).
26991
26992 This patch fixes some errors:
26993 * The NEW_init procedure that was already in the code is good, while the old procedure
26994 is wrong. See code comments for more info.
26995 * On a Control request the data returned by the device can be more than 8 bytes, while
26996 the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
26997 This results in a lot of USB sticks not being recognised, and the transmission ended
26998 frequently with a CTL:TIMEOUT Error.
26999 * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
27000
27001 Signed-off-by: Remy Bohmer <linux@bohmer.net>
27002 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
27003
27004 commit 6f5794a6f78b313231256958fd73673c6aacc116
27005 Author: Remy Bohmer <linux@bohmer.net>
27006 Date: Tue Sep 16 14:55:43 2008 +0200
27007
27008 Refactoring parts of the common USB OHCI code
27009
27010 This patch refactors some large routines of the USB OHCI code by
27011 making some routines smaller and more readable which helps
27012 debugging and understanding the code. (Makes the code looks
27013 somewhat more like the Linux implementation.)
27014
27015 Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
27016
27017 Signed-off-by: Remy Bohmer <linux@bohmer.net>
27018 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
27019
27020 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
27021 Author: Remy Bohmer <linux@bohmer.net>
27022 Date: Tue Sep 16 14:55:42 2008 +0200
27023
27024 Fix for USB sticks not working on ARM while using GCC 4.x compilers
27025
27026 The GCC-compiler makes an optimisation error while optimising the routine
27027 usb_set_maxpacket(). This should be fixed in the compiler in the first place,
27028 but there lots of compilers out there that makes this error, that it is
27029 probably wiser to workaround it in U-boot itself.
27030
27031 What happens is that the register r3 is used as loop-counter 'i', but gets
27032 overwritten later on. From there it starts using register r3 for several other
27033 things and the assembler code is becoming a big mess. This is clearly a compiler bug.
27034
27035 This error occurs on at least several versions of Code Sourcery Lite compilers
27036 for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
27037 compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
27038
27039 We work around it by splitting up this routine in 2 parts, and making sure that
27040 the split out part is NOT inlined any longer. This will make GCC spit out assembler
27041 that do not show this problem. Another possibility is to adapt the Makefile to stop
27042 optimisation for the complete file. I think this solution is nicer.
27043
27044 Signed-off-by: Remy Bohmer <linux@bohmer.net>
27045 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
27046
27047 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
27048 Author: Wolfgang Denk <wd@denx.de>
27049 Date: Wed Sep 17 10:17:55 2008 +0200
27050
27051 Coding style cleanup; update CHANEGLOG
27052
27053 Signed-off-by: Wolfgang Denk <wd@denx.de>
27054
27055 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
27056 Author: Victor Gallardo <vgallardo@amcc.com>
27057 Date: Tue Sep 16 06:59:13 2008 -0700
27058
27059 ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
27060
27061 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
27062 Signed-off-by: Adam Graham <agraham@amcc.com>
27063 Signed-off-by: Stefan Roese <sr@denx.de>
27064
27065 commit ce47eb402c5e29a025399dc282246414fc492940
27066 Author: Peter Tyser <ptyser@xes-inc.com>
27067 Date: Tue Sep 16 10:04:47 2008 -0500
27068
27069 Support for multiple SGMII/TBI interfaces for TSEC ethernet
27070
27071 Fix TBI PHY accesses to use the proper offset in CPU register space. The
27072 previous code would incorrectly access the TBI PHY by reading/writing to CPU
27073 register space at the same location as would be used to access external PHYs.
27074
27075 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
27076 Acked-by: Andy Fleming <afleming@freescale.com>
27077
27078 commit 7c803be2eb3cae245dedda438776e08fb122250f
27079 Author: Wolfgang Denk <wd@denx.de>
27080 Date: Tue Sep 16 18:02:19 2008 +0200
27081
27082 TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
27083
27084 After switching to using the CFI flash driver, the correct remapping
27085 of the flash banks was forgotten.
27086
27087 Also, some boards were not adapted, and the old legacy flash driver
27088 was not removed yet.
27089
27090 Signed-off-by: Wolfgang Denk <wd@denx.de>
27091
27092 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
27093 Author: Wolfgang Denk <wd@denx.de>
27094 Date: Sun Sep 14 00:59:35 2008 +0200
27095
27096 Prepare v2008.10-rc2
27097
27098 Signed-off-by: Wolfgang Denk <wd@denx.de>
27099
27100 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
27101 Author: Wolfgang Denk <wd@denx.de>
27102 Date: Sat Sep 13 02:23:05 2008 +0200
27103
27104 Coding style cleanup, update CHANGELOG
27105
27106 Signed-off-by: Wolfgang Denk <wd@denx.de>
27107
27108 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
27109 Author: Peter Tyser <ptyser@xes-inc.com>
27110 Date: Wed Sep 10 09:18:34 2008 -0500
27111
27112 Update mailing list email and archive addresses
27113
27114 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
27115
27116 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
27117 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
27118 Date: Thu Sep 11 15:40:01 2008 +0200
27119
27120 85xx: socrates: autoprobe Lime chip
27121
27122 This patch is an attempt to implement autoprobing for the Lime
27123 presence on the bus.
27124 Configure GPCM for Lime CS2 and try to access chip ID registers.
27125 Second read atempt delivers register values if the chip is present.
27126
27127 Signed-off-by: Anatolij Gustschin <agust@denx.de>
27128
27129 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
27130 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
27131 Date: Thu Sep 11 15:40:01 2008 +0200
27132
27133 85xx: socrates: Add support for new image format.
27134
27135 Signed-off-by: Detlev Zundel <dzu@denx.de>
27136
27137 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
27138 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27139 Date: Thu Sep 11 17:28:18 2008 +0900
27140
27141 sh: Fix compile error for r2dplus
27142
27143 netdev.h was not include by r2dplus.
27144
27145 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27146
27147 commit 56844a22b76c719e600047e23b80465a44d76abd
27148 Author: Heiko Schocher <hs@denx.de>
27149 Date: Thu Sep 11 08:11:23 2008 +0200
27150
27151 powerpc: Fix bootm to boot up again with a Ramdisk
27152
27153 Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
27154 and this stopped Linux from booting with a Ramdisk. This patch fixes
27155 this, by deleting the useless dummy mem reservation.
27156
27157 When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
27158 added to of_size, so we dont need anymore a dummy mem reservation.
27159
27160 I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
27161 system (=0x44 bytes) and rounded it up to 0x80).
27162
27163 Signed-off-by: Heiko Schocher <hs@denx.de>
27164 Acked-by: Kumar Gala <galak@kernel.crashing.org>
27165
27166 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
27167 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
27168 Date: Mon Sep 8 02:46:13 2008 +0200
27169
27170 Add support for LZMA uncompression algorithm.
27171
27172 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
27173 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27174
27175 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
27176 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27177 Date: Fri Jun 27 23:04:20 2008 +0400
27178
27179 fsl_elbc_nand: ecclayout cleanups
27180
27181 This patch deletes oobavail assignments, they're calculated by the nand
27182 core code in nand_scan_tail, plus current oobavail values are wrong for
27183 the LP NANDs.
27184
27185 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27186 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
27187 Signed-off-by: Scott Wood <scottwood@freescale.com>
27188
27189 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
27190 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27191 Date: Fri Jun 27 23:04:13 2008 +0400
27192
27193 fsl_elbc_nand: implement support for flash-based BBT
27194
27195 This patch implements support for flash-based BBT for chips working
27196 through ELBC NAND controller, so that NAND core will not have to re-scan
27197 for bad blocks on every boot.
27198
27199 Because ELBC controller may provide HW-generated ECCs we should adjust
27200 bbt pattern and bbt version positions in the OOB free area.
27201
27202 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27203 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
27204 Signed-off-by: Scott Wood <scottwood@freescale.com>
27205
27206 commit 97ae023648e764f794ffb9c52da109d6caf09c47
27207 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27208 Date: Fri Jun 27 23:04:04 2008 +0400
27209
27210 fsl_elbc_nand: fix OOB workability for large page NAND chips
27211
27212 For large page chips, nand_bbt is looking into OOB area, and checking
27213 for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
27214 reserved for bbt means.
27215
27216 But ELBC driver is specifying ecclayout so that oobfree area starts at
27217 offset 1, so only one byte left for the bbt purposes.
27218
27219 This causes problems with any OOB users, namely JFFS2: after first mount
27220 JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
27221
27222 OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
27223 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
27224 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
27225 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
27226
27227 And on the next boot, NAND core will rescan for bad blocks, then will
27228 see "0xff 0x19" pattern, and will mark all blocks as bad ones.
27229
27230 To fix the issue we should implement our own bad block pattern: just one
27231 byte at OOB start. Though, this will work only for x8 chips. For x16
27232 chips two bytes must be checked. Since ELBC driver does not support x16
27233 NANDs (yet), we're safe for now.
27234
27235 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27236 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
27237 Signed-off-by: Scott Wood <scottwood@freescale.com>
27238
27239 commit 7238ada313057a85409485b8ee21515dc10c07a5
27240 Author: Wolfgang Denk <wd@denx.de>
27241 Date: Fri Sep 12 13:52:21 2008 +0200
27242
27243 MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
27244
27245 Signed-off-by: Wolfgang Denk <wd@denx.de>
27246
27247 commit b18410e508a12ba0a177dfc2a386857c806fa96d
27248 Author: Stefan Roese <sr@denx.de>
27249 Date: Thu Sep 11 13:05:56 2008 +0200
27250
27251 ppc4xx: Enable device tree (FDT) support in zeus board port
27252
27253 Signed-off-by: Stefan Roese <sr@denx.de>
27254
27255 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
27256 Author: Stefan Roese <sr@denx.de>
27257 Date: Wed Sep 10 16:53:47 2008 +0200
27258
27259 ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
27260
27261 This patch fixes a problem introdiced with patch
27262 bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
27263 initdram()].
27264
27265 The boards affected are:
27266 - PCI405
27267 - PPChameleonEVB
27268 - quad100hd
27269 - taihu
27270 - zeus
27271
27272 Signed-off-by: Stefan Roese <sr@denx.de>
27273
27274 commit 61737c59a3285f6fadf96a5836879898c04ec28d
27275 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27276 Date: Thu Sep 11 19:41:26 2008 -0400
27277
27278 ppc4xx: Add .gitignore file to xilinx-ppc440 boards
27279
27280 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27281 Signed-off-by: Stefan Roese <sr@denx.de>
27282
27283 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
27284 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27285 Date: Thu Sep 11 19:41:25 2008 -0400
27286
27287 ppc4xx: Fix compilation of v5fx30teval_flash
27288
27289 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27290 Signed-off-by: Stefan Roese <sr@denx.de>
27291
27292 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
27293 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27294 Date: Wed Sep 10 17:44:30 2008 -0400
27295
27296 ppc4xx: Fix in-tree build for ppc440-generic boards
27297
27298 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27299 Signed-off-by: Stefan Roese <sr@denx.de>
27300
27301 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
27302 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27303 Date: Fri Sep 12 02:20:47 2008 +0200
27304
27305 ARM: synchronize mach-types.h with linux 2.6.27-rc6
27306
27307 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27308
27309 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
27310 Author: Jens Scharsig <esw@bus-elektronik.de>
27311 Date: Fri Sep 12 02:20:47 2008 +0200
27312
27313 at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
27314
27315 This patch prevents linker error on AT91RM9200 boards, if
27316 CONFIG_CMD_I2_TREE is set.
27317 It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
27318
27319 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
27320
27321 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
27322 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
27323 Date: Fri Sep 12 02:20:47 2008 +0200
27324
27325 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
27326
27327 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
27328
27329 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
27330
27331 commit 03db53335c8eba656a7c44d1555b1a4514383e33
27332 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27333 Date: Fri Sep 12 02:20:46 2008 +0200
27334
27335 make: Remove redundant __ARM__ addition when cross-compiling on *BSD
27336
27337 __ARM__ is given by arm_config.mk automatically.
27338
27339 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27340
27341 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
27342 Author: Claudio Scordino <claudio@evidence.eu.com>
27343 Date: Fri Sep 12 02:20:46 2008 +0200
27344
27345 Fix MACH_TYPE for the AT91RM9200DK board.
27346
27347 Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
27348
27349 commit 274737e5eb25b2bcd3af3a96da923effd543284f
27350 Author: Andrew Dyer <adyer@righthandtech.com>
27351 Date: Fri Sep 12 02:20:46 2008 +0200
27352
27353 i.mx change get_timer(base) to return time since base
27354
27355 This patch changes get_timer() for i.MX to return the time since
27356 'base' instead of the time since the counter was at zero.
27357
27358 Symptom seen is flash timeout errors when erasing or programming a
27359 sector using the common cfi flash code.
27360
27361 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
27362
27363 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
27364 Author: Andrew Dyer <adyer@righthandtech.com>
27365 Date: Fri Sep 12 02:20:46 2008 +0200
27366
27367 i.MX use u-boot baud rate and don't assume UART master clock
27368
27369 1) Change the i.MX serial driver to use the baud rate set in the
27370 u-boot environment
27371
27372 2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
27373
27374 3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
27375 one to clear" like other status bits in the reg.)
27376
27377 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
27378
27379 commit 6e1551a870d360805b9d172dc56d935064abe71d
27380 Author: Andrew Dyer <adyer@righthandtech.com>
27381 Date: Fri Sep 12 02:20:46 2008 +0200
27382
27383 arm920t fix constant error in start.S
27384
27385 Code in cpu/arm920t/start.S will die with a compilation error if
27386 CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
27387 the ARM sub instruction. Change the code so that each is subtracted
27388 independently to avoid the error.
27389
27390 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
27391
27392 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
27393 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
27394 Date: Fri Sep 12 02:20:40 2008 +0200
27395
27396 ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
27397
27398 - Correct Invalid #define of MPUTIM_PTV_MASK for
27399 omap1510 & omap730 register definition
27400
27401 MPUTIM_PTV_MASK is defined as
27402 #define MPUTIM_PTV_MASK (0x7<<PTV_BIT)
27403
27404 while it should have been
27405 #define MPUTIM_PTV_MASK (0x7<<MPUTIM_PTV_BIT)
27406
27407 - Below Patch corrects the same
27408
27409 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
27410
27411 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
27412 Author: Adrian Filipi <adrian.filipi@eurotech.com>
27413 Date: Fri Jul 18 11:52:02 2008 -0400
27414
27415 Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
27416
27417 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
27418
27419 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
27420 Author: Guennadi Liakhovetski <lg@denx.de>
27421 Date: Thu Aug 28 12:25:11 2008 +0200
27422
27423 i.MX31: document timer precision option
27424
27425 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27426
27427 commit 1a6337b01351b82a45b0defa76f08744511c580b
27428 Author: Magnus Lilja <lilja.magnus@gmail.com>
27429 Date: Fri Aug 29 10:36:18 2008 +0200
27430
27431 i.MX31: Make the SPI bus and chip select configurable for MC13783
27432
27433 The i.MX31 has three SPI buses and each bus has several chip selects
27434 and the MC13783 chip can be connected to any of these. The current
27435 RTC driver for MC13783 is hardcoded for CSPI2/SS2.
27436
27437 This patch makes make MC13783 SPI bus and chip select configurable
27438 via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
27439
27440 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
27441
27442 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
27443 Author: Magnus Lilja <lilja.magnus@gmail.com>
27444 Date: Fri Aug 29 10:36:17 2008 +0200
27445
27446 i.MX31: Add reset_timer() and modify get_timer_masked().
27447
27448 This patch adds the reset_timer() function (needed by nand_base.c) and
27449 modifies the get_timer_masked() to work in the same way as the omap24xx
27450 function.
27451
27452 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
27453
27454 commit deeec4991a55de243787002ede24d2331d234fc8
27455 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27456 Date: Wed Sep 10 22:48:09 2008 +0200
27457
27458 ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
27459
27460 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27461
27462 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
27463 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27464 Date: Wed Sep 10 22:48:09 2008 +0200
27465
27466 bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
27467
27468 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27469
27470 commit 0e8d158664a913392cb01fb11a948d83f72e105e
27471 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27472 Date: Wed Sep 10 22:48:06 2008 +0200
27473
27474 rename CFG_ENV macros to CONFIG_ENV
27475
27476 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27477
27478 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
27479 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27480 Date: Wed Sep 10 22:48:05 2008 +0200
27481
27482 nvedit: rename error comment to CONFIG_ENV_IS_IN_
27483
27484 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27485
27486 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
27487 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27488 Date: Wed Sep 10 22:48:05 2008 +0200
27489
27490 cmd_mem: Move conditional compilation to Makefile
27491
27492 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27493
27494 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
27495 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27496 Date: Wed Sep 10 22:48:05 2008 +0200
27497
27498 move cmd_get_data_size to command.c
27499
27500 add CMD_DATA_SIZE macro to enable it
27501
27502 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27503
27504 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
27505 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27506 Date: Wed Sep 10 22:48:04 2008 +0200
27507
27508 env_flash: Move conditional compilation to Makefile
27509
27510 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27511
27512 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
27513 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27514 Date: Wed Sep 10 22:48:04 2008 +0200
27515
27516 rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
27517
27518 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27519
27520 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
27521 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27522 Date: Wed Sep 10 22:48:03 2008 +0200
27523
27524 cleanup use of CFG_ENV_IS_IN_FLASH
27525
27526 - #if CFG_ENV_IS_IN_FLASH
27527 - #if (CFG_ENV_IS_IN_FLASH == 1)
27528 - #define CFG_ENV_IS_IN_FLASH 0
27529
27530 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27531
27532 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
27533 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27534 Date: Wed Sep 10 22:48:01 2008 +0200
27535
27536 rename environment.c in env_embedded.c to reflect is functionality
27537
27538 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27539
27540 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
27541 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27542 Date: Wed Sep 10 22:48:01 2008 +0200
27543
27544 env_nowhere: Move conditional compilation to Makefile
27545
27546 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27547
27548 commit 93f6d72544da4510a146bc4c93d609b0116cde37
27549 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27550 Date: Wed Sep 10 22:48:00 2008 +0200
27551
27552 rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
27553
27554 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27555
27556 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
27557 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27558 Date: Wed Sep 10 22:48:00 2008 +0200
27559
27560 env_sf: Move conditional compilation to Makefile
27561
27562 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27563
27564 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
27565 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27566 Date: Wed Sep 10 22:48:00 2008 +0200
27567
27568 rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
27569
27570 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27571
27572 commit 55c5f49910ec8225347aa1d211352a84de6649b4
27573 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27574 Date: Wed Sep 10 22:48:00 2008 +0200
27575
27576 env_onenand: Move conditional compilation to Makefile
27577
27578 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27579
27580 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
27581 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27582 Date: Wed Sep 10 22:47:59 2008 +0200
27583
27584 rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
27585
27586 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27587
27588 commit 957a0e69575683efd70ace147746bbb3d8e7c501
27589 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27590 Date: Wed Sep 10 22:47:59 2008 +0200
27591
27592 env_nvram: Move conditional compilation to Makefile
27593
27594 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27595
27596 commit 9314cee6917444ab88bd4e758da7a30975120187
27597 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27598 Date: Wed Sep 10 22:47:59 2008 +0200
27599
27600 rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
27601
27602 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27603
27604 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
27605 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27606 Date: Wed Sep 10 22:47:59 2008 +0200
27607
27608 env_nand: Move conditional compilation to Makefile
27609
27610 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27611
27612 commit 51bfee192099206a4397f15f3b93516e01f58ab0
27613 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27614 Date: Wed Sep 10 22:47:58 2008 +0200
27615
27616 rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
27617
27618 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27619
27620 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
27621 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27622 Date: Wed Sep 10 22:47:58 2008 +0200
27623
27624 env_dataflash: Move conditional compilation to Makefile
27625
27626 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27627
27628 commit 057c849c45b9ee19df8ff3acdeee66be52819962
27629 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27630 Date: Wed Sep 10 22:47:58 2008 +0200
27631
27632 rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
27633
27634 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27635
27636 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
27637 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27638 Date: Wed Sep 10 22:47:52 2008 +0200
27639
27640 cmd_eeprom: Move conditional compilation to Makefile
27641
27642 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27643
27644 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
27645 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27646 Date: Fri Sep 5 09:19:54 2008 +0200
27647
27648 env_eeprom: Move conditional compilation to Makefile
27649
27650 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27651
27652 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
27653 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27654 Date: Fri Sep 5 09:19:30 2008 +0200
27655
27656 rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
27657
27658 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27659
27660 commit 32628c5008105a732212003d83b75f05e5243bb2
27661 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27662 Date: Sat Aug 30 23:54:58 2008 +0200
27663
27664 cmd_mac: Move conditional compilation to Makefile
27665
27666 finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
27667 start in commit ad8f8687b78c3e917b173f038926695383c55555
27668
27669 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27670
27671 commit e5648acab153f0f429bfc714902c5aaa7879f71b
27672 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27673 Date: Sat Aug 30 23:47:41 2008 +0200
27674
27675 cmd_fdc: Move conditional compilation to Makefile
27676
27677 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27678
27679 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
27680 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27681 Date: Sat Aug 30 23:47:38 2008 +0200
27682
27683 common/Makefile: add core command section
27684
27685 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27686
27687 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
27688 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27689 Date: Sat Aug 30 23:29:57 2008 +0200
27690
27691 cmd_vfd: Move conditional compilation to Makefile
27692
27693 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27694
27695 commit 6644641d072aee3087da129d8443187196a4d8a9
27696 Author: Scott Wood <scottwood@freescale.com>
27697 Date: Wed Sep 10 11:48:49 2008 -0500
27698
27699 delta, zylonite: Update nand_oobinfo to nand_ecclayout.
27700
27701 This is part of the switch to newer upstream MTD code.
27702
27703 Signed-off-by: Scott Wood <scottwood@freescale.com>
27704
27705 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
27706 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
27707 Date: Sat Aug 30 17:06:55 2008 -0400
27708
27709 ARM DaVinci: Fix broken HW ECC for large page NAND.
27710
27711 Based on original patch by Bernard Blackham <bernard@largestprime.net>
27712
27713 U-boot's HW ECC support for large page NAND on Davinci is completely
27714 broken. Some kernels, such as the 2.6.10 one supported by
27715 MontaVista for DaVinci, rely upon this broken behaviour as they
27716 share the same code for ECCs. In the existing scheme, error
27717 detection *might* work on large page, but error correction
27718 definitely does not. Small page ECC correction works, but the
27719 format is not compatible with the mainline git kernel.
27720
27721 This patch adds ECC code that matches what is currently in the
27722 Davinci git repository (since NAND support was added in 2.6.24).
27723 This makes the ECC and OOB layout written by u-boot compatible with
27724 Linux for both small page and large page devices and fixes ECC
27725 correction for large page devices.
27726
27727 The old behaviour can be restored by defining the macro
27728 CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
27729
27730 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
27731 Acked-by: Sergey Kubushyn <ksi@koi8.net>
27732 Signed-off-by: Scott Wood <scottwood@freescale.com>
27733
27734 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
27735 Author: Heiko Schocher <hs@denx.de>
27736 Date: Wed Sep 10 11:15:28 2008 +0200
27737
27738 muas3001: update BR4 settings
27739
27740 Also set up the port pins for using I2C.
27741
27742 Signed-off-by: Heiko Schocher <hs@denx.de>
27743
27744 commit 3591293509e0c0bcf244b0f974775bff2e25697e
27745 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
27746 Date: Wed Sep 10 09:43:49 2008 +0300
27747
27748 autoscr: Fix one-character lines and non-newline terminated scripts
27749
27750 When not using hush, the autoscr command now executes lines that are
27751 only one character long. It also runs the last line of scripts even if
27752 it does not end in a newline.
27753
27754 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
27755
27756 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
27757 Author: Victor Gallardo <vgallardo@amcc.com>
27758 Date: Tue Sep 9 15:13:29 2008 -0700
27759
27760 ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
27761
27762 On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
27763 and glacier.
27764
27765 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
27766
27767 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
27768 Author: Heiko Schocher <hs@denx.de>
27769 Date: Mon Sep 8 10:21:11 2008 +0200
27770
27771 muas3001: added support for the LM75 sensor.
27772
27773 Signed-off-by: Heiko Schocher <hs@denx.de>
27774
27775 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
27776 Author: Heiko Schocher <hs@denx.de>
27777 Date: Mon Sep 8 10:20:19 2008 +0200
27778
27779 muas3001: activate WDT for the muas3001 board.
27780
27781 Signed-off-by: Heiko Schocher <hs@denx.de>
27782
27783 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
27784 Author: Heiko Schocher <hs@denx.de>
27785 Date: Mon Sep 8 10:19:36 2008 +0200
27786
27787 muas3001: added 64MB SDRAM autodetection.
27788
27789 Signed-off-by: Heiko Schocher <hs@denx.de>
27790
27791 commit 5251469943895de4bb9a04d5053352cc22acb7d5
27792 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
27793 Date: Thu Aug 21 07:12:26 2008 -0700
27794
27795 Fix printf errors under -DDEBUG
27796
27797 Fix printf format-string/arg mismatches under -DDEBUG.
27798
27799 These warnings occur with DEBUG defined for a platform using
27800 cpu/mpc85xx. Users of other architectures can unearth similar
27801 problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
27802 after "CFLAGS += $(call cc-option,-fno-stack-protector)".
27803
27804 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
27805 Signed-off-by: Andy Fleming <afleming@freescale.com>
27806
27807 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
27808 Author: Wolfgang Denk <wd@denx.de>
27809 Date: Tue Sep 9 23:55:18 2008 +0200
27810
27811 Update CHANGELOG, prepare 2008-10-rc1 release
27812
27813 Signed-off-by: Wolfgang Denk <wd@denx.de>
27814
27815 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
27816 Author: Kumar Gala <galak@kernel.crashing.org>
27817 Date: Mon Sep 8 08:51:29 2008 -0500
27818
27819 85xx: Ensure timebase is zero on secondary cores
27820
27821 The e500um says the timebase is volatile out of reset. To ensure
27822 TB sync works we need to make sure its zero.
27823
27824 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27825
27826 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
27827 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27828 Date: Tue Sep 9 22:18:24 2008 +0200
27829
27830 bootm_load_os: fix load_end debug message
27831
27832 print load_end value not pointer
27833
27834 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27835
27836 commit 1d9af0be764960e6cc1c093e97176c3542796820
27837 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27838 Date: Tue Sep 9 22:18:23 2008 +0200
27839
27840 bootm: enable fdt support only on ppc, m68k and sparc
27841
27842 ...as done in image.c
27843
27844 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27845
27846 commit 748b5274e76f81df85cfcffaffedc323678d0623
27847 Author: Markus Heidelberg <markus.heidelberg@web.de>
27848 Date: Tue Sep 9 18:51:05 2008 +0200
27849
27850 common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
27851
27852 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
27853
27854 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
27855 Author: Markus Heidelberg <markus.heidelberg@web.de>
27856 Date: Tue Sep 9 17:31:46 2008 +0200
27857
27858 gitignore: add tags files and Vim swap file
27859
27860 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
27861
27862 commit 1d9b67b23fca6a25154333733204339802510720
27863 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
27864 Date: Tue Sep 9 17:52:47 2008 +0900
27865
27866 add board_eth_init() for sh7785lcr board
27867
27868 Fix the problem that cannot work RTL8169 on sh7785lcr board.
27869
27870 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
27871
27872 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
27873 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27874 Date: Wed Aug 6 16:08:41 2008 -0500
27875
27876 mtd: SPI Flash: Support the STMicro Flash
27877
27878 Add MTD SPI Flash support for M25P16, M25P20, M25P32,
27879 M25P40, M25P64, M25P80, M25P128.
27880
27881 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
27882 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27883
27884 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
27885 Author: Wolfgang Denk <wd@denx.de>
27886 Date: Tue Sep 9 17:55:31 2008 +0200
27887
27888 trab: fix build problem after change to use do_div()
27889
27890 We must link with libgeneric now.
27891
27892 Signed-off-by: Wolfgang Denk <wd@denx.de>
27893
27894 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
27895 Author: Ryan CHEN <ryan.chen@st.com>
27896 Date: Wed Aug 20 13:00:17 2008 -0400
27897
27898 Correct drv_usb_kbd_init function
27899
27900 The patch is that check if usb_get_dev_index() function return valid
27901 pointer. If valid, continue. Otherwise return -1.
27902
27903 Signed-off-by: Ryan Chen <ryan.chen@st.com>
27904 Acked-by: Markus Klotzbuecher <mk@denx.de>
27905
27906 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
27907 Author: Remy Bohmer <linux@bohmer.net>
27908 Date: Wed Aug 20 11:22:02 2008 +0200
27909
27910 Make usb-stop() safe to call multiple times in a row.
27911
27912 A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
27913 enabled the usb_stop() command in common/cmd_bootm.c which was
27914 not enabled for some time, because no board did actually set the
27915 CFG_CMD_USB flag. So, now the usb_stop() is executed before
27916 loading the linux kernel.
27917
27918 However, the usb_ohci driver hangs up (at least on AT91SAM) if the
27919 driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
27920 If some other piece of code calls usb_stop() before the bootm command,
27921 this command will hangup the system during boot.
27922 (usb start and stop is typically used while booting from usb memory stick)
27923
27924 But, stopping the usb stack twice is useless anyway, and a flag already
27925 existed that kept track on the usb_init()/usb_stop() calls.
27926 So, we now check if the usb stack is really started before we stop it.
27927
27928 This problem is now fixed in both the upper as low-level layer.
27929
27930 Signed-off-by: Remy Bohmer <linux@bohmer.net>
27931 Acked-by: Markus Klotzbuecher <mk@denx.de>
27932
27933 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
27934 Author: Wolfgang Denk <wd@denx.de>
27935 Date: Tue Sep 9 16:55:47 2008 +0200
27936
27937 Makefile: fix bug introduced by commit 47ffd6c2
27938
27939 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
27940 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27941 Date: Tue Sep 9 10:00:33 2008 -0400
27942
27943 ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
27944
27945 This patch solves the problems compiling ml507, v5fx30teval and
27946 ppc440-generic out of tree.
27947
27948 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27949
27950 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
27951 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
27952 Date: Thu Sep 4 15:35:46 2008 -0300
27953
27954 Fix dev_print when called from usb_stor_info (usb storage command)
27955
27956 Fix output of the usb storage command. It was printing "Device 0: not
27957 available" because IF_TYPE_USB was not included into the switch
27958 statement.
27959
27960 Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
27961
27962 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
27963 Author: Bartlomiej Sieka <tur@semihalf.com>
27964 Date: Tue Sep 9 12:58:16 2008 +0200
27965
27966 FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
27967
27968 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
27969
27970 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
27971 Author: Bartlomiej Sieka <tur@semihalf.com>
27972 Date: Tue Sep 9 12:58:15 2008 +0200
27973
27974 FIT: add ability to check hashes of all images in FIT, improve output
27975
27976 - add function fit_all_image_check_hashes() that verifies if all
27977 hashes of all images in the FIT are valid
27978 - improve output of fit_image_check_hashes() when the hash check fails
27979
27980 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
27981
27982 commit 1de1fa408967cef6804bb046b904114519bb36f0
27983 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27984 Date: Mon Sep 8 20:54:39 2008 +0200
27985
27986 qemu_mips: Update linux bootm to support dynamic cmdline
27987
27988 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27989
27990 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
27991 Author: Peter Tyser <ptyser@xes-inc.com>
27992 Date: Mon Sep 8 14:56:49 2008 -0500
27993
27994 Add support for booting of INTEGRITY operating system uImages
27995
27996 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
27997
27998 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
27999 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28000 Date: Mon Sep 8 21:01:29 2008 +0200
28001
28002 mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
28003
28004 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28005
28006 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
28007 Author: Kumar Gala <galak@kernel.crashing.org>
28008 Date: Mon Sep 8 13:57:12 2008 -0500
28009
28010 Remove support for booting ARTOS images
28011
28012 Pantelis Antoniou stated:
28013 AFAIK, it is still used but the products using PPC are long gone.
28014 Nuke it plz (from orbit).
28015
28016 So remove it since it cleans up a usage of env_get_char outside of
28017 the environment code.
28018
28019 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28020
28021 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
28022 Author: Wolfgang Denk <wd@denx.de>
28023 Date: Tue Sep 9 15:45:18 2008 +0200
28024
28025 Makefile: compile and link each module just once
28026
28027 Several source files need to be compiled and linked when one or more
28028 config options are selected. To allow for easy selection in the
28029 Makefiles yet to avoild multiple compilation (which costs build time)
28030 and especially multiple linking (which causes errors), we use
28031 "COBJS = $(sort COBJS-y)" which eliminates duplicates.
28032
28033 By courtesy of Detlev Zundel who suggested this approach.
28034
28035 Signed-off-by: Wolfgang Denk <wd@denx.de>
28036
28037 commit 48d0192fe869948fef14b460b5f0c85bca933693
28038 Author: Andreas Engel <andreas.engel@ericsson.com>
28039 Date: Mon Sep 8 14:30:53 2008 +0200
28040
28041 Moved conditional compile into Makefile
28042
28043 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
28044
28045 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
28046 Author: Andreas Engel <andreas.engel@ericsson.com>
28047 Date: Mon Sep 8 10:17:31 2008 +0200
28048
28049 Merged serial_pl010.c and serial_pl011.c.
28050
28051 They only differ in the init function.
28052 This also adds the missing watchdog support for the PL011.
28053
28054 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
28055
28056 commit 0817d688f307ee2c0598e79175c94a40ce90337b
28057 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
28058 Date: Sun Sep 7 17:10:27 2008 -0400
28059
28060 Remove gap fill in srec object v2
28061
28062 SREC files do not need gap fill: The load address is specified in the
28063 file. On the other hand, it can't be avoided in a .bin object. It has
28064 no information about memory location.
28065
28066 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
28067
28068 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
28069 Author: Markus Heidelberg <markus.heidelberg@web.de>
28070 Date: Sun Sep 7 20:18:27 2008 +0200
28071
28072 README: fix missing subdirectory in the documentation
28073
28074 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
28075
28076 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
28077 Author: Graeme Russ <graeme.russ@gmail.com>
28078 Date: Sun Sep 7 07:08:42 2008 +1000
28079
28080 Update i386 code (sc520_cdp)
28081
28082 Attempt to bring i386 / sc520 inline with master
28083
28084 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
28085
28086 commit 5608692104efa8d56df803dc79ea41ac3607eee5
28087 Author: Guennadi Liakhovetski <lg@denx.de>
28088 Date: Thu Sep 4 13:01:49 2008 +0200
28089
28090 fw_env: add NAND support
28091
28092 Add support for environment in NAND with automatic NOR / NAND recognition,
28093 including unaligned environment, bad-block skipping, redundant environment
28094 copy.
28095
28096 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28097
28098 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
28099 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28100 Date: Tue Sep 9 09:50:24 2008 +0200
28101
28102 ppc4xx: Fix out-of-tree building of CPCI405 variants
28103
28104 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28105 Acked-by: Stefan Roese <sr@denx.de>
28106
28107 commit 59f630588e3fdbd698a0a2798e52a8924e899563
28108 Author: Sergei Poselenov <sposelenov@emcraft.com>
28109 Date: Fri Aug 15 15:42:11 2008 +0200
28110
28111 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
28112
28113 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28114
28115 commit e64987a892353f3d49eb242d997820ef8f538912
28116 Author: Anatolij Gustschin <agust@denx.de>
28117 Date: Fri Aug 15 15:42:13 2008 +0200
28118
28119 85xx: socrates: Enable Lime support.
28120
28121 This patch adds Lime GDC support together with support for the PWM
28122 backlight control through the w83782d chip. The reset pin of the
28123 latter is attached to GPIO, so we need to reset it in
28124 early_board_init_r.
28125
28126 Signed-off-by: Anatolij Gustschin <agust@denx.de>
28127
28128 commit 3e79b588b5199f35016f178fc0d5d1266382097f
28129 Author: Detlev Zundel <dzu@denx.de>
28130 Date: Fri Aug 15 15:42:12 2008 +0200
28131
28132 85xx: Socrates: Major code update.
28133
28134 - Update the local bus ranges in the FDT for Linux for the various
28135 devices connected to the local bus via chip-select.
28136
28137 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
28138 lower than 66 MHz and uses I/O accessor functions consequently.
28139
28140 - UPM data update.
28141
28142 - Update of default environment and configuration. Use I2C multibus
28143 as we do have two I2C buses. Also enable sdram and ext2 commands.
28144
28145 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
28146 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28147 Signed-off-by: Detlev Zundel <dzu@denx.de>
28148
28149 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
28150 Author: Timur Tabi <timur@freescale.com>
28151 Date: Fri Jul 18 16:52:23 2008 +0200
28152
28153 Update Freescale 85xx boards to sys_eeprom.c
28154
28155 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
28156 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
28157 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
28158 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
28159
28160 Signed-off-by: Timur Tabi <timur@freescale.com>
28161
28162 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
28163 Author: Wolfgang Denk <wd@denx.de>
28164 Date: Tue Sep 9 10:08:02 2008 +0200
28165
28166 lib_ppc/interrupts.c: make board_show_activity() a weak function
28167
28168 This allows to use show_activity() without having to
28169 define an empty board_show_activity() function.
28170
28171 Signed-off-by: Wolfgang Denk <wd@denx.de>
28172
28173 commit fe876787f8743883ce58fed61525eaa2f34da4c5
28174 Author: Wolfgang Denk <wd@denx.de>
28175 Date: Tue Sep 9 10:06:44 2008 +0200
28176
28177 stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
28178
28179 Signed-off-by: Wolfgang Denk <wd@denx.de>
28180
28181 commit 965de106ba8900372c8b16dc60d5acab7f925e38
28182 Author: Wolfgang Denk <wd@denx.de>
28183 Date: Tue Sep 9 10:03:47 2008 +0200
28184
28185 NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
28186
28187 Signed-off-by: Wolfgang Denk <wd@denx.de>
28188
28189 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
28190 Author: Sergei Poselenov <sposelenov@emcraft.com>
28191 Date: Fri Aug 15 15:42:11 2008 +0200
28192
28193 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
28194
28195 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28196
28197 commit 36241ca29d4804a1006fb3f26069effda5202581
28198 Author: Anatolij Gustschin <agust@denx.de>
28199 Date: Fri Aug 15 15:42:13 2008 +0200
28200
28201 85xx: socrates: Enable Lime support.
28202
28203 This patch adds Lime GDC support together with support for the PWM
28204 backlight control through the w83782d chip. The reset pin of the
28205 latter is attached to GPIO, so we need to reset it in
28206 early_board_init_r.
28207
28208 Signed-off-by: Anatolij Gustschin <agust@denx.de>
28209
28210 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
28211 Author: Detlev Zundel <dzu@denx.de>
28212 Date: Fri Aug 15 15:42:12 2008 +0200
28213
28214 85xx: Socrates: Major code update.
28215
28216 - Update the local bus ranges in the FDT for Linux for the various
28217 devices connected to the local bus via chip-select.
28218
28219 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
28220 lower than 66 MHz and uses I/O accessor functions consequently.
28221
28222 - UPM data update.
28223
28224 - Update of default environment and configuration. Use I2C multibus
28225 as we do have two I2C buses. Also enable sdram and ext2 commands.
28226
28227 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
28228 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28229 Signed-off-by: Detlev Zundel <dzu@denx.de>
28230
28231 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
28232 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28233 Date: Tue Sep 9 01:22:39 2008 +0200
28234
28235 disk-on-chip: remove duplicate doc_probe declaration
28236
28237 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28238
28239 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
28240 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28241 Date: Tue Sep 9 00:59:40 2008 +0200
28242
28243 onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
28244
28245 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28246
28247 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
28248 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28249 Date: Tue Sep 9 00:59:39 2008 +0200
28250
28251 rs5c372: fix rtc_set prototype
28252
28253 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28254
28255 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
28256 Author: Sergei Poselenov <sposelenov@emcraft.com>
28257 Date: Thu Aug 14 14:08:28 2008 +0200
28258
28259 ARM: fix warning: target CPU does not support interworking
28260
28261 This patch fixes warnings like this:
28262
28263 start.S:0: warning: target CPU does not support interworking
28264
28265 which come from some ARM cross compilers and are caused by hard-coded
28266 (with "--with-cpu=arm9" configuration option) ARM targets (which
28267 support ARM Thumb instructions), while the ARM target selected from
28268 the command line (with "-march=armv4") doesn't support Thumb
28269 instructions.
28270
28271 This warning is issued by the compiler regardless of the real use of
28272 the Thumb instructions in code.
28273
28274 To fix this problem, we use options according to compiler version
28275 being used.
28276
28277 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28278 Signed-off-by: Wolfgang Denk <wd@denx.de>
28279
28280 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
28281 Author: Sergei Poselenov <sposelenov@emcraft.com>
28282 Date: Thu Aug 14 14:08:28 2008 +0200
28283
28284 ARM: Use do_div() instead of division for "long long".
28285
28286 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28287 Signed-off-by: Wolfgang Denk <wd@denx.de>
28288
28289 commit 8febd13c69cb68652577d1a9fcbde954bf784155
28290 Author: Timur Tabi <timur@freescale.com>
28291 Date: Fri Jul 18 16:52:23 2008 +0200
28292
28293 Update Freescale 85xx boards to sys_eeprom.c
28294
28295 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
28296 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
28297 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
28298 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
28299
28300 Signed-off-by: Timur Tabi <timur@freescale.com>
28301
28302 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
28303 Author: Wolfgang Denk <wd@denx.de>
28304 Date: Mon Sep 8 23:26:22 2008 +0200
28305
28306 lib_arm/bootm.c: fix compile warnings
28307
28308 bootm.c:128: warning: label 'error' defined but not used
28309 bootm.c:65: warning: unused variable 'ret'
28310
28311 Signed-off-by: Wolfgang Denk <wd@denx.de>
28312
28313 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
28314 Author: Wolfgang Denk <wd@denx.de>
28315 Date: Mon Sep 8 22:46:42 2008 +0200
28316
28317 ml507: fix out of tree build problem
28318
28319 Signed-off-by: Wolfgang Denk <wd@denx.de>
28320
28321 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
28322 Author: Wolfgang Denk <wd@denx.de>
28323 Date: Mon Sep 8 22:10:28 2008 +0200
28324
28325 common/cmd_bootm.c: fix printf() format warnings
28326
28327 Signed-off-by: Wolfgang Denk <wd@denx.de>
28328
28329 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
28330 Author: Wolfgang Denk <wd@denx.de>
28331 Date: Mon Sep 8 22:37:45 2008 +0200
28332
28333 BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
28334
28335 missing doc_probe() prototype.
28336
28337 Signed-off-by: Wolfgang Denk <wd@denx.de>
28338
28339 commit 2c5e3cc4994897d364b148942ff23e47783198f6
28340 Author: Wolfgang Denk <wd@denx.de>
28341 Date: Mon Sep 8 21:28:14 2008 +0200
28342
28343 mk48t59: fix compile problem introduced by commit d1e23194
28344
28345 Signed-off-by: Wolfgang Denk <wd@denx.de>
28346
28347 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
28348 Author: Stefan Roese <sr@denx.de>
28349 Date: Mon Sep 8 14:11:12 2008 +0200
28350
28351 ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
28352
28353 This patch moves some 4xx specific prototypes out of include common.h
28354 to a ppc4xx specific header.
28355
28356 Signed-off-by: Stefan Roese <sr@denx.de>
28357
28358 commit ac53ee8318678190bf3c68da477a84a657d86fb0
28359 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28360 Date: Fri Sep 5 15:34:04 2008 +0200
28361
28362 ppc4xx: Update CPCI405(AB) configuration
28363
28364 This patch add FDT support and command line editing capabilities
28365 for CPCI405 and CPCI405AB boards.
28366
28367 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28368 Signed-off-by: Stefan Roese <sr@denx.de>
28369
28370 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
28371 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28372 Date: Fri Sep 5 15:34:03 2008 +0200
28373
28374 ppc4xx: Cleanup CPCI405 linker script
28375
28376 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28377 Signed-off-by: Stefan Roese <sr@denx.de>
28378
28379 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
28380 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28381 Date: Fri Sep 5 15:34:02 2008 +0200
28382
28383 ppc4xx: Update CPCI405 variants handling
28384
28385 This patch replaces the BOARD_REVISION variable in include/config.mk
28386 by a using a temporary include file in the platform directory.
28387
28388 The former way does not work anymore and the latter is also used by
28389 some other boards.
28390
28391 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28392 Signed-off-by: Stefan Roese <sr@denx.de>
28393
28394 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
28395 Author: Stefan Roese <sr@denx.de>
28396 Date: Mon Sep 8 10:01:48 2008 +0200
28397
28398 ppc4xx: Remove CONFIG_CS8952_PHY define
28399
28400 Since this define is only used on one board that was never really in
28401 production, removing this compile time option doesn't hurt and makes
28402 the code more readable.
28403
28404 Signed-off-by: Stefan Roese <sr@denx.de>
28405
28406 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
28407 Author: Stefan Roese <sr@denx.de>
28408 Date: Fri Sep 5 14:11:40 2008 +0200
28409
28410 ppc4xx: Fix compilation warning for PIP405
28411
28412 This patch fixes a compilation warning for the PIP405 board. It moves the
28413 #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
28414 occur anymore. I am a little unsure if this #ifdef is at the correct
28415 place now or if it could be removed completely. This needs to get
28416 tested on the PIP405 board.
28417
28418 Signed-off-by: Stefan Roese <sr@denx.de>
28419
28420 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
28421 Author: Stefan Roese <sr@denx.de>
28422 Date: Fri Sep 5 14:09:09 2008 +0200
28423
28424 ppc4xx: Fix compilation warning for canyonlands & glacier
28425
28426 Signed-off-by: Stefan Roese <sr@denx.de>
28427
28428 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
28429 Author: Kumar Gala <galak@kernel.crashing.org>
28430 Date: Fri Sep 5 14:40:29 2008 -0500
28431
28432 Fix compiler warning in mpc8xxx ddr code
28433
28434 ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
28435 ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
28436 ctrl_regs.c:523: note: 'caslat' was declared here
28437
28438 Add a warning in DDR1 case if cas_latency isn't a value we know about.
28439
28440 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28441 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28442
28443 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
28444 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28445 Date: Mon Sep 1 23:06:23 2008 +0200
28446
28447 rtc: allow rtc_set to return an error and use it in cmd_date
28448
28449 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28450
28451 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
28452 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28453 Date: Mon Sep 1 01:16:33 2008 +0200
28454
28455 ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
28456
28457 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28458
28459 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
28460 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28461 Date: Sun Aug 31 05:37:04 2008 +0900
28462
28463 config.mk: Move arch-specific condition to $(ARCH)_config.mk
28464
28465 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28466
28467 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
28468 Author: Kumar Gala <galak@kernel.crashing.org>
28469 Date: Fri Aug 29 19:08:29 2008 -0500
28470
28471 Prevent crash if random/invalid ramdisks are passed to bootm
28472
28473 Adds returning an error from the ramdisk detection code if
28474 its not a real ramdisk (invalid). There is no reason we can't
28475 just return back to the console if we detect an invalid
28476 ramdisk or CRC error.
28477
28478 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28479
28480 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
28481 Author: Anatolij Gustschin <agust@denx.de>
28482 Date: Fri Aug 29 21:04:45 2008 +0200
28483
28484 Prevent crash if random DTB address is passed to bootm
28485
28486 This patch adds bootm_start() return value check. If
28487 error status is returned, we do not proceed further to
28488 prevent board reset or crash as we still can recover
28489 at this point.
28490
28491 Signed-off-by: Anatolij Gustschin <agust@denx.de>
28492
28493 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
28494 Author: Andrew Dyer <adyer@righthandtech.com>
28495 Date: Fri Aug 29 12:30:39 2008 -0500
28496
28497 clean up some #if !defined() in drivers/video/cfb_console.c
28498
28499 rearrange some #if !defined() / #else / #endif statements to remove
28500 the negative logic.
28501
28502 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
28503
28504 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
28505 Author: Kyungmin Park <kmpark@infradead.org>
28506 Date: Fri Aug 29 09:02:20 2008 +0900
28507
28508 apollon: use the last memory area for u-boot
28509
28510 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
28511
28512 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
28513 Author: Heiko Schocher <hs@denx.de>
28514 Date: Thu Aug 28 13:50:42 2008 +0200
28515
28516 TQM8272: move NAND part in seperate File
28517
28518 I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
28519 because I have no longer access to the hardware.
28520
28521 Signed-off-by: Heiko Schocher <hs@denx.de>
28522
28523 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
28524 Author: Heiko Schocher <hs@denx.de>
28525 Date: Thu Aug 28 13:48:36 2008 +0200
28526
28527 TQM8272: Fix compiling error for the TQM8272 board.
28528
28529 Fix compile problems caused by
28530 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
28531
28532 Signed-off-by: Heiko Schocher <hs@denx.de>
28533
28534 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
28535 Author: Kyungmin Park <kmpark@infradead.org>
28536 Date: Wed Aug 27 14:45:20 2008 +0900
28537
28538 Add JFFS2 command support on OneNAND
28539
28540 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
28541
28542 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
28543 Author: Mark Jackson <mpfj@mimc.co.uk>
28544 Date: Mon Aug 25 19:21:30 2008 +0100
28545
28546 Allow console input to be disabled
28547
28548 Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
28549
28550 When CONFIG_DISABLE_CONSOLE is defined, setting
28551 GD_FLG_DISABLE_CONSOLE disables all console input and output.
28552
28553 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
28554
28555 commit 2b22d608f370565c87f55928b524207031419c11
28556 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
28557 Date: Wed Jul 30 12:39:29 2008 +0200
28558
28559 loads: allow negative offsets
28560
28561 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
28562
28563 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
28564 Author: Yuri Tikhonov <yur@emcraft.com>
28565 Date: Thu Sep 4 11:19:05 2008 +0200
28566
28567 USB EHCI: reset root hub
28568
28569 Some of multi-function USB controllers (e.g. ISP1562) allow root hub
28570 resetting only via EHCI registers. So, this patch adds the
28571 corresponding kind of reset to OHCI's hc_reset() if the newly
28572 introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
28573 board).
28574
28575 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
28576 Acked-by: Markus Klotzbuecher <mk@denx.de>
28577
28578 commit 5875d358f025c1b042d8a0f08384b756de7256c9
28579 Author: Yuri Tikhonov <yur@emcraft.com>
28580 Date: Fri Aug 15 15:42:09 2008 +0200
28581
28582 RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
28583
28584 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
28585
28586 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
28587 Author: Stefan Roese <sr@denx.de>
28588 Date: Fri Sep 5 10:47:46 2008 +0200
28589
28590 devices: Use list_add_tail() instead of list_add() to register a device
28591
28592 This patch fixes a problem spotted on Glacier/Canyonlands (and most
28593 likely lots of other board ports), that no serial output was seen
28594 after console initialization in console_init_r(). This is because the
28595 last added console device was used instead of the first added.
28596
28597 This patch fixes this problem by using list_add_tail() instead of
28598 list_add() to register a device. This way the first added console
28599 is used again.
28600
28601 Signed-off-by: Stefan Roese <sr@denx.de>
28602
28603 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
28604 Author: Victor Gallardo <vgallardo@amcc.com>
28605 Date: Thu Sep 4 23:49:36 2008 -0700
28606
28607 ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
28608
28609 This patch adds GPCS, SGMII and M88E1112 PHY support
28610 for the AMCC PPC460GT/EX processors.
28611
28612 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
28613 Signed-off-by: Stefan Roese <sr@denx.de>
28614
28615 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
28616 Author: Adam Graham <agraham@amcc.com>
28617 Date: Wed Sep 3 12:26:59 2008 -0700
28618
28619 ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
28620
28621 Signed-off-by: Adam Graham <agraham@amcc.com>
28622 Signed-off-by: Stefan Roese <sr@denx.de>
28623
28624 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
28625 Author: Adam Graham <agraham@amcc.com>
28626 Date: Wed Sep 3 12:26:28 2008 -0700
28627
28628 ppc4xx: IBM Memory Controller DDR autocalibration routines
28629
28630 Alternate SDRAM DDR autocalibration routine that can be generically used
28631 for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
28632 support of more DIMM/memory chip vendors and gets the DDR autocalibration
28633 values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
28634
28635 Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
28636 "Method_A" and "Method_B". DDR autocalibration Method_A scans the full range
28637 of possible PPC4xx SDRAM Controller DDR autocalibration values and takes a
28638 lot longer to run than Method_B. Method_B executes in the same amount of time
28639 as the currently existing DDR autocalibration routine, i.e. 1 second or so.
28640 Normally Method_B is used and it is set as the default method.
28641
28642 The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
28643 Controller registers.[bit-field]:
28644 1) SDRAM0_RQDC.[RQFD]
28645 2) SDRAM0_RFDC.[RFFD]
28646
28647 This alternate PPC4xx DDR autocalibration code calibrates the following
28648 IBM SDRAM Controller registers.[bit-field]:
28649
28650 1) SDRAM0_WRDTR.[WDTR]
28651 2) SDRAM0_CLKTR.[CKTR]
28652 3) SDRAM0_RQDC.[RQFD]
28653 4) SDRAM0_RFDC.[RFFD]
28654
28655 and will also use the calibrated settings of the above four registers that
28656 produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
28657 register.[bit-field].
28658
28659 Signed-off-by: Adam Graham <agraham@amcc.com>
28660 Signed-off-by: Stefan Roese <sr@denx.de>
28661
28662 commit e07f4a8033b6270b8103049adb6456f660ff4a89
28663 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
28664 Date: Mon Sep 1 13:09:39 2008 -0400
28665
28666 ppc44x: Unification of virtex5 pp440 boards
28667
28668 This patch provides an unificated way of handling xilinx v5 ppc440 boards.
28669
28670 It unificates 3 different things:
28671
28672 1) Source code
28673 A new board called ppc440-generic has been created. This board includes
28674 a generic tlb initialization (Maps the whole memory into virtual) and
28675 defines board_pre_init, checkboard, initdram and get_sys_info weakly,
28676 so, they can be replaced by specific functions.
28677
28678 If a new board needs to redefine any of the previous functions
28679 (specific initialization) it can create a new directory with the
28680 specific initializations needed. (see the example ml507 board).
28681
28682 2) Configuration file
28683 Common configurations are located under configs/xilinx-ppc440.h, this
28684 header file interpretes the xparameters file generated by EDK and
28685 configurates u-boot in correspondence. Example: if there is a Temac,
28686 allows CMD_CONFIG_NET
28687 Specific configuration are located under specific configuration file.
28688 (see the example ml507 board)
28689
28690 3) Makefile
28691 Some work has been done in order to not duplicate work in the Main
28692 Makefile. Please see the attached code.
28693
28694 In order to support new boards they can be implemented in the next way:
28695
28696 a) Simple Generic Board (90% of the time)
28697 Using EDK generates a new xparameters.h file, replace
28698 ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
28699 && make
28700
28701 b) Simple Boards with special u-boot parameters (9 % of the time)
28702 Create a new file under configs for it (use ml507.h as example) and
28703 change your paramaters. Create a new Makefile paragraph and compile
28704
28705 c) Complex boards (1% of the time)
28706 Create a new folder for the board, like the ml507
28707
28708 Finally, it adds support for the Avnet FX30T Evaluation board, following
28709 the new generic structure:
28710
28711 Cheap board by Avnet for evaluating the Virtex5 FX technology.
28712
28713 This patch adds support for:
28714 - UartLite
28715 - 16MB Flash
28716 - 64MB RAM
28717
28718 Prior using U-boot in this board, read carefully the ERRATA by Avnet
28719 to solve some memory initialization issues.
28720
28721 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
28722 Signed-off-by: Stefan Roese <sr@denx.de>
28723
28724 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
28725 Author: Nick Spence <nick.spence@freescale.com>
28726 Date: Tue Sep 2 15:21:16 2008 -0500
28727
28728 mpc83xx: fix mpc8313 in-tree building with NAND
28729
28730 and add mpc8313 NAND build to MAKEALL
28731
28732 Signed-off-by: Nick Spence <nick.spence@freescale.com>
28733 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28734
28735 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
28736 Author: Nick Spence <nick.spence@freescale.com>
28737 Date: Thu Aug 28 14:09:25 2008 -0700
28738
28739 mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
28740
28741 Cleans up some latent issues with the data cache control so that
28742 dcache_enable() and dcache_disable() will work reliably (after
28743 unlock_ram_in_cache() has been called)
28744
28745 Signed-off-by: Nick Spence <nick.spence@freescale.com>
28746 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28747
28748 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
28749 Author: Nick Spence <nick.spence@freescale.com>
28750 Date: Thu Aug 28 14:09:19 2008 -0700
28751
28752 mpc83xx: Store and display Arbiter Event Register values
28753
28754 Record the Arbiter Event Register values and optionally display them.
28755
28756 The Arbiter Event Register can record the type and effective address of
28757 an arbiter error, even through an HRESET. This patch stores the values in
28758 the global data structure.
28759
28760 Display of the Arbiter Event registers immediately after the RSR value
28761 can be enabled with defines. The Arbiter values will only be displayed
28762 if an arbiter event has occured since the last Power On Reset, and either
28763 of the following defines exist:
28764 #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
28765 and type register values
28766 #define CONFIG_DISPLAY_AER_FULL - display and interpret the arbiter
28767 event register values
28768
28769 Address Only transactions are one of the trapped events that can register
28770 as an arbiter event. They occur with some cache manipulation instructions
28771 if the HID0_ABE (Address Broadcast Enable) is set and the memory region
28772 has the MEMORY_COHERENCE WIMG bit set. Setting:
28773 #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
28774 only events, so that it can still capture
28775 other real problems.
28776
28777 Signed-off-by: Nick Spence <nick.spence@freescale.com>
28778 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28779
28780 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
28781 Author: Nick Spence <nick.spence@freescale.com>
28782 Date: Thu Aug 28 14:09:11 2008 -0700
28783
28784 mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
28785
28786 This is needed in unlock_ram_in_cache() because it is called from C and
28787 will corrupt the small data area anchor that is kept in R2.
28788
28789 lock_ram_in_cache() is modified similarly as good coding practice, but
28790 is not called from C.
28791
28792 Signed-off-by: Nick Spence <nick.spence@freescale.com>
28793 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28794
28795 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
28796 Author: Nick Spence <nick.spence@freescale.com>
28797 Date: Fri Aug 22 23:52:50 2008 -0700
28798
28799 MPC83XX: Fix GPIO configuration - set gpio level before direction
28800
28801 Set DAT value before DIR values to avoid creating glitches on the
28802 GPIO signals.
28803
28804 Set gpio level register before direction register to inhibit
28805 glitches on high level output pins.
28806
28807 Dir and data gets cleared at powerup, so high level output lines see
28808 a short low pulse between setting the direction and level registers.
28809
28810 Issue was seen on a new board with the nReset line of the NOR flash
28811 connected to a GPIO. Setting the direction register puts the NOR flash
28812 in reset so the next instruction to set the level cannot get executed.
28813
28814 Signed-off-by: Nick Spence <nick.spence@freescale.com>
28815 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
28816 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28817
28818 commit 7007c5975ee900ad70983b0681d3251e221f8321
28819 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28820 Date: Tue Sep 2 02:58:32 2008 +0200
28821
28822 doc/qemu_mips: add doc howto debug u-boot with gdb
28823
28824 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28825
28826 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
28827 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28828 Date: Wed Sep 3 17:15:45 2008 +0200
28829
28830 ppx4xx: Fix broken DASA_SIM board
28831
28832 This patch adds initdram() to DASA_SIM boards that has been
28833 removed accidentally by a previous commit.
28834
28835 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28836 Signed-off-by: Stefan Roese <sr@denx.de>
28837
28838 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
28839 Author: Stefan Roese <sr@denx.de>
28840 Date: Mon Sep 1 08:35:37 2008 +0200
28841
28842 ppc4xx: Remove reference to common/lists.o from some esd linker scripts
28843
28844 This patch removes some direct references to common/lists.o from some
28845 esd linker scripts. This is necessary because the lists source was moved
28846 and is not in the "common" directory anymore.
28847
28848 Signed-off-by: Stefan Roese <sr@denx.de>
28849
28850 commit 97b0734d65f8a0b03df0a335a2addc759da56107
28851 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28852 Date: Tue Sep 2 16:33:05 2008 +0200
28853
28854 ppc4xx: Remove obsolete or unused functions from some esd boards
28855
28856 This patch removes initdram() and testdram() from most esd 405 platforms.
28857 Some boards also have an empty dummy implementation of
28858 misc_init_f(). This is also removed.
28859
28860 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28861 Signed-off-by: Stefan Roese <sr@denx.de>
28862
28863 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
28864 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28865 Date: Tue Sep 2 15:07:54 2008 +0200
28866
28867 ppc4xx: Update VOM405 board configuration
28868
28869 - remove PCI code
28870 - add command line editing
28871 - minor cleanup
28872
28873 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28874 Signed-off-by: Stefan Roese <sr@denx.de>
28875
28876 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
28877 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28878 Date: Tue Sep 2 15:07:53 2008 +0200
28879
28880 ppc4xx: Remove obsolete initdram() function from VOM405 board
28881
28882 This patch removed the obsolete initdram() function from
28883 VOM405 platform file.
28884
28885 Some minor cleanup.
28886
28887 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28888 Signed-off-by: Stefan Roese <sr@denx.de>
28889
28890 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
28891 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28892 Date: Tue Sep 2 15:07:52 2008 +0200
28893
28894 ppc4xx: Cleanup VOM405 linker script
28895
28896 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28897 Signed-off-by: Stefan Roese <sr@denx.de>
28898
28899 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
28900 Author: Matthias Fuchs <mf@esd.eu>
28901 Date: Tue Sep 2 15:07:51 2008 +0200
28902
28903 ppc4xx: Add fdt support for VOM405 boards
28904
28905 Signed-off-by: Matthias Fuchs <mf@esd.eu>
28906 Signed-off-by: Stefan Roese <sr@denx.de>
28907
28908 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
28909 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28910 Date: Tue Sep 2 11:36:14 2008 +0200
28911
28912 ppc4xx: Coding style cleanup
28913
28914 Wrap long lines etc.
28915
28916 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28917 Signed-off-by: Stefan Roese <sr@denx.de>
28918
28919 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
28920 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28921 Date: Tue Sep 2 11:35:56 2008 +0200
28922
28923 ppc4xx: Enable USB on PLU405 boards
28924
28925 This patch enables the PCI-OHCI controller on PLU405 board.
28926
28927 Also the default CPU frequency is updated to 266 MHz and
28928 command line editing is enabled.
28929
28930 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28931 Signed-off-by: Stefan Roese <sr@denx.de>
28932
28933 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
28934 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28935 Date: Tue Sep 2 11:35:35 2008 +0200
28936
28937 ppc4xx: Cleanup PLU405 platform file
28938
28939 This patch
28940 - wraps some long lines
28941 - removes unused/obsolete functions: misc_init_f() and initdram()
28942
28943 Signed-off-by: Matthias Fuchs <mf@esd.eu>
28944 Signed-off-by: Stefan Roese <sr@denx.de>
28945
28946 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
28947 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28948 Date: Tue Sep 2 11:35:04 2008 +0200
28949
28950 ppc4xx: Cleanup PLU405 linker script
28951
28952 Signed-off-by: Matthias Fuchs <mf@esd.eu>
28953 Signed-off-by: Stefan Roese <sr@denx.de>
28954
28955 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
28956 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28957 Date: Tue Sep 2 11:34:36 2008 +0200
28958
28959 ppc4xx: Add fdt support for PLU405 boards
28960
28961 Signed-off-by: Matthias Fuchs <mf@esd.eu>
28962 Signed-off-by: Stefan Roese <sr@denx.de>
28963
28964 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
28965 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28966 Date: Tue Sep 2 11:34:08 2008 +0200
28967
28968 ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
28969
28970 Signed-off-by: Matthias Fuchs <mf@esd.eu>
28971 Signed-off-by: Stefan Roese <sr@denx.de>
28972
28973 commit be1b0d2777e179191a57b138b660547a17e55aad
28974 Author: Jochen Friedrich <jochen@scram.de>
28975 Date: Tue Sep 2 11:24:59 2008 +0200
28976
28977 Don't tftp to unknown flash
28978
28979 If a board has a variable number of flash banks, there are empty entries
28980 in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
28981 "Outside available Flash". This patch skips flash banks with unknown
28982 flash ids.
28983
28984 Signed-off-by: Jochen Friedrich <jochen@scram.de>
28985 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28986
28987 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
28988 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28989 Date: Thu Aug 28 13:40:44 2008 +0900
28990
28991 net: smc911x: Add pkt_data_pull and pkt_data_push function
28992
28993 The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
28994 Byte-swapping is necessary, and so poor performance is inevitable.
28995 This problem cannot evade by the swap function of CHIP, this can
28996 evade by software Byte-swapping.
28997 And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
28998 functions necessary to solve this problem.
28999
29000 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29001 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29002
29003 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
29004 Author: Ben Warren <biggerbadderben@gmail.com>
29005 Date: Sun Aug 31 20:37:00 2008 -0700
29006
29007 Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
29008
29009 Affected boards:
29010 db64360
29011 db64460
29012 katmai
29013 taihu
29014 taishan
29015 yucca
29016 cpc45
29017 cpu87
29018 eXalion
29019 elppc
29020 debris
29021 kvme080
29022 mpc8315erdb
29023 integratorap
29024 ixdp425
29025 oxc
29026 pm826
29027 pm828
29028 pm854
29029 pm856
29030 ppmc7xx
29031 sc3
29032 sc520_spunk
29033 sorcery
29034 tqm8272
29035 tqm85xx
29036 utx8245
29037
29038 Removed initialization of the driver from net/eth.c
29039 Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
29040
29041 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29042
29043 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
29044 Author: Ben Warren <biggerbadderben@gmail.com>
29045 Date: Sun Aug 31 10:45:44 2008 -0700
29046
29047 Moved initialization of TULIP Ethernet controller to board_eth_init()
29048
29049 Affected boards:
29050 cu824
29051 bab7xx
29052 adciop
29053 dasa_sim
29054 mousse
29055 mpc8540eval
29056 musenki
29057 mvblue
29058 pcippc2/pcippc6
29059 sbc8240
29060 stxssa
29061
29062 Removed initialization of the driver from net/eth.c
29063
29064 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29065
29066 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
29067 Author: Ben Warren <biggerbadderben@gmail.com>
29068 Date: Sun Aug 31 10:44:19 2008 -0700
29069
29070 Moved initialization of E1000 Ethernet controller to board_eth_init()
29071
29072 Affected boards:
29073 ap1000
29074 mvbc_p
29075 PM854
29076
29077 Removed initialization of the driver from net/eth.c
29078
29079 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29080
29081 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
29082 Author: Ben Warren <biggerbadderben@gmail.com>
29083 Date: Sun Aug 31 10:40:51 2008 -0700
29084
29085 Moved initialization of plb2800 Ethernet driver to board_eth_init
29086
29087 Affected boards:
29088 purple
29089
29090 Removed initialization of controller from net/eth.c
29091
29092 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29093
29094 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
29095 Author: Ben Warren <biggerbadderben@gmail.com>
29096 Date: Sun Aug 31 10:39:12 2008 -0700
29097
29098 Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
29099
29100 Modified board_eth_init() functions of boards that have this FEC in addition
29101 to other Ethernet controllers.
29102
29103 Affected boards:
29104 bc3450
29105 icecube
29106 mvbc_p
29107 o2dnt
29108 pm520
29109 total5200
29110 tq5200
29111
29112 Removed initialization of controller from net/eth.c
29113
29114 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29115
29116 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
29117 Author: Ben Warren <biggerbadderben@gmail.com>
29118 Date: Sun Aug 31 10:36:38 2008 -0700
29119
29120 Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
29121
29122 Added a cpu_eth_init() function to MPC512x CPU directory and
29123 removed code from net/eth.c
29124
29125 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29126
29127 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
29128 Author: Ben Warren <biggerbadderben@gmail.com>
29129 Date: Sun Aug 31 10:16:59 2008 -0700
29130
29131 Moved initialization of IncaIP Ethernet controller to board_eth_init
29132
29133 Affected boards:
29134 IncaIP
29135
29136 Removed initialization of the driver from net/eth.c
29137
29138 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29139
29140 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
29141 Author: Ben Warren <biggerbadderben@gmail.com>
29142 Date: Sun Aug 31 10:15:26 2008 -0700
29143
29144 Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
29145
29146 Affected boards:
29147 AmigaOneG3SE
29148
29149 Removed initialization of the driver from net/eth.c
29150
29151 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29152
29153 commit 6aca145e067efe75398e9fac97822bd3700de0b2
29154 Author: Ben Warren <biggerbadderben@gmail.com>
29155 Date: Sun Aug 31 10:13:34 2008 -0700
29156
29157 Moved initialization of GT6426x Ethernet controller to board_eth_init()
29158
29159 Affected boards:
29160 EVB64260
29161 P3G4
29162 ZUMA
29163
29164 Removed initialization of the driver from net/eth.c
29165
29166 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29167
29168 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
29169 Author: Ben Warren <biggerbadderben@gmail.com>
29170 Date: Sun Aug 31 10:08:43 2008 -0700
29171
29172 Moved initialization of PCNET Ethernet controller to board_eth_init()
29173
29174 Affected boards:
29175 PN62
29176 sc520_cdp
29177
29178 Removed initialization of the driver from net/eth.c
29179
29180 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29181
29182 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
29183 Author: Ben Warren <biggerbadderben@gmail.com>
29184 Date: Sun Aug 31 10:07:16 2008 -0700
29185
29186 Moved initialization of NATSEMI Ethernet controller to board_eth_init()
29187
29188 Affected boards:
29189 a3000
29190
29191 Removed initialization of the driver from net/eth.c
29192
29193 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29194
29195 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
29196 Author: Ben Warren <biggerbadderben@gmail.com>
29197 Date: Sun Aug 31 10:03:22 2008 -0700
29198
29199 Moved initialization of NS8382X Ethernet controller to board_eth_init()
29200
29201 Affected boards:
29202 bc3450
29203 cpci5200
29204 mecp5200
29205 pf2000
29206 icecube
29207 o2dnt
29208 pm520
29209 sandpoint8245
29210 total5200
29211 tqm5200
29212
29213 Removed initialization of the driver from net/eth.c
29214
29215 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29216
29217 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
29218 Author: Ben Warren <biggerbadderben@gmail.com>
29219 Date: Sun Aug 31 09:59:33 2008 -0700
29220
29221 Moved initialization of TSI108 Ethernet controller to board_eth_init()
29222
29223 Affected boards:
29224 mpc7448hpc2
29225
29226 Removed initialization of the driver from net/eth.c
29227
29228 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29229
29230 commit 0b252f50ae218ae15bfb63af44227972686ebc56
29231 Author: Ben Warren <biggerbadderben@gmail.com>
29232 Date: Sun Aug 31 21:41:08 2008 -0700
29233
29234 Moved initialization of RTL8139 Ethernet controller to board_eth_init()
29235
29236 Affected boards:
29237 hidden_dragon
29238 MPC8544DS
29239 MPC8610HPCN
29240 R2DPLUS
29241 TB0229
29242
29243 Removed initialization of the driver from net/eth.c
29244
29245 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29246
29247 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
29248 Author: Ben Warren <biggerbadderben@gmail.com>
29249 Date: Sun Aug 31 09:49:42 2008 -0700
29250
29251 Moved initialization of RTL8169 Ethernet controller to board_eth_init()
29252
29253 Affected boards:
29254 linkstation
29255 r7780mp
29256
29257 Removed initialization of the driver from net/eth.c
29258
29259 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29260
29261 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
29262 Author: Ben Warren <biggerbadderben@gmail.com>
29263 Date: Tue Aug 12 22:11:53 2008 -0700
29264
29265 Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
29266
29267 Removed at91sam9_eth_initialize() from net/eth.c
29268
29269 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29270
29271 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
29272 Author: Ben Warren <biggerbadderben@gmail.com>
29273 Date: Sun Aug 31 22:22:04 2008 -0700
29274
29275 Introduce netdev.h header file and remove externs
29276
29277 This addresses all drivers whose initializers have already
29278 been moved to board_eth_init()/cpu_eth_init().
29279
29280 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29281
29282 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
29283 Author: Andy Fleming <afleming@freescale.com>
29284 Date: Sun Aug 31 16:33:30 2008 -0500
29285
29286 Add pixis_set_sgmii command
29287
29288 The 8544DS and 8572DS platforms support an optional SGMII riser card to
29289 expose ethernet over an SGMII interface. Once the card is in, it is also
29290 necessary to configure the board such that it uses the card, rather than
29291 the on-board ethernet ports. This can either be done by flipping dip switches
29292 on the motherboard, or by modifying registers in the pixis. Either way
29293 requires a reboot.
29294
29295 This adds a command to allow users to choose which ports are routed through
29296 the SGMII card, and which through the onboard ports. It also allows users
29297 to revert to the current switch settings.
29298
29299 This code does not work on the 8572, as the PIXIS is different.
29300
29301 Signed-off-by: Andy Fleming <afleming@freescale.com>
29302 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29303
29304 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
29305 Author: Andy Fleming <afleming@freescale.com>
29306 Date: Sun Aug 31 16:33:29 2008 -0500
29307
29308 Add SGMII support for the 8544 DS
29309
29310 The 8544 DS has an optional SGMII Riser card, which uses different PHY
29311 addresses. Check if we are in SGMII mode, and invoke the SGMII Riser
29312 setup code if so.
29313
29314 Signed-off-by: Andy Fleming <afleming@freescale.com>
29315 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29316
29317 commit 652f7c2eef76a1340928bd660845441e932d86a2
29318 Author: Andy Fleming <afleming@freescale.com>
29319 Date: Sun Aug 31 16:33:28 2008 -0500
29320
29321 Add support for Freescale SGMII Riser Card
29322
29323 The 8544DS and 8572DS systems have an optional SGMII riser card which
29324 exposes new ethernet ports which are connected to the eTSECs via an
29325 SGMII interface. The SGMII PHYs for this board are offset from the standard
29326 PHY addresses, so this code modifies the passed in tsec_info structure to
29327 use the SGMII PHYs on the card, instead.
29328
29329 Signed-off-by: Andy Fleming <afleming@freescale.com>
29330 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29331
29332 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
29333 Author: Andy Fleming <afleming@freescale.com>
29334 Date: Sun Aug 31 16:33:27 2008 -0500
29335
29336 Add SGMII support to the tsec
29337
29338 Adds support for configuring the TBI to talk properly with the SerDes.
29339
29340 Signed-off-by: Andy Fleming <afleming@freescale.com>
29341 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29342
29343 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
29344 Author: Andy Fleming <afleming@freescale.com>
29345 Date: Sun Aug 31 16:33:26 2008 -0500
29346
29347 Pass in tsec_info struct through tsec_initialize
29348
29349 The tsec driver contains a hard-coded array of configuration information
29350 for the tsec ethernet controllers. We create a default function that works
29351 for most tsecs, and allow that to be overridden by board code. It creates
29352 an array of tsec_info structures, which are then parsed by the corresponding
29353 driver instance to determine configuration. Also, add regs, miiregs, and
29354 devname fields to the tsec_info structure, so that we don't need the kludgy
29355 "index" parameter.
29356
29357 Signed-off-by: Andy Fleming <afleming@freescale.com>
29358 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29359
29360 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
29361 Author: Andy Fleming <afleming@freescale.com>
29362 Date: Sun Aug 31 16:33:25 2008 -0500
29363
29364 tsec: Move tsec.h to include/
29365
29366 This is to prepare the way for board code passing in the tsec_info structure
29367
29368 Signed-off-by: Andy Fleming <afleming@freescale.com>
29369 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29370
29371 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
29372 Author: Sergei Poselenov <sposelenov@emcraft.com>
29373 Date: Fri Jun 6 15:52:44 2008 +0200
29374
29375 PHY: Add support for the M88E1121R Marvell chip.
29376
29377 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29378 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29379 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29380
29381 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
29382 Author: Wolfgang Denk <wd@denx.de>
29383 Date: Tue Sep 2 21:17:36 2008 +0200
29384
29385 fw_env.c: fix build problems with MTD_VERSION=old
29386
29387 (as needed to support old 2.4 Linux kernel based releases)
29388
29389 Signed-off-by: Wolfgang Denk <wd@denx.de>
29390
29391 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
29392 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29393 Date: Mon Sep 1 17:11:26 2008 +0200
29394
29395 device: make device_register() clone the device
29396
29397 This is expected by the callers, but this fact was hidden well within
29398 the old list implementation.
29399
29400 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29401
29402 commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
29403 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29404 Date: Mon Sep 1 14:00:07 2008 +0200
29405
29406 avr32: Add support for "GPIO" port mux
29407
29408 The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
29409 all later AVR32 chips. This patch adds a driver for it, implementing the
29410 same API as the existing portmux-pio driver but with more functionality.
29411
29412 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29413
29414 commit d92852579546c46bdaac978e0b6767a6645b69e0
29415 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29416 Date: Fri Aug 15 15:02:29 2008 +0200
29417
29418 atstk1000: Convert to new-style makefile
29419
29420 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29421
29422 commit 25e6854d42c11046a468576179b5494f850311b2
29423 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29424 Date: Sun Aug 31 18:46:35 2008 +0200
29425
29426 avr32: use board_early_init_r instead of board_init_info
29427
29428 Replace the avr32-specific board_init_info hook by the standard
29429 board_early_init_r hook and make it optional.
29430
29431 board_early_init_r() runs somewhat earlier than board_init_info used to
29432 do, but this isn't a problem for any of the in-tree boards.
29433
29434 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29435
29436 commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
29437 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29438 Date: Sun Aug 31 18:24:24 2008 +0200
29439
29440 avr32: Use board_postclk_init instead of gclk_init
29441
29442 Replace the avr32-specific gclk_init() board hook with the standard
29443 board_postclk_init() hook which is supposed to run at the same point
29444 during initialization.
29445
29446 Provide a dummy weak alias for boards not implementing this hook. The
29447 cost of this is:
29448 - 2 bytes for the dummy function (retal 0)
29449 - 2 bytes for each unnecessary function call (short rcall)
29450
29451 which is a pretty small price to pay for avoiding lots of #ifdef
29452 clutter. In this particular case, all boards probably end up slightly
29453 smaller because we avoid the conditional checking if the gclk_init
29454 symbol is NULL.
29455
29456 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29457
29458 commit abdde2b1d570b1ee77606bf783444fcddf7f0965
29459 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29460 Date: Sun Aug 31 18:07:35 2008 +0200
29461
29462 hammerhead: Use gclk helper functions
29463
29464 Use the new gclk helper functions to set up the PHY clock instead of
29465 accessing the PM registers directly.
29466
29467 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29468
29469 commit 98090cd75cdb40b2ab94c806c338540a5716748b
29470 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29471 Date: Sun Aug 31 18:05:32 2008 +0200
29472
29473 avr32: Add gclk helper functions
29474
29475 Add two helper functions for configuring and enabling generic clocks:
29476 - gclk_enable_output: Enables output on a GCLKx pin
29477 - gclk_set_rate: Configures a gclk to run at a specific rate
29478
29479 This should eliminate any reason to go mucking about with PM registers
29480 from board code.
29481
29482 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29483
29484 commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
29485 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29486 Date: Fri Aug 29 21:09:49 2008 +0200
29487
29488 avr32: refactor the portmux/gpio code
29489
29490 - Separate the portmux configuration functionality from the GPIO pin
29491 control API.
29492 - Separate the controller-specific code from the chip-specific code.
29493 - Allow "ganged" port configuration (multiple pins at once).
29494 - Add more flexibility to the "canned" peripheral select functions:
29495 - Allow using more than 23 address bits, more chip selects, as
29496 well as NAND- and CF-specific pins.
29497 - Make the MACB SPEED pin optional, and choose between MII/RMII
29498 using a parameter instead of an #ifdef.
29499 - Make it possible to use other MMC slots than slot 0, and support
29500 different MMC/SDCard data bus widths.
29501 - Use more reasonable pull-up defaults; floating pins may consume a
29502 lot of power.
29503 - Get rid of some custom portmux code from the mimc200 board code. The
29504 old gpio/portmux API couldn't really handle its requirements, but
29505 the new one can.
29506 - Add documentation.
29507
29508 The end result is slightly smaller code for all boards. Which isn't
29509 really the point, but at least it isn't any larger.
29510
29511 This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
29512 the board maintainers could help me test this on their boards. In
29513 particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
29514 can help me out.
29515
29516 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29517 Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
29518 Cc: Mark Jackson <mpfj@mimc.co.uk>
29519 Cc: Alex Raimondi <alex.raimondi@miromico.ch>
29520 Cc: Julien May <julien.may@miromico.ch>
29521
29522 Changes since v1:
29523 * Enable pullup on NWAIT
29524 * Add missing include to portmux-pio.h
29525 * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
29526
29527 commit 4c24e8288c601cb773ab02528b48a8577970e867
29528 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29529 Date: Sat Aug 30 17:28:36 2008 +0200
29530
29531 avr32: data_bits should reflect the actual number of data bits
29532
29533 Make the data_bits enum in struct sdram_config reflect the actual number
29534 of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
29535 32 bits is just too confusing.
29536
29537 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29538
29539 commit 66b7bc5175325809718d8d49ef073bc1036ad71b
29540 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29541 Date: Fri Aug 29 17:48:18 2008 +0200
29542
29543 avr32: Update README
29544
29545 Remove some outdated and/or unnecessary information, and add updated
29546 information about the toolchain and buildroot.
29547
29548 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29549
29550 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
29551 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29552 Date: Sun Aug 31 23:28:15 2008 +0900
29553
29554 sh: Remove CC line from board's Makefile
29555
29556 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29557
29558 commit 468eae0660de6fdfd9999944c536ecc4797bd944
29559 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29560 Date: Sun Aug 31 23:25:57 2008 +0900
29561
29562 sh: Replaced "@./mkconfig" for @$(MKCONFIG)
29563
29564 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29565
29566 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
29567 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29568 Date: Thu Aug 28 14:50:52 2008 +0900
29569
29570 sh: Add support sh2 to MAKEALL
29571
29572 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29573 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29574
29575 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
29576 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29577 Date: Thu Aug 28 14:52:23 2008 +0900
29578
29579 sh: Fix compile error rsk7203 board
29580
29581 This boards used old type preprocessor.
29582 This patch fix compile error.
29583
29584 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29585 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29586
29587 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
29588 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29589 Date: Thu Aug 28 14:53:31 2008 +0900
29590
29591 sh: Fix compile error sh7785lcr board
29592
29593 This boards used old type preprocessor.
29594 This patch fix compile error.
29595
29596 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29597 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29598
29599 commit 6f0da4972e48f99d37bc522814940a6022cd3084
29600 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29601 Date: Fri Aug 22 17:39:09 2008 +0900
29602
29603 sh: Renesas Solutions AP325RXA board support
29604
29605 AP325RXA is SH7723's reference board.
29606 This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
29607 In this patch, support SCIF, NOR Flash, and Ethernet.
29608
29609 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29610 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29611
29612 commit ab09f433b50bb83b5e440c335bc3839ee069e534
29613 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29614 Date: Fri Aug 22 17:48:51 2008 +0900
29615
29616 sh: add support Renesas SH7723
29617
29618 Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
29619 This patch supports CPU register's header file and SCIF serial driver.
29620
29621 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29622 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29623
29624 commit c655fad06ba3fb042dbc667724a40e1a9a091248
29625 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29626 Date: Sun Aug 31 23:02:04 2008 +0900
29627
29628 sh: Renesas RSK+ 7203 board support
29629
29630 This adds initial support for the RTE RSK+ SH7203 board.
29631
29632 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29633 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29634
29635 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
29636 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29637 Date: Thu Jul 3 23:11:02 2008 +0900
29638
29639 sh: Add support Renesas SH7203 processor
29640
29641 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29642 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29643
29644 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
29645 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29646 Date: Sun Aug 31 22:48:33 2008 +0900
29647
29648 sh: Add support SH2/SH2A which is CPU of Renesas Technology
29649
29650 Add support SH2/SH2A basic function.
29651
29652 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
29653 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29654
29655 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
29656 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29657 Date: Sun Aug 31 22:45:08 2008 +0900
29658
29659 sh: Renesas R0P7785LC0011RL board support
29660
29661 This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
29662 Graphic, Ethernet, USB, SD, RTC, and I2C controller.
29663
29664 This patch supports the following functions:
29665 - 128MB DDR2-SDRAM (29-bit address mode only)
29666 - NOR Flash
29667 - USB host
29668 - Ethernet
29669
29670 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29671 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29672
29673 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
29674 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29675 Date: Thu Jul 10 19:32:53 2008 +0900
29676
29677 sh: add support for SH7785
29678
29679 Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
29680 This patch supports CPU register's header file.
29681
29682 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29683 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29684
29685 commit d6e04258be8f2408845468d3cf722a4cf0433445
29686 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29687 Date: Sun Aug 31 04:45:42 2008 +0200
29688
29689 davinci: fix remaining dm644x_eth
29690
29691 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29692
29693 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
29694 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29695 Date: Sun Aug 31 04:24:56 2008 +0200
29696
29697 fs: Move conditional compilation to Makefile
29698
29699 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29700
29701 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
29702 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29703 Date: Sun Aug 31 04:24:55 2008 +0200
29704
29705 devices: merge to list_head
29706
29707 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29708
29709 commit ef0255fc75f28655f9681422079287d68a14dbaa
29710 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29711 Date: Sun Aug 31 04:24:51 2008 +0200
29712
29713 update linux/list
29714
29715 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29716
29717 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
29718 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29719 Date: Sun Aug 31 00:39:48 2008 +0200
29720
29721 smdk6400: add gitignore
29722
29723 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29724
29725 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
29726 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29727 Date: Sun Aug 31 00:39:48 2008 +0200
29728
29729 smdk6400: Use CONFIG_FLASH_CFI_DRIVER
29730
29731 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29732
29733 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
29734 Author: Guennadi Liakhovetski <lg@denx.de>
29735 Date: Sun Aug 31 00:39:47 2008 +0200
29736
29737 smdk6400: remove redundant bootargs definition
29738
29739 Double bootargs setting leads to a duplicated environmant entry.
29740
29741 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29742
29743 commit 11edcfe260f20dcea79284a3e95270989d433854
29744 Author: Guennadi Liakhovetski <lg@denx.de>
29745 Date: Sun Aug 31 00:39:47 2008 +0200
29746
29747 ARM: Add support for S3C6400 based SMDK6400 board
29748
29749 SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
29750 driver for it too. The board can also boot from the NOR flash, but due to
29751 hardware limitations it can only address 64KiB on it, which is not enough
29752 for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
29753
29754 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29755
29756 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
29757 Author: Guennadi Liakhovetski <lg@denx.de>
29758 Date: Sun Aug 31 00:39:47 2008 +0200
29759
29760 NAND: add NAND driver for S3C64XX
29761
29762 Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
29763
29764 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29765
29766 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
29767 Author: Guennadi Liakhovetski <lg@denx.de>
29768 Date: Sun Aug 31 00:39:47 2008 +0200
29769
29770 S3C64XX: remove broken HWFLOW support from the serial driver
29771
29772 As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
29773 broken and currently unused. Remove it.
29774
29775 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29776
29777 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
29778 Author: Guennadi Liakhovetski <lg@denx.de>
29779 Date: Sun Aug 31 00:39:47 2008 +0200
29780
29781 serial: add S3C64XX serial driver
29782
29783 Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
29784
29785 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29786
29787 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
29788 Author: Guennadi Liakhovetski <lg@denx.de>
29789 Date: Sun Aug 31 00:39:46 2008 +0200
29790
29791 USB: Add support for OHCI controller on S3C6400
29792
29793 Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
29794 try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
29795 it should work too and we could still profit from instruction cache.
29796
29797 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29798
29799 commit 9b07773f8883665b002500c190507e9fd99b7181
29800 Author: Guennadi Liakhovetski <lg@denx.de>
29801 Date: Sun Aug 31 00:39:46 2008 +0200
29802
29803 ARM: Add arm1176 core with S3C6400 SoC
29804
29805 Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
29806
29807 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29808
29809 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
29810 Author: Sandeep Paulraj <s-paulraj@ti.com>
29811 Date: Sun Aug 31 00:39:46 2008 +0200
29812
29813 ARM DaVinci: Changing function names for EMAC driver
29814
29815 DM644x is just one of a series of DaVinci chips that use the EMAC driver.
29816 By replacing all the function names that start with dm644x_* to davinci_*
29817 we make these function more portable. I have tested this change on my EVM.
29818 DM6467 is another DaVinci SOC which uses the EMAC driver and i will
29819 be sending patches that add DaVinci DM6467 support to the list soon.
29820
29821 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
29822
29823 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
29824 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
29825 Date: Sat Aug 30 23:21:30 2008 +0200
29826
29827 Integrator[AP/CP] - Remove unused file memsetup.S
29828
29829 - memsetup.s is changed/merged to lowlevel_init.S
29830 memsetup.S has a global label memsetup that just returns back to caller
29831 - memsetup global label is changed/merged to lowlevel_init
29832 This label is not called from anywhere.
29833
29834 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
29835
29836 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
29837 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29838 Date: Wed Aug 27 21:35:52 2008 +0200
29839
29840 ARM DaVinci: Standardize names of directories/files
29841
29842 ARM DaVinci: Standardize names of directories/files.
29843
29844 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29845 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29846
29847 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
29848 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29849 Date: Fri Jul 11 15:10:13 2008 -0400
29850
29851 ARM DaVinci: Move common functions to board/davinci/common
29852
29853 ARM DaVinci: Move common functions to board/davinci/common.
29854
29855 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29856
29857 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
29858 Author: Stefan Roese <sr@denx.de>
29859 Date: Fri Aug 29 11:56:49 2008 +0200
29860
29861 ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
29862
29863 This function is needed for the new NAND infrastructure. We only need
29864 a dummy implementation though for the NDFC.
29865
29866 Signed-off-by: Stefan Roese <sr@denx.de>
29867
29868 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
29869 Author: Stefan Roese <sr@denx.de>
29870 Date: Fri Aug 29 12:06:27 2008 +0200
29871
29872 ppc4xx: Increase image size for NAND boot target
29873
29874 This is needed since now with HUSH enabled (amcc-common.h) the image
29875 read from NAND exceeds the previous limit.
29876
29877 Signed-off-by: Stefan Roese <sr@denx.de>
29878
29879 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
29880 Author: Ben Warren <biggerbadderben@gmail.com>
29881 Date: Thu Aug 28 23:58:30 2008 -0700
29882
29883 Move MPC512x_FEC driver to drivers/net
29884
29885 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29886
29887 commit 80b00af01b3c9154774de2936f05a051e92f6a03
29888 Author: Ben Warren <biggerbadderben@gmail.com>
29889 Date: Thu Aug 28 23:58:29 2008 -0700
29890
29891 Move MPC5xxx_FEC driver to drivers/net
29892
29893 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29894
29895 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
29896 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29897 Date: Fri Aug 29 21:53:57 2008 +0200
29898
29899 cmd_terminal: remove no need ifdef
29900
29901 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29902
29903 commit 578118bdf122877ae769776be002255be447b4fa
29904 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29905 Date: Fri Aug 29 21:53:57 2008 +0200
29906
29907 common/Makefile: order by functionality
29908
29909 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29910
29911 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
29912 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29913 Date: Fri Aug 29 21:53:56 2008 +0200
29914
29915 miiphyutil: Move conditional compilation to Makefile
29916
29917 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29918
29919 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
29920 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29921 Date: Fri Aug 29 21:53:37 2008 +0200
29922
29923 autoscript: Move conditional compilation to Makefile
29924
29925 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29926
29927 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
29928 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29929 Date: Fri Aug 29 01:18:11 2008 +0200
29930
29931 crc16: move to lib_generic
29932
29933 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29934
29935 commit 55195773eacefb22dd483a3c560ea30a14263ce1
29936 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29937 Date: Fri Aug 29 01:18:01 2008 +0200
29938
29939 miiphybb: move to drivers/net/phy
29940
29941 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29942
29943 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
29944 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29945 Date: Thu Aug 28 12:31:51 2008 +0200
29946
29947 soft_spi: move to drivers/spi
29948
29949 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29950
29951 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
29952 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29953 Date: Thu Aug 28 12:31:51 2008 +0200
29954
29955 soft_i2c: move to drivers/i2c
29956
29957 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29958
29959 commit 717a222229fdb77703e9174d0eb08a4b41febf49
29960 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29961 Date: Thu Aug 28 12:31:48 2008 +0200
29962
29963 gunzip: move to lib_generic
29964
29965 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29966
29967 commit 52aef8f9ba28b747973bf76741c23db658d5773c
29968 Author: Wolfgang Ocker <weo@reccoware.de>
29969 Date: Tue Aug 26 19:55:23 2008 +0200
29970
29971 ppc4xx: NAND configuration
29972
29973 Made NAND bank configuration setting a config variable.
29974
29975 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
29976 Signed-off-by: Stefan Roese <sr@denx.de>
29977
29978 commit 5bc542a593abc9e974fbd34704af85c37c366c60
29979 Author: Victor Gallardo <vgallardo@amcc.com>
29980 Date: Thu Aug 28 16:03:28 2008 -0700
29981
29982 ppc4xx: fix UIC external_interrupt hang on UIC0
29983
29984 This patch fixes a UIC external_interrupt hang if critical or non-critical
29985 interrupt is set at the same time as a normal interrupt is set on UIC0.
29986
29987 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
29988 Signed-off-by: Stefan Roese <sr@denx.de>
29989
29990 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
29991 Author: Prodyut Hazarika <phazarika@amcc.com>
29992 Date: Wed Aug 27 16:39:00 2008 -0700
29993
29994 ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
29995
29996 Removed Magic numbers from Initialization preload registers
29997 Tested with Kilauea, Glacier, Canyonlands and Katmai boards
29998 About 5-7% improvement seen for LMBench memtests
29999
30000 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
30001 Signed-off-by: Stefan Roese <sr@denx.de>
30002
30003 commit 8a490422bed685c9491274ec997f62061d88620b
30004 Author: John Rigby <jrigby@freescale.com>
30005 Date: Thu Aug 28 13:17:07 2008 -0600
30006
30007 ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
30008
30009 MPC5121 rev 2 silicon has a new register for controlling how long
30010 CS is asserted after deassertion of ALE in multiplexed mode.
30011
30012 The default is to assert CS together with ALE. The alternative
30013 is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
30014
30015 The default is wrong for the NOR flash and CPLD on the ADS5121.
30016
30017 This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
30018 it does so conditionally based on silicon rev 2.0 or greater.
30019
30020 Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
30021 Signed-off-by: John Rigby <jrigby@freescale.com>
30022
30023 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
30024 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30025 Date: Tue Aug 19 00:56:46 2008 +0600
30026
30027 Add I2C frequency dividers for ColdFire
30028
30029 The existing I2C freqency dividers for FDR does not apply
30030 to ColdFire platforms; thus, a seperate table is added
30031 based on MCF5xxx Reference Manual
30032
30033 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
30034 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30035 Acked-by: Tabi Timur <timur@freescale.com>
30036
30037 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
30038 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30039 Date: Tue Aug 19 03:01:19 2008 +0600
30040
30041 ColdFire: I2C fix for multiple platforms
30042
30043 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30044
30045 commit d53cf6a9c7423cba668b867978648645f71c3090
30046 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30047 Date: Tue Aug 19 00:37:13 2008 +0600
30048
30049 ColdFire: Add CONFIG_MII_INIT for M5272C3
30050
30051 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30052
30053 commit f78ced3028d4130b24a318943a70cf5584ab16f4
30054 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30055 Date: Tue Aug 19 00:26:25 2008 +0600
30056
30057 ColdFire: Multiple fixes for MCF5445x platforms
30058
30059 Add FEC pin set and mii reset in __mii_init(). Change
30060 legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
30061 change cfi_offset to 0, and change CFG_FLASH_CFI to
30062 CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
30063 M54455EVB env settings in configuration file.
30064
30065 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30066
30067 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
30068 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30069 Date: Fri Aug 15 18:24:25 2008 +0000
30070
30071 ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
30072
30073 The user manuals recommend 7.
30074
30075 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
30076 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30077
30078 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
30079 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30080 Date: Fri Aug 15 16:50:07 2008 +0000
30081
30082 ColdFire: Raise uart baudrate to 115200 bps
30083
30084 M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
30085 uart baudrate increase from 19200 to 115200 bps
30086
30087 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30088
30089 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
30090 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30091 Date: Wed Aug 13 12:07:03 2008 +0000
30092
30093 ColdFire: Fix board.c warning message
30094
30095 Implicit declaration of nand_init() warning message
30096
30097 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30098
30099 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
30100 Author: Kumar Gala <galak@kernel.crashing.org>
30101 Date: Wed Aug 27 01:10:34 2008 -0500
30102
30103 FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
30104
30105 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30106
30107 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
30108 Author: Heiko Schocher <hs@denx.de>
30109 Date: Thu Aug 21 20:44:49 2008 +0200
30110
30111 mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
30112
30113 Signed-off-by: Heiko Schocher <hs@denx.de>
30114
30115 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
30116 Author: Kumar Gala <galak@kernel.crashing.org>
30117 Date: Tue Aug 19 14:46:36 2008 -0500
30118
30119 mpc85xx: remove redudant code with lib_ppc/interrupts.c
30120
30121 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
30122 not show how that happened, but there is no good reason for it.
30123
30124 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
30125 they exist.
30126
30127 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30128
30129 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
30130 Author: Kumar Gala <galak@kernel.crashing.org>
30131 Date: Fri Jul 25 13:31:05 2008 -0500
30132
30133 mpc85xx: Add support for the MPC8536DS reference board
30134
30135 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30136 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
30137 Signed-off-by: Dejan Minic <minic@freescale.com>
30138 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30139 Signed-off-by: Dave Liu <daveliu@freescale.com>
30140 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30141
30142 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
30143 Author: Kumar Gala <galak@kernel.crashing.org>
30144 Date: Tue Aug 12 11:14:19 2008 -0500
30145
30146 mpc85xx: Add support for the MPC8536
30147
30148 The MPC8536 Adds SDHC and SATA controllers to the PQ3 family. We
30149 also have SERDES init code for the 8536.
30150
30151 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30152 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
30153 Signed-off-by: Dejan Minic <minic@freescale.com>
30154 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30155 Signed-off-by: Dave Liu <daveliu@freescale.com>
30156
30157 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
30158 Author: Kumar Gala <galak@kernel.crashing.org>
30159 Date: Tue Aug 12 11:13:08 2008 -0500
30160
30161 mpc85xx: Add support for the MPC8572DS reference board
30162
30163 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30164
30165 commit 457caecdbca3df21a93abff19eab12dbc61b7897
30166 Author: Kumar Gala <galak@kernel.crashing.org>
30167 Date: Wed Aug 27 01:05:35 2008 -0500
30168
30169 FSL DDR: Remove old SPD support from cpu/mpc85xx
30170
30171 All 85xx boards have been converted to the new code so we can
30172 remove the old SPD DDR setup code.
30173
30174 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30175
30176 commit 0e7927db138976469e7257e29c1338050a50fcd9
30177 Author: Kumar Gala <galak@kernel.crashing.org>
30178 Date: Wed Aug 27 01:04:07 2008 -0500
30179
30180 FSL DDR: Convert STXSSA to new DDR code.
30181
30182 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30183
30184 commit c360d9b970fbb9c13744c355879671165bbb9b9e
30185 Author: Kumar Gala <galak@kernel.crashing.org>
30186 Date: Wed Aug 27 01:03:42 2008 -0500
30187
30188 FSL DDR: Convert STXGP3 to new DDR code.
30189
30190 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30191
30192 commit 8e55313b7ae12352a343f9b9962e662dbd897187
30193 Author: Kumar Gala <galak@kernel.crashing.org>
30194 Date: Tue Aug 26 23:52:58 2008 -0500
30195
30196 FSL DDR: Convert SBC8560 to new DDR code.
30197
30198 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30199
30200 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
30201 Author: Kumar Gala <galak@kernel.crashing.org>
30202 Date: Tue Aug 26 23:52:32 2008 -0500
30203
30204 FSL DDR: Convert MPC8540EVAL to new DDR code.
30205
30206 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30207
30208 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
30209 Author: Kumar Gala <galak@kernel.crashing.org>
30210 Date: Tue Aug 26 23:52:07 2008 -0500
30211
30212 FSL DDR: Convert PM856 to new DDR code.
30213
30214 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30215
30216 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
30217 Author: Kumar Gala <galak@kernel.crashing.org>
30218 Date: Tue Aug 26 23:51:49 2008 -0500
30219
30220 FSL DDR: Convert PM854 to new DDR code.
30221
30222 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30223
30224 commit 33b9079ba20926f14238fff863b68a98e938948e
30225 Author: Kumar Gala <galak@kernel.crashing.org>
30226 Date: Tue Aug 26 23:15:28 2008 -0500
30227
30228 FSL DDR: Convert sbc8548 to new DDR code.
30229
30230 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30231
30232 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
30233 Author: Kumar Gala <galak@kernel.crashing.org>
30234 Date: Tue Aug 26 23:14:14 2008 -0500
30235
30236 FSL DDR: Convert atum8548 to new DDR code.
30237
30238 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30239
30240 commit be0bd8234b9777ecd63c4c686f72af070d886517
30241 Author: Kumar Gala <galak@kernel.crashing.org>
30242 Date: Tue Aug 26 22:56:56 2008 -0500
30243
30244 FSL DDR: Convert socrates to new DDR code.
30245
30246 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30247
30248 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
30249 Author: Kumar Gala <galak@kernel.crashing.org>
30250 Date: Tue Aug 26 08:02:30 2008 -0500
30251
30252 FSL DDR: Convert MPC8544DS to new DDR code.
30253
30254 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30255
30256 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
30257 Author: Jon Loeliger <jdl@freescale.com>
30258 Date: Tue Mar 18 13:51:05 2008 -0500
30259
30260 FSL DDR: Convert MPC8568MDS to new DDR code.
30261
30262 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30263 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30264
30265 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
30266 Author: Jon Loeliger <jdl@freescale.com>
30267 Date: Tue Mar 18 13:51:06 2008 -0500
30268
30269 FSL DDR: Convert MPC8548CDS to new DDR code.
30270
30271 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30272 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30273
30274 commit aa11d85cf318b961e029fe50d68ca47d004bce93
30275 Author: Jon Loeliger <jdl@freescale.com>
30276 Date: Mon Mar 17 15:48:18 2008 -0500
30277
30278 FSL DDR: Convert MPC8541CDS to new DDR code.
30279
30280 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30281 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30282
30283 commit 2b40edb10d81da7bba724edbccd7f53777112579
30284 Author: Jon Loeliger <jdl@freescale.com>
30285 Date: Tue Mar 18 11:12:42 2008 -0500
30286
30287 FSL DDR: Convert MPC8555ADS to new DDR code.
30288
30289 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30290 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30291
30292 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
30293 Author: Jon Loeliger <jdl@freescale.com>
30294 Date: Tue Mar 18 11:12:44 2008 -0500
30295
30296 FSL DDR: Convert MPC8560ADS to new DDR code.
30297
30298 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30299 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30300
30301 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
30302 Author: Kumar Gala <galak@kernel.crashing.org>
30303 Date: Fri Jun 6 13:12:18 2008 -0500
30304
30305 FSL DDR: Convert MPC8540ADS to new DDR code.
30306
30307 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30308
30309 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
30310 Author: Kumar Gala <galak@kernel.crashing.org>
30311 Date: Tue Aug 26 21:34:55 2008 -0500
30312
30313 FSL DDR: Add 85xx specific register setting
30314
30315 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30316
30317 commit 6fb1b7346849ccd0c20306143e334f5b76143070
30318 Author: Kumar Gala <galak@kernel.crashing.org>
30319 Date: Mon Jun 9 11:07:46 2008 -0500
30320
30321 FSL DDR: Add e500 TLB helper for DDR code
30322
30323 Provide a helper function that board code can call to map TLBs when
30324 setting up DDR.
30325
30326 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30327
30328 commit d26b739afe5a6760bd345743188759cd9d0f3b47
30329 Author: Andrew Dyer <adyer@righthandtech.com>
30330 Date: Tue Aug 26 17:03:38 2008 -0500
30331
30332 dm9000 remove dead external phy support, gpio fix
30333
30334 dm9000 has code to detect and initialize external phy parts, but later
30335 on in the code the part is forced to use the internal phy
30336 unconditionally. Remove the unused/untested code.
30337
30338 change the GPIO initialization so that only the GPIO used as an
30339 internal phy reset (hardwired in the chip) is set as an output. The
30340 remaining GPIO need to be handled by board specific code to prevent
30341 possible drive conflicts. Set as inputs for safety.
30342
30343 replace a few magic numbers with defines
30344
30345 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
30346 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30347
30348 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
30349 Author: Peter Tyser <ptyser@xes-inc.com>
30350 Date: Tue Aug 26 11:17:48 2008 -0500
30351
30352 Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
30353
30354 cmd_net.c command descriptions were updated to describe the optional
30355 hostIPaddr argument. The dhcp command help message was also updated
30356 to more closely reflect the other commands in cmd_net.c
30357
30358 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30359 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30360
30361 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
30362 Author: Remy Bohmer <linux@bohmer.net>
30363 Date: Wed Aug 20 11:30:28 2008 +0200
30364
30365 Fix bogus error message in the DHCP handler
30366
30367 The DHCP handler has 1 state that is not listed in this case, causing a
30368 failure message when there is actually no failure.
30369
30370 Signed-off-by: Remy Bohmer <linux@bohmer.net>
30371 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30372
30373 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
30374 Author: Remy Bohmer <linux@bohmer.net>
30375 Date: Wed Aug 20 11:30:27 2008 +0200
30376
30377 Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
30378
30379 The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
30380 missing extern inside the net/bootp.h header
30381
30382 Signed-off-by: Remy Bohmer <linux@bohmer.net>
30383 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30384
30385 commit 1803f7f91ff35ca402259065df7557107dcf28a2
30386 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30387 Date: Tue Aug 19 21:26:32 2008 +0000
30388
30389 ColdFire: Add FEC Buffer descriptors in SRAM
30390
30391 Add FEC Buffer descriptors and data buffer in SRAM for
30392 faster execution and access.
30393
30394 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30395 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30396
30397 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
30398 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30399 Date: Thu Aug 21 23:55:11 2008 +0000
30400
30401 Fix ColdFire FEC warning messages
30402
30403 Types mismatch and implicit declaration of icache_invalid()
30404 warning messages
30405
30406 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30407 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30408
30409 commit 6a002171098e968bd5b362347d2831224fab6048
30410 Author: Ben Warren <biggerbadderben@gmail.com>
30411 Date: Sat Jul 12 00:17:50 2008 -0700
30412
30413 Moved initialization of SKGE Ethernet driver to board code.
30414
30415 The only board using this driver is the SL8245 board.
30416 Removed initialization for the driver from net/eth.c
30417
30418 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30419
30420 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
30421 Author: Ben Warren <biggerbadderben@gmail.com>
30422 Date: Sat Jul 12 00:08:45 2008 -0700
30423
30424 Moved conditional compilation to Makefile for SK98 Ethernet driver
30425
30426 Brute-force removal of #ifdefs. Didn't touch the code.
30427 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30428
30429 commit 65d3d99c28dc363d15eaee78225ff643df499b97
30430 Author: Ben Warren <biggerbadderben@gmail.com>
30431 Date: Fri Jul 11 23:42:19 2008 -0700
30432
30433 Moved initialization of ULI526X Ethernet driver to board code.
30434
30435 The only board using this driver is the Freescale MPC8610HPCD board.
30436 Removed initialization for the driver from net/eth.c
30437
30438 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30439
30440 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
30441 Author: Ben Warren <biggerbadderben@gmail.com>
30442 Date: Fri Jul 11 23:15:28 2008 -0700
30443
30444 Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
30445
30446 Added board_eth_init() function to bf537-stamp board.
30447 Removed initialization for the Blackin EMAC driver from net/eth.c
30448
30449 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30450
30451 commit fc363ce35408f348cacced68505f3747a53e3d7c
30452 Author: Ben Warren <biggerbadderben@gmail.com>
30453 Date: Wed Jul 9 01:04:19 2008 -0700
30454
30455 Moved initialization of GRETH Ethernet driver to CPU directory
30456
30457 Added a cpu_eth_init() function to leon2/leon3 CPU directories and
30458 removed code from net/eth.c
30459
30460 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30461
30462 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
30463 Author: Ben Warren <biggerbadderben@gmail.com>
30464 Date: Tue Aug 26 22:16:25 2008 -0700
30465
30466 Moved initialization of MCFFEC Ethernet driver to CPU directory
30467
30468 Added a cpu_eth_init() function to coldfire CPU directories and
30469 removed code from net/eth.c
30470
30471 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30472
30473 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
30474 Author: Ben Warren <biggerbadderben@gmail.com>
30475 Date: Tue Aug 26 22:12:36 2008 -0700
30476
30477 Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
30478
30479 Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
30480 removed code from net/eth.c
30481
30482 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30483
30484 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
30485 Author: Kumar Gala <galak@kernel.crashing.org>
30486 Date: Tue Aug 26 15:01:38 2008 -0500
30487
30488 FSL DDR: Remove old SPD support from cpu/mpc86xx
30489
30490 All 86xx boards have been converted to the new code so we can
30491 remove the old SPD DDR setup code.
30492
30493 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30494
30495 commit 9bd4e5911b750837515466bc7449087698b88e0e
30496 Author: Kumar Gala <galak@kernel.crashing.org>
30497 Date: Tue Aug 26 15:01:37 2008 -0500
30498
30499 FSL DDR: Convert SBC8641D to new DDR code.
30500
30501 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30502
30503 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
30504 Author: Jon Loeliger <jdl@freescale.com>
30505 Date: Tue Aug 26 15:01:36 2008 -0500
30506
30507 FSL DDR: Convert MPC8610HPCD to new DDR code.
30508
30509 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30510 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30511
30512 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
30513 Author: Kumar Gala <galak@kernel.crashing.org>
30514 Date: Tue Aug 26 15:01:35 2008 -0500
30515
30516 FSL DDR: Convert MPC8641HPCN to new DDR code.
30517
30518 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30519 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30520
30521 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
30522 Author: Kumar Gala <galak@kernel.crashing.org>
30523 Date: Tue Aug 26 15:01:34 2008 -0500
30524
30525 FSL DDR: Add 86xx specific register setting
30526
30527 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30528
30529 commit 233fdd502a6c227f476212b3097653ad48d7e254
30530 Author: Kumar Gala <galak@kernel.crashing.org>
30531 Date: Tue Aug 26 15:01:32 2008 -0500
30532
30533 FSL DDR: Add DDR2 DIMM paramter support
30534
30535 Compute DIMM parameters based upon the SPD information.
30536
30537 Signed-off-by: James Yang <James.Yang@freescale.com>
30538 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30539 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30540
30541 commit 05c05a2363a6ac11e0e405926034546ffad71fad
30542 Author: Kumar Gala <galak@kernel.crashing.org>
30543 Date: Tue Aug 26 15:01:30 2008 -0500
30544
30545 FSL DDR: Add DDR1 DIMM paramter support
30546
30547 Compute DIMM parameters based upon the SPD information in spd.
30548
30549 Signed-off-by: James Yang <James.Yang@freescale.com>
30550 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30551 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30552
30553 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
30554 Author: Kumar Gala <galak@kernel.crashing.org>
30555 Date: Tue Aug 26 15:01:29 2008 -0500
30556
30557 FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
30558
30559 The main purpose of this rewrite it to be able to share the same
30560 initialization code on all FSL PowerPC products that have DDR
30561 controllers. (83xx, 85xx, 86xx).
30562
30563 The code is broken up into the following steps:
30564 GET_SPD
30565 COMPUTE_DIMM_PARMS
30566 COMPUTE_COMMON_PARMS
30567 GATHER_OPTS
30568 ASSIGN_ADDRESSES
30569 COMPUTE_REGS
30570 PROGRAM_REGS
30571
30572 This allows us to share more code an easily allow for board specific code
30573 overrides.
30574
30575 Additionally this code base adds support for >4G of DDR and provides a
30576 foundation for supporting interleaving on processors with more than one
30577 controller.
30578
30579 Signed-off-by: James Yang <James.Yang@freescale.com>
30580 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30581 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30582 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30583 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30584
30585 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
30586 Author: Kumar Gala <galak@kernel.crashing.org>
30587 Date: Tue Aug 26 15:01:28 2008 -0500
30588
30589 FSL DDR: Provide a generic set_ddr_laws()
30590
30591 Provide a helper function that will setup the last available
30592 LAWs (upto 2) for DDR. Useful for SPD/dyanmic DDR setting code.
30593
30594 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30595
30596 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
30597 Author: James Yang <James.Yang@freescale.com>
30598 Date: Tue Aug 26 15:01:27 2008 -0500
30599
30600 Add proper SPD definitions for DDR1/2/3
30601
30602 Also adds helper functions for DDR1/2 to verify the checksum.
30603
30604 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30605
30606 commit 285db74716c724ae8a0ff177878fd09a74428c7b
30607 Author: Wolfgang Denk <wd@denx.de>
30608 Date: Wed Aug 27 01:02:48 2008 +0200
30609
30610 Update CHANGELOG
30611
30612 Signed-off-by: Wolfgang Denk <wd@denx.de>
30613
30614 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
30615 Author: Heiko Schocher <hs@denx.de>
30616 Date: Tue Aug 19 10:08:49 2008 +0200
30617
30618 Add support for muas3001 board (MPC8270)
30619
30620 Signed-off-by: Heiko Schocher <hs@denx.de>
30621
30622 commit 322098bff32410d2a00031649b47c4ec90a66d9a
30623 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
30624 Date: Tue Aug 19 08:31:18 2008 +0530
30625
30626 common/cmd_load.c cleanup - remove unused variables
30627
30628 - Remove unused global variable os_data_count.
30629 - Remove unused variable z.
30630
30631 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
30632
30633 commit 306620b762a4f9fa6678568ad2e8772dec145208
30634 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
30635 Date: Mon Aug 18 13:35:27 2008 +0200
30636
30637 remove MVS1 board
30638
30639 MVS1 board has reached end-of-life and can be removed completely.
30640
30641 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
30642
30643 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
30644 Author: Kumar Gala <galak@kernel.crashing.org>
30645 Date: Fri Aug 15 08:24:45 2008 -0500
30646
30647 bootm: refactor do_reset and os boot function args
30648
30649 There is no need for each OS specific function to call do_reset() we
30650 can just do it once in bootm. This means its feasible on an error for
30651 the OS boot function to return.
30652
30653 Also, remove passing in cmd_tbl_t as its not needed by the OS boot
30654 functions. flag isn't currently used but might be in the future so
30655 we left it alone.
30656
30657 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30658
30659 commit 40afac22a9c602e55c501c800f1c064324711b56
30660 Author: Kumar Gala <galak@kernel.crashing.org>
30661 Date: Fri Aug 15 08:24:44 2008 -0500
30662
30663 fdt: Added resize command
30664
30665 Resize the fdt to size + padding to 4k boundary
30666
30667 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30668
30669 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
30670 Author: Kumar Gala <galak@kernel.crashing.org>
30671 Date: Fri Aug 15 08:24:43 2008 -0500
30672
30673 fdt: refactor initrd related code
30674
30675 Created a new fdt_initrd() to deal with setting the initrd properties
30676 in the device tree and fixing up the mem reserve. We can use this
30677 both in the choosen node handling and lets us remove some duplicated
30678 code when we fixup the initrd info in bootm on PPC.
30679
30680 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30681
30682 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
30683 Author: Kumar Gala <galak@kernel.crashing.org>
30684 Date: Fri Aug 15 08:24:42 2008 -0500
30685
30686 fdt: refactor fdt resize code
30687
30688 Move the fdt resizing code out of ppc specific boot code and into
30689 common fdt support code.
30690
30691 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30692
30693 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
30694 Author: Kumar Gala <galak@kernel.crashing.org>
30695 Date: Fri Aug 15 08:24:41 2008 -0500
30696
30697 bootm: refactor image detection and os load steps
30698
30699 Created a bootm_start() that handles the parsing and detection of all
30700 the images that will be used by the bootm command (OS, ramdisk, fdt).
30701 As part of this we now tract all the relevant image offsets in the
30702 bootm_headers_t struct. This will allow us to have all the needed
30703 state for future sub-commands and lets us reduce a bit of arch
30704 specific code on SPARC.
30705
30706 Created a bootm_load_os() that deals with decompression and loading
30707 the OS image.
30708
30709 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30710
30711 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
30712 Author: Kumar Gala <galak@kernel.crashing.org>
30713 Date: Fri Aug 15 08:24:40 2008 -0500
30714
30715 bootm: move lmb into the bootm_headers_t structure
30716
30717 To allow for persistent state between future bootm subcommands we
30718 need the lmb to exist in a global state.
30719 Moving it into the bootm_headers_t allows us to do that.
30720
30721 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30722
30723 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
30724 Author: Kumar Gala <galak@kernel.crashing.org>
30725 Date: Fri Aug 15 08:24:39 2008 -0500
30726
30727 bootm: Set working fdt address as part of the bootm flow
30728
30729 Set the fdt working address so "fdt FOO" commands can be used as part
30730 of the bootm flow. Also set an the environment variable "fdtaddr"
30731 with the value.
30732
30733 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30734
30735 commit 06a09918f3903450313e2047a9cc258bf5872f46
30736 Author: Kumar Gala <galak@kernel.crashing.org>
30737 Date: Fri Aug 15 08:24:38 2008 -0500
30738
30739 bootm: refactor fdt locating and relocation code
30740
30741 Move the code that handles finding a device tree blob and relocating
30742 it (if needed) into common code so all arch's have access to it.
30743
30744 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30745
30746 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
30747 Author: Kumar Gala <galak@kernel.crashing.org>
30748 Date: Fri Aug 15 08:24:37 2008 -0500
30749
30750 bootm: refactor ramdisk locating code
30751
30752 Move determing if we have a ramdisk and where its located into the
30753 common code. Keep track of the ramdisk start and end in the
30754 bootm_headers_t image struct.
30755
30756 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30757
30758 commit c160a9544743e80e8889edb2275538e7764ce334
30759 Author: Kumar Gala <galak@kernel.crashing.org>
30760 Date: Fri Aug 15 08:24:36 2008 -0500
30761
30762 bootm: refactor entry point code
30763
30764 Move entry point code out of each arch and into common code.
30765 Keep the entry point in the bootm_headers_t images struct.
30766
30767 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30768
30769 commit 20220d22b9f41446288588cd2e457e0077a18bed
30770 Author: Randy Vinson <rvinson@mvista.com>
30771 Date: Wed Aug 13 11:44:57 2008 -0700
30772
30773 mpc7448hpc2: Fix PCI I/O space mapping.
30774
30775 PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
30776 PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
30777 space such that 0xFA000000 in the processor's address space maps to 0
30778 on the PCI I/O bus.
30779
30780 Signed-off-by Randy Vinson <rvinson@mvista.com>
30781 Acked-by: Roy Zang <tie-fei.zang@freescale.com>
30782
30783 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
30784 Author: Guennadi Liakhovetski <lg@denx.de>
30785 Date: Wed Aug 13 18:10:26 2008 +0200
30786
30787 i.MX31: Specify maintainers for i.MX31-based boards
30788
30789 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30790 Signed-off-by: Wolfgang Denk <wd@denx.de>
30791
30792 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
30793 Author: Wolfgang Denk <wd@denx.de>
30794 Date: Tue Aug 26 15:01:28 2008 +0200
30795
30796 ADS5121: adjust image addresses in RAM and flash
30797
30798 Use the same mapping in flash as used by Linux
30799
30800 Signed-off-by: Wolfgang Denk <wd@denx.de>
30801
30802 commit 19f101412c16edee9fd55db4039e1d68a833b28b
30803 Author: Wolfgang Denk <wd@denx.de>
30804 Date: Tue Aug 26 13:14:34 2008 +0200
30805
30806 cmd_mem.c: Fix help message alignment
30807
30808 Bug was introced by "Big white-space cleanup" (53677ef1)
30809
30810 Signed-off-by: Wolfgang Denk <wd@denx.de>
30811
30812 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
30813 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
30814 Date: Wed Aug 20 11:11:52 2008 +0200
30815
30816 change mvBL-M7 default env and move to vendor subdir
30817
30818 fix mvBL-M7 config and move to matrix_vision subdir
30819
30820 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
30821 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30822
30823 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
30824 Author: Nick Spence <nick.spence@freescale.com>
30825 Date: Fri Aug 22 23:52:40 2008 -0700
30826
30827 MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
30828
30829 This patch adds elements to the 83xx sysconf structure and #define values that are used
30830 by mpc83xx family devices.
30831
30832 Signed-off-by: Nick Spence <nick.spence@freescale.com>
30833 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30834
30835 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
30836 Author: Ira W. Snyder <iws@ovro.caltech.edu>
30837 Date: Fri Aug 22 11:00:15 2008 -0700
30838
30839 MPC8349EMDS: Add PCI Agent (PCISLAVE) support
30840
30841 Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
30842 PCI card rather than a host computer.
30843
30844 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
30845 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30846
30847 commit 4ff9aea9d6b5602683a920951ef896996438af62
30848 Author: Ira W. Snyder <iws@ovro.caltech.edu>
30849 Date: Fri Aug 22 11:00:14 2008 -0700
30850
30851 mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
30852
30853 This adds a helper function to unlock the PCI configuration bit, so that
30854 any extra PCI setup (such as outbound windows, etc.) can be done after
30855 using the 83XX_GENERIC_PCI code to set up the PCI bus.
30856
30857 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
30858 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30859
30860 commit 162338e1fcde231ca4d562e5ebd7859456731691
30861 Author: Ira W. Snyder <iws@ovro.caltech.edu>
30862 Date: Fri Aug 22 11:00:13 2008 -0700
30863
30864 MPC8349EMDS: use 83XX_GENERIC_PCI setup code
30865
30866 Change the MPC8349EMDS board to use the generic PCI initialization code
30867 for the mpc83xx cpu.
30868
30869 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
30870 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30871
30872 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
30873 Author: Kim Phillips <kim.phillips@freescale.com>
30874 Date: Mon Aug 25 14:53:09 2008 -0500
30875
30876 fix out of tree building
30877
30878 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30879
30880 commit a49d10cf027d059ee15c262010a05cdaec0961e1
30881 Author: Wolfgang Denk <wd@denx.de>
30882 Date: Mon Aug 25 23:45:41 2008 +0200
30883
30884 Minor coding style cleanup, updte CHANGELOG
30885
30886 Signed-off-by: Wolfgang Denk <wd@denx.de>
30887
30888 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
30889 Author: Stefan Roese <sr@denx.de>
30890 Date: Wed Aug 20 20:29:38 2008 +0200
30891
30892 RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
30893
30894 This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
30895 to combine both config options into one line. This even allows defining
30896 both options and not generating the target object twice.
30897
30898 Signed-off-by: Stefan Roese <sr@denx.de>
30899
30900 commit 079edb913dbae147b50a488cf02e03f473fc5f28
30901 Author: Jens Gehrlein <sew_s@tqs.de>
30902 Date: Fri Jul 4 16:50:05 2008 +0200
30903
30904 MX31: fix bit masks in function mx31_decode_pll()
30905
30906 Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
30907
30908 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
30909
30910 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
30911 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
30912 Date: Mon Aug 25 11:11:34 2008 +0200
30913
30914 Correct ARM Versatile Timer Initialization
30915
30916 - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
30917 -- Timer Value Register @ TIMER Base + 4 is Read-only.
30918 -- Prescale Value (Bits 3-2 of TIMER Control register)
30919 can only be one of 00,01,10. 11 is undefined.
30920 -- CFG_HZ for Versatile board is set to
30921 #define CFG_HZ (1000000 / 256)
30922 So Prescale bits is set to indicate
30923 - 8 Stages of Prescale, Clock divided by 256
30924 - The Timer Control Register has one Undefined/Shouldn't Use Bit
30925 So we should do read/modify/write Operation
30926
30927 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
30928
30929 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
30930 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
30931 Date: Mon Aug 25 11:30:29 2008 +0200
30932
30933 Add ARM AMBA PL031 RTC Support
30934
30935 Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
30936
30937 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
30938 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
30939 Date: Tue Aug 19 16:21:03 2008 -0400
30940
30941 ARM DaVinci: Removed redundant NAND initialization code.
30942
30943 ARM DaVinci: Removed redundant NAND initialization code.
30944
30945 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
30946
30947 commit b3fb663b20d995ca41327db877ddb168279b3f62
30948 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
30949 Date: Tue Aug 19 16:21:00 2008 -0400
30950
30951 ARM DaVinci: Fix compilation error with new MTD code.
30952
30953 ARM DaVinci: Fix compilation error with new MTD code.
30954
30955 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
30956
30957 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
30958 Author: Gerald Van Baren <vanbaren@cideas.com>
30959 Date: Fri Aug 22 14:37:05 2008 -0400
30960
30961 Add note on dereferencing /aliases pointers
30962
30963 Replace the "must quote special characters" note with a hint on
30964 how to dereference /aliases pointers by omitting the leading "/".
30965 This feature was introduced by Kumar Gala as a libfdt enhancement
30966 in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
30967
30968 Example:
30969
30970 => fdt print /aliases
30971 aliases {
30972 ethernet0 = "/qe@e0100000/ucc@2000";
30973 ethernet1 = "/qe@e0100000/ucc@3000";
30974 serial0 = "/soc8360@e0000000/serial@4500";
30975 serial1 = "/soc8360@e0000000/serial@4600";
30976 pci0 = "/pci@e0008500";
30977 };
30978 => fdt print ethernet0
30979 ucc@2000 {
30980 device_type = "network";
30981 compatible = "ucc_geth";
30982 cell-index = <0x1>;
30983 reg = <0x2000 0x200>;
30984 interrupts = <0x20>;
30985 interrupt-parent = <0x2>;
30986 local-mac-address = [00 00 00 00 00 00];
30987 rx-clock-name = "none";
30988 tx-clock-name = "clk9";
30989 phy-handle = <0x3>;
30990 phy-connection-type = "rgmii-id";
30991 pio-handle = <0x4>;
30992 };
30993
30994 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
30995
30996 commit feeca3f578b7f53c032ba203698751c982f8bf5a
30997 Author: Kumar Gala <galak@kernel.crashing.org>
30998 Date: Thu Aug 14 08:28:19 2008 -0500
30999
31000 libfdt: Add support for using aliases in fdt_path_offset()
31001
31002 If the path doesn't start with '/' check to see if it matches some alias
31003 under "/aliases" and substitute the matching alias value in the path
31004 and retry the lookup.
31005
31006 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31007 Acked-by: David Gibson <david@gibson.dropbear.id.au>
31008 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
31009
31010 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
31011 Author: David Gibson <david@gibson.dropbear.id.au>
31012 Date: Wed Aug 6 14:50:49 2008 +1000
31013
31014 libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
31015
31016 As well as fdt_subnode_offset(), libfdt includes an
31017 fdt_subnode_offset_namelen() function that takes the subnode name to
31018 look up not as a NUL-terminated string, but as a string with an
31019 explicit length. This can be useful when the caller has the name as
31020 part of a longer string, such as a full path.
31021
31022 However, we don't have corresponding 'namelen' versions for
31023 fdt_get_property() and fdt_getprop(). There are less obvious use
31024 cases for these variants on property names, but there are
31025 circumstances where they can be useful e.g. looking up property names
31026 which need to be parsed from a longer string buffer such as user input
31027 or a configuration file, or looking up an alias in a path with
31028 IEEE1275 style aliases.
31029
31030 So, since it's very easy to implement such variants, this patch does
31031 so. The original NUL-terminated variants are, of course, implemented
31032 in terms of the namelen versions.
31033
31034 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
31035
31036 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
31037 Author: David Gibson <david@gibson.dropbear.id.au>
31038 Date: Tue Jul 29 14:51:22 2008 +1000
31039
31040 libfdt: Forgot one function when cleaning the namespace
31041
31042 In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
31043 libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
31044 chance of collisions with things from whatever package libfdt is
31045 embedded in, pulled into the libfdt build via that environment's
31046 libfdt_env.h.
31047
31048 Except... I missed one. This patch applies the same treatment to
31049 _stringlist_contains(). While we're at it, also make it static since
31050 it's only used in the same file.
31051
31052 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
31053
31054 commit 46390da15411351fc3b498bd8c1615f78fe80df0
31055 Author: Wolfram Sang <w.sang@pengutronix.de>
31056 Date: Wed Jul 9 11:22:44 2008 +0200
31057
31058 libfdt: Improve documentation in libfdt.h
31059
31060 Fix a few typos and mistakes.
31061
31062 Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
31063 Acked-by: David Gibson <david@gibson.dropbear.id.au>
31064
31065 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
31066 Author: David Gibson <david@gibson.dropbear.id.au>
31067 Date: Wed Jul 9 14:10:24 2008 +1000
31068
31069 libfdt: Increase namespace-pollution paranoia
31070
31071 libfdt is supposed to easy to embed in projects all and sundry.
31072 Often, it won't be practical to separate the embedded libfdt's
31073 namespace from that of the surrounding project. Which means there can
31074 be namespace conflicts between even libfdt's internal/static functions
31075 and functions or macros coming from the surrounding project's headers
31076 via libfdt_env.h.
31077
31078 This patch, therefore, renames a bunch of libfdt internal functions
31079 and macros and makes a few other chances to reduce the chances of
31080 namespace collisions with embedding projects. Specifically:
31081 - Internal functions (even static ones) are now named _fdt_*()
31082
31083 - The type and (static) global for the error table in
31084 fdt_strerror() gain an fdt_ prefix
31085
31086 - The unused macro PALIGN is removed
31087
31088 - The memeq and streq macros are removed and open-coded in the
31089 users (they were only used once each)
31090
31091 - Other macros gain an FDT_ prefix
31092
31093 - To save some of the bulk from the previous change, an
31094 FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
31095 FDT_ALIGN(x, FDT_TAGSIZE)
31096
31097 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
31098
31099 commit c66830263af19831f2b7db307f79d1943febf7f9
31100 Author: David Gibson <david@gibson.dropbear.id.au>
31101 Date: Mon Jul 7 10:14:15 2008 +1000
31102
31103 dtc: Enable and fix -Wcast-qual warnings
31104
31105 Enabling -Wcast-qual warnings in dtc shows up a number of places where
31106 we are incorrectly discarding a const qualification. There are also
31107 some places where we are intentionally discarding the 'const', and we
31108 need an ugly cast through uintptr_t to suppress the warning. However,
31109 most of these are pretty well isolated with the *_w() functions. So
31110 in the interests of maximum safety with const qualifications, this
31111 patch enables the warnings and fixes the existing complaints.
31112
31113 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
31114 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
31115
31116 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
31117 Author: David Gibson <david@gibson.dropbear.id.au>
31118 Date: Mon Jul 7 10:10:48 2008 +1000
31119
31120 dtc: Enable and fix -Wpointer-arith warnings
31121
31122 This patch turns on the -Wpointer-arith option in the dtc Makefile,
31123 and fixes the resulting warnings due to using (void *) in pointer
31124 arithmetic. While convenient, pointer arithmetic on void * is not
31125 portable, so it's better that we avoid it, particularly in libfdt.
31126
31127 Also add necessary definition of uintptr_t needed by David Gibson's
31128 changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
31129 comes from stdint.h, which u-boot doesn't have). -- gvb
31130
31131 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
31132 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
31133
31134 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
31135 Author: Tirumala R Marri <tmarri@amcc.com>
31136 Date: Thu Aug 21 21:54:53 2008 -0700
31137
31138 ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
31139
31140 During recent PCI-E tests it has been found that current
31141 driverl level and de-emphasis values are not set correctly.
31142 After sweeping throgh all de-ephasis values, it was found that
31143 0x130 is a right value. Where 0x13 is driver level and 0 is
31144 de-emphasis.
31145
31146 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
31147 Signed-off-by: Stefan Roese <sr@denx.de>
31148
31149 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
31150 Author: Remy Bohmer <linux@bohmer.net>
31151 Date: Wed Aug 20 20:46:56 2008 +0200
31152
31153 Make the YAFFS filesystem work
31154
31155 Recently the YAFFS filesystem support has been added to U-boot.
31156 However, just enabling CONFIG_YAFFS2 is not enough to get it working.
31157
31158 ymount will generate an exception (when dereferencing mtd->readoob()), because
31159 the genericDevice is a null pointer. Further, a lot of logging is produced
31160 while using YAFFS fs, so logging should also be disabled.
31161 Both issues are solved by this patch.
31162
31163 With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
31164 in U-boot, as well as in Linux.
31165
31166 Tested on a Atmel AT91SAM9261EK board.
31167
31168 Signed-off-by: Remy Bohmer <linux@bohmer.net>
31169 Acked-by: William Juul <william.juul@tandberg.com>
31170 Signed-off-by: Scott Wood <scottwood@freescale.com>
31171
31172 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
31173 Author: Kyungmin Park <kmpark@infradead.org>
31174 Date: Tue Aug 19 08:42:53 2008 +0900
31175
31176 Fix OneNAND read_oob/write_oob functions compatability
31177
31178 Also sync with kernel OneNAND codes
31179
31180 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31181 Signed-off-by: Scott Wood <scottwood@freescale.com>
31182
31183 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
31184 Author: Scott Wood <scottwood@freescale.com>
31185 Date: Mon Aug 18 17:11:20 2008 -0500
31186
31187 NAND: Remove delay from nand_boot_fsl_elbc.c.
31188
31189 It was for debugging purposes, and shouldn't have been left in.
31190
31191 Signed-off-by: Scott Wood <scottwood@freescale.com>
31192
31193 commit f556483734126793522fb7a8cf36af90da78f084
31194 Author: Stefan Roese <sr@denx.de>
31195 Date: Thu Aug 21 11:05:03 2008 +0200
31196
31197 ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
31198
31199 This patch fixes some minor issues introduced with the patch:
31200 ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
31201
31202 - Rework memory-queue and PLB arbiter optimization code, that the
31203 local variable is not needed anymore. This removes one #ifdef.
31204 - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
31205 of XXX+ 0x01). This was not introduced by Prodyut, just a
31206 copy-paste problem.
31207
31208 Signed-off-by: Stefan Roese <sr@denx.de>
31209
31210 commit 079589bcfb24ba11068460276a3cc9549ab5346f
31211 Author: Prodyut Hazarika <phazarika@amcc.com>
31212 Date: Wed Aug 20 09:38:51 2008 -0700
31213
31214 ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
31215 PPC405EX and PPC460EX/GT/SX
31216
31217 - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
31218 processors
31219 - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
31220 across processors (405 and 440/460)
31221 - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
31222 processors
31223 - Add register bit definitions for Memory Queue Configuration registers
31224
31225 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
31226 Signed-off-by: Stefan Roese <sr@denx.de>
31227
31228 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
31229 Author: Kumar Gala <galak@kernel.crashing.org>
31230 Date: Tue Aug 19 15:41:18 2008 -0500
31231
31232 fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
31233
31234 Move to using the environment variables 'ethaddr', 'eth1addr', etc..
31235 instead of bd->bi_enetaddr, bi_enet1addr, etc.
31236
31237 This makes the code a bit more flexible to the number of ethernet
31238 interfaces.
31239
31240 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31241
31242 commit 4cacf7c64609839f809e2f9c45873f1d65861703
31243 Author: Stefan Roese <sr@denx.de>
31244 Date: Tue Aug 19 14:57:55 2008 +0200
31245
31246 hush: Fix printf debug macro in hush.c so that it usable in U-Boot
31247
31248 This patch changes the debug_printf() marco for U-Boot in hush.c and
31249 moves the definition of DEBUG_SHELL to a place that is actually compiled
31250 under U-Boot.
31251
31252 Signed-off-by: Stefan Roese <sr@denx.de>
31253
31254 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
31255 Author: Heiko Schocher <hs@denx.de>
31256 Date: Tue Aug 19 09:57:41 2008 +0200
31257
31258 cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
31259
31260 Commit 00b1883a4cac59d97cd297b1a3a398db85982865
31261 missed a few boards:
31262 include/configs/M5253DEMO.h
31263 include/configs/ml507.h
31264 include/configs/redwood.h
31265
31266 This patch fixes this.
31267
31268 Signed-off-by: Heiko Schocher <hs@denx.de>
31269
31270 commit 0768b7a872964085eece8d5e9fec9175e9deb161
31271 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31272 Date: Mon Aug 18 13:41:27 2008 +0200
31273
31274 Consolidate strmhz() implementation
31275
31276 ARM, i386, m68k and ppc all have identical implementations of strmhz().
31277 Other architectures don't provide this function at all.
31278
31279 This patch moves strmhz() into lib_generic, reducing code duplication
31280 and providing a more unified API across architectures.
31281
31282 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31283
31284 commit a928d0df211f1d829308d335d19be3ca42558dfc
31285 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
31286 Date: Mon Aug 18 12:02:51 2008 +0200
31287
31288 fix mvbc_p board build warnings
31289
31290 fix build warnings @ mvBC-P board by using correct types, i.e. change
31291 out_be32 to out_be16 and out_8 accordingly.
31292
31293 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
31294
31295 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
31296 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31297 Date: Sat Aug 16 18:54:27 2008 +0200
31298
31299 Makefile: fix posix support on find
31300
31301 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31302
31303 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
31304 Author: Axel Beierlein <belatronix@web.de>
31305 Date: Sat Aug 16 00:30:48 2008 +0200
31306
31307 Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
31308
31309 Tested with TQM5200S on STK52XX.200 Board
31310
31311 Signed-off-by: Axel Beierlein <belatronix@web.de>
31312
31313 commit 0800707b6d5041a840a65d556032c15c584b55f8
31314 Author: Peter Tyser <ptyser@xes-inc.com>
31315 Date: Fri Aug 15 14:36:32 2008 -0500
31316
31317 mod_i2c_mem() bugfix
31318
31319 The last used chip, address, and address length were not being
31320 stored for the imm and imn commands.
31321
31322 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
31323
31324 commit 4afbef967275b2f636abae86f91b81becee7ad03
31325 Author: Steven A. Falco <sfalco@harris.com>
31326 Date: Fri Aug 15 15:37:31 2008 -0400
31327
31328 Fix typo in spelling of ATAPI.
31329
31330 Correct a small spelling mistake.
31331
31332 Signed-off-by: Steven A. Falco <sfalco@harris.com>
31333
31334 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
31335 Author: Steven A. Falco <sfalco@harris.com>
31336 Date: Fri Aug 15 15:34:10 2008 -0400
31337
31338 Add a hook to allow board-specific PIO mode setting.
31339
31340 This patch adds a hook whereby a board-specific routine can be called to
31341 configure hardware for a PIO mode. The prototype for the board-specific
31342 routine is:
31343
31344 int inline ide_set_piomode(int pio_mode)
31345
31346 ide_set_piomode should be prepared to configure hardware for a pio_mode
31347 between 0 and 6, inclusive. It should return 0 on success or 1 on failure.
31348
31349 Signed-off-by: Steven A. Falco <sfalco@harris.com>
31350
31351 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
31352 Author: Steven A. Falco <sfalco@harris.com>
31353 Date: Fri Aug 15 15:29:12 2008 -0400
31354
31355 Replace enums in ata.h with an include of libata.h
31356
31357 This patch removes some enums from ata.h and replaces them with an
31358 include of libata.h. This way, we eliminate duplicated code, and
31359 prevent errors whereby the different versions could be out of sync.
31360
31361 Signed-off-by: Steven A. Falco <sfalco@harris.com>
31362
31363 commit 0de0afbca865ecf482b4d2b635236746def8518f
31364 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31365 Date: Fri Aug 15 18:32:41 2008 +0200
31366
31367 coldfire: fix CFI drivers activation with new macro
31368
31369 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
31370
31371 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31372
31373 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
31374 Author: Kumar Gala <galak@kernel.crashing.org>
31375 Date: Fri Aug 15 08:24:35 2008 -0500
31376
31377 fdt: fdt addr w/o any args reports back the current working address
31378
31379 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31380
31381 commit f953d99fd528a496b400a706b511eaf8e3ea66af
31382 Author: Kumar Gala <galak@kernel.crashing.org>
31383 Date: Fri Aug 15 08:24:34 2008 -0500
31384
31385 fdt: added the ability to set initrd start/end via chosen command
31386
31387 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31388
31389 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
31390 Author: Kumar Gala <galak@kernel.crashing.org>
31391 Date: Fri Aug 15 08:24:33 2008 -0500
31392
31393 Add command to enable/disable interrupts
31394
31395 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31396
31397 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
31398 Author: Nick Spence <nick.spence@freescale.com>
31399 Date: Tue Aug 19 22:21:16 2008 -0700
31400
31401 CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
31402
31403 This patch fixes a missing vendor code in the flash_real_protect() function.
31404
31405 Signed-off-by: Nick Spence <nick.spence@freescale.com>
31406 Signed-off-by: Stefan Roese <sr@denx.de>
31407
31408 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
31409 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31410 Date: Tue Aug 19 16:53:39 2008 +0000
31411
31412 CFI: Fix AMD Legacy sector protect
31413
31414 New implement sector lock and unlock or softlock commands
31415 do not exist in AMD legacy flash. Thus, causing issue
31416 when erasing AMD legacy flash (such as lv040)
31417
31418 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31419 Signed-off-by: Stefan Roese <sr@denx.de>
31420
31421 commit 492671404140f09d5b21b3d2ce4e362c0692c069
31422 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31423 Date: Wed Aug 20 09:40:16 2008 +0200
31424
31425 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
31426
31427 CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
31428
31429 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31430
31431 commit 33eac2b3d946fc998a09245dfe54d017079b9056
31432 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31433 Date: Wed Aug 20 09:28:36 2008 +0200
31434
31435 hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
31436
31437 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31438
31439 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
31440 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31441 Date: Wed Aug 20 09:27:37 2008 +0200
31442
31443 favr-32-ezkit: Fix printf format warnings
31444
31445 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31446
31447 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
31448 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31449 Date: Fri Aug 15 12:04:25 2008 +0200
31450
31451 MAINTAINERS: Sort avr32 section alphabetically
31452
31453 The rest of the MAINTAINERS file appears to be sorted
31454 almost-alphabetically, but entries for the newly added AVR32 boards were
31455 added somewhat randomly. This patch sorts the list alphabetically again.
31456
31457 Also update my e-mail address. The old one still works, but it may not
31458 work forever.
31459
31460 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31461
31462 commit 13b50fe3bc065c48911fa373231421280855a9d6
31463 Author: Mark Jackson <mpfj@mimc.co.uk>
31464 Date: Wed Jul 30 13:07:27 2008 +0100
31465
31466 avr32: Add MIMC200 board
31467
31468 The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
31469 8MByte FLASH and 128KByte FRAM.
31470
31471 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
31472 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31473
31474 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
31475 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31476 Date: Wed Jul 9 21:07:34 2008 +0900
31477
31478 rtl8169: add support for RTL8110SCL
31479
31480 This patch fixes a problem that RTL8110SCL started transfer
31481 with an incorrect memory address.
31482
31483 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31484 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31485
31486 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
31487 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31488 Date: Wed Jun 25 15:48:52 2008 -0500
31489
31490 Fix dm9000 receive status and len little endian issue
31491
31492 The received status and len was in little endian
31493 format and caused the ethernet unable to proceed
31494 further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
31495
31496 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31497 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31498
31499 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
31500 Author: Kumar Gala <galak@kernel.crashing.org>
31501 Date: Fri Aug 15 08:24:32 2008 -0500
31502
31503 Clean up usage of icache_disable/dcache_disable
31504
31505 There is no point in disabling the icache on 7xx/74xx/86xx parts and not
31506 also flushing the icache. All callers of invalidate_l1_instruction_cache()
31507 call icache_disable() right after. Make it so icache_disable() calls
31508 invalidate_l1_instruction_cache() for us.
31509
31510 Also, dcache_disable() already calls dcache_flush() so there is no point
31511 in the explicit calls of dcache_flush().
31512
31513 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31514
31515 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
31516 Author: Kumar Gala <galak@kernel.crashing.org>
31517 Date: Fri Aug 15 08:24:31 2008 -0500
31518
31519 Update linux bootm to support ePAPR client interface
31520
31521 The ePAPR spec has some subtle differences from the current device
31522 tree based boot interface to the powerpc linux kernel. The powerpc
31523 linux kernel currently ignores the differences that ePAPR specifies.
31524
31525 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31526
31527 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
31528 Author: Wolfgang Denk <wd@denx.de>
31529 Date: Mon Aug 18 23:50:20 2008 +0200
31530
31531 Minor code cleanup: keep lists sorted.
31532
31533 Signed-off-by: Wolfgang Denk <wd@denx.de>
31534
31535 commit d0039d4ed275e6ca09fb417895024ad02be118c4
31536 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31537 Date: Wed Jul 23 19:10:14 2008 +0200
31538
31539 Add support for ADT7460 I2C monitor chip
31540
31541 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31542
31543 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
31544 Author: Michal Simek <monstr@monstr.eu>
31545 Date: Mon Jul 14 19:45:45 2008 +0200
31546
31547 video: Clean drivers/video/Makefile
31548
31549 Signed-off-by: Michal Simek <monstr@monstr.eu>
31550
31551 commit 871c18dd301752270e1f74328c846c3104be1e2e
31552 Author: Michal Simek <monstr@monstr.eu>
31553 Date: Mon Jul 14 19:45:37 2008 +0200
31554
31555 rtc: Clean drivers/rtc/Makefile
31556
31557 Signed-off-by: Michal Simek <monstr@monstr.eu>
31558
31559 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
31560 Author: Michal Simek <monstr@monstr.eu>
31561 Date: Mon Jul 14 19:45:35 2008 +0200
31562
31563 i2c: Clean drivers/i2c/ Makefile
31564
31565 Signed-off-by: Michal Simek <monstr@monstr.eu>
31566
31567 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
31568 Author: Harald Welte <laforge@openmoko.org>
31569 Date: Wed Jul 9 22:30:30 2008 +0800
31570
31571 Add 'license' command to U-Boot command line
31572
31573 The 'license' command includes the U-Boot license (GPLv2) into the
31574 actual bootloader binary. The license text can be shown interactively
31575 at the U-Boot commandline.
31576
31577 For products where the commandline can actually be accessed by the
31578 end user, this helps to prevent inadvertent GPL violations, since the
31579 GPLv2 license text can no longer be 'forgotten' to be included into
31580 the product.
31581
31582 The 'license' command can be enabled by CONFIG_CMD_LICENSE.
31583
31584 Signed-off-by: Harald Welte <laforge@openmoko.org>
31585
31586 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
31587 Author: Harald Welte <laforge@gnumonks.org>
31588 Date: Sun Jul 6 15:56:38 2008 +0800
31589
31590 add 'unzip' command to u-boot commandline
31591
31592 [PATCH] add new 'unzip' command to u-boot commandline
31593
31594 common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
31595 memory to memory, and option CONFIG_CMD_UNZIP to enable it
31596
31597 Signed-off-by: Werner Almesberger <werner@openmoko.org>
31598 Signed-off-by: Harald Welte <laforge@openmoko.org>
31599
31600 commit 07efc9e321619c3dec213310c32e011aa6f02783
31601 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31602 Date: Wed Aug 6 19:37:17 2008 -0500
31603
31604 Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
31605
31606 The CFG_ENV_SIZE is not suitable used for SPI flash erase
31607 sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
31608 Add condition check if CFG_ENV_SIZE is larger than
31609 CFG_ENV_SECT_SIZE, calculate the right number of sectors for
31610 erasing.
31611
31612 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31613
31614 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
31615 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31616 Date: Mon Aug 11 15:54:25 2008 +0000
31617
31618 ColdFire: Multiple fixes for M5282EVB
31619
31620 Incorrect CFG_HZ value, change 1000000 to 1000.
31621 Rename #waring to #warning. RAMBAR1 uses twice
31622 in start.S, rename the later to FLASHBAR. Insert
31623 nop for DRAM setup. And, env_offset in linker file.
31624
31625 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31626
31627 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
31628 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31629 Date: Mon Aug 11 15:26:43 2008 +0000
31630
31631 ColdFire: Move m5282evb from board to board/freescale
31632
31633 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31634
31635 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
31636 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31637 Date: Mon Aug 11 15:25:07 2008 +0000
31638
31639 ColdFire: Move m5272c3 from board to board/freescale
31640
31641 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31642
31643 commit 659e9bad629a480f606b286d5703aef7159edf98
31644 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31645 Date: Mon Aug 11 15:23:16 2008 +0000
31646
31647 ColdFire: Move m5271evb from board to board/freescale
31648
31649 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31650
31651 commit 05316f8ece8206339a208ec052f039cd0f7ca922
31652 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31653 Date: Mon Aug 11 13:41:49 2008 +0000
31654
31655 ColdFire: Add M54451EVB platform support for MCF5445x
31656
31657 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31658
31659 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
31660 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31661 Date: Wed Aug 6 19:14:08 2008 -0500
31662
31663 ColdFire: Add Serial Flash support for M54455EVB
31664
31665 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31666
31667 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
31668 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31669 Date: Wed Jul 23 20:38:53 2008 -0500
31670
31671 ColdFire: Implement SBF feature for M5445EVB
31672
31673 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31674
31675 commit a7323bba229203aae2604afde131ab47bad4eadc
31676 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31677 Date: Wed Jul 23 17:53:36 2008 -0500
31678
31679 ColdFire: Add SSPI feature for MCF5445x
31680
31681 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31682
31683 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
31684 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31685 Date: Wed Jul 23 17:37:10 2008 -0500
31686
31687 ColdFire: Use CFI Flash driver for M54455EVB
31688
31689 Remove non-common flash driver in
31690 board/freescale/m54455evb/flash.c. The non-cfi flash will
31691 use CONFIG_FLASH_CFI_LEGACY to configure the flash
31692 attribute.
31693
31694 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31695
31696 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
31697 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31698 Date: Wed Jul 23 17:11:47 2008 -0500
31699
31700 ColdFire: Add M5253DEMO platform support for MCF5253
31701
31702 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31703
31704 commit 80ba61fd82569af40e04d4a089257b81881884f2
31705 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31706 Date: Wed Aug 6 14:17:09 2008 -0500
31707
31708 ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
31709
31710 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31711
31712 commit d361307e73ce1f6fc68760123f37d4876f851f3e
31713 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31714 Date: Wed Aug 6 14:11:36 2008 -0500
31715
31716 ColdFire: Fix M5253EVB dram bring up issue
31717
31718 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31719
31720 commit 4b0708093e15b412296328bf81325cf9b69fe512
31721 Author: Wolfgang Denk <wd@denx.de>
31722 Date: Thu Aug 14 14:41:06 2008 +0200
31723
31724 Coding Style cleanup, update CHANGELOG
31725
31726 Signed-off-by: Wolfgang Denk <wd@denx.de>
31727
31728 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
31729 Author: Scott Wood <scottwood@freescale.com>
31730 Date: Wed Aug 13 18:24:05 2008 -0500
31731
31732 socrates: Update NAND driver to new API.
31733
31734 Also, fix some minor formatting issues, and simplify the handling of
31735 "state" for writes.
31736
31737 Signed-off-by: Scott Wood <scottwood@freescale.com>
31738
31739 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
31740 Author: Scott Wood <scottwood@freescale.com>
31741 Date: Wed Aug 13 18:03:40 2008 -0500
31742
31743 quad100hd: Update NAND driver to new API.
31744
31745 Signed-off-by: Scott Wood <scottwood@freescale.com>
31746
31747 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
31748 Author: Scott Wood <scottwood@freescale.com>
31749 Date: Wed Aug 13 17:53:48 2008 -0500
31750
31751 m5373evb: Update NAND driver to new API.
31752
31753 Signed-off-by: Scott Wood <scottwood@freescale.com>
31754
31755 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
31756 Author: Scott Wood <scottwood@freescale.com>
31757 Date: Wed Aug 13 17:04:30 2008 -0500
31758
31759 s3c24x0: Update NAND driver to new API.
31760
31761 Signed-off-by: Scott Wood <scottwood@freescale.com>
31762
31763 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
31764 Author: Scott Wood <scottwood@freescale.com>
31765 Date: Wed Aug 13 15:56:00 2008 -0500
31766
31767 at91: Update board NAND drivers to current API.
31768
31769 Signed-off-by: Scott Wood <scottwood@freescale.com>
31770
31771 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
31772 Author: Kyungmin Park <kmpark@infradead.org>
31773 Date: Wed Aug 13 09:11:02 2008 +0900
31774
31775 Fix OneNAND build break
31776
31777 Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
31778 - fix bufferram management at erase operation
31779 This patch includes the NAND/OneNAND state filed too.
31780
31781 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31782 Signed-off-by: Scott Wood <scottwood@freescale.com>
31783
31784 commit 9483df6408c25f16060432de3868901e352e23bc
31785 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31786 Date: Wed Aug 13 01:40:43 2008 +0200
31787
31788 drivers/mtd/nand_legacy: Move conditional compilation to Makefile
31789
31790 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31791
31792 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
31793 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31794 Date: Wed Aug 13 01:40:43 2008 +0200
31795
31796 drivers/mtd/nand: Move conditional compilation to Makefile
31797
31798 rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
31799
31800 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31801
31802 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
31803 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31804 Date: Wed Aug 13 01:40:42 2008 +0200
31805
31806 drivers/mtd/onenand: Move conditional compilation to Makefile
31807
31808 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31809
31810 commit 00b1883a4cac59d97cd297b1a3a398db85982865
31811 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31812 Date: Wed Aug 13 01:40:42 2008 +0200
31813
31814 drivers/mtd: Move conditional compilation to Makefile
31815
31816 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
31817
31818 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31819
31820 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
31821 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31822 Date: Wed Aug 13 01:40:41 2008 +0200
31823
31824 drivers/qe: Move conditional compilation to Makefile
31825
31826 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31827
31828 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
31829 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31830 Date: Wed Aug 13 01:40:40 2008 +0200
31831
31832 drivers/pci: Move conditional compilation to Makefile
31833
31834 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31835
31836 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
31837 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31838 Date: Wed Aug 13 01:40:40 2008 +0200
31839
31840 drivers/misc: Move conditional compilation to Makefile
31841
31842 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31843
31844 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
31845 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31846 Date: Wed Aug 13 01:40:40 2008 +0200
31847
31848 drivers/input: Move conditional compilation to Makefile
31849
31850 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31851
31852 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
31853 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31854 Date: Wed Aug 13 01:40:39 2008 +0200
31855
31856 drivers/dma: Move conditional compilation to Makefile
31857
31858 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31859
31860 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
31861 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31862 Date: Wed Aug 13 01:40:39 2008 +0200
31863
31864 drivers/block: Move conditional compilation to Makefile
31865
31866 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31867
31868 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
31869 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31870 Date: Wed Aug 13 01:40:39 2008 +0200
31871
31872 serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
31873
31874 move also conditional compilation to Makefile
31875
31876 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31877
31878 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
31879 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31880 Date: Wed Aug 13 01:40:38 2008 +0200
31881
31882 serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
31883
31884 move also conditional compilation to Makefile
31885
31886 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31887
31888 commit d6e9ee92e890f67594ab150689510df361133ead
31889 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31890 Date: Wed Aug 13 01:40:38 2008 +0200
31891
31892 common: Move conditional compilation to Makefile
31893
31894 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31895
31896 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
31897 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31898 Date: Wed Aug 13 01:40:09 2008 +0200
31899
31900 mx31: move freescale's mx31 boards to vendor board dir
31901
31902 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31903
31904 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
31905 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31906 Date: Sat Jul 5 23:11:11 2008 +0200
31907
31908 at91: move arch-at91sam9 to arch-at91
31909
31910 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31911
31912 commit 195ccfc5991d48764b2519941e3507f693851d5d
31913 Author: Fathi BOUDRA <fabo@debian.org>
31914 Date: Wed Aug 6 10:06:20 2008 +0200
31915
31916 OneNAND: Fill in MTD function pointers for OneNAND.
31917
31918 onenand_print_device_info():
31919 - Now returns a string to be placed in mtd->name,
31920 rather than calling printf.
31921 - Remove verbose parameter as it becomes useless.
31922
31923 Signed-off-by: Fathi Boudra <fabo@debian.org>
31924 Signed-off-by: Scott Wood <scottwood@freescale.com>
31925
31926 commit aa646643b6bc250cb3a4966bf728876e0c10d329
31927 Author: Guennadi Liakhovetski <lg@denx.de>
31928 Date: Wed Aug 6 21:42:07 2008 +0200
31929
31930 nand_spl: Support page-aligned read in nand_load, use chipselect
31931
31932 Supporting page-aligned reads doesn't incure any sinificant overhead, just
31933 a small change in the algorithm. Also replace in_8 with readb, since there
31934 is no in_8 on ARM.
31935
31936 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31937 Signed-off-by: Scott Wood <scottwood@freescale.com>
31938
31939 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
31940 Author: Scott Wood <scottwood@freescale.com>
31941 Date: Tue Aug 5 11:15:59 2008 -0500
31942
31943 NAND boot: Update large page support for current API.
31944
31945 Also, remove the ctrl variable in favor of passing the constants
31946 directly, and remove redundant (u8) casts.
31947
31948 Signed-off-by: Scott Wood <scottwood@freescale.com>
31949
31950 commit e4c09508545d1c45617ba45391c03c03cbc360b9
31951 Author: Scott Wood <scottwood@freescale.com>
31952 Date: Mon Jun 30 14:13:28 2008 -0500
31953
31954 NAND boot: MPC8313ERDB support
31955
31956 Note that with older board revisions, NAND boot may only work after a
31957 power-on reset, and not after a warm reset. I don't have a newer board
31958 to test on; if you have a board with a 33MHz crystal, please let me know
31959 if it works after a warm reset.
31960
31961 Signed-off-by: Scott Wood <scottwood@freescale.com>
31962
31963 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
31964 Author: Scott Wood <scottwood@freescale.com>
31965 Date: Thu Jun 26 14:06:52 2008 -0500
31966
31967 mpc8313erdb: Enable NAND in config.
31968
31969 Signed-off-by: Scott Wood <scottwood@freescale.com>
31970
31971 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
31972 Author: Guennadi Liakhovetski <lg@denx.de>
31973 Date: Thu Jul 31 12:38:26 2008 +0200
31974
31975 NAND: Do not write or read a whole block if it is larger than the environment
31976
31977 Environment can be smaller than NAND block size, do not need to read a whole
31978 block and minimum for writing is one page. Also remove an unused variable.
31979
31980 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31981 Signed-off-by: Scott Wood <scottwood@freescale.com>
31982
31983 commit eafcabd15f00c142156235c519fcc55b10993241
31984 Author: Marcel Ziswiler <marcel@ziswiler.com>
31985 Date: Sun Jun 22 16:30:06 2008 +0200
31986
31987 NAND: chip->state does not always get set.
31988
31989 Fixes an issue with chip->state not always being set causing troubles.
31990
31991 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
31992 Signed-off-by: Scott Wood <scottwood@freescale.com>
31993
31994 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
31995 Author: Ilya Yanok <yanok@emcraft.com>
31996 Date: Mon Jun 30 15:34:40 2008 +0200
31997
31998 NAND: Scan bad blocks lazily.
31999
32000 Rather than scanning on boot, scan upon the first attempt to check the
32001 badness of a block. This speeds up boot when not using NAND, and reduces
32002 the likelihood of needing to reflash via JTAG if NAND becomes
32003 nonfunctional.
32004
32005 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
32006 Signed-off-by: Scott Wood <scottwood@freescale.com>
32007
32008 commit dfbf617ff055e4216f78d358b0867c548916d14b
32009 Author: Scott Wood <scottwood@freescale.com>
32010 Date: Thu Jun 12 13:20:16 2008 -0500
32011
32012 NAND read/write fix
32013
32014 Implement block-skipping read/write, based on a patch from
32015 Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
32016
32017 Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
32018 Signed-off-by: Scott Wood <scottwood@freescale.com>
32019
32020 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
32021 Author: Scott Wood <scottwood@freescale.com>
32022 Date: Thu Jun 12 13:13:23 2008 -0500
32023
32024 NAND: Always skip blocks on read/write/boot.
32025
32026 Use of the non-skipping versions was almost always (if not always)
32027 an error, and no valid use case has been identified.
32028
32029 Signed-off-by: Scott Wood <scottwood@freescale.com>
32030
32031 commit e1c3dbada349992875934575c97b328ab2cb33ca
32032 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32033 Date: Thu Jun 12 11:10:21 2008 -0500
32034
32035 nand: fsl_upm: convert to updated MTD NAND infrastructure
32036
32037 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32038 Signed-off-by: Scott Wood <scottwood@freescale.com>
32039
32040 commit 300253306acc72b1b2e9faf0987f86551151d7cf
32041 Author: Scott Wood <scottwood@freescale.com>
32042 Date: Thu May 22 15:02:46 2008 -0500
32043
32044 fsl_elbc_nand: Hard-code the FBAR/FPAR split.
32045
32046 The hardware has separate registers for block and page-within-block,
32047 but the division between the two has no apparent relation to the
32048 actual erase block size of the NAND chip.
32049
32050 Signed-off-by: Scott Wood <scottwood@freescale.com>
32051
32052 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
32053 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32054 Date: Fri Mar 28 22:10:54 2008 +0300
32055
32056 fsl_elbc_nand: workaround for hangs during nand write
32057
32058 Using current driver elbc sometimes hangs during nand write. Reading back
32059 last byte helps though (thanks to Scott Wood for the idea).
32060
32061 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32062 Signed-off-by: Scott Wood <scottwood@freescale.com>
32063
32064 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
32065 Author: Scott Wood <scottwood@freescale.com>
32066 Date: Fri Mar 21 16:12:51 2008 -0500
32067
32068 Freescale eLBC FCM NAND driver
32069
32070 This is a driver for the Flash Control Machine of the enhanched Local Bus
32071 Controller found on some Freescale chips (such as the mpc8313 and the
32072 mpc8379).
32073
32074 Signed-off-by: Scott Wood <scottwood@freescale.com>
32075
32076 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
32077 Author: Scott Wood <scottwood@freescale.com>
32078 Date: Tue Mar 18 15:29:14 2008 -0500
32079
32080 Don't panic if a controller driver does ecc its own way.
32081
32082 Some hardware, such as the enhanced local bus controller used on some
32083 mpc83xx chips, does ecc transparently when reading and writing data, rather
32084 than providing a generic calculate/correct mechanism that can be exported to
32085 the nand subsystem.
32086
32087 The subsystem should not BUG() when calculate, correct, or hwctl are
32088 missing, if the methods that call them have been overridden.
32089
32090 Signed-off-by: Scott Wood <scottwood@freescale.com>
32091
32092 commit e52b34d40a8a646e3d11638ea8797e96398dba13
32093 Author: Stefan Roese <sr@denx.de>
32094 Date: Thu Jan 10 18:47:33 2008 +0100
32095
32096 NAND: Make NAND driver less verbose per default
32097
32098 This patch turns off printing of bad blocks per default upon bootup.
32099 This can always be shown via the "nand bad" command later.
32100
32101 Signed-off-by: Stefan Roese <sr@denx.de>
32102
32103 commit fe56a2772e5c59577df906163d0d4b29b056140e
32104 Author: Sergey Kubushyn <ksi@koi8.net>
32105 Date: Wed Jan 9 15:36:20 2008 +0100
32106
32107 NAND: Davinci driver updates
32108
32109 Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
32110 don't have hardware handy so I can not test it at the moment but changes are
32111 rather trivial so it should work. It would be nice if somebody with a
32112 hardware checked it anyways.
32113
32114 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
32115
32116 commit deac913effd8d80535c9ff4687b6fcdff540c554
32117 Author: Stefan Roese <sr@denx.de>
32118 Date: Sat Jan 5 16:50:32 2008 +0100
32119
32120 NAND: Fix compilation warning and small coding style issue
32121
32122 Signed-off-by: Stefan Roese <sr@denx.de>
32123
32124 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
32125 Author: Stefan Roese <sr@denx.de>
32126 Date: Sat Jan 5 16:49:37 2008 +0100
32127
32128 NAND: Update nand_spl driver to match updated nand subsystem
32129
32130 This patch changes the NAND booting driver nand_spl/nand_boot.c to match
32131 the new infrastructure from the updated NAND subsystem. This NAND
32132 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
32133 subsystem.
32134
32135 Signed-off-by: Stefan Roese <sr@denx.de>
32136
32137 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
32138 Author: Stefan Roese <sr@denx.de>
32139 Date: Sat Jan 5 16:47:58 2008 +0100
32140
32141 NAND: Update 4xx NDFC driver to match updated nand subsystem
32142
32143 This patch changes the 4xx NAND driver ndfc.c to match the new
32144 infrastructure from the updated NAND subsystem. This NAND
32145 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
32146 subsystem.
32147
32148 Tested successfully on AMCC Sequoia and Bamboo.
32149
32150 Signed-off-by: Stefan Roese <sr@denx.de>
32151
32152 commit 12072264528eba33737bc9674e19f0e925ffda23
32153 Author: Stefan Roese <sr@denx.de>
32154 Date: Sat Jan 5 16:43:25 2008 +0100
32155
32156 NAND: Change nand_wait_ready() to not call nand_wait()
32157
32158 This patch changes nand_wait_ready() to not just call nand_wait(),
32159 since this will send a new command to the NAND chip. We just want to
32160 wait for the chip to become ready here.
32161
32162 Signed-off-by: Stefan Roese <sr@denx.de>
32163
32164 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
32165 Author: William Juul <william.juul@datarespons.no>
32166 Date: Fri Dec 14 16:33:45 2007 +0100
32167
32168 make nand dump and nand dump.oob work
32169
32170 Signed-off-by: William Juul <william.juul@tandberg.com>
32171 Signed-off-by: Scott Wood <scottwood@freescale.com>
32172
32173 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
32174 Author: William Juul <william.juul@datarespons.no>
32175 Date: Mon Nov 19 14:46:00 2007 +0100
32176
32177 moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
32178
32179 Signed-off-by: William Juul <william.juul@tandberg.com>
32180
32181 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
32182 Author: William Juul <william.juul@tandberg.com>
32183 Date: Tue Jun 10 16:18:13 2008 -0500
32184
32185 Clean out unneeded files
32186
32187 Signed-off-by: William Juul <william.juul@tandberg.com>
32188
32189 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
32190 Author: William Juul <william.juul@datarespons.no>
32191 Date: Fri Nov 16 08:44:27 2007 +0100
32192
32193 Create symlinks from yaffs2/direct to yaffs2
32194
32195 Signed-off-by: William Juul <william.juul@tandberg.com>
32196
32197 commit 90ef117b68387d66763291af0117677644166611
32198 Author: William Juul <william.juul@datarespons.no>
32199 Date: Thu Nov 15 12:23:57 2007 +0100
32200
32201 Incorporate yaffs2 into U-boot
32202
32203 To use YAFFS2 define CONFIG_YAFFS2
32204
32205 Signed-off-by: William Juul <william.juul@tandberg.com>
32206 Signed-off-by: Scott Wood <scottwood@freescale.com>
32207
32208 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
32209 Author: William Juul <william.juul@datarespons.no>
32210 Date: Thu Nov 15 11:13:05 2007 +0100
32211
32212 YAFFS2 import
32213
32214 Direct import of yaffs as a tarball as of 20071113 from their public
32215 CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
32216
32217 The code can also be imported on the command line with:
32218 export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
32219 (Hit return when asked for a password)
32220 cvs checkout yaffs2
32221
32222 Signed-off-by: William Juul <william.juul@tandberg.com>
32223 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
32224
32225 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
32226 Author: William Juul <william.juul@datarespons.no>
32227 Date: Wed Nov 14 14:28:11 2007 +0100
32228
32229 Whitespace cleanup and marking broken code.
32230
32231 Changes requested by maintainer Stefan Roese after
32232 posting patch to U-boot mailing list.
32233
32234 Signed-off-by: William Juul <william.juul@tandberg.com>
32235 Signed-off-by: Scott Wood <scottwood@freescale.com>
32236
32237 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
32238 Author: William Juul <william.juul@datarespons.no>
32239 Date: Fri Nov 9 13:32:30 2007 +0100
32240
32241 Fixing coding style issues
32242
32243 - Fixing leading white spaces
32244 - Fixing indentation where 4 spaces are used instead of tab
32245 - Removing C++ comments (//), wherever I introduced them
32246
32247 Signed-off-by: William Juul <william.juul@tandberg.com>
32248 Signed-off-by: Scott Wood <scottwood@freescale.com>
32249
32250 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
32251 Author: William Juul <william.juul@datarespons.no>
32252 Date: Thu Nov 8 10:39:53 2007 +0100
32253
32254 Remove white space at end.
32255
32256 Signed-off-by: William Juul <william.juul@tandberg.com>
32257 Signed-off-by: Scott Wood <scottwood@freescale.com>
32258
32259 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
32260 Author: William Juul <william.juul@datarespons.no>
32261 Date: Wed Oct 31 13:53:06 2007 +0100
32262
32263 Update MTD to that of Linux 2.6.22.1
32264
32265 A lot changed in the Linux MTD code, since it was last ported from
32266 Linux to U-Boot. This patch takes U-Boot NAND support to the level
32267 of Linux 2.6.22.1 and will enable support for very large NAND devices
32268 (4KB pages) and ease the compatibility between U-Boot and Linux
32269 filesystems.
32270
32271 This patch is tested on two custom boards with PPC and ARM
32272 processors running YAFFS in U-Boot and Linux using gcc-4.1.2
32273 cross compilers.
32274
32275 MAKEALL ppc/arm has some issues:
32276 * DOC/OneNand/nand_spl is not building (I have not tried porting
32277 these parts, and since I do not have any HW and I am not familiar
32278 with this code/HW I think its best left to someone else.)
32279
32280 Except for the issues mentioned above, I have ported all drivers
32281 necessary to run MAKEALL ppc/arm without errors and warnings. Many
32282 drivers were trivial to port, but some were not so trivial. The
32283 following drivers must be examined carefully and maybe rewritten to
32284 some degree:
32285 cpu/ppc4xx/ndfc.c
32286 cpu/arm926ejs/davinci/nand.c
32287 board/delta/nand.c
32288 board/zylonite/nand.c
32289
32290 Signed-off-by: William Juul <william.juul@tandberg.com>
32291 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
32292 Signed-off-by: Scott Wood <scottwood@freescale.com>
32293
32294 commit cd82919e6c8a73b363a26f34b734923844e52d1c
32295 Author: Wolfgang Denk <wd@denx.de>
32296 Date: Tue Aug 12 16:08:38 2008 +0200
32297
32298 Coding style cleanup, update CHANGELOG, prepare release
32299
32300 Signed-off-by: Wolfgang Denk <wd@denx.de>
32301
32302 commit 17e900b8c0f38d922da47073246219dce2a847f2
32303 Author: Wolfgang Denk <wd@denx.de>
32304 Date: Tue Aug 12 14:54:04 2008 +0200
32305
32306 MVBC_P: fix compile problem
32307
32308 Signed-off-by: Wolfgang Denk <wd@denx.de>
32309
32310 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
32311 Author: Wolfgang Denk <wd@denx.de>
32312 Date: Tue Aug 12 12:10:11 2008 +0200
32313
32314 MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
32315
32316 Signed-off-by: Wolfgang Denk <wd@denx.de>
32317
32318 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
32319 Author: Wolfgang Denk <wd@denx.de>
32320 Date: Tue Aug 12 00:36:53 2008 +0200
32321
32322 ads5121: fix compiler warnings (unused variables)
32323
32324 Signed-off-by: Wolfgang Denk <wd@denx.de>
32325
32326 commit 902ca09246039964d59bbcb519b1e1b5aed01308
32327 Author: Kumar Gala <galak@kernel.crashing.org>
32328 Date: Mon Aug 11 11:29:28 2008 -0500
32329
32330 85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
32331
32332 Use CONFIG_NUM_CPUS to match existing define used by 86xx.
32333
32334 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32335 Acked-by: Jon Loeliger <jdl@freescale.com>
32336
32337 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
32338 Author: Kumar Gala <galak@kernel.crashing.org>
32339 Date: Mon Aug 11 09:20:53 2008 -0500
32340
32341 Fix fallout from autostart revert
32342
32343 The autostart revert caused a bit of duplicated code as well as
32344 code that was using images->autostart that needs to get removed so
32345 we can build again.
32346
32347 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32348
32349 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
32350 Author: Kumar Gala <galak@kernel.crashing.org>
32351 Date: Mon Aug 11 09:16:25 2008 -0500
32352
32353 Fix compile error related to r8a66597-hcd & usb
32354
32355 When building the 8544DS board we get this error:
32356
32357 In file included from r8a66597-hcd.c:22:
32358 u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
32359 make[1]: *** [r8a66597-hcd.o] Error 1
32360
32361 The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
32362 is set.
32363
32364 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32365
32366 commit 2d0daa03612338a813e3c9d22680e54eabfea378
32367 Author: Becky Bruce <becky.bruce@freescale.com>
32368 Date: Mon Aug 4 14:02:26 2008 -0500
32369
32370 POWERPC 86xx: Move BAT setup code to C
32371
32372 This is needed because we will be possibly be locating
32373 devices at physical addresses above 32bits, and the asm
32374 preprocessing does not appear to deal with ULL constants
32375 properly. We now call write_bat in lib_ppc/bat_rw.c.
32376
32377 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
32378 Acked-by: Jon Loeliger <jdl@freescale.com>
32379
32380 commit 9de67149db576c91b9c2a0a182652331e7e44211
32381 Author: Becky Bruce <becky.bruce@freescale.com>
32382 Date: Mon Aug 4 14:01:53 2008 -0500
32383
32384 POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
32385
32386 Perform sync/isync as required by the architecture.
32387
32388 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
32389 Acked-by: Jon Loeliger <jdl@freescale.com>
32390
32391 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
32392 Author: Becky Bruce <becky.bruce@freescale.com>
32393 Date: Mon Aug 4 14:01:16 2008 -0500
32394
32395 POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
32396
32397 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
32398 Acked-by: Jon Loeliger <jdl@freescale.com>
32399
32400 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
32401 Author: Magnus Lilja <lilja.magnus@gmail.com>
32402 Date: Sun Aug 3 21:44:10 2008 +0200
32403
32404 i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
32405
32406 Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
32407 contacts instead of only the first 256 ones as is the case prior to
32408 this patch.
32409
32410 Add missing MUX_* macros and update board files to use the new macros.
32411
32412 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
32413
32414 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
32415 Author: Magnus Lilja <lilja.magnus@gmail.com>
32416 Date: Sun Aug 3 21:43:37 2008 +0200
32417
32418 i.MX31: Fix IOMUX related typos
32419
32420 Correct the names of some IOMUX macros.
32421
32422 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
32423
32424 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
32425 Author: Steve Sakoman <steve@sakoman.com>
32426 Date: Mon Aug 11 20:26:16 2008 +0200
32427
32428 OneNAND: Remove unused parameters to onenand_verify_page
32429
32430 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.
32431
32432 Signed-off-by: Steve Sakoman <steve@sakoman.com>
32433 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
32434
32435 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
32436 Author: Anatolij Gustschin <agust@denx.de>
32437 Date: Fri Aug 8 18:00:40 2008 +0200
32438
32439 video: fix bug in cfb_console code
32440
32441 FILL_15BIT_555RGB macro extension for pixel swapping
32442 by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
32443 introduced a bug in cfb_console:
32444
32445 Bitmaps with odd-numbered width won't be rendered
32446 correctly and even U-Boot crashes are observed on
32447 some platforms while repeated rendering of such
32448 bitmaps with "bmp display". Also if a bitmap is
32449 rendered to an odd-numbered x starting position,
32450 the same problem occurs. This patch is an attempt
32451 to fix it.
32452
32453 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32454
32455 commit d9015f6a50d7258125349ef5c2af836458a0029a
32456 Author: Anatolij Gustschin <agust@denx.de>
32457 Date: Fri Aug 8 18:00:39 2008 +0200
32458
32459 video: fix bug in logo_plot
32460
32461 If logo_plot() should ever be called with x starting
32462 position other than zero and for pixel depths greater
32463 than 8bpp, logo colors distortion will be observed.
32464 This patch fixes the issue.
32465
32466 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32467
32468 commit 406819ae94f79f5b59e01d163380ca7d83709251
32469 Author: Wolfgang Denk <wd@denx.de>
32470 Date: Mon Aug 11 00:17:52 2008 +0200
32471
32472 MAINTAINERS: sort entries
32473
32474 Signed-off-by: Wolfgang Denk <wd@denx.de>
32475
32476 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
32477 Author: Roy Zang <tie-fei.zang@freescale.com>
32478 Date: Thu Aug 7 18:19:28 2008 +0800
32479
32480 Add mpc7448hpc2 maintainer information
32481
32482 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
32483
32484 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
32485 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
32486 Date: Thu Aug 7 13:13:27 2008 +0530
32487
32488 common/cmd_load.c - Minor code & Coding Style cleanup
32489
32490 - os_data_header Variable is a carry over feature
32491 & unused. So removed all instance of this variable
32492 - Minor Code Style Update
32493
32494 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
32495 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32496
32497 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
32498 Author: Magnus Lilja <lilja.magnus@gmail.com>
32499 Date: Wed Aug 6 19:32:33 2008 +0200
32500
32501 Update the U-Boot wiki URL.
32502
32503 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
32504
32505 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
32506 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
32507 Date: Sun Aug 10 17:56:36 2008 +0200
32508
32509 OneNAND: Remove base address offset usage
32510
32511 While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
32512 using OneNAND and some using NAND, we found some differences in OneNAND and
32513 NAND command address handling.
32514
32515 As this might confuse users (it already confused us), we like to align OneNAND
32516 and NAND address handling.
32517
32518 The issue is that cmd_onenand.c subtracts the onenand base address from the
32519 addresses you type into the u-boot command line so, unlike nand, you can't
32520 use addresses relative to the start of the onenand part e.g. this won't work:
32521
32522 onenand read 82000000 280000 400000
32523
32524 you have to use:
32525
32526 onenand read 82000000 20280000 400000
32527
32528 Looking at recent git, the only board currently using OneNAND is Apollon, and
32529 for this the OneNAND base address is 0 (apollon.h)
32530
32531 #define CFG_ONENAND_BASE 0x00000000
32532
32533 so patch below won't break any existing boards and will align OneNAND and NAND
32534 handling on boards where OneNAND base address is != 0.
32535
32536 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
32537 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
32538 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
32539
32540 commit c11528083ef6e55e76df742228c26e39d151813d
32541 Author: Kumar Gala <galak@kernel.crashing.org>
32542 Date: Thu Aug 7 09:28:20 2008 -0500
32543
32544 mpc85xx: workaround old binutils bug
32545
32546 The recent change to move the .bss outside of the image gives older
32547 binutils (ld from eldk4.1/binutils-2.16) some headache:
32548
32549 ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
32550 ppc_85xx-ld: final link failed: Bad value
32551
32552 We workaround it by being explicit about the program headers and not
32553 assigning the .bss to a program header.
32554
32555 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32556
32557 commit 0bf202ec586d4466c900e987720fa635c594d689
32558 Author: Wolfgang Denk <wd@denx.de>
32559 Date: Sun Aug 10 01:26:26 2008 +0200
32560
32561 Revert "[new uImage] Add autostart flag to bootm_headers structure"
32562
32563 This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
32564
32565 The commit was based on a misunderstanding of the (documented)
32566 meaning of the 'autostart' environment variable. It might cause
32567 boards to hang if 'autostart' was used, with the potential to brick
32568 them. Go back to the documented behaviour.
32569
32570 Conflicts:
32571
32572 common/cmd_bootm.c
32573 common/image.c
32574 include/image.h
32575
32576 Signed-off-by: Wolfgang Denk <wd@denx.de>
32577
32578 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
32579 Author: Wolfgang Denk <wd@denx.de>
32580 Date: Sat Aug 9 23:17:32 2008 +0200
32581
32582 TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
32583
32584 - enable CFI driver where this was forgotten
32585 - enable mtdparts support
32586 - adjust default environment
32587 etc.
32588
32589 Signed-off-by: Wolfgang Denk <wd@denx.de>
32590
32591 commit 41266c9b5a5f873df3ec891bb0907616958b5602
32592 Author: Peter Tyser <ptyser@xes-inc.com>
32593 Date: Tue Aug 5 10:51:57 2008 -0500
32594
32595 FIT: Fix handling of images without ramdisks
32596
32597 boot_get_ramdisk() should not treat the case when a FIT image does
32598 not contain a ramdisk as an error.
32599
32600 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32601 Acked-by: Michal Simek <monstr@monstr.eu>
32602
32603 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
32604 Author: Sergey Lapin <slapin@ossfans.org>
32605 Date: Sat Aug 9 01:39:09 2008 +0400
32606
32607 DataFlash: AT45DB021 fix and AT45DB081 support
32608
32609 Fix for page size of AT45DB021. Also adding bigger AT45DB081
32610 which comes with some newer boards.
32611
32612 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
32613
32614 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
32615 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32616 Date: Fri Aug 8 16:30:23 2008 +0900
32617
32618 sh: Update sh7763rdp config
32619
32620 Add sh_eth support to sh7763rdp.
32621
32622 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32623
32624 commit 21f971ec265f6042ec21636d55d06a6bc0751077
32625 Author: Wolfgang Denk <wd@denx.de>
32626 Date: Mon Jul 7 01:22:29 2008 +0200
32627
32628 TQM823L: re-enable logo support; update LCD_INFO text
32629
32630 Signed-off-by: Wolfgang Denk <wd@denx.de>
32631
32632 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
32633 Author: Wolfgang Denk <wd@denx.de>
32634 Date: Fri Aug 8 16:41:56 2008 +0200
32635
32636 TQM8xxL: fix support for second flash bank
32637
32638 When switching the TQM8xxL modules to use the CFI flash driver,
32639 support for the second flash bank was broken because the CFI driver
32640 did not support dynamically sized banks. This gets fixed now.
32641
32642 Signed-off-by: Wolfgang Denk <wd@denx.de>
32643
32644 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
32645 Author: Wolfgang Denk <wd@denx.de>
32646 Date: Fri Aug 8 16:39:54 2008 +0200
32647
32648 CFI: allow for dynamically determined flash sizes and addresses
32649
32650 The CFI driver allowed only for static initializers in the
32651 CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
32652 several flash banks contiguously if the bank sizes were not known in
32653 advance, which kind of violates U-Boot's design philosophy.
32654
32655 (will be used for example by the TQM8xxL boards)
32656
32657 Signed-off-by: Wolfgang Denk <wd@denx.de>
32658
32659 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
32660 Author: Ben Warren <biggerbadderben@gmail.com>
32661 Date: Thu Aug 7 23:26:35 2008 -0700
32662
32663 QE UEC: Fix compiler warnings
32664
32665 Moved static functions earlier in file so forward declarations are not needed.
32666
32667 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32668
32669 commit d5d28fe4aad5f4535400647a5617c11039506467
32670 Author: David Saada <David.Saada@ecitele.com>
32671 Date: Mon Mar 31 02:37:38 2008 -0700
32672
32673 QE UEC: Add MII Commands
32674
32675 Add MII commands to the UEC driver. Note that once a UEC device is selected,
32676 any device on its MDIO bus can be addressed.
32677
32678 Signed-off-by: David Saada <david.saada@ecitele.com>
32679 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32680
32681 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
32682 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
32683 Date: Wed Jul 9 21:07:38 2008 +0900
32684
32685 usb: add support for R8A66597 usb controller
32686
32687 add support for Renesas R8A66597 usb controller.
32688 This patch supports USB Host mode.
32689
32690 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
32691 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32692
32693 commit 1d10dcd041aaeae9fd7c821005692898a0303382
32694 Author: Hunter, Jon <jon-hunter@ti.com>
32695 Date: Sat Jul 26 18:59:16 2008 -0500
32696
32697 Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
32698
32699 Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
32700
32701 Signed-off-by: Jon Hunter <jon-hunter@ti.com>
32702 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32703
32704 commit eab1007334b93a6209f1ec33615e26ef5311ede7
32705 Author: Steven A. Falco <sfalco@harris.com>
32706 Date: Wed Aug 6 15:42:52 2008 -0400
32707
32708 ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
32709
32710 The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
32711 configuration to match the schematic, and also sets the SDR0_PFC1 register to
32712 select the corresponding mode for the UARTs.
32713
32714 Signed-off-by: Steven A. Falco <sfalco@harris.com>
32715 Signed-off-by: Stefan Roese <sr@denx.de>
32716
32717 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
32718 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
32719 Date: Wed Aug 6 14:42:13 2008 +0200
32720
32721 avr32: add support for EarthLCD Favr-32 board
32722
32723 This patch adds support for the Favr-32 board made by EarthLCD.
32724
32725 This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
32726 has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
32727 Ethernet, audio out, USB device, SD-card slot, USART and various other
32728 connectors for cennecting stuff to SPI, I2C, GPIO, etc.
32729
32730 Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
32731 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32732
32733 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
32734 Author: Rafael Campos <rafael.campos@hanscan.com>
32735 Date: Thu Jul 31 10:22:20 2008 +0200
32736
32737 cfi-flash: Added support to flash_real_protect for Atmel flash devices
32738
32739 Some of the flash memories produced by ATMEL start in read-only mode.
32740 We need to unprotect it. This patch allows the AT49BV6416 to work with
32741 cfi_flash memories. Tested in the at91rm9200ek board.
32742
32743 Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
32744 Signed-off-by: Stefan Roese <sr@denx.de>
32745
32746 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
32747 Author: Guennadi Liakhovetski <lg@denx.de>
32748 Date: Tue Aug 5 15:36:39 2008 +0200
32749
32750 cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
32751
32752 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32753 Signed-off-by: Stefan Roese <sr@denx.de>
32754
32755 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
32756 Author: Stefan Roese <sr@denx.de>
32757 Date: Wed Aug 6 14:06:03 2008 +0200
32758
32759 Fix merge problems
32760
32761 Signed-off-by: Stefan Roese <sr@denx.de>
32762
32763 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
32764 Author: Stefan Roese <sr@denx.de>
32765 Date: Wed Aug 6 14:05:38 2008 +0200
32766
32767 Fix merge problems
32768
32769 Signed-off-by: Stefan Roese <sr@denx.de>
32770
32771 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
32772 Author: Kenneth Johansson <kenneth@southpole.se>
32773 Date: Tue Jul 15 12:13:38 2008 +0200
32774
32775 mpc5121: Move iopin features from board specific to common files.
32776
32777 And in the process eliminate some duplicate register defines.
32778
32779 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
32780
32781 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
32782 Author: John Rigby <jrigby@freescale.com>
32783 Date: Tue Aug 5 17:38:57 2008 -0600
32784
32785 mpc5121: squash some fdt fixup errors
32786
32787 On ADS5121 when booting linux the following errors are seen:
32788 Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
32789 Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
32790 Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
32791
32792 This is caused by ft_cpu_setup trying to deal with
32793 both old and new soc node naming. This patch
32794 fixes this by being smarter about what to
32795 fixup.
32796
32797 Also do soc node fixups by compatible instead of by path.
32798 A new board config called OF_SOC_COMPAT defined
32799 to be "fsl,mpc5121-immr" replaces the old
32800 OF_SOC node path that was defined to be "soc@80000000".
32801
32802 Old device trees still work, but the compatiblity
32803 is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
32804 which is on by default in include/configs/ads5121.h.
32805
32806 Signed-off-by: John Rigby <jrigby@freescale.com>
32807
32808 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
32809 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32810 Date: Sat Aug 2 23:48:30 2008 +0200
32811
32812 drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
32813
32814 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32815
32816 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
32817 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32818 Date: Sat Aug 2 23:48:32 2008 +0200
32819
32820 nios2/sysid: fix printf warning
32821
32822 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32823
32824 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
32825 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32826 Date: Sat Aug 2 23:48:33 2008 +0200
32827
32828 Fix remaining build issues with MPC8xx FADS boards.
32829
32830 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32831
32832 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
32833 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32834 Date: Sat Aug 2 23:48:31 2008 +0200
32835
32836 nios2: fix phys_addr_t and phys_size_t support
32837
32838 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32839
32840 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
32841 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32842 Date: Sat Aug 2 23:48:34 2008 +0200
32843
32844 mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
32845
32846 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32847
32848 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
32849 Author: Mark Jackson <mpfj@mimc.co.uk>
32850 Date: Fri Aug 1 09:48:29 2008 +0100
32851
32852 Fix bitmap display for atmel lcd controller
32853
32854 The current lcd_display_bitmap() function does not work properly
32855 for the Atmel LCD controller.
32856
32857 2 fixes need to be done:-
32858
32859 (a) when setting the colour map, use the lcd_setcolreg() function
32860 as provided by the Atmel driver
32861 (b) the data is never actually written to the lcd framebuffer !!
32862
32863 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
32864
32865 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
32866 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32867 Date: Fri Aug 1 08:40:34 2008 +0200
32868
32869 qemu_mips: update README to follow qemu update about default machine
32870
32871 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32872
32873 commit ac169d645f5f0e0b9a232563099209e92a355d8e
32874 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32875 Date: Thu Jul 31 19:53:21 2008 -0500
32876
32877 ColdFire: Fix compilation issue caused by a missing function
32878
32879 Implement usec2ticks() which is used by fsl_i2c.c in
32880 lib_m68k/time.c
32881
32882 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32883
32884 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
32885 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32886 Date: Thu Jul 31 19:53:06 2008 -0500
32887
32888 Fix compilation error for TASREG
32889
32890 TASREG is ColdFire platform, the include ppc4xx.h in
32891 board/esd/common/flash.c causes conflict.
32892
32893 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32894
32895 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
32896 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32897 Date: Thu Jul 31 19:52:36 2008 -0500
32898
32899 Fix compilation error for MCF5275
32900
32901 Rename OBJ to COBJ in board/platform/Makefile
32902
32903 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32904
32905 commit 5c40548f01218360a1f1395198c50ff45f3035b5
32906 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32907 Date: Thu Jul 31 19:52:28 2008 -0500
32908
32909 Fix compile error caused by incorrect function return type
32910
32911 Rename int mii_init(void) to void mii_init(void) for idmr
32912 ColdFire platform
32913
32914 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32915
32916 commit a58c78067c928976c082c758d3987e89ead5b191
32917 Author: Wolfgang Denk <wd@denx.de>
32918 Date: Fri Aug 1 12:06:22 2008 +0200
32919
32920 Fix build issues with MPC8xx FADS boards.
32921
32922 Signed-off-by: Wolfgang Denk <wd@denx.de>
32923
32924 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
32925 Author: Wolfgang Denk <wd@denx.de>
32926 Date: Thu Jul 31 17:54:03 2008 +0200
32927
32928 Prepare v1.3.4-rc2: update CHANGELOG
32929
32930 Signed-off-by: Wolfgang Denk <wd@denx.de>
32931
32932 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
32933 Author: Mark Jackson <mpfj@mimc.co.uk>
32934 Date: Thu Jul 31 16:09:00 2008 +0100
32935
32936 Add gzipped logo support
32937
32938 The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
32939
32940 If this option is set, additionally to standard BMP
32941 images, gzipped BMP images can be displayed via the
32942 splashscreen support or the bmp command.
32943
32944 However, the splashscreen function *only* supports standard BMP images.
32945
32946 This patch adds the documented gzip support.
32947
32948 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
32949
32950 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
32951 Author: Mark Jackson <mpfj@mimc.co.uk>
32952 Date: Thu Jul 31 15:56:48 2008 +0100
32953
32954 Fix Atmel LCD controller endianess for AVR32 processors
32955
32956 The Atmel lcd controller is used on Atmel's AT91 (little endian) and
32957 AVR32 (big endian) platforms.
32958
32959 As such, the controller can handle both big and little endian memory.
32960
32961 This patch fixes the driver for the AVR32 platform.
32962
32963 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
32964
32965 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
32966 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32967 Date: Thu Jul 31 15:56:01 2008 +0200
32968
32969 apollon: fix build out of tree
32970
32971 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32972
32973 commit 2e752be39d3e398d4ab89ffa6634c397df298297
32974 Author: Guennadi Liakhovetski <lg@denx.de>
32975 Date: Thu Jul 31 12:35:04 2008 +0200
32976
32977 Uncompressed images loaded to their start address shall set load_end too
32978
32979 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32980 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
32981
32982 commit c37207d7f51e19c17f859966f314e27cc1231801
32983 Author: Wolfgang Denk <wd@denx.de>
32984 Date: Wed Jul 16 16:38:59 2008 +0200
32985
32986 Fix printf() format problems with configurable prompts
32987
32988 U-Boot allows for configurable prompt strings using the
32989 CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
32990 the assumption was that any such user defined problts would contain
32991 exactly one "%d" format specifier. But some boards did not.
32992
32993 To allow for flexible boot prompts without adding too complex code we
32994 now allow to specify the whole list of printf() arguments in the user
32995 definition. This is powerful, but requires a responsible user who
32996 really understands what he is doing, as he needs to know for exanple
32997 which variables are available in the respective context.
32998
32999 Signed-off-by: Wolfgang Denk <wd@denx.de>
33000
33001 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
33002 Author: Wolfgang Denk <wd@denx.de>
33003 Date: Thu Jul 31 17:02:14 2008 +0200
33004
33005 TQM85xx: fix typo introduce by commit ffbb5cb9
33006
33007 Signed-off-by: Wolfgang Denk <wd@denx.de>
33008
33009 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
33010 Author: Wolfgang Denk <wd@denx.de>
33011 Date: Thu Jul 31 15:27:01 2008 +0200
33012
33013 mvbc_p board: fix most build warnings.
33014
33015 Signed-off-by: Wolfgang Denk <wd@denx.de>
33016
33017 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
33018 Author: Wolfgang Denk <wd@denx.de>
33019 Date: Thu Jul 31 13:57:20 2008 +0200
33020
33021 E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
33022
33023 Avoid "integer constant is too large for 'long' type" warnings.
33024 And simplify the code.
33025
33026 Signed-off-by: Wolfgang Denk <wd@denx.de>
33027
33028 commit 9196b44334c330cc13de2464c59181e4db71f549
33029 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
33030 Date: Wed Jul 30 23:21:19 2008 +0400
33031
33032 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
33033
33034 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
33035
33036 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
33037 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
33038 Date: Wed Jul 30 23:20:32 2008 +0400
33039
33040 PPC: Add pci_clk in the global_data for CPM2 processors
33041
33042 This patch adds pci_clk field to the global_data structure for the
33043 processors which have CPM2 module in case the CONFIG_PCI is defined.
33044
33045 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
33046
33047 commit f0ff885ca64655bee6540eb8a25eed90b1152686
33048 Author: Kumar Gala <galak@kernel.crashing.org>
33049 Date: Wed Jul 30 14:13:30 2008 -0500
33050
33051 mpc85xx: Update linker scripts for Freescale boards
33052
33053 * Move to using absolute addressing always. Makes the scripts a bit more
33054 portable and common
33055 * Moved .bss after the end of the image. These allows us to have more
33056 room in the resulting binary image for code and data.
33057 * Removed .text object files that aren't really needed
33058 * Make sure _end is 4-byte aligned as the .bss init code expects this.
33059 (Its possible that the end of .bss isn't 4-byte aligned)
33060
33061 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33062
33063 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
33064 Author: Kumar Gala <galak@kernel.crashing.org>
33065 Date: Wed Jul 30 08:01:15 2008 -0500
33066
33067 Fix compile warnings in dlmalloc
33068
33069 The origional code was using on odd reference to get to the first
33070 real element in av_[]. The first two elements of the array are
33071 not used for actual bins, but for house keeping. If we are more
33072 explicit about how use the first few elements we can get rid of the
33073 warnings:
33074
33075 dlmalloc.c: In function 'malloc_extend_top':
33076 dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
33077 dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
33078 dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
33079 ...
33080
33081 The logic of how this code came to be is:
33082 bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
33083
33084 SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
33085 bin_at(0) = &(av_[0])
33086
33087 Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
33088
33089 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33090
33091 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
33092 Author: Stefan Roese <sr@denx.de>
33093 Date: Wed Jul 30 10:21:01 2008 +0200
33094
33095 ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
33096
33097 Signed-off-by: Stefan Roese <sr@denx.de>
33098
33099 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
33100 Author: Stefan Roese <sr@denx.de>
33101 Date: Wed Jul 30 09:59:51 2008 +0200
33102
33103 cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
33104
33105 A recent patch used '#if (CONFIG_CMD_USB)' instead of
33106 '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
33107 common/bootm.c compile again.
33108
33109 Signed-off-by: Stefan Roese <sr@denx.de>
33110 Acked-by: Markus Klotzbuecher <mk@denx.de>
33111
33112 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
33113 Author: Kyungmin Park <kmpark@infradead.org>
33114 Date: Tue Jul 22 08:01:43 2008 +0900
33115
33116 Remove unused I2C at apollon board
33117
33118 There are no I2C devices on this board.
33119
33120 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33121
33122 commit 3c95960e526b3b026da20201db64526f46faf14b
33123 Author: Wolfgang Denk <wd@denx.de>
33124 Date: Thu Jul 31 10:12:09 2008 +0200
33125
33126 at91rm9200dk, csb637: fix NAND related build problems
33127
33128 Tried fixing NAND support for the at91rm9200dk board; untested.
33129 Disabled NAND support in the csb637 board config file.
33130
33131 Signed-off-by: Wolfgang Denk <wd@denx.de>
33132
33133 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
33134 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33135 Date: Wed Jul 30 12:39:28 2008 +0200
33136
33137 ppc4xx: ML507: Environment in flash and MTD Support
33138
33139 - Relocate the location of U-Boot in the flash
33140 - Save the environment in one sector of the flash memory
33141 - MTD Support
33142
33143 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33144 Signed-off-by: Stefan Roese <sr@denx.de>
33145
33146 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
33147 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33148 Date: Tue Jul 29 17:16:10 2008 +0200
33149
33150 ppc4xx: ML507: Use of get_ram_size in board ml507
33151
33152 - Change suggested by WD
33153
33154 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33155 Signed-off-by: Stefan Roese <sr@denx.de>
33156
33157 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
33158 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33159 Date: Mon Jul 21 20:30:07 2008 +0200
33160
33161 ppc4xx: ML507: U-Boot in flash and System ACE
33162
33163 This patch allows booting from FLASH the ML507 board by Xilinx.
33164 Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
33165
33166 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33167 Signed-off-by: Stefan Roese <sr@denx.de>
33168
33169 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
33170 Author: Julien May <mailinglist@miromico.ch>
33171 Date: Mon Jun 23 13:57:52 2008 +0200
33172
33173 Add support for the hammerhead (AVR32) board
33174
33175 The Hammerhead platform is built around a AVR32 32-bit microcontroller
33176 from Atmel. It offers versatile peripherals, such as ethernet, usb
33177 device, usb host etc.
33178
33179 The board also incooperates a power supply and is a Power over Ethernet
33180 (PoE) Powered Device (PD).
33181
33182 Additonally, a Cyclone III FPGA from Altera is integrated on the board.
33183 The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
33184 DDR2 SDRAM interfaces, which will cover even the most exceptional need
33185 of memory bandwidth. Together with the onboard video decoder the board
33186 is ready for video processing.
33187
33188 For more information see: http:///www.miromico.com/hammerhead
33189
33190 Signed-off-by: Julien May <mailinglist@miromico.ch>
33191 [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
33192 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33193
33194 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
33195 Author: Kumar Gala <galak@kernel.crashing.org>
33196 Date: Tue Jul 29 12:23:49 2008 -0500
33197
33198 fsl_i2c: Use timebase timer functions instead of get_timer()
33199
33200 The current implementation of get_timer() is only really useful after we
33201 have relocated u-boot to memory. The i2c code is used before that as part
33202 of the SPD DDR setup.
33203
33204 We actually have a bug when using the get_timer() code before relocation
33205 because the .bss hasn't been setup and thus we could be reading/writing
33206 a random location (probably in flash).
33207
33208 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33209
33210 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
33211 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
33212 Date: Tue Jul 29 14:49:31 2008 +0200
33213
33214 Adder8xx: Fix CFG_MONITOR_LEN
33215
33216 Due to increased space usage, U-Boot can no longer be stored in three sectors.
33217 The current U-Boot use just over three flash sectors (197k), and U-Boot will
33218 become corrupt after saving environment variables. This patch adds another 64k
33219 to CFG_MONITOR_LEN.
33220
33221 Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
33222
33223 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
33224 Author: Kyungmin Park <kmpark@infradead.org>
33225 Date: Tue Jul 29 08:47:57 2008 +0900
33226
33227 Add OneNAND IPL related files to gitignore
33228
33229 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33230
33231 commit 8d87589e8e874df7120a3d9667f051bc33bac250
33232 Author: Rafal Jaworowski <raj@semihalf.com>
33233 Date: Mon Jul 28 20:38:25 2008 +0200
33234
33235 API: Teach the storage layer about SATA and MMC options.
33236
33237 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33238 Acked-by: Rafal Jaworowski <raj@semihalf.com>
33239
33240 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
33241 Author: Rafal Jaworowski <raj@semihalf.com>
33242 Date: Mon Jul 28 20:37:48 2008 +0200
33243
33244 API: Dump contents of sector 0 in the demo application.
33245
33246 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33247 Acked-by: Rafal Jaworowski <raj@semihalf.com>
33248
33249 commit 13ca6305f2eba49c175f6370c35286141059c789
33250 Author: Rafal Jaworowski <raj@semihalf.com>
33251 Date: Mon Jul 28 20:37:10 2008 +0200
33252
33253 API: Correct storage enumeration routine, other minor fixes in API storage area.
33254
33255 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33256 Acked-by: Rafal Jaworowski <raj@semihalf.com>
33257
33258 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
33259 Author: Rafal Jaworowski <raj@semihalf.com>
33260 Date: Mon Jul 28 20:36:19 2008 +0200
33261
33262 API: Fix compilation warnings in api_examples/demo.c.
33263
33264 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33265
33266 commit c14eefcc48212af2f3314809605698dd8393a90a
33267 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33268 Date: Sun Jul 27 17:09:43 2008 +0200
33269
33270 Fix more printf() format warnings
33271
33272 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33273
33274 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
33275 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33276 Date: Fri Jul 25 15:18:16 2008 +0200
33277
33278 Fix remaining CFG_CMD_ define, ifdef and comments
33279
33280 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33281
33282 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
33283 Author: Stefano Babic <sbabic@denx.de>
33284 Date: Fri Jul 25 08:57:40 2008 +0200
33285
33286 Add include for config.h in command.h.
33287
33288 Because the cmd_tbl_s structure depends on the configuration file, it
33289 must be assured that config.h is included before the structure is
33290 evaluated by the compiler. If this is not certain, it could happen
33291 that the compiler generates structures of different size, depending
33292 on the fact if the source file includes <config.h> before or after
33293 <command.h>.
33294
33295 The effect is that u-boot crashes when tries to relocate the command
33296 table (for ppc) or try to access to the command table for other
33297 architectures.
33298
33299 The problem can happen on board-depending commands. All general
33300 commands under /common are unaffected, because they include already
33301 config.h before command.h.
33302
33303 Signed-off-by: Stefano Babic <sbabic@denx.de>
33304
33305 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
33306 Author: Scott Wood <scottwood@freescale.com>
33307 Date: Wed Jul 23 13:16:06 2008 -0500
33308
33309 NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
33310
33311 This fixes building out-of-tree.
33312
33313 Signed-off-by: Scott Wood <scottwood@freescale.com>
33314
33315 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
33316 Author: Heiko Schocher <hs@denx.de>
33317 Date: Wed Jul 23 07:30:46 2008 +0200
33318
33319 Fix warnings if compiling with IDE support.
33320
33321 cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
33322 cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
33323
33324 Signed-off-by: Heiko Schocher <hs@denx.de>
33325
33326 commit 7610db17fd4d59c51d825488526d85ede2f06767
33327 Author: Adrian Filipi <adrian.filipi@eurotech.com>
33328 Date: Tue Jul 22 14:28:11 2008 -0400
33329
33330 Removed support for the adsvix board.
33331
33332 Support for the adsvix was originally provided by Applied Data
33333 Systems (ADS), inc., now EuroTech, Inc.
33334 The board never shipped aside from some sample boards.
33335
33336 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
33337
33338 commit f96b44cef897bd372beb86dde1b33637c119d84d
33339 Author: Remy Bohmer <linux@bohmer.net>
33340 Date: Tue Jul 22 16:22:11 2008 +0200
33341
33342 ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
33343
33344 If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
33345 never set, because relocation to RAM is actually never done by U-boot
33346 itself. However, several pieces of code check if this flag is set at
33347 some time.
33348
33349 So, to make sure this flag is set on boards skipping relocation, this
33350 is added to the initialisation of U-boot at a moment where it is safe
33351 to do so.
33352
33353 Signed-off-by: Remy Bohmer <linux@bohmer.net>
33354
33355 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
33356 Author: Timur Tabi <timur@freescale.com>
33357 Date: Mon Jul 21 14:26:23 2008 -0500
33358
33359 fsl-i2c: fix writes to data segment before relocation
33360
33361 Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
33362 relocation. Commit d8c82db4 added the ability for i2c_init() to program the
33363 I2C bus speed and save the value in i2c_bus_speed[], which is a global
33364 variable. It is an error to write to the data segment before relocation,
33365 which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
33366
33367 Signed-off-by: Timur Tabi <timur@freescale.com>
33368
33369 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
33370 Author: Wolfgang Ocker <weo@reccoware.de>
33371 Date: Mon Jul 28 16:56:51 2008 +0200
33372
33373 mips: Fix baudrate divisor computation on alchemy cpus
33374
33375 Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
33376 on alchemy cpus.
33377
33378 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
33379 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33380
33381 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
33382 Author: Ben Warren <biggerbadderben@gmail.com>
33383 Date: Sat Jul 5 00:08:48 2008 -0700
33384
33385 Moved initialization of AVR32 Ethernet controllers to board_eth_init()
33386
33387 Renamed initialization functions for atngw100 and atstk1000.
33388 Removed initializations for these boards from net/eth.c
33389
33390 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33391 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33392
33393 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
33394 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33395 Date: Wed Jul 23 10:55:46 2008 +0200
33396
33397 spi flash: Fix printf() format warnings
33398
33399 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33400
33401 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
33402 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33403 Date: Wed Jul 23 10:55:31 2008 +0200
33404
33405 atmel_mci: Fix printf() format warnings
33406
33407 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33408
33409 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
33410 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33411 Date: Wed Jul 23 10:55:15 2008 +0200
33412
33413 avr32: Fix printf() format warnings
33414
33415 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33416
33417 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
33418 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33419 Date: Wed Jul 23 10:52:19 2008 +0200
33420
33421 avr32: asm/io.h needs asm/types.h
33422
33423 map_physmem() takes a phys_addr_t as parameter. This type is defined in
33424 asm/types.h, so we need to include that file.
33425
33426 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33427
33428 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
33429 Author: Michal Simek <monstr@monstr.eu>
33430 Date: Thu Jul 17 12:25:46 2008 +0200
33431
33432 microblaze: Fix printf() format issues
33433
33434 Signed-off-by: Michal Simek <monstr@monstr.eu>
33435
33436 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
33437 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
33438 Date: Thu Jul 17 07:27:51 2008 +0530
33439
33440 Remove unused code from lib_arm/bootm.c
33441
33442 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
33443
33444 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
33445 Author: Detlev Zundel <dzu@denx.de>
33446 Date: Wed Jul 16 18:56:45 2008 +0200
33447
33448 tqm85xx: Demystify 'DK: !!!' comment
33449
33450 Signed-off-by: Detlev Zundel <dzu@denx.de>
33451
33452 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
33453 Author: Detlev Zundel <dzu@denx.de>
33454 Date: Wed Jul 16 18:56:44 2008 +0200
33455
33456 83xx/85xx/86xx: Add LTEDR local bus definitions
33457
33458 Signed-off-by: Detlev Zundel <dzu@denx.de>
33459
33460 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
33461 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33462 Date: Wed Jul 16 16:22:32 2008 +0200
33463
33464 serial_xuartlite.c: fix compiler warnings
33465
33466 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33467 Acked-by: Grant Likely <grant.likely@secretlab.ca>
33468
33469 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
33470 Author: Stefan Roese <sr@denx.de>
33471 Date: Fri Jul 18 11:03:35 2008 +0200
33472
33473 POST: Add disable interrupts in some of the missing CPU POST tests
33474
33475 Some CPU POST tests did not disable the interrupts while running. This
33476 seems to be necessary to protect this self modifying code.
33477
33478 Signed-off-by: Stefan Roese <sr@denx.de>
33479
33480 commit 97a3bf268d096e0e97e54048448c35114edcf557
33481 Author: Stefan Roese <sr@denx.de>
33482 Date: Fri Jul 18 10:43:24 2008 +0200
33483
33484 ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
33485
33486 This is needed for boards that define CFG_64BIT_STRTOUL but don't define
33487 CFG_64BIT_LBA.
33488
33489 Signed-off-by: Stefan Roese <sr@denx.de>
33490
33491 commit 0043ac55024963295fc79b39af85b6dc3b261e17
33492 Author: Niklaus Giger <niklaus.giger@netstal.com>
33493 Date: Fri Jul 18 11:22:23 2008 +0200
33494
33495 POST PPC4xx/spr IVPR only if PPC440
33496
33497 The SPR IVPR register is only present (as far as I know) for
33498 processors with a PPC440 core.
33499
33500 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33501 Acked-by: Stefan Roese <sr@denx.de>
33502
33503 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
33504 Author: Stefan Roese <sr@denx.de>
33505 Date: Fri Jul 18 10:42:29 2008 +0200
33506
33507 ppc4xx: Enable 64bit printf format on 440/460 platforms
33508
33509 This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
33510 440/460 platforms. This may be needed since those platforms support
33511 36bit physical address space.
33512
33513 Signed-off-by: Stefan Roese <sr@denx.de>
33514
33515 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
33516 Author: Stefan Roese <sr@denx.de>
33517 Date: Fri Jul 18 15:57:23 2008 +0200
33518
33519 ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
33520
33521 This patch fixes a problem with incorrect MODTx (On Die Termination)
33522 setup for a configuration with multiple DIMM's and multiple ranks.
33523 Without this change Katmai was unable to boot Linux with DDR2 frequency
33524 >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
33525 with DDR2 frequency = 640MHz and mem=4GB.
33526
33527 Signed-off-by: Stefan Roese <sr@denx.de>
33528
33529 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
33530 Author: Stefan Roese <sr@denx.de>
33531 Date: Fri Jul 18 12:24:41 2008 +0200
33532
33533 ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
33534
33535 Signed-off-by: Stefan Roese <sr@denx.de>
33536
33537 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
33538 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33539 Date: Thu Jul 17 12:47:09 2008 +0200
33540
33541 ppc4xx: ML507 Board Support
33542
33543 The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
33544 among others:
33545 -Virtex 5 FX FPGA (With a ppc440x5 in it)
33546 -256MB of SDRAM2
33547 -32MB of Flash
33548 -I2C Eeprom
33549 -System ACE chip
33550 -Serial ATA connectors
33551 -RS232 Level Conversors
33552 -Ethernet Transceiver
33553
33554 This patch gives support to a standard design produced by EDK for this
33555 board: ppc440, uartlite, xilinx_int and flash
33556
33557 - Includes Changes propossed by Stefan Roese and Michal Simek
33558
33559 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33560 Acked-by: Stefan Roese <sr@denx.de>
33561
33562 commit d865fd09809a3a18669f35f970781820af40e4de
33563 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33564 Date: Thu Jul 17 11:44:12 2008 +0200
33565
33566 ppc4xx: CPU PPC440x5 on Virtex5 FX
33567
33568 -This patchs gives support for the embbedded ppc440
33569 on the Virtex5 FPGAs
33570 -interrupts.c divided in uic.c and interrupts.c
33571 -xilinx_irq.c for xilinx interrupt controller
33572 -Include modifications propossed by Stefan Roese
33573
33574 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
33575 Acked-by: Stefan Roese <sr@denx.de>
33576
33577 commit 340ccb260f21516be360745d5c5e3bd0657698df
33578 Author: Sebastian Siewior <bigeasy@linutronix.de>
33579 Date: Wed Jul 16 20:04:49 2008 +0200
33580
33581 cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
33582
33583 This got broken by commits 93c56f212c
33584 [cfi_flash: support of long cmd in U-boot.]
33585
33586 That command needs to be in little endian format on BE machines
33587 with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
33588 gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
33589 the cmdbuf in case portwidth = chipwidth = 8bit.
33590
33591 Cc: Alexey Korolev <akorolev@infradead.org>
33592 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
33593 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
33594
33595 commit 11188d55bc16dd907451c00282e00a038f73dd62
33596 Author: Stefan Roese <sr@denx.de>
33597 Date: Thu Jul 17 10:40:51 2008 +0200
33598
33599 ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
33600
33601 Signed-off-by: Stefan Roese <sr@denx.de>
33602
33603 commit 021f6df6e96af5b387810cf96d24848da1faa55c
33604 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33605 Date: Thu Jul 10 17:20:51 2008 +0400
33606
33607 83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
33608
33609 The thinko was quite silly indeed, I messed with !ptr. Normally this
33610 would trigger some fault, but in U-Boot NULL pointer is equal to phys
33611 0, so the code was working still, just didn't actually test mpc8315erdb
33612 environment variable value. Heh.
33613
33614 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33615 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33616
33617 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
33618 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33619 Date: Tue Jul 8 21:00:04 2008 +0400
33620
33621 83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
33622
33623 Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
33624 support, or without TSEC1 but with USB ULPI PHY support in addition.
33625 With this patch user can specify desired USB PHY.
33626
33627 Also, it seems that we can't distinguish the two boards in software, so
33628 user have to set `mpc8315erdb' environment variable to either 'tsec1'
33629 (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
33630 Linux will not probe for TSEC1.
33631
33632 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33633 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33634
33635 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
33636 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33637 Date: Tue Jul 8 20:59:43 2008 +0400
33638
33639 fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
33640
33641 Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
33642 MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
33643 (connected to the four-ports hub, usb host only).
33644
33645 This patch implements support for passing Dual-Role USB controller's
33646 device tree property phy_type through the usb_phy_type environment
33647 variable.
33648
33649 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33650 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
33651 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33652
33653 commit 699f05125509249072a0b865c8d35520d97cd501
33654 Author: Wolfgang Denk <wd@denx.de>
33655 Date: Tue Jul 15 22:22:44 2008 +0200
33656
33657 Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
33658
33659 Signed-off-by: Wolfgang Denk <wd@denx.de>
33660
33661 commit bcab74baa6b1b1c969038ab6f64a186239180405
33662 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33663 Date: Tue Jul 15 11:23:02 2008 -0400
33664
33665 Round the serial port clock divisor value returned by calc_divisor()
33666
33667 Round the serial port clock divisor value returned by
33668 calc_divisor()
33669
33670 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33671 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
33672
33673 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
33674 Author: Robin Getz <rgetz@blackfin.uclinux.org>
33675 Date: Tue Jul 15 21:44:46 2008 +0200
33676
33677 Fix DHCP protocol so U-Boot does not respond too early
33678 on the network with it's offered IP number; it should not reply until
33679 after it has received a DHCP ACK message. Also ensures that U-Boot
33680 does it's DHCPREQUEST as broadcast (per RFC 2131).
33681
33682 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
33683 Acked-by: Ben Warren <biggerbadderben@gmail.com>
33684 Signed-off-by: Wolfgang Denk <wd@denx.de>
33685
33686 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
33687 Author: Sebastian Siewior <bigeasy@linutronix.de>
33688 Date: Tue Jul 15 13:35:23 2008 +0200
33689
33690 cfi_flash: make the command u32 only
33691
33692 This got changed by commit 93c56f212c
33693 [cfi_flash: support of long cmd in U-boot.]
33694
33695 Long is the wrong type because it will behave differently on 64bit
33696 machines in a way that is probably not expected. u32 should be
33697 enough.
33698
33699 Cc: Alexey Korolev <akorolev@infradead.org>
33700 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
33701 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
33702
33703 commit 31cfe57491b183acae575d486729e158f016c27b
33704 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33705 Date: Mon Jul 14 23:48:41 2008 +0200
33706
33707 tools/gitignore: update to all generated files
33708
33709 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33710
33711 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
33712 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
33713 Date: Wed Jul 9 18:30:44 2008 +0200
33714
33715 mpc5xxx: Add MVBC_P board support
33716
33717 The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
33718 controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
33719
33720 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
33721 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33722
33723 commit e2d31fb3450653115452144363d5bde4e5e3e693
33724 Author: Timur Tabi <timur@freescale.com>
33725 Date: Thu Jun 19 17:56:11 2008 -0500
33726
33727 Update Freescale sys_eeprom.c to handle CCID formats
33728
33729 Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats. The
33730 NXID format replaces the older CCID format, but it's important to support both
33731 since most boards out there still use the CCID format. This change is in
33732 preparation for using one file to handle both formats. This will also unify
33733 EEPROM support for all Freescale 85xx and 86xx boards.
33734
33735 Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
33736 instead of ID_EEPROM_ADDR.
33737
33738 Signed-off-by: Timur Tabi <timur@freescale.com>
33739
33740 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
33741 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33742 Date: Fri Jul 11 17:22:43 2008 +0900
33743
33744 pci: sh: Add pci_skip_dev and pci_print_dev function
33745
33746 Add function of new PCI, pci_skip_dev and pci_print_dev.
33747
33748 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33749 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33750
33751 commit 1107014e835ec9d46c0333f4211d104f77442db0
33752 Author: Andy Fleming <afleming@freescale.com>
33753 Date: Mon Jul 14 20:29:07 2008 -0500
33754
33755 Clean up INIT_RAM options
33756
33757 The L2_INIT_RAM option was unused, and recent changes to the TLB code
33758 meant that the INIT_RAM TLBs weren't being cleared out. In order to reduce
33759 the amount of mapped space attached to nothing, we change things so the TLBs
33760 get cleared.
33761
33762 Signed-off-by: Andy Fleming <afleming@freescale.com>
33763
33764 commit 4524561820a9327e89107854b3a7187800ccf719
33765 Author: Andy Fleming <afleming@freescale.com>
33766 Date: Mon Jul 14 20:26:57 2008 -0500
33767
33768 Remove fake flash bank from 8544 DS
33769
33770 The fake flash bank was generating errors for anyone who didn't have a
33771 PromJET hooked up to the board. As that constitutes the vast majority of
33772 users, we remove it.
33773
33774 Signed-off-by: Andy Fleming <afleming@freescale.com>
33775
33776 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
33777 Author: Kumar Gala <galak@kernel.crashing.org>
33778 Date: Mon Jul 14 14:07:03 2008 -0500
33779
33780 MPC8544DS: Add ATI Video card support
33781
33782 Add support for using a PCIe ATI Video card on PCIe2.
33783
33784 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33785
33786 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
33787 Author: Kumar Gala <galak@kernel.crashing.org>
33788 Date: Mon Jul 14 14:07:02 2008 -0500
33789
33790 85xx: Add some L1/L2 SPR register definitions
33791
33792 Add new L1/L2 SPRs related to e500mc cache config and control.
33793
33794 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33795
33796 commit e5852787f0c3c442a276262f13d91ca450605ac0
33797 Author: Kumar Gala <galak@kernel.crashing.org>
33798 Date: Mon Jul 14 14:07:01 2008 -0500
33799
33800 MPC8544DS: Report board id, board version and fpga version.
33801
33802 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33803
33804 commit 73f15a060f67a2462551c334215bd20fac6b81d1
33805 Author: Kumar Gala <galak@kernel.crashing.org>
33806 Date: Mon Jul 14 14:07:00 2008 -0500
33807
33808 85xx: Cleanup L2 cache size detection
33809
33810 The L2 size detection code was a bit confusing and we kept having to add
33811 code to it to handle new processors. Change the sense of detection so we
33812 look for the older processors that aren't changing.
33813
33814 Also added support for 1M cache size on 8572.
33815
33816 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33817
33818 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
33819 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33820 Date: Fri Jul 11 15:33:08 2008 -0400
33821
33822 sbc8560: enable CONFIG_OF_LIBFDT by default
33823
33824 Make the default build for the sbc8560 board be powerpc
33825 capable with libfdt support.
33826
33827 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33828
33829 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
33830 Author: Andy Fleming <afleming@freescale.com>
33831 Date: Mon Jul 14 20:04:40 2008 -0500
33832
33833 Fix indentation for default boot environment variables
33834
33835 This was proposed by Paul Gortmaker in response to Wolfgang's comments on
33836 similar #defines in sbc8560.h.
33837
33838 Signed-off-by: Andy Fleming <afleming@freescale.com>
33839
33840 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
33841 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33842 Date: Fri Jul 11 15:33:07 2008 -0400
33843
33844 sbc8560: add default fdt values
33845
33846 Add in the default fdt settings and the typical EXTRA_ENV
33847 settings as borrowed from the mpc8560ads. Fix a couple
33848 of stale references to the mpc8560ads dating back to the
33849 original clone/fork.
33850
33851 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33852 Signed-off-by: Andy Fleming <afleming@freescale.com>
33853
33854 commit d04e76edf92f7f89696989e8702b97e020455af3
33855 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33856 Date: Fri Jul 11 15:33:06 2008 -0400
33857
33858 sbc8560: add in ft_board_setup()
33859
33860 Add in for the sbc8560, the ft_board_setup() routine, based on what is
33861 in use for the Freescale MPC8560ADS board.
33862
33863 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33864
33865 commit c158bcaca3b31cbe38c4143812e6170e38a57393
33866 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33867 Date: Fri Jul 11 15:33:05 2008 -0400
33868
33869 sbc8560: define eth0 and eth1 instead of eth1 and eth2
33870
33871 The existing config doesn't define CONFIG_HAS_ETH0, and so the
33872 fdt support doesn't update the zeros in the dtb local-mac with
33873 real data from the u-boot env. Since the existing config is
33874 tailored to just two interfaces, get rid of the ETH2 definitions
33875 at the same time.
33876
33877 Also don't include any end user specific data into the environment
33878 by default -- things like MAC address, network parameters etc. need
33879 to come from the end user.
33880
33881 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33882 Signed-off-by: Andy Fleming <afleming@freescale.com>
33883
33884 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
33885 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33886 Date: Fri Jul 11 15:33:04 2008 -0400
33887
33888 sbc8560: properly set cs0_bnds for 512MB
33889
33890 The sbc8560 board ships with 512MB of memory installed,
33891 but the current cs0_bnds is hard coded for 256MB. Set the
33892 value based on CFG_SDRAM_SIZE.
33893
33894 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33895
33896 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
33897 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33898 Date: Fri Jul 11 15:33:03 2008 -0400
33899
33900 sbc8560: proper definitions for TSEC.
33901
33902 The definitions for the TSEC have become out of date. There is no
33903 longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
33904 Update to match those of other boards, like the MPC8560ADS.
33905
33906 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33907 Acked-by: Ben Warren <biggerbadderben@gmail.com>
33908
33909 commit 71074abbe0c76429577aff58aeff0a24ad210b23
33910 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33911 Date: Wed Jul 9 13:23:05 2008 -0400
33912
33913 8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
33914
33915 Some boards that have external 16550 UARTs don't have a direct
33916 tie between bi_busfreq and the clock used for the UARTs. Boards
33917 that do have such a tie should set CFG_NS16550_CLK to be
33918 get_bus_freq(0) -- which most of them do already.
33919
33920 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33921 Acked-by: Kim Phillips <kim.phillips@freescale.com>
33922
33923 commit 24ef76f320fbadf074105229826514db140f939f
33924 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
33925 Date: Wed Jul 2 07:03:53 2008 -0700
33926
33927 Change the temp map to ROM to align addresses to page size.
33928
33929 With a page size of BOOKE_PAGESZ_16M, both the real and effective
33930 addresses must be multiples of 16MB. The hardware silently truncates
33931 them so the code happens to work. This patch clarifies the situation
33932 by establishing addresses that the hardware doesn't need to truncate.
33933
33934 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
33935 Signed-off-by: Andy Fleming <afleming@freescale.com>
33936
33937 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
33938 Author: Kim Phillips <kim.phillips@freescale.com>
33939 Date: Tue Jun 17 17:45:22 2008 -0500
33940
33941 mpc85xx: use IS_E_PROCESSOR macro
33942
33943 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33944
33945 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
33946 Author: Kim Phillips <kim.phillips@freescale.com>
33947 Date: Mon Jun 16 15:55:53 2008 -0500
33948
33949 fdt: add crypto node handling for MPC8{3, 5}xxE processors
33950
33951 Delete the crypto node if not on an E-processor. If on 8360 or 834x family,
33952 check rev and up-rev crypto node (to SEC rev. 2.4 property values)
33953 if on an 'EA' processor, e.g. MPC8349EA.
33954
33955 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33956
33957 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
33958 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33959 Date: Fri Jul 11 15:10:11 2008 -0400
33960
33961 ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
33962
33963 ARM DaVinci: Remove extern phy_t declaration by moving
33964 code to proper place.
33965
33966 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33967
33968 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
33969 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33970 Date: Fri Jul 11 15:10:10 2008 -0400
33971
33972 ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
33973
33974 ARM DaVinci: Remove duplicate definitions of MACH_TYPE
33975 and prototype of i2c_init().
33976
33977 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33978
33979 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
33980 Author: Kumar Gala <galak@kernel.crashing.org>
33981 Date: Mon Jul 14 14:03:02 2008 -0500
33982
33983 Fix some more printf() format problems.
33984
33985 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33986
33987 commit 45b16d22c64674ccd8c4637456a987463609141c
33988 Author: Wolfgang Denk <wd@denx.de>
33989 Date: Mon Jul 14 22:38:42 2008 +0200
33990
33991 Fix coding style; make code better parsable by external tools
33992
33993 Signed-off-by: Wolfgang Denk <wd@denx.de>
33994
33995 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
33996 Author: Wolfgang Denk <wd@denx.de>
33997 Date: Mon Jul 14 21:19:08 2008 +0200
33998
33999 cpu/i386/serial.c: Fix syntax errors
34000
34001 Signed-off-by: Wolfgang Denk <wd@denx.de>
34002
34003 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
34004 Author: Wolfgang Denk <wd@denx.de>
34005 Date: Mon Jul 14 20:41:35 2008 +0200
34006
34007 elppc board: Coding style cleanup.
34008
34009 Signed-off-by: Wolfgang Denk <wd@denx.de>
34010
34011 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
34012 Author: Wolfgang Denk <wd@denx.de>
34013 Date: Mon Jul 14 20:40:22 2008 +0200
34014
34015 elppc board: fix syntax error.
34016
34017 Signed-off-by: Wolfgang Denk <wd@denx.de>
34018
34019 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
34020 Author: Wolfgang Denk <wd@denx.de>
34021 Date: Mon Jul 14 20:38:26 2008 +0200
34022
34023 EB+MCF-EV123 board: fix coding style (alingment)
34024
34025 Signed-off-by: Wolfgang Denk <wd@denx.de>
34026
34027 commit 6841785a0bb0f38175456a923edd634fb7dd6947
34028 Author: Wolfgang Denk <wd@denx.de>
34029 Date: Mon Jul 14 20:36:44 2008 +0200
34030
34031 EB+MCF-EV123 board: fix syntx error
34032
34033 Signed-off-by: Wolfgang Denk <wd@denx.de>
34034
34035 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
34036 Author: Andy Fleming <afleming@freescale.com>
34037 Date: Mon Jul 7 18:02:08 2008 -0500
34038
34039 Remove LBC_CACHE_BASE from 8544 DS
34040
34041 The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping
34042 space for some anyway, we were allowing speculative loads into unmapped space,
34043 which would cause an exception (annoying, even if ultimately harmless).
34044 Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
34045 problem.
34046
34047 Signed-off-by: Andy Fleming <afleming@freescale.com>
34048
34049 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
34050 Author: Wolfgang Denk <wd@denx.de>
34051 Date: Mon Jul 14 15:19:07 2008 +0200
34052
34053 Code cleanup: fix old style assignment ambiguities like "=-" etc.
34054
34055 Signed-off-by: Wolfgang Denk <wd@denx.de>
34056
34057 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
34058 Author: Wolfgang Denk <wd@denx.de>
34059 Date: Mon Jul 14 15:10:53 2008 +0200
34060
34061 AmigaOneG3SE: remove dead and incomplete files
34062
34063 Signed-off-by: Wolfgang Denk <wd@denx.de>
34064
34065 commit b64f190b7a34224df09b559ca111eb1b733f00ad
34066 Author: Wolfgang Denk <wd@denx.de>
34067 Date: Mon Jul 14 15:06:35 2008 +0200
34068
34069 Fix printf() format issues with sizeof_t types by using %zu
34070
34071 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34072 Signed-off-by: Wolfgang Denk <wd@denx.de>
34073
34074 commit f354b73e16a86f9e9085471a830605f74f84ea5d
34075 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34076 Date: Mon Jul 14 14:11:45 2008 +0200
34077
34078 vsprintf: add z and t options
34079
34080 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34081
34082 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
34083 Author: Wolfgang Denk <wd@denx.de>
34084 Date: Sun Jul 13 23:07:35 2008 +0200
34085
34086 Fix some more printf() format issues.
34087
34088 Signed-off-by: Wolfgang Denk <wd@denx.de>
34089
34090 commit d5996dd555edf52721b7691a4c59de016251ed39
34091 Author: Wolfgang Denk <wd@denx.de>
34092 Date: Sun Jul 13 19:51:00 2008 +0200
34093
34094 Fix some more printf() format problems.
34095
34096 Signed-off-by: Wolfgang Denk <wd@denx.de>
34097
34098 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
34099 Author: Wolfgang Denk <wd@denx.de>
34100 Date: Sun Jul 13 19:48:26 2008 +0200
34101
34102 ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
34103
34104 Signed-off-by: Wolfgang Denk <wd@denx.de>
34105
34106 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
34107 Author: Anatolij Gustschin <agust@denx.de>
34108 Date: Sat Jul 12 17:31:36 2008 +0200
34109
34110 Fix bug in Lime video driver
34111
34112 We need to wait while drawing engine clears frame
34113 buffer before any further software accesses to frame
34114 buffer will be initiated. Otherwise software drawn
34115 parts could be partially destroyed by the drawing
34116 engine or even GDC chip freeze could occur (as
34117 observed on socrates board).
34118
34119 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34120
34121 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
34122 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34123 Date: Sat Jul 12 14:36:34 2008 +0200
34124
34125 Fix some more printf() format issues.
34126
34127 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34128
34129 commit 18c8a28aad49803780bd8d52432ded528e37e701
34130 Author: Michal Simek <monstr@monstr.eu>
34131 Date: Fri Jul 11 15:11:57 2008 +0200
34132
34133 hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
34134
34135 Signed-off-by: Michal Simek <monstr@monstr.eu>
34136 Acked-by: Stefan Roese <sr@denx.de>
34137
34138 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
34139 Author: Michal Simek <monstr@monstr.eu>
34140 Date: Fri Jul 11 11:50:53 2008 +0200
34141
34142 hwmon: Cleaning hwmon devices
34143
34144 Clean Makefile
34145 Move device specific values to driver for better reading
34146
34147 Signed-off-by: Michal Simek <monstr@monstr.eu>
34148 Acked-by: Stefan Roese <sr@denx.de>
34149
34150 commit c78fce699c7ff467ecd841da6a79f065180bf578
34151 Author: Michal Simek <monstr@monstr.eu>
34152 Date: Fri Jul 11 10:43:13 2008 +0200
34153
34154 FIS: repare incorrect return value with ramdisk handling
34155
34156 Microblaze and PowerPC use boot_get_ramdisk for loading
34157 ramdisk to memory with checking return value.
34158 Return 0 means success. Return 1 means failed.
34159 Here is correspond part of code from bootm.c which check
34160 return code.
34161
34162 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
34163 &rd_data_start, &rd_data_end);
34164 if (ret)
34165 goto error;
34166
34167 Signed-off-by: Michal Simek <monstr@monstr.eu>
34168
34169 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
34170 Author: Michal Simek <monstr@monstr.eu>
34171 Date: Fri Jul 11 10:10:32 2008 +0200
34172
34173 microblaze: Remove useless ancient headers
34174
34175 Signed-off-by: Michal Simek <monstr@monstr.eu>
34176
34177 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
34178 Author: Michal Simek <monstr@monstr.eu>
34179 Date: Fri Jul 11 10:10:31 2008 +0200
34180
34181 microblaze: Clean uartlite driver
34182
34183 Redesign uartlite driver to in_be32 and out_be32 macros
34184 Fix missing header in io.h
34185
34186 Signed-off-by: Michal Simek <monstr@monstr.eu>
34187 Acked-by: Grant Likely <grant.likely@secretlab.ca>
34188
34189 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
34190 Author: Marcel Ziswiler <marcel@ziswiler.com>
34191 Date: Fri Jul 11 02:39:14 2008 +0200
34192
34193 Enable passing of ATAGs required by latest Linux kernel.
34194
34195 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
34196 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34197 Date: Fri Jul 11 10:24:15 2008 -0400
34198
34199 Fix integer overflow warning in calc_divisor()
34200
34201 which happened when rounding the serial port clock divisor
34202
34203 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34204
34205 commit 6b760189d77f001684e3160b355c185ca3804961
34206 Author: Marcel Ziswiler <marcel@ziswiler.com>
34207 Date: Fri Jul 11 01:09:59 2008 +0200
34208
34209 Fix build time warnings in function mmc_decode_csd()
34210
34211 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
34212
34213 commit c15947d6ce0d59925c97fdfac692476af6e262d0
34214 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34215 Date: Thu Jul 10 10:46:33 2008 -0400
34216
34217 ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
34218
34219 caused by missing dcache status/enable/disable functions.
34220
34221 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34222
34223 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
34224 Author: Stefan Roese <sr@denx.de>
34225 Date: Thu Jul 10 13:53:31 2008 +0200
34226
34227 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
34228
34229 This patch removes some ft_board_setup() functions from some 4xx boards.
34230 This can be done since we now have a default weak implementation for this
34231 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
34232 implementation like canyonlands need their own version.
34233
34234 Signed-off-by: Stefan Roese <sr@denx.de>
34235
34236 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
34237 Author: Wolfgang Denk <wd@denx.de>
34238 Date: Sun Jul 13 14:58:16 2008 +0200
34239
34240 Add last known maintainer for orphaned boards; reformat.
34241
34242 Signed-off-by: Wolfgang Denk <wd@denx.de>
34243
34244 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
34245 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34246 Date: Thu Jul 10 13:16:04 2008 +0200
34247
34248 Remove kharris@nexus-tech.net from MAINTAINERS
34249
34250 Mail to kharris@nexus-tech.net bounces because the user doesn't exist
34251 anymore. You can't be a maintainer without a valid e-mail address, so
34252 move all boards that used to be maintained by Kyle Harris to the
34253 "orphaned" list.
34254
34255 Currently, only PowerPC has a list of orphaned boards, so this patch
34256 creates one for ARM as well.
34257
34258 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34259
34260 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
34261 Author: Anatolij Gustschin <agust@denx.de>
34262 Date: Thu Jul 10 01:15:10 2008 +0200
34263
34264 at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
34265
34266 On the at91sam9260ep development board there is an EEPROM
34267 connected to the TWI interface (PA23, PA24 Peripheral A
34268 multiplexing), so we cannot use these pins as ETX2, ETX3.
34269 This patch configures PA10, PA11 pins for ETX2, ETX3
34270 instead of PA23, PA24 pins.
34271
34272 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34273 Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
34274
34275 commit f889265753ddf4465d9d580827bb9289bfac55d6
34276 Author: Kenneth Johansson <kenneth@southpole.se>
34277 Date: Sat Jul 12 13:18:34 2008 -0600
34278
34279 fix DIU for small screens
34280
34281 The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
34282 so it was not possible to set a slow pixel clock and thus prevented
34283 display on small screens.
34284
34285 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
34286 Acked-by: John Rigby <jrigby@freescale.com>
34287
34288 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
34289 Author: John Rigby <jrigby@freescale.com>
34290 Date: Fri Jul 11 14:44:09 2008 -0600
34291
34292 ADS5121 cleanup compile warnings
34293
34294 board/ads5121/iopin.c
34295 Replace bit fields in struct iopin_t with a single
34296 field and intialize it via plain old macros.
34297 This fixes the type pun warnings and makes the code
34298 more readable.
34299
34300 board/ads5121/ads5121.c
34301 Add include iopin.h to ads5121.c for the iopin_initialize
34302 prototype.
34303
34304 Add an extern void ads5121_diu_init(void)
34305
34306 Signed-off-by: John Rigby <jrigby@freescale.com>
34307
34308 commit bde63587622c4b830a27d1ddf7265843de9e994f
34309 Author: Wolfgang Denk <wd@denx.de>
34310 Date: Fri Jul 11 22:56:11 2008 +0200
34311
34312 Fix some more printf() format issues.
34313
34314 Signed-off-by: Wolfgang Denk <wd@denx.de>
34315
34316 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
34317 Author: Wolfgang Denk <wd@denx.de>
34318 Date: Fri Jul 11 22:55:31 2008 +0200
34319
34320 Fixed some out-of-tree build issues
34321
34322 Signed-off-by: Wolfgang Denk <wd@denx.de>
34323
34324 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
34325 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34326 Date: Wed Jul 9 16:20:23 2008 -0500
34327
34328 ColdFire: Fix FB CS not setup properly for Mcf5282
34329
34330 Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
34331 CFG_CSn_RO is defined as 0, the chipselect will not
34332 be assigned.
34333
34334 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34335
34336 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
34337 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34338 Date: Wed Jul 9 15:47:27 2008 -0500
34339
34340 ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
34341
34342 Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
34343 clock module in cpu/<cf arch>/cpu_init.c
34344
34345 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34346
34347 commit f94945b517f10e01927101679c62361e03d4e837
34348 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34349 Date: Wed Jul 9 15:25:01 2008 -0500
34350
34351 ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
34352
34353 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34354
34355 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
34356 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34357 Date: Wed Jul 9 15:21:44 2008 -0500
34358
34359 Fix compile error caused by missing timer function
34360
34361 Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
34362
34363 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34364
34365 commit c37ea031175b807c54e6bad9b270e9bede6c0078
34366 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34367 Date: Wed Jul 9 15:14:25 2008 -0500
34368
34369 Fix compile error caused by incorrect function return type
34370
34371 Rename int mii_init(void) to void mii_init(void)
34372
34373 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34374
34375 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
34376 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34377 Date: Wed Jun 18 19:27:23 2008 -0500
34378
34379 ColdFire: Fix power up issue for MCF5235
34380
34381 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34382
34383 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
34384 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34385 Date: Wed Jun 18 19:19:07 2008 -0500
34386
34387 ColdFire: Fix compiling error for MCF5275
34388
34389 The compiling error was caused by missing a closed parentheses
34390 in speed.c
34391
34392 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34393
34394 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
34395 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34396 Date: Wed Jun 18 19:14:01 2008 -0500
34397
34398 ColdFire: Fix timer issue for MCF5272
34399
34400 The timer was assigned to wrong timer memory mapped which
34401 caused udelay() and timer() not working properly.
34402
34403 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34404
34405 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
34406 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34407 Date: Wed Jun 18 19:12:13 2008 -0500
34408
34409 ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
34410
34411 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
34412
34413 commit 8371dc2066136be21e10b7b9293e469297d77298
34414 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34415 Date: Wed Jun 18 19:05:23 2008 -0500
34416
34417 ColdFire: Add -got=single param for new linux v4e toolchains
34418
34419 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
34420
34421 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
34422 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34423 Date: Wed Jun 18 13:21:19 2008 -0500
34424
34425 ColdFire: Fix code flash configuration for M547x/M548x boards
34426
34427 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
34428
34429 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
34430 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34431 Date: Tue Jun 24 12:12:16 2008 -0500
34432
34433 ColdFire: Fix warning messages by passing correct data type in board.c
34434
34435 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34436
34437 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
34438 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34439 Date: Thu May 29 12:21:54 2008 -0500
34440
34441 ColdFire: Fix UART baudrate formula
34442
34443 The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
34444 can generate the wrong divisor due to integer division truncation.
34445 Round the calculated divisor value by adding 1/2 the baudrate
34446 before dividing by the baudrate.
34447
34448 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
34449 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
34450
34451 commit b578fb471444cbd7db1285701ba51343baaf73fb
34452 Author: Stefan Roese <sr@denx.de>
34453 Date: Thu Jul 10 11:38:26 2008 +0200
34454
34455 ppc4xx: Fix include sequence in 4xx_pcie.c
34456
34457 This patch now moves common.h to the top of the inlcude list. This
34458 is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
34459 the phys_size_t/phys_addr_t are defined to the correct size in this
34460 driver.
34461
34462 Signed-off-by: Stefan Roese <sr@denx.de>
34463
34464 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
34465 Author: Stefan Roese <sr@denx.de>
34466 Date: Fri Jul 11 13:10:56 2008 +0200
34467
34468 ppc4xx: Fix compile warning in 44x_spd_ddr2.c
34469
34470 Signed-off-by: Stefan Roese <sr@denx.de>
34471
34472 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
34473 Author: Stefan Roese <sr@denx.de>
34474 Date: Fri Jul 11 11:40:13 2008 +0200
34475
34476 ppc4xx: Fix small korat merge problem
34477
34478 Signed-off-by: Stefan Roese <sr@denx.de>
34479
34480 commit 1d0554736a0a1dd59718acda660871ce56b69e18
34481 Author: Stefan Roese <sr@denx.de>
34482 Date: Fri Jul 11 11:34:52 2008 +0200
34483
34484 ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
34485
34486 Signed-off-by: Stefan Roese <sr@denx.de>
34487
34488 commit 3a82113ed5934d498f25080441a8261fc9454b15
34489 Author: Stefan Roese <sr@denx.de>
34490 Date: Thu Jul 10 16:37:09 2008 +0200
34491
34492 ppc4xx: Add 460SX UIC defines
34493
34494 Only the really needed ones are added (cascading and EMAC/MAL).
34495
34496 Signed-off-by: Stefan Roese <sr@denx.de>
34497
34498 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
34499 Author: Stefan Roese <sr@denx.de>
34500 Date: Mon Jun 30 14:11:07 2008 +0200
34501
34502 ppc4xx: Continue cleanup of ppc440.h
34503
34504 This patch continues the ppc440.h cleanup by removing some of the unused
34505 defines.
34506
34507 Signed-off-by: Stefan Roese <sr@denx.de>
34508
34509 commit d9056b7913ed6a228d2f33671d916efedee541dd
34510 Author: Stefan Roese <sr@denx.de>
34511 Date: Mon Jun 30 14:05:05 2008 +0200
34512
34513 ppc4xx: Cleanup Katmai & Yucca PCIe register usage
34514
34515 This patch cleans up the 440SPe PCIe register usage. Now only defines
34516 from the include/asm-ppc/4xx_pcie.h are used.
34517
34518 Signed-off-by: Stefan Roese <sr@denx.de>
34519
34520 commit 5de851403b01489b493fa83137ad990b8ce60d1c
34521 Author: Stefan Roese <sr@denx.de>
34522 Date: Thu Jun 26 17:36:39 2008 +0200
34523
34524 ppc4xx: Rework 440GX UIC handling
34525
34526 This patch reworks the 440GX interrupt handling so that the common 4xx
34527 code can be used. The 440GX is an exception to all other 4xx variants
34528 by having the cascading interrupt vectors not on UIC0 but on a special
34529 UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
34530 the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
34531 handling is simpler without any 440GX special cases.
34532
34533 Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
34534
34535 Signed-off-by: Stefan Roese <sr@denx.de>
34536
34537 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
34538 Author: Stefan Roese <sr@denx.de>
34539 Date: Thu Jun 26 13:40:57 2008 +0200
34540
34541 ppc4xx: Consolidate PPC4xx UIC defines
34542
34543 This 2nd patch now removes all UIC mask bit definition. They should be
34544 generated from the vectors by using the UIC_MASK() macro from now on.
34545 This way only the vectors need to get defined for new PPC's.
34546
34547 Also only the really used interrupt vectors are now defined. This makes
34548 definitions for new PPC versions easier and less error prone.
34549
34550 Another part of this patch is that the 4xx emac driver got a little
34551 cleanup, since now the usage of the interrupts is clearer.
34552
34553 Signed-off-by: Stefan Roese <sr@denx.de>
34554
34555 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
34556 Author: Stefan Roese <sr@denx.de>
34557 Date: Wed Jun 25 10:59:22 2008 +0200
34558
34559 ppc4xx: Consolidate PPC4xx UIC defines
34560
34561 This patch is the first step to consolidate the UIC related defines in the
34562 4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
34563 asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
34564 steps.
34565
34566 Signed-off-by: Stefan Roese <sr@denx.de>
34567
34568 commit 7ee2619c20ccecd57966d74d844e6329e141261c
34569 Author: Stefan Roese <sr@denx.de>
34570 Date: Tue Jun 24 17:18:50 2008 +0200
34571
34572 ppc4xx: Consolidate PPC4xx EBC defines
34573
34574 This patch removes all EBC related defines from the PPC4xx headers
34575 ppc405.h and ppc440.h and introduces a new header
34576
34577 include/asm-ppc/ppc4xx-ebc.h
34578
34579 with all those defines.
34580
34581 Signed-off-by: Stefan Roese <sr@denx.de>
34582
34583 commit e321801bed5a6d896d298c00fd20046f039d5d66
34584 Author: Stefan Roese <sr@denx.de>
34585 Date: Thu Jul 10 13:52:44 2008 +0200
34586
34587 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
34588
34589 This patch removes some ft_board_setup() functions from some 4xx boards.
34590 This can be done since we now have a default weak implementation for this
34591 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
34592 implementation like canyonlands need their own version.
34593
34594 Signed-off-by: Stefan Roese <sr@denx.de>
34595
34596 commit 08250eb2edbd96514d049602d9e134110ac3185f
34597 Author: Stefan Roese <sr@denx.de>
34598 Date: Thu Jul 10 15:32:32 2008 +0200
34599
34600 ppc4xx: Fix merge problems in 44x_spd_ddr2.c
34601
34602 Signed-off-by: Stefan Roese <sr@denx.de>
34603
34604 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
34605 Author: Grant Erickson <gerickson@nuovations.com>
34606 Date: Tue Jul 8 08:35:00 2008 -0700
34607
34608 ppc4xx: Add MII mode support to the EMAC RGMII Bridge
34609
34610 This patch adds support for placing the RGMII bridge on the
34611 PPC405EX(r) into MII/GMII mode and allows a board-specific
34612 configuration to specify the bridge mode at compile-time.
34613
34614 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
34615 Signed-off-by: Stefan Roese <sr@denx.de>
34616
34617 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
34618 Author: Grant Erickson <gerickson@nuovations.com>
34619 Date: Wed Jul 9 16:46:35 2008 -0700
34620
34621 ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
34622
34623 This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
34624 controller registers (MODT and INITPLR) used by the
34625 PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
34626 peer values used for the INITPLR MR and EMR registers,
34627 respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
34628
34629 With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
34630 Kilauea are replaced by equivalent mnemonics to make it easier to
34631 compare and contrast other 405EX(r)-based boards (e.g. during board
34632 bring-up).
34633
34634 Finally, unified the SDRAM controller register dump routine such that
34635 it can be used across all processor variants that utilize the IBM DDR2
34636 SDRAM controller core. It produces output of the form:
34637
34638 PPC4xx IBM DDR2 Register Dump:
34639 ...
34640 SDRAM_MB0CF[40] = 0x00006701
34641 ...
34642
34643 which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
34644 since it is not uncommon that the DCR values in header files get mixed
34645 up and it helps to validate, at a glance, they match what is printed
34646 in the user manual.
34647
34648 Tested on:
34649 AMCC Kilauea/Haleakala:
34650 - NFS Linux Boot: PASSED
34651 - NAND Linux Boot: PASSED
34652
34653 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
34654 Signed-off-by: Stefan Roese <sr@denx.de>
34655
34656 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
34657 Author: Grant Erickson <gerickson@nuovations.com>
34658 Date: Wed Jul 9 16:31:59 2008 -0700
34659
34660 ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
34661
34662 Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
34663 revision ID DCR based on 405EX, and add field mnemonics for bus error
34664 status and ECC error status registers.
34665
34666 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
34667 Signed-off-by: Stefan Roese <sr@denx.de>
34668
34669 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
34670 Author: Grant Erickson <gerickson@nuovations.com>
34671 Date: Wed Jul 9 16:31:36 2008 -0700
34672
34673 ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
34674
34675 This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
34676
34677 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
34678 Signed-off-by: Stefan Roese <sr@denx.de>
34679
34680 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
34681 Author: Grant Erickson <gerickson@nuovations.com>
34682 Date: Wed Jul 9 11:55:46 2008 -0700
34683
34684 PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
34685
34686 While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
34687 controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
34688 the 405EX(r), SDRAM_MCSTAT has a different DCR value.
34689
34690 Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
34691 which causes SDRAM initialization to periodically fail since it can
34692 prematurely indicate SDRAM ready status.
34693
34694 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
34695 Signed-off-by: Stefan Roese <sr@denx.de>
34696
34697 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
34698 Author: Feng Kan <fkan@amcc.com>
34699 Date: Tue Jul 8 22:48:42 2008 -0700
34700
34701 ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
34702
34703 Add AMCC Redwood reference board that uses the latest
34704 PPC 464 CPU processor combined with a rich mix of peripheral
34705 controllers. The board will support PCIe, mutiple Gig ethernet
34706 ports, advanced hardware RAID assistance and IEEE 1588.
34707
34708 Signed-off-by: Feng Kan <fkan@amcc.com>
34709 Signed-off-by: Stefan Roese <sr@denx.de>
34710
34711 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
34712 Author: Feng Kan <fkan@amcc.com>
34713 Date: Tue Jul 8 22:48:07 2008 -0700
34714
34715 ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
34716
34717 Signed-off-by: Feng Kan <fkan@amcc.com>
34718 Signed-off-by: Stefan Roese <sr@denx.de>
34719
34720 commit 7d30793685efcada183891c78fc892e6c9ba50c7
34721 Author: Feng Kan <fkan@amcc.com>
34722 Date: Tue Jul 8 22:47:31 2008 -0700
34723
34724 ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
34725
34726 Signed-off-by: Feng Kan <fkan@amcc.com>
34727 Signed-off-by: Stefan Roese <sr@denx.de>
34728
34729 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
34730 Author: Wolfgang Denk <wd@denx.de>
34731 Date: Fri Jul 11 01:16:00 2008 +0200
34732
34733 Fix some more print() format errors.
34734
34735 Signed-off-by: Wolfgang Denk <wd@denx.de>
34736
34737 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
34738 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34739 Date: Thu Jul 10 20:57:54 2008 +0200
34740
34741 MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
34742
34743 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34744
34745 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
34746 Author: Sergey Lapin <slapin@ossfans.org>
34747 Date: Thu Jun 5 11:06:29 2008 +0400
34748
34749 DataFlash AT45DB021 support
34750
34751 Some boards based on AT91SAM926X-EK use smaller DF chips to keep
34752 bootstrap, u-boot and its environment, using NAND or other external
34753 storage for kernel and rootfs. This patch adds support for
34754 small 1024x263 chip.
34755
34756 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
34757
34758 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
34759 Author: Kim Phillips <kim.phillips@freescale.com>
34760 Date: Thu Jul 10 14:00:15 2008 -0500
34761
34762 silence misc printf formatting compiler warnings
34763
34764 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34765
34766 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
34767 Author: Markus Klotzbücher <mk@denx.de>
34768 Date: Thu Jul 10 14:47:09 2008 +0200
34769
34770 USB: shutdown USB before booting
34771
34772 This patch fixes a potentially serious issue related to USB which was
34773 discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
34774 ARM920T. Martin wrote:
34775
34776 Turn off USB to prevent the host controller from writing to the
34777 SDRAM while Linux is booting. This could happen, because the HCCA
34778 (Host Controller Communication Area) lies within the SDRAM and the
34779 host controller writes continously to this area (as busmaster!), for
34780 example to increase the HccaFrameNumber variable, which happens
34781 every 1 ms.
34782
34783 This is a slightly modified version of the patch in order to shutdown
34784 USB when booting on all architectures.
34785
34786 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34787
34788 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
34789 Author: Martha Marx <mmarx@silicontkx.com>
34790 Date: Thu May 29 14:23:25 2008 -0400
34791
34792 Configuration changes for ADS5121 Rev 3
34793
34794 ADS5121 Rev 3 board is now the default config
34795
34796 config targets are now
34797
34798 ads5121_config
34799 Rev 3 board with
34800 PCI
34801 M41T62 on board RTC
34802 512MB DRAM
34803
34804 ads5121_rev2_config
34805 Rev 2 board with
34806 No PCI
34807 256MB DRAM
34808
34809 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
34810 Acked-by: Grant Likely <grant.likely@secretlab.ca>
34811 Acked-by: John Rigby <jrigby@freescale.com>
34812
34813 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
34814 Author: Martha Marx <mmarx@silicontkx.com>
34815 Date: Thu May 29 15:37:21 2008 -0400
34816
34817 Consolidate ADS5121 IO Pin configuration
34818
34819 Consolidate ADS5121 IO Pin configuration to one file
34820 board/ads5121/iopin.c.
34821
34822 Remove pin config from cpu/mpc512x/fec.c
34823
34824 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
34825 Acked-by: Grant Likely <grant.likely@secretlab.ca>
34826 Acked-by: John Rigby <jrigby@freescale.com>
34827
34828 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
34829 Author: Christian Eggers <christian@p2400.wgnetz.xx>
34830 Date: Fri Jun 27 19:46:51 2008 +0200
34831
34832 Fix "usb part" command
34833
34834 Only print partition for selected device if user supplied the <dev>
34835 arg with the "usb part [dev]" command.
34836
34837 Signed-off-by: Christian Eggers <ceggers@gmx.de>
34838 Acked-by: Markus Klotzbuecher <mk@denx.de>
34839
34840 commit cc83b27217f7380041fea386ddb6d6d9b261617d
34841 Author: Harald Welte <laforge@gnumonks.org>
34842 Date: Mon Jul 7 00:58:05 2008 +0800
34843
34844 fix USB devices with multiple configurations
34845
34846 This patch fixes bugs in usbdcore*.c related to the use of devices
34847 with multiple configurations.
34848
34849 The original code made mistakes about the meaning of configuration value and
34850 configuration index, and the resulting off-by-one errors resulted in:
34851
34852 * SET_CONFIGURATION always selected the first configuration, no matter what
34853 wValue is being passed.
34854 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
34855 configuration (index 0).
34856
34857 Signed-off-by: Harald Welte <laforge@openmoko.org>
34858 Acked-by: Markus Klotzbuecher <mk@denx.de>
34859
34860 commit 06c53beae1a726e707971c555613f09b270a2461
34861 Author: Wolfgang Denk <wd@denx.de>
34862 Date: Thu Jul 10 13:16:09 2008 +0200
34863
34864 Fix some more print() format errors.
34865
34866 Signed-off-by: Wolfgang Denk <wd@denx.de>
34867
34868 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
34869 Author: Christian Eggers <christian@p2400.wgnetz.xx>
34870 Date: Fri Jun 27 19:46:51 2008 +0200
34871
34872 Fix "usb part" command
34873
34874 Only print partition for selected device if user supplied the <dev>
34875 arg with the "usb part [dev]" command.
34876
34877 Signed-off-by: Christian Eggers <ceggers@gmx.de>
34878 Acked-by: Markus Klotzbuecher <mk@denx.de>
34879
34880 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
34881 Author: Harald Welte <laforge@gnumonks.org>
34882 Date: Mon Jul 7 00:58:05 2008 +0800
34883
34884 fix USB devices with multiple configurations
34885
34886 This patch fixes bugs in usbdcore*.c related to the use of devices
34887 with multiple configurations.
34888
34889 The original code made mistakes about the meaning of configuration value and
34890 configuration index, and the resulting off-by-one errors resulted in:
34891
34892 * SET_CONFIGURATION always selected the first configuration, no matter what
34893 wValue is being passed.
34894 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
34895 configuration (index 0).
34896
34897 Signed-off-by: Harald Welte <laforge@openmoko.org>
34898 Acked-by: Markus Klotzbuecher <mk@denx.de>
34899
34900 commit e870690bdca154943ecadd5212d2d59c1b9d391b
34901 Author: Stefan Roese <sr@denx.de>
34902 Date: Thu Jul 10 10:10:54 2008 +0200
34903
34904 MTD/NAND: Fix printf format warning in nand code
34905
34906 This patch fixes NAND related printf format warning. Those warnings are
34907 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
34908 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
34909 really helpful.
34910
34911 Signed-off-by: Stefan Roese <sr@denx.de>
34912
34913 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
34914 Author: Stefan Roese <sr@denx.de>
34915 Date: Thu Jul 10 10:00:45 2008 +0200
34916
34917 rtc: Fix printf format warning in m41t60.c
34918
34919 Signed-off-by: Stefan Roese <sr@denx.de>
34920
34921 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
34922 Author: Stefan Roese <sr@denx.de>
34923 Date: Tue Jul 8 12:01:47 2008 +0200
34924
34925 pci: Move PCI device configuration check into a separate weak function
34926
34927 This patch moves the check, if a device should be skipped in PCI PNP
34928 configuration into the function pci_skip_dev(). This function is defined
34929 as weak so that it can be overwritten by a platform specific one if
34930 needed. The check if the device should get printed in the PCI summary upon
34931 bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
34932 pci_print_dev() which is also defined as weak too.
34933
34934 Signed-off-by: Stefan Roese <sr@denx.de>
34935
34936 commit b002144e1dc21374b1ef5281fe6b5d014af96650
34937 Author: Stefan Roese <sr@denx.de>
34938 Date: Thu Jul 10 09:58:06 2008 +0200
34939
34940 ppc4xx: Fix printf format warnings now visible with the updated format check
34941
34942 This patch fixes ppc4xx related printf format warning. Those warnings are
34943 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
34944 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
34945 really helpful.
34946
34947 Signed-off-by: Stefan Roese <sr@denx.de>
34948
34949 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
34950 Author: Stefan Roese <sr@denx.de>
34951 Date: Wed Jul 9 17:33:57 2008 +0200
34952
34953 ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
34954
34955 Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
34956 To support such configurations, we "only" map the first 2GB via the TLB's. We
34957 need some free virtual address space for the remaining peripherals like, SoC
34958 devices, FLASH etc.
34959
34960 Note that ECC is currently not supported on configurations with more than 2GB
34961 SDRAM. This is because we only map the first 2GB on such systems, and therefore
34962 the ECC parity byte of the remaining area can't be written.
34963
34964 Signed-off-by: Stefan Roese <sr@denx.de>
34965
34966 commit cf1c2ed91df26903b956948f37f82de9e1158a89
34967 Author: Larry Johnson <lrj@acm.org>
34968 Date: Sat Jun 14 17:02:49 2008 -0400
34969
34970 ppc4xx: Remove implementation of testdram() from Korat board support
34971
34972 Signed-off-by: Larry Johnson <lrj@acm.org>
34973 Signed-off-by: Stefan Roese <sr@denx.de>
34974
34975 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
34976 Author: Larry Johnson <lrj@acm.org>
34977 Date: Sat Jun 14 16:53:02 2008 -0400
34978
34979 ppc4xx: Update and add FDT to Korat board support
34980
34981 Signed-off-by: Larry Johnson <lrj@acm.org>
34982 Signed-off-by: Stefan Roese <sr@denx.de>
34983
34984 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
34985 Author: Wolfgang Denk <wd@denx.de>
34986 Date: Thu Jul 10 01:13:30 2008 +0200
34987
34988 Minor coding style cleanup; update CHANGELOG
34989
34990 Signed-off-by: Wolfgang Denk <wd@denx.de>
34991
34992 commit 8915f1189c1d29d8be7f4de325702d90a8988219
34993 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
34994 Date: Wed Jul 9 17:50:45 2008 -0400
34995
34996 e1000: add support for 82545GM 64bit PCI-X copper variant
34997
34998 This PCI-X e1000 variant works by just adding in the correct
34999 PCI IDs in the appropriate places.
35000
35001 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
35002
35003 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
35004 Author: Daniel Hellstrom <daniel@gaisler.com>
35005 Date: Wed Jul 9 12:34:11 2008 +0000
35006
35007 SPARC: Build error fix
35008
35009 (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
35010
35011 This patch makes SPARC targets build again. It is caused by
35012 phys_addr_t and phys_size_t being defined in the wrong header
35013 file. include/lmb.h need those typedefs to build.
35014
35015 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
35016
35017 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
35018 Author: Marcel Ziswiler <marcel@ziswiler.com>
35019 Date: Wed Jul 9 08:17:15 2008 +0200
35020
35021 Many spelling fixes in README.
35022
35023 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
35024
35025 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
35026 Author: Marcel Ziswiler <marcel@ziswiler.com>
35027 Date: Wed Jul 9 08:17:06 2008 +0200
35028
35029 Minor spelling fix in comment.
35030
35031 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
35032
35033 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
35034 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35035 Date: Tue Jul 8 14:54:58 2008 -0400
35036
35037 Round the serial port clock divisor value returned by calc_divisor()
35038
35039 Round the serial port clock divisor value returned by
35040 calc_divisor().
35041
35042 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35043 Signed-off-by: John Roberts <john.roberts@pwav.com>
35044
35045 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
35046 Author: Scott Wood <scottwood@freescale.com>
35047 Date: Wed Jul 9 17:47:52 2008 -0500
35048
35049 NAND: ifdef-protect most of nand.h when using legacy NAND.
35050
35051 Some macros such as NAND_CTL_SETALE conflict between current and legacy
35052 NAND, being defined by the subsystem in the former case and the board
35053 config file in the latter.
35054
35055 Signed-off-by: Scott Wood <scottwood@freescale.com>
35056
35057 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
35058 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35059 Date: Tue Jul 8 11:02:05 2008 -0400
35060
35061 ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
35062
35063 ARM: Fix for incorrect version of patch applied when
35064 adding support for the Lyrtech SFF-SDR board.
35065
35066 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35067 Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
35068
35069 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
35070 Author: Kyungmin Park <kmpark@infradead.org>
35071 Date: Tue Jul 8 09:08:40 2008 +0900
35072
35073 Remove useless print message at apollon
35074
35075 Remove useless print message at apollon
35076
35077 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
35078
35079 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
35080 Author: Andy Fleming <afleming@freescale.com>
35081 Date: Mon Jul 7 14:24:39 2008 -0500
35082
35083 Fix LMB type issues
35084
35085 The LMB code now uses phys_addr_t and phys_size_t. Also, there were a couple
35086 of casting problems in the bootm code that called the LMB functions.
35087
35088 Signed-off-by: Andy Fleming <afleming@freescale.com>
35089
35090 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
35091 Author: Kumar Gala <galak@kernel.crashing.org>
35092 Date: Mon Jul 7 09:39:06 2008 -0500
35093
35094 Fix compiler warnings
35095
35096 gcc-4.3.x generates the following:
35097
35098 bootm.c: In function 'do_bootm_linux':
35099 bootm.c:208: warning: cast from pointer to integer of different size
35100 bootm.c:215: warning: cast from pointer to integer of different size
35101
35102 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35103
35104 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
35105 Author: Harald Welte <laforge@gnumonks.org>
35106 Date: Mon Jul 7 15:40:39 2008 +0800
35107
35108 Remove code duplication for setting the default environment
35109
35110 common/env_common.c (default_env): new function that resets the environment to
35111 the default value
35112 common/env_common.c (env_relocate): use default_env instead of own copy
35113 common/env_nand.c (env_relocate_spec): use default_env instead of own copy
35114 include/environment.h: added default_env prototype
35115
35116 Signed-off-by: Werner Almesberger <werner@openmoko.org>
35117 Signed-off-by: Harald Welte <laforge@openmoko.org>
35118
35119 commit 99c2b434d37863df5dda5207a53760c6506fc2be
35120 Author: Marcel Ziswiler <marcel@ziswiler.com>
35121 Date: Sun Jun 22 16:13:46 2008 +0200
35122
35123 NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
35124
35125 The writeenv() and readenv() calls introduced by the recently added bad block
35126 management for environment variables were missing casts therefore producing
35127 compile time warnings.
35128 While at it fixing some typo in a comment and indentation.
35129
35130 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
35131 Signed-off-by: Scott Wood <scottwood@freescale.com>
35132
35133 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
35134 Author: Scott Wood <scottwood@freescale.com>
35135 Date: Fri Jun 20 12:38:57 2008 -0500
35136
35137 NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
35138
35139 This is particularly problematic now that non-NAND-specific code is
35140 including <nand.h>, and thus all debugging code is being compiled
35141 regardless of whether it was requested, as reported by Scott McNutt
35142 <smcnutt@psyent.com>.
35143
35144 Signed-off-by: Scott Wood <scottwood@freescale.com>
35145
35146 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
35147 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35148 Date: Thu Jun 12 19:27:58 2008 +0200
35149
35150 mmc: Move atmel_mci driver into drivers/mmc
35151
35152 This makes it easier to use the driver on other platforms.
35153
35154 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35155 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35156
35157 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
35158 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35159 Date: Thu Jun 12 19:27:57 2008 +0200
35160
35161 avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
35162
35163 After we move the atmel_mci driver into drivers/mmc, we can't select
35164 it with CONFIG_MMC anymore. Introduce a new symbol specifically for
35165 this driver so that there's no ambiguity.
35166
35167 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35168 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35169
35170 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
35171 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35172 Date: Thu Jun 12 19:27:56 2008 +0200
35173
35174 Create drivers/mmc subdirectory
35175
35176 In order to consolidate more of the various MMC drivers around the
35177 tree, we must first have a common place to put them.
35178
35179 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35180 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35181
35182 commit b502611b51f02718c2d1117d4981dabceb5af6de
35183 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
35184 Date: Sun Jul 6 12:30:09 2008 +0200
35185
35186 Change env_get_char from a global function ptr to a function
35187
35188 This avoids an early global data reference.
35189
35190 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
35191
35192 commit 27269417ade432189b234d9fbac98b54e37b978c
35193 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
35194 Date: Sun Jul 6 13:57:58 2008 +0400
35195
35196 Some copy-n-paste fixes in printf usage
35197
35198 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
35199
35200 commit 0e6989b9faf1588e8723535539e88a0df3c71356
35201 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
35202 Date: Sun Jul 6 13:57:00 2008 +0400
35203
35204 FDT memory and pci node fixes for MPC8260ADS
35205
35206 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
35207
35208 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
35209 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
35210 Date: Mon Jul 7 06:41:14 2008 -0700
35211
35212 Fix printf errors.
35213
35214 The compiler will help find mismatches between printf formats and
35215 arguments if you let it. This patch adds the necessary attributes to
35216 declarations in include/common.h, then begins to correct the resulting
35217 compiler warnings. Some of these were bugs, e.g., "$d" instead of
35218 "%d" and incorrect arguments. Others were just annoying, like
35219 int-long mismatches on a system where both are 32 bits. It's worth
35220 fixing the annoying errors to catch the real ones.
35221
35222 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
35223
35224 commit 417faf285b2527acb2de24c5cd3e2621d385408c
35225 Author: Becky Bruce <becky.bruce@freescale.com>
35226 Date: Wed Jul 9 11:09:41 2008 -0500
35227
35228 Allow print_size to print in GB
35229
35230 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
35231
35232 commit e7c374529c87525c9aa463e0557c287887ae4e9e
35233 Author: Jason McMullan <mcmullan@netapp.com>
35234 Date: Sun Jun 8 23:56:00 2008 -0400
35235
35236 mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
35237
35238 Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
35239 they are set in the U-Boot environment.
35240
35241 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
35242 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35243
35244 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
35245 Author: Stefan Roese <sr@denx.de>
35246 Date: Tue Jul 8 12:57:14 2008 +0200
35247
35248 jedec_flash: Fix AM29DL800BB device ID
35249
35250 As pointed out by Jerry Hicks, this patch corrects the device ID of
35251 the Spansion AM29DL800BB NOR device. Verified against latest Spansion
35252 datasheet (rev C4 from Dezember 2006).
35253
35254 Signed-off-by: Stefan Roese <sr@denx.de>
35255
35256 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
35257 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35258 Date: Mon Jul 7 11:22:37 2008 +0900
35259
35260 sh: Fix compile error sh7763rdp board
35261
35262 Disable SH ether driver.
35263
35264 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35265
35266 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
35267 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35268 Date: Tue Jul 8 12:03:24 2008 +0900
35269
35270 sh: Fix SH-boards compile error
35271
35272 By Cleanup out-or-tree building for some boards (.depend)
35273 (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
35274 because filse ware changed, some SH-boards have compile error.
35275 I revised this problem.
35276
35277 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35278
35279 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
35280 Author: Jason Jin <Jason.jin@freescale.com>
35281 Date: Tue May 13 11:50:36 2008 +0800
35282
35283 Feed the watchdog in u-boot for 8610 board.
35284
35285 The watchdog on 8610 board is enabled by setting sw[6]
35286 to on. Once enabled, the watchdog can not be disabled
35287 by software. So feed the dog in u-boot is necessary for
35288 normal operation.
35289
35290 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
35291
35292 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
35293 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35294 Date: Wed Jun 18 12:10:33 2008 -0400
35295
35296 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
35297
35298 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
35299
35300 Remove duplicate code in a if/else block in
35301 cpu/arm926ejs/davinci/lxt972.c.
35302 Fixed style issues.
35303
35304 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35305 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35306
35307 commit fec61431a003f5778bafa2624073a571af8bec9f
35308 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35309 Date: Wed Jun 18 12:10:31 2008 -0400
35310
35311 Remove duplicate definitions in include/lxt971a.h.
35312
35313 Remove duplicate definitions in include/lxt971a.h.
35314
35315 Remove duplicate registers and bits definitions in
35316 include/lxt971a.h for standard MII registers, and
35317 use values in include/miiphy.h instead.
35318
35319 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35320 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35321
35322 commit 9751ee0990f467941da0b095a4e995f863672d7a
35323 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35324 Date: Wed Jun 11 21:05:00 2008 +0900
35325
35326 net: sh: Renesas SH7763 Ethernet device support
35327
35328 Renesas SH7763 has 2 channel Ethernet device.
35329 This is 10/100/1000 Base support.
35330 But this patch check 10/100 Base only.
35331
35332 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35333 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35334
35335 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
35336 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35337 Date: Tue Jun 17 16:28:05 2008 +0900
35338
35339 sh: Update Renesas R2DPlus board
35340
35341 New NOR Flash board support and remove old type flash board config.
35342 And Remove network setting from config file.
35343
35344 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35345 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35346
35347 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
35348 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35349 Date: Tue Jun 17 16:28:01 2008 +0900
35350
35351 sh: Update Renesas R7780MP board
35352
35353 New NOR Flash board support and remove network setting from config file.
35354
35355 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35356 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35357
35358 commit c001cd604e9f133743effbddb1c215b48e761c5a
35359 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35360 Date: Tue Jun 17 16:27:56 2008 +0900
35361
35362 sh: Update Renesas Migo-R board
35363
35364 Remove network setting from config file.
35365
35366 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35367 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35368
35369 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
35370 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35371 Date: Tue Jun 17 16:27:52 2008 +0900
35372
35373 sh: Update Hitachi MS7722SE board
35374
35375 Remove network setting from config file.
35376
35377 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35378 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35379
35380 commit 26209e48e8791670c93108029a5c31a30016c6df
35381 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35382 Date: Tue Jun 17 16:27:48 2008 +0900
35383
35384 sh: Cleanup source code of SH7763RDP
35385
35386 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35387 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35388
35389 commit 5cd5b2c96ef0025762931349d350287aec03ab47
35390 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35391 Date: Tue Jun 17 16:27:44 2008 +0900
35392
35393 sh: Cleanup source code of R2DPlus
35394
35395 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35396 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35397
35398 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
35399 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35400 Date: Tue Jun 17 16:27:41 2008 +0900
35401
35402 sh: Cleanup source code of R7780MP
35403
35404 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35405 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35406
35407 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
35408 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35409 Date: Tue Jun 17 16:27:38 2008 +0900
35410
35411 sh: Cleanup source code of MS7722SE
35412
35413 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35414 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35415
35416 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
35417 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35418 Date: Tue Jun 17 16:27:34 2008 +0900
35419
35420 sh: Cleanup source code of MS7720SE
35421
35422 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35423 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35424
35425 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
35426 Author: Wolfgang Denk <wd@denx.de>
35427 Date: Mon Jul 7 00:45:03 2008 +0200
35428
35429 SH: fix out of tree building
35430
35431 Signed-off-by: Wolfgang Denk <wd@denx.de>
35432
35433 commit 9047bfa1e737d787be460387dd6f45737eeceb10
35434 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35435 Date: Thu Jul 3 23:16:06 2008 +0900
35436
35437 net: smc911x: Fix typo
35438
35439 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35440
35441 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
35442 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
35443 Date: Wed Jul 2 18:54:08 2008 +0200
35444
35445 update mvBL-M7 board config
35446
35447 update mvBL-M7 config file to use UBOOT_VERSION and define
35448 CONFIG_HIGH_BATS.
35449
35450 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
35451
35452 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
35453 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35454 Date: Mon Jun 30 17:45:01 2008 +0900
35455
35456 net: fix compile problem in smc911x driver.
35457
35458 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35459 Acked-by: Ben Warren <biggerbadderben@gmail.com>
35460
35461 commit 9fea65a6c469b1b474b27446feb58738baba2d31
35462 Author: Michal Simek <monstr@monstr.eu>
35463 Date: Tue Jun 24 09:54:09 2008 +0200
35464
35465 ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
35466
35467 This change helps with better handling with others
35468 Xilinx based platform.
35469
35470 Signed-off-by: Michal Simek <monstr@monstr.eu>
35471 Acked-by: Stefan Roese <sr@denx.de>
35472
35473 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
35474 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35475 Date: Tue Jun 17 13:07:11 2008 +0900
35476
35477 net: ne2000: Move dev_addr variable from grobal to local.
35478
35479 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35480 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35481
35482 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
35483 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35484 Date: Tue Jun 17 13:07:15 2008 +0900
35485
35486 net: ne2000: Fix compile error of NE2000
35487
35488 If enable DEBUG, can not compile ne2000 driver.
35489
35490 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35491 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35492
35493 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
35494 Author: Ben Warren <biggerbadderben@gmail.com>
35495 Date: Mon Jun 23 22:57:27 2008 -0700
35496
35497 Add mechanisms for CPU and board-specific Ethernet initialization
35498
35499 This patch is the first step in cleaning up net/eth.c, by moving Ethernet
35500 initialization to CPU or board-specific code. Initial implementation is
35501 only on the Freescale TSEC controller, but others will be added soon.
35502
35503 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35504
35505 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
35506 Author: Wolfgang Denk <wd@denx.de>
35507 Date: Sun Jul 6 01:21:46 2008 +0200
35508
35509 include/sha256.h: fix file permissions.
35510
35511 Signed-off-by: Wolfgang Denk <wd@denx.de>
35512
35513 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
35514 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
35515 Date: Tue May 27 11:15:29 2008 +0200
35516
35517 [AT91SAM9] Fix NAND FLASH timings
35518
35519 Fix NAND FLASH timings for at91sam9x evaluation kits.
35520
35521 New timings are based on application note
35522 "NAND Flash Support on AT91SAM9 Microcontrollers" available at
35523 http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
35524
35525 Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
35526 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35527 Acked-by: Stelian Pop <stelian@popies.net>
35528
35529 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
35530 Author: Stelian Pop <stelian@popies.net>
35531 Date: Thu May 22 00:15:40 2008 +0200
35532
35533 Fix boot from NOR due to incorrect reset delay.
35534
35535 AT91 RSTC registers are battery-backuped, so their values
35536 are not reset across power cycles. One of those registers,
35537 the AT91_RSTC_MR register, is being modified by U-Boot, in
35538 the ethernet initialisation routine, to generate a 500ms
35539 user reset.
35540
35541 Unfortunately, this value is not being restored afterwards,
35542 causing subsequent resets to also last for 500ms.
35543
35544 This long reset sequence causes problems (at least) in the
35545 boot sequence from NOR: by the time the CPU tries to load
35546 a program from the NOR flash, the latter is still in reset
35547 and not yet available.
35548
35549 Additionaly, this patch fixes a bug in the original code which
35550 caused the reset delay to last for 2s instead of 500ms.
35551
35552 Signed-off-by: Stelian Pop <stelian@popies.net>
35553 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35554
35555 commit f492dd636fbbae529e17533995bc6e5813c007f6
35556 Author: Wolfgang Denk <wd@denx.de>
35557 Date: Fri Jul 4 20:11:49 2008 +0200
35558
35559 Update CHANGELOG
35560
35561 Signed-off-by: Wolfgang Denk <wd@denx.de>
35562
35563 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
35564 Author: Wolfgang Denk <wd@denx.de>
35565 Date: Fri Jul 4 20:07:35 2008 +0200
35566
35567 CCM/SCM boards: fix out of tree building
35568
35569 Signed-off-by: Wolfgang Denk <wd@denx.de>
35570
35571 commit ab4c3a490df9a964711556d2a05b0c787db45fde
35572 Author: Wolfgang Denk <wd@denx.de>
35573 Date: Thu Jul 3 23:22:27 2008 +0200
35574
35575 SCM board: fix build errors.
35576
35577 Signed-off-by: Wolfgang Denk <wd@denx.de>
35578
35579 commit a566466f17ba0e2d2b6c250e77da678fb932470d
35580 Author: Wolfgang Denk <wd@denx.de>
35581 Date: Thu Jul 3 23:06:36 2008 +0200
35582
35583 IAD210 board: fix ``"ALIGN" redefined'' warning.
35584
35585 Signed-off-by: Wolfgang Denk <wd@denx.de>
35586
35587 commit ad756314797c16fa5dca23e115aab881011f164f
35588 Author: Wolfgang Denk <wd@denx.de>
35589 Date: Thu Jul 3 23:00:24 2008 +0200
35590
35591 CCM board: fix build errors.
35592
35593 Signed-off-by: Wolfgang Denk <wd@denx.de>
35594
35595 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
35596 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
35597 Date: Wed Jul 2 18:54:08 2008 +0200
35598
35599 update mvBL-M7 board config
35600
35601 update mvBL-M7 config file to use UBOOT_VERSION.
35602
35603 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
35604 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35605
35606 commit ced209c50e80c25f13c083099b05044048d21f4f
35607 Author: Wolfgang Denk <wd@denx.de>
35608 Date: Thu Jul 3 22:39:21 2008 +0200
35609
35610 sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
35611
35612 Signed-off-by: Wolfgang Denk <wd@denx.de>
35613
35614 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
35615 Author: Wolfgang Denk <wd@denx.de>
35616 Date: Thu Jul 3 22:34:08 2008 +0200
35617
35618 Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
35619
35620 Signed-off-by: Wolfgang Denk <wd@denx.de>
35621
35622 commit 730f298485984b011b6ee8f4acb511cb45a843dd
35623 Author: Wolfgang Denk <wd@denx.de>
35624 Date: Thu Jul 3 22:04:17 2008 +0200
35625
35626 lmb: fix "implicit declaration of function 'lmb_free'" warning
35627
35628 Signed-off-by: Wolfgang Denk <wd@denx.de>
35629
35630 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
35631 Author: Wolfgang Denk <wd@denx.de>
35632 Date: Wed Jul 2 23:53:23 2008 +0200
35633
35634 Cleanup: remove redundant deleting on *~ files
35635
35636 Signed-off-by: Wolfgang Denk <wd@denx.de>
35637
35638 commit c8a3b109f07f02342d097b30908965f7261d9f15
35639 Author: Wolfgang Denk <wd@denx.de>
35640 Date: Wed Jul 2 23:49:18 2008 +0200
35641
35642 Cleanup out-or-tree building for some boards (.depend)
35643
35644 Signed-off-by: Wolfgang Denk <wd@denx.de>
35645
35646 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
35647 Author: Wolfgang Denk <wd@denx.de>
35648 Date: Wed Jul 2 23:38:50 2008 +0200
35649
35650 Cleanup: fix out-of-tree building for some boards
35651
35652 Signed-off-by: Wolfgang Denk <wd@denx.de>
35653
35654 commit 461fa68d20861811487944d22291db5a13410e20
35655 Author: Wolfgang Denk <wd@denx.de>
35656 Date: Wed Jul 2 23:00:14 2008 +0200
35657
35658 Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
35659
35660 Signed-off-by: Wolfgang Denk <wd@denx.de>
35661
35662 commit 5981ebd32017e062b08aa6747cf591276f2db779
35663 Author: Detlev Zundel <dzu@denx.de>
35664 Date: Fri Jun 20 22:26:24 2008 +0200
35665
35666 fdt: Fix typo in variable name.
35667
35668 Signed-off-by: Detlev Zundel <dzu@denx.de>
35669
35670 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
35671 Author: Gary Jennejohn <garyj@denx.de>
35672 Date: Thu Jun 19 11:11:19 2008 +0200
35673
35674 Add logos for RRvision board
35675
35676 Signed-off-by: Gary Jennejohn <garyj@denx.de>
35677
35678 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
35679 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
35680 Date: Wed Jun 18 11:03:57 2008 +0200
35681
35682 mpc8260: add fdt_fixup_ethernet support
35683
35684 Add support for updating mac-address and local-mac-address in fdt for
35685 all MPC8260 targets.
35686
35687 Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
35688
35689 commit f6a69559d64498a04e1e0b087a9b920e5775f866
35690 Author: Steven A. Falco <sfalco@harris.com>
35691 Date: Thu Jun 12 13:24:42 2008 -0400
35692
35693 cmd_nvedit.c: clean up syntax highlighting
35694
35695 My text-editor (vim) has a bit of trouble syntax-highlighting the
35696 cmd_nvedit.c file, because it apparently does not parse C
35697 ifdef/else/endif. The following patch does not change the behavior of
35698 the code at all, but does allow the editor to properly
35699 syntax-highlight the file.
35700
35701 Signed-off-by: Steve Falco <sfalco@harris.com>
35702
35703 commit 75678c807a6272ecc5541eb32898c93887f08400
35704 Author: Steven A. Falco <sfalco@harris.com>
35705 Date: Thu Jun 12 13:22:12 2008 -0400
35706
35707 Make setenv() return status
35708
35709 Currently, the setenv function does not return an error code.
35710 This patch allows to test for errors.
35711
35712 Signed-off-by: Steve Falco <sfalco@harris.com>
35713
35714 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
35715 Author: Kumar Gala <galak@kernel.crashing.org>
35716 Date: Wed Jun 11 10:14:06 2008 -0500
35717
35718 PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
35719
35720 fls64, __ilog2_u64, ffs64 are variants that work on an u64,
35721 and fls is used to implement them.
35722
35723 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35724
35725 commit 83002a77cbdf383015ca384eff5fa31722d8e571
35726 Author: Magnus Lilja <lilja.magnus@gmail.com>
35727 Date: Mon Jun 9 22:58:48 2008 +0200
35728
35729 i.MX31: Cleanup comments in lowlevel_init.S.
35730
35731 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
35732
35733 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
35734 Author: Ben Warren <biggerbadderben@gmail.com>
35735 Date: Sun Jun 8 23:28:33 2008 -0700
35736
35737 Move conditional compilation of MPC8XXX SPI driver to Makefile
35738
35739 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35740
35741 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
35742 Author: Juergen Kilb <J.Kilb@gmx.de>
35743 Date: Sun Jun 8 17:59:53 2008 +0200
35744
35745 i.MX31: fixed CTRL-C detection
35746
35747 The Register URXD contains status information in bits [15..8].
35748 With status bit 15 set, CTRL-C was reported as 0x8003 instead
35749 of 0x03. Therefore CTRL-C was not detected.
35750 To solve this, bits [15..8] were masked out now.
35751
35752 Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
35753 Acked-by: Felix Radensky <felix@embedded-sol.com>
35754
35755 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
35756 Author: Stefan Roese <sr@denx.de>
35757 Date: Tue Jul 1 17:03:19 2008 +0200
35758
35759 ppc4xx: Fix 460EX/GT PCIe port initialization
35760
35761 This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
35762 configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
35763 this out.
35764
35765 Signed-off-by: Stefan Roese <sr@denx.de>
35766
35767 commit b571afde0295b007a45055ee49f8822c753a5651
35768 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35769 Date: Sat Jun 7 12:29:52 2008 +0200
35770
35771 add SHA256 support
35772
35773 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35774 Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
35775
35776 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
35777 Author: Marian Balakowicz <m8@semihalf.com>
35778 Date: Fri Jun 6 23:07:40 2008 +0200
35779
35780 Delay FIT format check on sector based devices
35781
35782 Global FIT image operations like format check cannot be performed on
35783 a first sector data, defer them to the point when whole FIT image was
35784 uploaded to a system RAM.
35785
35786 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35787 Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
35788 NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
35789
35790 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
35791 Author: Dave Liu <r63238@freescale.com>
35792 Date: Tue Jun 3 17:38:19 2008 +0800
35793
35794 sata: wait for device updating signature to host
35795
35796 The driver need wait for the device updating signature to host.
35797 If we don't wait for it, the driver can not detect the device(disk)
35798 when the system powers up.
35799
35800 Signed-off-by: Dave Liu <daveliu@freescale.com>
35801
35802 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
35803 Author: Stefan Roese <sr@denx.de>
35804 Date: Sat Jun 28 14:56:17 2008 +0200
35805
35806 ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
35807
35808 This patch implements a fix provided by AMCC so that the lockup upon
35809 simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
35810 anymore:
35811
35812 Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
35813 (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
35814 USB 2.0 host and SATA.
35815
35816 This errata is not officially available yet. I'll update the comment
35817 to add the errata number later.
35818
35819 Signed-off-by: Stefan Roese <sr@denx.de>
35820
35821 commit 8b616edb118e37d05f6401389eaee1c636b22828
35822 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
35823 Date: Mon Jun 2 16:42:19 2008 -0400
35824
35825 serial_pl010.c: add watchdog support
35826
35827 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
35828
35829 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
35830 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
35831 Date: Mon Jun 2 16:40:08 2008 -0400
35832
35833 jffs2_1pass.c: add watchdog support
35834
35835 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
35836
35837 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
35838 Author: Sascha Laue <sascha.laue@liebherr.com>
35839 Date: Fri May 30 09:48:14 2008 +0200
35840
35841 Configure DSP POST; add watchdog reset to diag command
35842
35843 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
35844
35845 commit f13526517859bf6b573e23ff47199e107d1009b5
35846 Author: Tor Krill <tor@excito.com>
35847 Date: Thu May 29 10:40:17 2008 +0200
35848
35849 Add sata sil3114 support
35850
35851 Signed-off-by: Tor Krill <tor@excito.com>
35852
35853 commit e093a247628228100f405b6d7f6b1bfc16141938
35854 Author: Wolfgang Denk <wd@denx.de>
35855 Date: Sat Jun 28 23:34:37 2008 +0200
35856
35857 Coding Style Cleanup
35858
35859 Signed-off-by: Wolfgang Denk <wd@denx.de>
35860
35861 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
35862 Author: Wolfgang Denk <wd@denx.de>
35863 Date: Sat Jun 28 23:16:01 2008 +0200
35864
35865 Update CHANGELOG
35866
35867 Signed-off-by: Wolfgang Denk <wd@denx.de>
35868
35869 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
35870 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35871 Date: Wed May 21 13:58:41 2008 -0400
35872
35873 ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
35874
35875 This patch adds support for the Lyrtech SFF-SDR board,
35876 based on the TI DaVinci architecture (ARM926EJS).
35877
35878 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35879 Signed-off-by: Philip Balister <philip@balister.org>
35880 Signed-off-by: Wolfgang Denk <wd@denx.de>
35881
35882 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
35883 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35884 Date: Thu May 22 11:09:59 2008 +0200
35885
35886 MMC: Consolidate MMC/SD command definitions
35887
35888 This moves the MMC and SD Card command definitions from
35889 include/asm/arch/mmc.h into include/mmc.h. These definitions are
35890 given by the MMC and SD Card standards, not by any particular
35891 architecture.
35892
35893 There's a lot more room for consolidation in the MMC drivers which
35894 I'm hoping to get done eventually, but this patch is a start.
35895
35896 Compile-tested for all avr32 boards as well as lpc2292sodimm and
35897 lubbock. This should cover all three mmc drivers in the tree.
35898
35899 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35900
35901 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
35902 Author: Kyungmin Park <kmpark@infradead.org>
35903 Date: Wed May 21 14:38:08 2008 +0900
35904
35905 Use better Ethernet timings for apollon board
35906
35907 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
35908
35909 commit 41c5eaa7253ed82bbae1eda5667755872c615164
35910 Author: Andy Fleming <afleming@freescale.com>
35911 Date: Mon Jun 16 13:58:56 2008 -0500
35912
35913 Resize device tree to allow space for board changes and the chosen node
35914
35915 Current code requires that a compiled device tree have space added to the end to
35916 leave room for extra nodes added by board code (and the chosen node). This
35917 requires that device tree creators anticipate how much space U-Boot will add to
35918 the tree, which is absurd. Ideally, the code would resize and/or relocate the
35919 tree when it needed more space, but this would require a systemic change to the
35920 fdt code, which is non-trivial. Instead, we resize the tree inside
35921 boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
35922 where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
35923
35924 Signed-off-by: Andy Fleming <afleming@freescale.com>
35925
35926 commit 7570a9941fc565922078679a72d246fe208d696d
35927 Author: Andy Fleming <afleming@freescale.com>
35928 Date: Mon Jun 16 13:58:55 2008 -0500
35929
35930 Fix an underflow bug in __lmb_alloc_base
35931
35932 __lmb_alloc_base can underflow if it fails to find free space. This was fixed
35933 in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc. This patch
35934 merely updates __lmb_alloc_base to resemble the current version in Linux.
35935
35936 Signed-off-by: Andy Fleming <afleming@freescale.com>
35937
35938 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
35939 Author: Andy Fleming <afleming@freescale.com>
35940 Date: Mon Jun 16 13:58:54 2008 -0500
35941
35942 Add lmb_free
35943
35944 lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
35945 lmb_reserve to temporarily reserve some memory.
35946
35947 Signed-off-by: Andy Fleming <afleming@freescale.com>
35948
35949 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
35950 Author: Andy Fleming <afleming@freescale.com>
35951 Date: Mon Jun 16 13:58:53 2008 -0500
35952
35953 Add ALIGN() macro
35954
35955 ALIGN() returns the smallest aligned value greater than the passed
35956 in address or size. Taken from Linux.
35957
35958 Signed-off-by: Andy Fleming <afleming@freescale.com>
35959
35960 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
35961 Author: Stefan Roese <sr@denx.de>
35962 Date: Tue Jun 24 17:15:22 2008 +0200
35963
35964 ppc4xx: Fix compilation problems with phys_size_t
35965
35966 This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
35967 board specific files where it has been missing.
35968
35969 Signed-off-by: Stefan Roese <sr@denx.de>
35970
35971 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
35972 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
35973 Date: Mon May 19 12:26:38 2008 +0200
35974
35975 Conditionally add -fno-stack-protector to CFLAGS
35976
35977 When compile-testing on powerpc, I get errors like this:
35978
35979 net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
35980
35981 This seems to be because -fstack-protector is on by default, so
35982 let's explicitly disable it on all architectures that support the
35983 option.
35984
35985 The Ubuntu toolchain is affected by this problem, and according to
35986 Mike Frysinger, Gentoo has been running with SSP enabled for years.
35987 More and more distros are turning SSP on by default, so this problem
35988 is likely to get worse in the future.
35989
35990 Also, powerpc just happens to be one of the arches I do
35991 compile-testing on. There may be other arches affected by this too.
35992
35993 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
35994
35995 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
35996 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35997 Date: Sun May 18 19:09:52 2008 +0200
35998
35999 pcmcia/ti_pci1410a: Move compile condition to the Makefile
36000
36001 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36002
36003 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
36004 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36005 Date: Sun May 18 19:09:51 2008 +0200
36006
36007 pxa_pcmcia: Move compile condition to the Makefile
36008
36009 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36010
36011 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
36012 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36013 Date: Sun May 18 19:09:50 2008 +0200
36014
36015 marabun_pcmcia: Move compile condition to the Makefile
36016
36017 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36018
36019 commit 6a19c46cae43c16c528eddefae3db97134f1915d
36020 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
36021 Date: Mon Jun 23 13:25:34 2008 +0200
36022
36023 fix non-working mvBL-M7
36024
36025 Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
36026
36027 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
36028 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36029
36030 commit 846f1574ddddeda2bc227655e687308695f41cdc
36031 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
36032 Date: Mon Jun 23 11:40:56 2008 +0200
36033
36034 fix system config overwrite @ MPC834x and MPC8313
36035
36036 During 83xx setup the "System I/O configuration register high" gets
36037 overwritten with user defined value if CFG_SICRH is defined.
36038
36039 Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
36040 must keep their reset value regardless of configuration.
36041
36042 On my board (using RGMII) those bits are set after reset - yet it's
36043 unclear where they come from.
36044
36045 The patch keeps both bits on MPC834x and MPC8313.
36046
36047 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
36048 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36049
36050 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
36051 Author: Kim Phillips <kim.phillips@freescale.com>
36052 Date: Tue Jun 17 17:45:27 2008 -0500
36053
36054 mpc83xx: move CPU_TYPE_ENTRY over to processor.h
36055
36056 to avoid this:
36057
36058 cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
36059 In file included from cpu.c:33:
36060 /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
36061
36062 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36063
36064 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
36065 Author: Stefan Roese <sr@denx.de>
36066 Date: Mon Jun 23 11:15:09 2008 +0200
36067
36068 ppc4xx: Fix problem in gpio_config()
36069
36070 As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
36071 left by one. So the additional shift is bogus.
36072
36073 Signed-off-by: Stefan Roese <sr@denx.de>
36074
36075 commit 40777812316fc252c941665c0f60c148fd79d50f
36076 Author: Detlev Zundel <dzu@denx.de>
36077 Date: Fri Jun 20 22:24:05 2008 +0200
36078
36079 fdt: Fix typo in variable name.
36080
36081 Signed-off-by: Detlev Zundel <dzu@denx.de>
36082
36083 commit 5f723a3b98c630bde33de74351f2121691fdef14
36084 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36085 Date: Fri Jun 20 10:41:05 2008 +0200
36086
36087 avr32: Enable SPI flash support on ATNGW100
36088
36089 The ATNGW100 has 8MB DataFlash on board. Give users access to it through
36090 the new SPI flash framework.
36091
36092 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36093
36094 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
36095 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36096 Date: Fri Jun 20 12:44:28 2008 +0200
36097
36098 avr32: Fix SPI portmux initialization
36099
36100 Use the new GPIO manipulation functions to set up the chip select lines,
36101 and make sure both busses use GPIO for chip select control.
36102
36103 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36104
36105 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
36106 Author: Peter Ma <pma@mediamatech.com>
36107 Date: Sun Jun 1 22:59:24 2008 -0700
36108
36109 avr32: Add GPIO manipulation functions
36110
36111 Adds GPIO manipulation functions for AVR32 AP7 platform.
36112
36113 Signed-off-by: Peter Ma <pma@mediamatech.com>
36114 [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
36115 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36116
36117 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
36118 Author: Wolfgang Grandegger <wg@grandegger.com>
36119 Date: Thu Jun 5 13:02:30 2008 +0200
36120
36121 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
36122
36123 This patch is based on the following patch sent a few minutes ago:
36124 "NAND FSL UPM: driver re-write using the hwcontrol callback"
36125 It is untested, of course. Anton, could you please give it a try.
36126
36127 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36128 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
36129
36130 commit 96026d42fa4e646d28318c0a1438aac4b2017909
36131 Author: Anatolij Gustschin <agust@denx.de>
36132 Date: Thu Jun 12 12:40:11 2008 +0200
36133
36134 Fix 4xx build issue
36135
36136 Building for 4xx doesn't work since commit 4dbdb768:
36137
36138 In file included from 4xx_pcie.c:28:
36139 include/asm/processor.h:971: error: expected ')' before 'ver'
36140 make[1]: *** [4xx_pcie.o] Error 1
36141
36142 This patch fixes the problem.
36143
36144 Signed-off-by: Anatolij Gustschin <agust@denx.de>
36145 Acked-by: Stefan Roese <sr@denx.de>
36146 Acked-by: Kumar Gala <galak@kernel.crashing.org>
36147
36148 commit a036b0443657fe0f4773786de9092251869f08ac
36149 Author: Kumar Gala <galak@kernel.crashing.org>
36150 Date: Thu Jun 19 01:45:50 2008 -0500
36151
36152 MPC8610HPCD: Report board id, board version and fpga version.
36153
36154 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36155
36156 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
36157 Author: Kumar Gala <galak@kernel.crashing.org>
36158 Date: Thu Jun 19 01:45:27 2008 -0500
36159
36160 MPC8641HPCN: Report board id, board version and fpga version.
36161
36162 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36163
36164 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
36165 Author: Stefan Roese <sr@denx.de>
36166 Date: Mon Jun 16 10:40:02 2008 +0200
36167
36168 cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
36169
36170 This patch simplifies flash_toggle() (AMD commandset), which is used to
36171 detect if a FLASH device is still busy with erase/program operations. On
36172 800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
36173 did not detect the busy state reliably, resulting in non erased sectors
36174 etc. This patch now simplifies this function by "just" comparing the
36175 complete data-word instead of ANDing it with the command-word (0x40)
36176 before the compatison. It is done the same way in the Linux implementation
36177 chip_ready() in cfi_cmdset_0002.c.
36178
36179 Signed-off-by: Stefan Roese <sr@denx.de>
36180
36181 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
36182 Author: Philip Balister <philip@balister.org>
36183 Date: Mon Jun 16 08:58:07 2008 -0400
36184
36185 NAND: Add missing declaration to non-redundant saveenv().
36186
36187 Signed-off-by: Scott Wood <scottwood@freescale.com>
36188
36189 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
36190 Author: Wolfgang Grandegger <wg@grandegger.com>
36191 Date: Mon Jun 2 15:09:55 2008 +0200
36192
36193 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
36194
36195 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36196 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
36197 Signed-off-by: Scott Wood <scottwood@freescale.com>
36198
36199 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
36200 Author: Stefan Roese <sr@denx.de>
36201 Date: Tue Jun 10 15:34:11 2008 +0200
36202
36203 ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
36204
36205 This patch disables the square wave output of the M41T62 RTC used on
36206 Canyonlands & Glacier. Here the explanation:
36207
36208 The serial real-time clock part used in the design is an
36209 STMicro M41T62. This part has a full-time 32KHz square wave
36210 output that is connected to the TmrClk input to the
36211 processor. The default state for this square wave output is
36212 enabled so the output runs continuously when the board is
36213 powered normally and also from the battery. The TmrClk input
36214 to the processor goes to ground when the power is removed
36215 from the board/processor, and therefore the running square
36216 wave output is driving ground which drains the battery quickly.
36217
36218 Signed-off-by: Stefan Roese <sr@denx.de>
36219
36220 commit a94f22f08f280905926219e568568964cb9eeb9d
36221 Author: Andy Fleming <afleming@freescale.com>
36222 Date: Wed Jun 11 18:10:20 2008 -0500
36223
36224 Fix build issue with string.h and linux/string.h
36225
36226 This commit:
36227 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
36228 Author: Wolfgang Denk <wd@denx.de>
36229 Date: Fri Jun 6 14:28:14 2008 +0200
36230
36231 tools/mkimage: fix compiler warnings on some systems.
36232
36233 Broke building on some systems, because the host's string.h was interfering
36234 with u-boot's linux/string.h. It doesn't look like we need the u-boot one if
36235 we're building for the host, so now we only include when building inside
36236 u-boot.
36237
36238 Signed-off-by: Andy Fleming <afleming@freescale.com>
36239
36240 commit 9973e3c614721bbf169882ffc3be266a6611cd60
36241 Author: Becky Bruce <becky.bruce@freescale.com>
36242 Date: Mon Jun 9 16:03:40 2008 -0500
36243
36244 Change initdram() return type to phys_size_t
36245
36246 This patch changes the return type of initdram() from long int to phys_size_t.
36247 This is required for a couple of reasons: long int limits the amount of dram
36248 to 2GB, and u-boot in general is moving over to phys_size_t to represent the
36249 size of physical memory. phys_size_t is defined as an unsigned long on almost
36250 all current platforms.
36251
36252 This patch *only* changes the return type of the initdram function (in
36253 include/common.h, as well as in each board's implementation of initdram). It
36254 does not actually modify the code inside the function on any of the platforms;
36255 platforms which wish to support more than 2GB of DRAM will need to modify
36256 their initdram() function code.
36257
36258 Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
36259 MPC8641HPCN.
36260
36261 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36262
36263 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
36264 Author: Becky Bruce <becky.bruce@freescale.com>
36265 Date: Mon Jun 9 20:37:18 2008 -0500
36266
36267 Change lmb to use phys_size_t/phys_addr_t
36268
36269 This updates the lmb code to use phys_size_t
36270 and phys_addr_t instead of unsigned long. Other code
36271 which interacts with this code, like getenv_bootm_size()
36272 is also updated.
36273
36274 Booted on MPC8641HPCN, build-tested ppc, arm, mips.
36275
36276 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36277
36278 commit 61b09fc2952dc636017df4e7970e3de132276ba1
36279 Author: Becky Bruce <becky.bruce@freescale.com>
36280 Date: Mon Jun 9 20:37:17 2008 -0500
36281
36282 Change print_size to take phys_size_t
36283
36284 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36285
36286 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
36287 Author: Becky Bruce <becky.bruce@freescale.com>
36288 Date: Mon Jun 9 20:37:16 2008 -0500
36289
36290 Change bd/gd memsize/ram_size to be phys_size_t.
36291
36292 Currently, both are defined as an unsigned long, but
36293 should be phys_size_t. This should result in no real change,
36294 since phys_size_t is currently an unsigned long for all the
36295 default configs. Also add print_lnum to cmd_bdinfo to deal
36296 with the potentially wider memsize.
36297
36298 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36299
36300 commit ba04f7010958e88a8910f2a123fee53fdc72e013
36301 Author: Kumar Gala <galak@kernel.crashing.org>
36302 Date: Tue Jun 10 16:16:02 2008 -0500
36303
36304 FSL LAW: Add new interface to use the last free LAW
36305
36306 LAWs have the concept of priority so its useful to be able to allocate
36307 the lowest (highest number) priority. We will end up using this with the
36308 new DDR code.
36309
36310 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36311
36312 commit 859a86a25c569d3665ff413d1d923394b8a961f3
36313 Author: Kumar Gala <galak@kernel.crashing.org>
36314 Date: Wed Jun 11 00:51:45 2008 -0500
36315
36316 85xx/86xx: Move to dynamic mgmt of LAWs
36317
36318 With the new LAW interface (set_next_law) we can move to letting the
36319 system allocate which LAWs are used for what purpose. This makes life
36320 a bit easier going forward with the new DDR code.
36321
36322 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36323 Signed-off-by: Andy Fleming <afleming@freescale.com>
36324 Acked-by: Jon Loeliger <jdl@freescale.com>
36325 Acked-by: Becky Bruce <becky.bruce@freescale.com>
36326
36327 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
36328 Author: Kumar Gala <galak@kernel.crashing.org>
36329 Date: Wed Jun 11 00:44:10 2008 -0500
36330
36331 FSL LAW: Keep track of LAW allocations
36332
36333 Make it so we keep track of which LAWs have allocated and provide
36334 a function (set_next_law) which can allocate a LAW for us if one is
36335 free.
36336
36337 In the future we will move to doing more "dynamic" LAW allocation
36338 since the majority of users dont really care about what LAW number
36339 they are at.
36340
36341 Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
36342
36343 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36344 Signed-off-by: Andy Fleming <afleming@freescale.com>
36345
36346 commit ddde74a159caa6e18b481fec01d40b885aebb566
36347 Author: Kumar Gala <galak@kernel.crashing.org>
36348 Date: Mon Jun 9 22:31:57 2008 -0500
36349
36350 85xx: remove dummy board_early_init_f
36351
36352 A number of board ports have empty version of board_early_init_f
36353 for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
36354
36355 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36356
36357 commit 81e56e9af0d43712db8efb843606a8d62eab454f
36358 Author: Kumar Gala <galak@kernel.crashing.org>
36359 Date: Mon Jun 9 18:55:38 2008 -0500
36360
36361 MPC8544DS: Update config.h
36362
36363 * Enable flash progress
36364 * remove CLEAR_LAW0 since we dont really use it
36365
36366 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36367
36368 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
36369 Author: Kumar Gala <galak@kernel.crashing.org>
36370 Date: Mon Jun 9 13:37:24 2008 -0500
36371
36372 85xx: Remove unused and unconfigured memory test code.
36373
36374 Remove unused and unconfigured DDR test code from FSL 85xx boards.
36375 Besides, other common code exists.
36376
36377 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36378
36379 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
36380 Author: Sergei Poselenov <sposelenov@emcraft.com>
36381 Date: Fri Jun 6 15:42:45 2008 +0200
36382
36383 Socrates: Added FPGA base address update in FDT.
36384
36385 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36386
36387 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
36388 Author: Sergei Poselenov <sposelenov@emcraft.com>
36389 Date: Fri Jun 6 15:42:44 2008 +0200
36390
36391 Socrates: NAND support added. Changed the U-Boot base address and
36392
36393 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36394
36395 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
36396 Author: Sergei Poselenov <sposelenov@emcraft.com>
36397 Date: Fri Jun 6 15:42:43 2008 +0200
36398
36399 NAND: Added support for 128-bit OOB, adapted
36400
36401 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36402
36403 commit 31ca0208612f2eb57690110d7c2815953650e47b
36404 Author: Sergei Poselenov <sposelenov@emcraft.com>
36405 Date: Fri Jun 6 15:42:42 2008 +0200
36406
36407 Socrates: added missed file with UPMA configuration data.
36408
36409 Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
36410
36411 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
36412 Author: Sergei Poselenov <sposelenov@emcraft.com>
36413 Date: Fri Jun 6 15:42:41 2008 +0200
36414
36415 Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
36416
36417 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36418
36419 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
36420 Author: Sergei Poselenov <sposelenov@emcraft.com>
36421 Date: Fri Jun 6 15:42:40 2008 +0200
36422
36423 Added the upmconfig() function for 85xx.
36424
36425 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36426 Signed-off-by: Andy Fleming <afleming@freescale.com>
36427
36428 commit d39e68514ff943930ee692cff3fde03532eb7fec
36429 Author: Sergei Poselenov <sposelenov@emcraft.com>
36430 Date: Fri Jun 6 15:42:39 2008 +0200
36431
36432 Socrates: config file cleanup.
36433
36434 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36435
36436 commit e8cc3f04b124f757af4528206e60d8eb715ae083
36437 Author: Wolfgang Grandegger <wg@grandegger.com>
36438 Date: Thu Jun 5 13:12:10 2008 +0200
36439
36440 TQM85xx: Change memory map to support Flash memory > 128 MiB
36441
36442 Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
36443 memory. The current memory map only supports up to 128 MiB Flash.
36444 This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
36445 set, up to 1 GiB flash is supported. To achieve this, the memory
36446 map has to be adjusted in great parts (for example the CCSRBAR is
36447 moved from 0xE0000000 to 0xA0000000).
36448
36449 If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
36450 memory map also has to be considered in the kernel (changed
36451 CCSRBAR address, changed PCI IO base address, ...). Please use
36452 an appropriate Flat Device Tree blob (tqm8548.dtb).
36453
36454 Signed-off-by: Martin Krause <martin.krause@tqs.de>
36455 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36456
36457 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
36458 Author: Wolfgang Grandegger <wg@grandegger.com>
36459 Date: Thu Jun 5 13:12:09 2008 +0200
36460
36461 TQM85xx: NAND support via local bus UPMB
36462
36463 This patch adds support for NAND FLASH on the TQM8548. It is disabled by
36464 default and can be enabled for the TQM8548 modules. It is now based on
36465 the re-written FSL NAND UPM driver. A patch has been posted earlier today
36466 with the subject:
36467
36468 "NAND FSL UPM: driver re-write using the hwcontrol callback"
36469
36470 Note that the R/B pin is not supported by that module requiring to use
36471 the specified maximum delay time.
36472
36473 Note: With NAND support enabled the size of the U-Boot image exceeds
36474 256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
36475 doubling the image size :-(.
36476
36477 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
36478 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36479
36480 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
36481 Author: Wolfgang Grandegger <wg@grandegger.com>
36482 Date: Thu Jun 5 13:12:08 2008 +0200
36483
36484 TQM8548: PCI express support
36485
36486 This patch adds support for PCI express cards. The board support
36487 now uses common FSL PCI init code, for both, PCI and PCIe on all
36488 TQM85xx modules.
36489
36490 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
36491 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36492
36493 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
36494 Author: Wolfgang Grandegger <wg@grandegger.com>
36495 Date: Thu Jun 5 13:12:07 2008 +0200
36496
36497 TQM8548: Basic support for the TQM8548 modules
36498
36499 This patch adds basic support for the TQM8548 module from TQ-Components
36500 (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
36501 eTSEC 3 and 4
36502
36503 Furthermore Flash buffer write has been enabled to speed up output to
36504 the Flash by approx. a factor of 10.
36505
36506 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
36507 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36508
36509 commit 25991353204c78b094c3c1fec90182dcd607ab8f
36510 Author: Wolfgang Grandegger <wg@grandegger.com>
36511 Date: Thu Jun 5 13:12:06 2008 +0200
36512
36513 TQM85xx: Support for Flat Device Tree
36514
36515 This patch adds support for Linux kernels using the Flat Device Tree.
36516 It also re-defines the default environment settings for booting Linux
36517 with the FDT blob.
36518
36519 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36520
36521 commit d9ee843d54c54776e1fdb86336ce554906a87331
36522 Author: Wolfgang Grandegger <wg@grandegger.com>
36523 Date: Thu Jun 5 13:12:05 2008 +0200
36524
36525 TQM85xx: Support for Intel 82527 compatible CAN controller
36526
36527 This patch adds initialization of the UPMC RAM to support up to two
36528 Intel 82527 compatible CAN controller on the TQM85xx modules.
36529
36530 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
36531 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36532
36533 commit 518d5cfe72916323c746af1647764459914f555f
36534 Author: Wolfgang Grandegger <wg@grandegger.com>
36535 Date: Thu Jun 5 13:12:04 2008 +0200
36536
36537 TQM85xx: Bugfix in the SDRAM initialisation
36538
36539 The CS0_BNDS register is now set according to the detected
36540 memory size.
36541
36542 Signed-off-by Martin Krause <martin.krause@tqs.de>
36543
36544 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
36545 Author: Wolfgang Grandegger <wg@grandegger.com>
36546 Date: Thu Jun 5 13:12:03 2008 +0200
36547
36548 TQM85xx: Fix chip select configuration for second FLASH bank
36549
36550 This patch fixes the re-calculation of the automatic chip select
36551 configuration for boards with two populated FLASH banks.
36552
36553 Signed-off-by: Martin Krause <martin.krause@tqs.de>
36554
36555 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
36556 Author: Wolfgang Grandegger <wg@grandegger.com>
36557 Date: Thu Jun 5 13:12:02 2008 +0200
36558
36559 TQM85xx: Support for Spansion 'N' type flashes added
36560
36561 The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
36562 than the formerly used 'M' types (S29GLxxxM series), so the flash layout
36563 needs to be changed -> new start address of the environment. The macro
36564 definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
36565 defined for boards with 'N' type flashes.
36566
36567 Signed-off-by: Martin Krause <martin.krause@tqs.de>
36568 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36569
36570 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
36571 Author: Wolfgang Grandegger <wg@grandegger.com>
36572 Date: Thu Jun 5 13:12:01 2008 +0200
36573
36574 TQM85xx: Fix CPM port pin configuration
36575
36576 Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
36577 board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
36578 as serial interface anyway. Worse, on some board variants configuring the
36579 pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
36580
36581 Signed-off-by: Martin Krause <martin.krause@tqs.de>
36582
36583 commit b99ba1679e8cd51b023e67098c89e606e47137d2
36584 Author: Wolfgang Grandegger <wg@grandegger.com>
36585 Date: Thu Jun 5 13:12:00 2008 +0200
36586
36587 TQM85xx: Various coding style fixes
36588
36589 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36590
36591 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
36592 Author: Gerald Van Baren <vanbaren@cideas.com>
36593 Date: Tue Jun 10 22:15:58 2008 -0400
36594
36595 libfdt: Move the working_fdt pointer to cmd_fdt.c
36596
36597 The working_fdt pointer was declared in common/fdt_support.c but was
36598 not used there. Move it to common/cmd_fdt.c where it is used (it is
36599 also used in lib_ppc/bootm.c).
36600
36601 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
36602
36603 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
36604 Author: Kim Phillips <kim.phillips@freescale.com>
36605 Date: Tue Jun 10 11:06:17 2008 -0500
36606
36607 fdt: unshadow global working fdt variable
36608
36609 differentiate with local variables of the same name by renaming the
36610 global 'fdt' variable 'working_fdt'.
36611
36612 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36613
36614 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
36615 Author: Andy Fleming <afleming@freescale.com>
36616 Date: Tue Jun 10 18:49:34 2008 -0500
36617
36618 socrates: Fix PCI clk fix patch
36619
36620 The submitted patch seems to have been more up-to-date, but an older patch was
36621 already in the repository. This patch encompasses the differences
36622
36623 Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
36624
36625 Signed-off-by: Andy Fleming <afleming@freescale.com>
36626
36627 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
36628 Author: Wolfgang Grandegger <wg@grandegger.com>
36629 Date: Thu Jun 5 13:02:29 2008 +0200
36630
36631 NAND FSL UPM: driver re-write using the hwcontrol callback
36632
36633 This is a re-write of the NAND FSL UPM driver using the more universal
36634 hwcontrol callback (instead of the cmdfunc callback). Here is a brief
36635 list of furher modifications:
36636
36637 - For the time being, the UPM setup writing the UPM array has been
36638 removed from the driver and must now be done by the board specific
36639 code.
36640
36641 - The bus width definition in "struct fsl_upm_nand" is now in bits to
36642 comply with the corresponding Linux driver and 8, 16 and 32 bit
36643 accesses are supported.
36644
36645 - chip->dev_read is only set if fun->dev_ready != NULL, which is
36646 required for boards not connecting the R/B pin.
36647
36648 - A few issue have been fixed with MxMR bit manipulation like in the
36649 corresponding Linux driver.
36650
36651 Note: I think the "io_addr" field of "struct fsl_upm" could be removed
36652 as well, because the address is already determined by
36653 "nand->IO_ADDR_[RW]", but I'm not 100% sure.
36654
36655 This patch has been tested on a TQM8548 modules with the NAND chip
36656 Micron MT29F8G08FABWP.
36657
36658 This patch is based on the following patches posted to this list a few
36659 minutes ago:
36660
36661 PPC: add accessor macros to clear and set bits in one shot
36662 83xx/85xx/86xx: add more MxMR local bus definitions
36663
36664 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36665 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
36666
36667 commit 6beecfbb542992eede5831240cd58678274683a9
36668 Author: Wolfgang Grandegger <wg@grandegger.com>
36669 Date: Thu Jun 5 13:11:59 2008 +0200
36670
36671 MPC85xx: Beautify boot output of L2 cache configuration
36672
36673 The boot output is now aligned poperly with other boot output
36674 lines, e.g.:
36675
36676 FLASH: 128 MB
36677 L2: 512 KB enabled
36678
36679 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36680
36681 commit 398415114f0a705163a14543e9fef03f734b1ffa
36682 Author: Wolfgang Grandegger <wg@grandegger.com>
36683 Date: Wed Jun 4 12:45:22 2008 +0200
36684
36685 PPC: add accessor macros to clear and set bits in one shot
36686
36687 PPC: add accessor macros to clear and set bits in one shot
36688
36689 This patch adds macros from linux/include/asm-powerpc/io.h to clear and
36690 set bits in one shot using the in_be32, out_be32, etc. accessor functions.
36691 They are very handy to manipulate bits it I/O registers.
36692
36693 This patch is required for my forthcoming FSL NAND UPM driver re-write and
36694 the support for the TQM8548 module.
36695
36696 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36697
36698 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
36699 Author: Wolfgang Grandegger <wg@grandegger.com>
36700 Date: Wed Jun 4 13:52:17 2008 +0200
36701
36702 TQM: move TQM boards to board/tqc
36703
36704 Move all TQM board directories to the vendor specific directory "tqc"
36705 for modules from TQ-Components GmbH (http://www.tqc.de).
36706
36707 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36708
36709 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
36710 Author: Wolfgang Grandegger <wg@grandegger.com>
36711 Date: Mon Jun 2 12:09:30 2008 +0200
36712
36713 83xx/85xx/86xx: add more MxMR local bus definitions
36714
36715 83xx/85xx/86xx: add more MxMR local bus definitions
36716
36717 This patch adds more macro definitions for the UPM Machine Mode Registers
36718 They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
36719 common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
36720 required for my forthcoming FSL NAND UPM driver re-write and the support
36721 for the TQM8548 module.
36722
36723 This patch is based on the following two patches from Anton Vorontsov:
36724
36725 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
36726 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
36727
36728 I leave coding style violation fixes, code beautification and name
36729 corrections to somebody else ;-(.
36730
36731 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36732
36733 commit c8c5fc266e4499e283c293ccb972863156aa4134
36734 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
36735 Date: Thu May 29 18:14:56 2008 +0400
36736
36737 83xx/85xx: further localbus cleanups
36738
36739 Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
36740 from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
36741
36742 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
36743
36744 commit 42dbd667c88d496882d53e22656e89b654205492
36745 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
36746 Date: Wed May 28 18:20:15 2008 +0400
36747
36748 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
36749
36750 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
36751 use it on MPC85xx and MPC86xx processors.
36752
36753 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
36754
36755 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
36756 Author: Kumar Gala <galak@kernel.crashing.org>
36757 Date: Thu May 29 11:22:06 2008 -0500
36758
36759 85xx: Add setting of cache props in the device tree.
36760
36761 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36762
36763 commit 4dbdb7681e243431530df0725627192a0c4aefda
36764 Author: Kumar Gala <galak@kernel.crashing.org>
36765 Date: Tue Jun 10 16:53:46 2008 -0500
36766
36767 85xx: expose cpu identification
36768
36769 The current cpu identification code is used just to return the name
36770 of the processor at boot. There are some other locations that the name
36771 is useful (device tree setup). Expose the functionality to other bits
36772 of code.
36773
36774 Also, drop the 'E' suffix and add it on by looking at the SVR version
36775 when we print this out. This is mainly to allow the most flexible use
36776 of the name. The device tree code tends to not care about the 'E' suffix.
36777
36778 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36779
36780 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
36781 Author: Kim Phillips <kim.phillips@freescale.com>
36782 Date: Tue Jun 10 13:25:24 2008 -0500
36783
36784 mpc83xx: MVBLM7: minor build fixups
36785
36786 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36787
36788 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
36789 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
36790 Date: Tue Jun 10 09:14:05 2008 +0200
36791
36792 add MPC8343 based board mvBlueLYNX-M7 (board+make files)
36793
36794 Add MPC8343 based board mvBlueLYNX-M7.
36795 It's a single board stereo camera system.
36796 Please read doc/README.mvblm7 for details.
36797
36798 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
36799 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36800
36801 commit c005b93925ba49f07da2aa748527996d927e172f
36802 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
36803 Date: Tue Jun 10 09:13:16 2008 +0200
36804
36805 add MPC8343 based board mvBlueLYNX-M7 (doc+config)
36806
36807 Add MPC8343 based board mvBlueLYNX-M7.
36808 It's a single board stereo camera system.
36809 Please read doc/README.mvblm7 for details.
36810
36811 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
36812 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36813
36814 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
36815 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
36816 Date: Thu May 29 18:14:56 2008 +0400
36817
36818 83xx/85xx: further localbus cleanups
36819
36820 move the BRx_* and ORx_* left behind in mpc85xx.h
36821
36822 The same is needed for mpc8xx.h and mpc8260.h (defines are almost
36823 the same, just few differences which needs some attention though).
36824
36825 But the bad news for mpc8xx and mpc8260 is that there are a lot of users
36826 of these defines. So this cleanup I'll leave for the "better times".
36827
36828 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
36829 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36830
36831 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
36832 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
36833 Date: Wed May 28 18:20:15 2008 +0400
36834
36835 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
36836
36837 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
36838 use it on MPC85xx and MPC86xx processors.
36839
36840 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
36841 Acked-by: Andy Fleming <afleming@freescale.com>
36842 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36843
36844 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
36845 Author: Tor Krill <tor@excito.com>
36846 Date: Mon Jun 2 15:09:30 2008 +0200
36847
36848 Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
36849
36850 Signed-off-by: Tor Krill <tor@excito.com>
36851 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36852
36853 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
36854 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36855 Date: Mon Jun 9 23:37:44 2008 +0900
36856
36857 net: Conditional COBJS inclusion of network drivers
36858
36859 Replace COBJS-y with appropriate driver config names.
36860
36861 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36862 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36863
36864 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
36865 Author: Gerald Van Baren <vanbaren@cideas.com>
36866 Date: Mon Jun 9 21:02:17 2008 -0400
36867
36868 Use strncmp() for the fdt command
36869
36870 Cleaner than doing multiple conditionals on characters.
36871
36872 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
36873
36874 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
36875 Author: Gerald Van Baren <vanbaren@cideas.com>
36876 Date: Sat Jun 7 12:25:05 2008 -0400
36877
36878 The fdt boardsetup command criteria was not unique
36879
36880 It was checking just for "b", which is not unique with respect to the
36881 "boot" command. Change to check for "boa"[rdsetup].
36882
36883 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
36884
36885 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
36886 Author: David Gibson <david@gibson.dropbear.id.au>
36887 Date: Tue May 20 17:19:11 2008 +1000
36888
36889 libfdt: Several cleanups to parameter checking
36890
36891 This patch makes a couple of small cleanups to parameter checking of
36892 libfdt functions.
36893
36894 - In several functions which take a node offset, we use an
36895 idiom involving fdt_next_tag() first to check that we have indeed been
36896 given a node offset. This patch adds a helper function
36897 _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
36898
36899 - In fdt_rw.c in several places we have the expanded version
36900 of the RW_CHECK_HEADER() macro for no particular reason. This patch
36901 replaces those instances with an invocation of the macro; that's what
36902 it's for.
36903
36904 - In fdt_sw.c we rename the check_header_sw() function to
36905 sw_check_header() to match the analgous function in fdt_rw.c, and we
36906 provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
36907 functions in fdt_rw.c
36908
36909 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
36910
36911 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
36912 Author: Gerald Van Baren <vanbaren@cideas.com>
36913 Date: Tue Jun 3 20:34:45 2008 -0400
36914
36915 Remove the deprecated CONFIG_OF_FLAT_TREE
36916
36917 Use CONFIG_OF_LIBFDT instead to support flattened device trees. It is
36918 cleaner, has better functionality, and is better supported.
36919
36920 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
36921
36922 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
36923 Author: Gerald Van Baren <vanbaren@cideas.com>
36924 Date: Tue Jun 3 20:26:29 2008 -0400
36925
36926 Change the stxxst to CONFIG_OF_LIBFDT
36927
36928 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
36929 to CONFIG_OF_LIBFDT.
36930
36931 WARNING: It appears that this board lost its ability to boot via a
36932 flattened device tree prior to this changeset.
36933
36934 WARNING: This conversion was untested because I do not have a board to
36935 test it on.
36936
36937 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
36938
36939 commit 589c04271d129729a8b01391453851ab9cc4069c
36940 Author: Gerald Van Baren <vanbaren@cideas.com>
36941 Date: Tue Jun 3 20:24:58 2008 -0400
36942
36943 Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
36944
36945 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
36946 to CONFIG_OF_LIBFDT.
36947
36948 WARNING: This conversion is untested because I do not have a board to
36949 test it on.
36950
36951 NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
36952 /aliases/ethernet1 property for the ethernet to work.
36953
36954 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
36955
36956 commit ee1e35bede91debc8bff9b02f75574486033b652
36957 Author: Kumar Gala <galak@kernel.crashing.org>
36958 Date: Thu May 29 01:21:24 2008 -0500
36959
36960 85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
36961
36962 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36963
36964 commit 3b9519fc50802436e417c839e69df7b2016cade5
36965 Author: Becky Bruce <becky.bruce@freescale.com>
36966 Date: Wed May 14 13:10:04 2008 -0500
36967
36968 MPC85xx: Change traps.c to not reference non-addressable memory
36969
36970 Currently, END_OF_RAM is used by the trap code to determine if
36971 we should attempt to access the stack pointer or not. However,
36972 on systems with a lot of RAM, only a subset of the RAM is
36973 guaranteed to be mapped in and accessible. Change END_OF_RAM
36974 to use get_effective_memsize() instead of using the raw ram
36975 size out of the bd.
36976
36977 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36978
36979 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
36980 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
36981 Date: Mon Jun 9 13:39:57 2008 +0900
36982
36983 sh: Renesas Solutions SH7763RDP board support
36984
36985 SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
36986 In this patch, support SCIF, NOR Flash, and Ethernet.
36987
36988 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
36989 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
36990
36991 commit 60179098a95eaa972007d7ec58e4c1588029720f
36992 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
36993 Date: Fri Jun 6 16:24:13 2008 +0900
36994
36995 sh: Add support Renesas SH7763
36996
36997 Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
36998 This patch supprts CPU register's header file.
36999
37000 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37001 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37002
37003 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
37004 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37005 Date: Fri Jun 6 16:16:08 2008 +0900
37006
37007 sh: SH7763 SCIF support
37008
37009 SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
37010 but only SCIF2 is different. This patch work all SCIF channel.
37011
37012 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37013 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37014
37015 commit 79b51ff8205f0354d5300570614c1d2db499679c
37016 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37017 Date: Sat Jun 7 20:51:59 2008 +0900
37018
37019 [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
37020
37021 Also get rid of some #ifdefs in *.c files.
37022
37023 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37024
37025 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
37026 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37027 Date: Sat Jun 7 20:51:56 2008 +0900
37028
37029 [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
37030
37031 CONFIG_SOC_AU1X00
37032
37033 Common Alchemy Au1x00 stuff. All Alchemy processor based machines
37034 need to have this config as a system type specifier.
37035
37036 CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
37037 CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
37038
37039 Machine type specifiers. Each port should have one of aboves.
37040
37041 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37042
37043 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
37044 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
37045 Date: Fri May 30 16:05:28 2008 -0400
37046
37047 env_nand.c: Added bad block management for environment variables
37048
37049 Modified to check for bad blocks and to skipping over them when
37050 CFG_ENV_RANGE has been defined.
37051 CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
37052 flash block size.
37053
37054 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
37055 Signed-off-by: Scott Wood <scottwood@freescale.com>
37056
37057 commit 279726bd00558e80263d44581c44167625b7fb9a
37058 Author: Becky Bruce <becky.bruce@freescale.com>
37059 Date: Wed May 14 13:09:58 2008 -0500
37060
37061 MPC86xx: Change traps.c to not reference non-addressable memory
37062
37063 Currently, END_OF_RAM is used by the trap code to determine if
37064 we should attempt to access the stack pointer or not. However,
37065 on systems with a lot of RAM, only a subset of the RAM is
37066 guaranteed to be mapped in and accessible. Change END_OF_RAM
37067 to use get_effective_memsize() instead of using the raw ram
37068 size out of the bd to prevent us from trying to access
37069 non-mapped memory.
37070
37071 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37072
37073 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
37074 Author: Wolfgang Denk <wd@denx.de>
37075 Date: Fri Jun 6 14:28:14 2008 +0200
37076
37077 tools/mkimage: fix compiler warnings on some systems.
37078
37079 Signed-off-by: Wolfgang Denk <wd@denx.de>
37080
37081 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
37082 Author: Stefan Roese <sr@denx.de>
37083 Date: Fri Jun 6 16:10:41 2008 +0200
37084
37085 ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
37086
37087 We use upper case letters for the AMCC processor defines (like
37088 CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
37089 not CONFIG_440SPe. This patch fixes the last misspelled config options.
37090
37091 Signed-off-by: Stefan Roese <sr@denx.de>
37092
37093 commit 72675dc6c06a48846d180106161d49dd714383cc
37094 Author: Stefan Roese <sr@denx.de>
37095 Date: Fri Jun 6 15:55:21 2008 +0200
37096
37097 ppc4xx: Unify AMCC's board config files (part 3/3)
37098
37099 This patch series unifies the AMCC eval board ports by introducing
37100 a common include header for all AMCC eval boards:
37101
37102 include/configs/amcc-common.h
37103
37104 This header now includes all common configuration options/defines which
37105 are removed from the board specific headers.
37106
37107 The reason for this is ease of maintenance and unified look and feel
37108 of all AMCC boards.
37109
37110 Signed-off-by: Stefan Roese <sr@denx.de>
37111
37112 commit 490f204096d6e2c9940f67816f154a8125bab116
37113 Author: Stefan Roese <sr@denx.de>
37114 Date: Fri Jun 6 15:55:03 2008 +0200
37115
37116 ppc4xx: Unify AMCC's board config files (part 2/3)
37117
37118 This patch series unifies the AMCC eval board ports by introducing
37119 a common include header for all AMCC eval boards:
37120
37121 include/configs/amcc-common.h
37122
37123 This header now includes all common configuration options/defines which
37124 are removed from the board specific headers.
37125
37126 The reason for this is ease of maintenance and unified look and feel
37127 of all AMCC boards.
37128
37129 Signed-off-by: Stefan Roese <sr@denx.de>
37130
37131 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
37132 Author: Stefan Roese <sr@denx.de>
37133 Date: Fri Jun 6 15:54:31 2008 +0200
37134
37135 ppc4xx: Unify AMCC's board config files (part 1/3)
37136
37137 This patch series unifies the AMCC eval board ports by introducing
37138 a common include header for all AMCC eval boards:
37139
37140 include/configs/amcc-common.h
37141
37142 This header now includes all common configuration options/defines which
37143 are removed from the board specific headers.
37144
37145 The reason for this is ease of maintenance and unified look and feel
37146 of all AMCC boards.
37147
37148 Signed-off-by: Stefan Roese <sr@denx.de>
37149
37150 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
37151 Author: Remy Bohmer <linux@bohmer.net>
37152 Date: Thu Jun 5 13:03:36 2008 +0200
37153
37154 DM9000 fix status check fail 0x6d error for trizeps board
37155
37156 According to the Application Notes of the DM9000, only the 2 bits 0:1 of
37157 the status byte need to be checked to identify a valid packet in the fifo
37158
37159 But, The several different Application Notes do not all speak the same
37160 language on these bits. They do not disagree, but only 1 Application Note
37161 noted explicitly that only these 2 bits need to be checked.
37162 Even the datasheets do not mention anything about these 2 bits.
37163
37164 Because the old code, and the kernel check the whole byte, I left this piece
37165 untouched.
37166
37167 However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
37168 it should work.
37169
37170 Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
37171 in the fifo) is much shorter now, compared to the older U-boot driver code,
37172 so that we can maybe run into a hardware condition now that was never seen
37173 before, or maybe was seen very unfrequently.
37174
37175 Additionaly added a cleanup of a stack variable.
37176
37177 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37178 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37179
37180 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
37181 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37182 Date: Thu Jun 5 22:29:00 2008 +0900
37183
37184 [MIPS] Update <asm/addrspace.h> header
37185
37186 - Fix traditional KSEG names
37187 - Replace PHYSADDR with CPHYSADDR
37188
37189 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37190
37191 commit f0d5a6f060d00358b85c62a921a423ea8df71184
37192 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37193 Date: Thu Jun 5 22:29:00 2008 +0900
37194
37195 [MIPS] mips_config.mk: Misc fixes
37196
37197 - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
37198 - Modify comments
37199
37200 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37201
37202 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
37203 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37204 Date: Thu Jun 5 22:29:00 2008 +0900
37205
37206 [MIPS] Kill unused <version.h> inclusions
37207
37208 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37209
37210 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
37211 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37212 Date: Thu Jun 5 22:29:00 2008 +0900
37213
37214 [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
37215
37216 MIPS port has two problems in timer routines. One is now we assume CFG_HZ
37217 equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
37218 in the U-Boot system.
37219
37220 The other is we don't have a proper time management counter like timestamp
37221 other ARCHs have. We need the 32-bit millisecond clock counter.
37222
37223 This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
37224 32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
37225 of calculated CP0 counter cycles in a CFG_HZ.
37226
37227 STRATEGY:
37228
37229 * Fix improper CFG_HZ value to have 1000
37230
37231 * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
37232
37233 * timer_init: initialize timestamp and set up the first timer expiration.
37234 Note that we don't need to initialize CP0 count/compare registers here
37235 as they have been already zeroed out on the system reset. Leave them as
37236 they are.
37237
37238 * get_timer: calculate how many timestamps have been passed, then return
37239 base-relative timestamp. Make sure we can easily count missed timestamps
37240 regardless of CP0 count/compare value.
37241
37242 * get_ticks: return the current timestamp, that is get_timer(0).
37243
37244 Most parts are from good old Linux v2.6.16 kernel.
37245
37246 v2:
37247 - Remove FIXME comments as they turned out to be trivial.
37248 - Use CP0 compare register as a global variable for expirelo.
37249 - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
37250 instead.
37251
37252 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37253
37254 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
37255 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37256 Date: Thu Jun 5 22:29:00 2008 +0900
37257
37258 [MIPS] lib_mips/time.c: Fix udelay
37259
37260 What we have to do is just to wait for given micro-seconds. No need to
37261 take into account current time, get_timer and CFG_HZ.
37262
37263 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37264
37265 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
37266 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37267 Date: Thu Jun 5 22:28:59 2008 +0900
37268
37269 [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
37270
37271 We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
37272 This patch replaces mips_{compare,count}_set and mips_count_get with
37273 existing macros.
37274
37275 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37276
37277 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
37278 Author: Remy Bohmer <linux@bohmer.net>
37279 Date: Tue Jun 3 15:48:17 2008 +0200
37280
37281 Get rid of annoying/superfluous bad-checksum warning message
37282
37283 U-boot can complain a lot about 'checksum bad' when it is attached to the network.
37284 It is annoying for ordinary users who start to doubt the network connection
37285 in general when they see messages like this.
37286
37287 This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
37288 than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
37289 now before checking the checksum.
37290
37291 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37292 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37293
37294 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
37295 Author: Remy Bohmer <linux@bohmer.net>
37296 Date: Wed Jun 4 10:47:25 2008 +0200
37297
37298 Fix order for reading rx-status registers in 32bit mode of DM9000
37299
37300 A last minute cleanup before submitting the DM9000A patch series yesterday introduced
37301 a bug in reading the rx-status registers in 32bit mode only.
37302 This patch repairs this.
37303
37304 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37305 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37306
37307 commit 98291e2e689096420465074cce926b226d2e71b4
37308 Author: Remy Bohmer <linux@bohmer.net>
37309 Date: Tue Jun 3 15:26:26 2008 +0200
37310
37311 DM9000: Some minor code cleanups
37312
37313 Some lines of the U-boot DM9000x driver are longer than 80 characters, or
37314 need some other minor cleanup.
37315
37316 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37317 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37318
37319 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
37320 Author: Remy Bohmer <linux@bohmer.net>
37321 Date: Tue Jun 3 15:26:25 2008 +0200
37322
37323 DM9000: Make driver work properly for DM9000A
37324
37325 The DM9000A network controller does not work with the U-boot DM9000x driver.
37326 Analysis showed that many incoming packets are lost.
37327
37328 The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
37329 check for a valid rx packet be done on the interrupt status register, not
37330 directly by performing the dummy read and the rx status check as is currently
37331 the case in the u-boot driver.
37332
37333 When the recommended poll is done as suggested the driver starts working
37334 correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
37335 can be more than 1 package in the fifo at the same time.
37336
37337 The driver must perform the rx-status check in a loop and read and handle all
37338 packages until there is no more left _after_ the interrupt RX flag is set.
37339
37340 This change has been tested with DM9000A, DM9000E, DM9000EP.
37341
37342 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37343 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37344
37345 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
37346 Author: Remy Bohmer <linux@bohmer.net>
37347 Date: Tue Jun 3 15:26:24 2008 +0200
37348
37349 DM9000: Improve eth_reset() routine
37350
37351 According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
37352 reset procedure must be done twice to properly reset the DM9000 by means of software.
37353 This errata is not needed anymore for the DM9000A, but it does not bother it.
37354
37355 This change has been tested with DM9000A, DM9000E, DM9000EP.
37356
37357 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37358 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37359
37360 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
37361 Author: Remy Bohmer <linux@bohmer.net>
37362 Date: Tue Jun 3 15:26:23 2008 +0200
37363
37364 DM9000: improve eth_send() routine
37365
37366 The eth_send routine of the U-boot DM9000x driver does not match the
37367 DM9000 or DM9000A application notes/programming guides.
37368
37369 This change improves the stability of the DM9000A network controller.
37370
37371 This change has been tested with DM9000A, DM9000E, DM9000EP.
37372
37373 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37374 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37375
37376 commit 134e266253c02a7832560da59d394989c4f64453
37377 Author: Remy Bohmer <linux@bohmer.net>
37378 Date: Tue Jun 3 15:26:22 2008 +0200
37379
37380 DM9000: repair debug logging
37381
37382 It seems that the debugging code of the DM9000x driver in U-boot has not been
37383 compiled for a long time, because it cannot compile...
37384
37385 Also rearranged some loglines to get more useful info while debugging.
37386
37387 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37388 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37389
37390 commit a101361bfe23c120321e45d114c0603b8e0763e9
37391 Author: Remy Bohmer <linux@bohmer.net>
37392 Date: Tue Jun 3 15:26:21 2008 +0200
37393
37394 DM9000: Add data bus-width auto detection.
37395
37396 The U-boot DM9000x driver contains a compile time bus-width definition for
37397 the databus connected to the network controller.
37398
37399 This compile check makes the code unclear, inflexible and is unneccessary.
37400 It can be asked to the network controller what its bus-width is by reading bits
37401 6 and 7 of the interrupt status register.
37402
37403 The linux kernel already uses a runtime mechanism to determine this bus-width,
37404 so the implementation below looks somewhat like that implementation.
37405
37406 This change has been tested with DM9000A, DM9000E, DM9000EP.
37407
37408 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37409 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37410
37411 commit 63a0afa0c32e5f4ea98a9439542870072437404d
37412 Author: Stefan Roese <sr@denx.de>
37413 Date: Wed Jun 4 19:19:20 2008 +0200
37414
37415 ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
37416
37417 This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
37418 introduced by the commit:
37419
37420 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
37421
37422 With this patch SDRAM will get initialized again and booting from NAND
37423 is working again.
37424
37425 Signed-off-by: Stefan Roese <sr@denx.de>
37426 Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
37427
37428 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
37429 Author: Wolfgang Denk <wd@denx.de>
37430 Date: Tue May 27 14:19:30 2008 +0200
37431
37432 Socrates: Fix PCI bus frequency report
37433
37434 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
37435
37436 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
37437 Author: Tor Krill <tor@excito.com>
37438 Date: Thu May 29 11:10:30 2008 +0200
37439
37440 Fix incorrect switch for IF_TYPE in part.c
37441
37442 Use correct field in block_dev_desc_t when writing interface type in
37443 dev_print. Error introduced in 574b3195.
37444
37445 Also added fix from Martin Krause
37446
37447 Signed-off-by: Tor Krill <tor@excito.com>
37448
37449 commit b64b8a0bd310935b70af69ac970952f2b364ae56
37450 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
37451 Date: Tue May 27 10:25:39 2008 +0200
37452
37453 Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
37454
37455 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
37456
37457 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
37458 Author: Peter Tyser <ptyser@xes-inc.com>
37459 Date: Thu May 22 18:56:52 2008 -0500
37460
37461 Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
37462
37463 Removed unneeded command line history initialization. Also, the original
37464 code would access the 'initted' variable before relocation to SDRAM
37465 which resulted in erratic behavior since the bss is not initialized when
37466 executing from flash.
37467
37468 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
37469
37470 commit 22f371b63038a4ecab04068877c1089e51a01ba1
37471 Author: Grant Erickson <gerickson@nuovations.com>
37472 Date: Wed May 21 13:28:30 2008 -0700
37473
37474 PPC4xx: Simplified post_word_{load, store}
37475
37476 This patch simplifies post_word_{load,store} by using the preprocessor
37477 to eliminate redundant, copy-and-pasted code.
37478
37479 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37480
37481 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
37482 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
37483 Date: Wed May 7 21:25:33 2008 +0400
37484
37485 cfi_flash: enable M18 flash chips family support.
37486
37487 Added new command set ID. Buffered write command processing is changed
37488 in order to support M18 flash chips family.
37489
37490 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
37491 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
37492
37493 commit 93c56f212ccdadc182018f0769cb284426b88f1d
37494 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
37495 Date: Wed May 7 21:24:44 2008 +0400
37496
37497 cfi_flash: support of long cmd in U-boot.
37498
37499 Some NOR flash chips needs support of commands with length grether than max
37500 value size of uchar. For example all M18 family chips use 0x1ff command in
37501 buffered write mode as value of program loops count.
37502
37503 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
37504 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
37505
37506 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
37507 Author: Stefan Roese <sr@denx.de>
37508 Date: Fri May 16 11:06:06 2008 +0200
37509
37510 DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
37511
37512 On AD7414 the first value upon bootup is not read correctly.
37513 This is most likely because of the 800ms update time of the
37514 temp register in normal update mode. To get current values
37515 each time we issue the "dtt" command including upon powerup
37516 we switch into one-short mode.
37517
37518 This patch fixes the problem on AD7414 equipped boards (Sequoia,
37519 Canyonlands etc), that temp value printed in the bootup log was
37520 incorrect.
37521
37522 Signed-off-by: Stefan Roese <sr@denx.de>
37523
37524 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
37525 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37526 Date: Fri May 30 16:55:06 2008 +0200
37527
37528 ppc4xx: Cleanup CPCI405 variant's config file
37529
37530 This patch removes some dead code from CPCI405 board's
37531 config files. JFFS2 support is also removed. It's not used and
37532 CPCI4052 does not build anymore without some size reduction.
37533
37534 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37535
37536 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
37537 Author: Kenneth Johansson <kenneth@southpole.se>
37538 Date: Thu May 29 16:32:33 2008 +0200
37539
37540 Remove shell variable UNDEF_SYM.
37541
37542 UNDEF_SYM is a shell variable in the main Makefile used to force the
37543 linker to add all u-boot commands to the final image. It has no use here.
37544
37545 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
37546
37547 commit 8c66497e06bf803489c589df58ee591d71033274
37548 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37549 Date: Fri May 16 11:10:35 2008 +0200
37550
37551 Add support for environment in SPI flash
37552
37553 This is pretty incomplete...it doesn't handle reading the environment
37554 before relocation, it doesn't support redundant environment, and it
37555 doesn't support embedded environment. But apart from that, it does
37556 seem to work.
37557
37558 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37559
37560 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
37561 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37562 Date: Fri May 16 11:10:34 2008 +0200
37563
37564 SPI Flash: Add "sf" command
37565
37566 This adds a new command, "sf" which can be used to manipulate SPI
37567 flash. Currently, initialization, reading, writing and erasing is
37568 supported.
37569
37570 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37571
37572 commit d25ce7d24cc0f93881559f4009175ea305af65e8
37573 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37574 Date: Fri May 16 11:10:33 2008 +0200
37575
37576 SPI Flash subsystem
37577
37578 This adds a new SPI flash subsystem.
37579
37580 Currently, only AT45 DataFlash in non-power-of-two mode is supported,
37581 but some preliminary support for other flash types is in place as
37582 well.
37583
37584 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37585
37586 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
37587 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
37588 Date: Fri May 16 11:10:32 2008 +0200
37589
37590 atmel_spi: Driver for the Atmel SPI controller
37591
37592 This adds a driver for the SPI controller found on most AT91 and AVR32
37593 chips, implementing the new SPI API.
37594
37595 Changed in v4:
37596 - Update to new API
37597 - Handle zero-length transfers appropriately. The user may send a
37598 zero-length SPI transfer with SPI_XFER_END set in order to
37599 deactivate the chip select after a series of transfers with chip
37600 select active. This is useful e.g. when polling the status
37601 register of DataFlash.
37602
37603 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
37604
37605 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
37606 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
37607 Date: Fri May 16 11:10:31 2008 +0200
37608
37609 SPI API improvements
37610
37611 This patch gets rid of the spi_chipsel table and adds a handful of new
37612 functions that makes the SPI layer cleaner and more flexible.
37613
37614 Instead of the spi_chipsel table, each board that wants to use SPI
37615 gets to implement three hooks:
37616 * spi_cs_activate(): Activates the chipselect for a given slave
37617 * spi_cs_deactivate(): Deactivates the chipselect for a given slave
37618 * spi_cs_is_valid(): Determines if the given bus/chipselect
37619 combination can be activated.
37620
37621 Not all drivers may need those extra functions however. If that's the
37622 case, the board code may just leave them out (assuming they know what
37623 the driver needs) or rely on the linker to strip them out (assuming
37624 --gc-sections is being used.)
37625
37626 To set up communication parameters for a given slave, the driver needs
37627 to call spi_setup_slave(). This returns a pointer to an opaque
37628 spi_slave struct which must be passed as a parameter to subsequent SPI
37629 calls. This struct can be freed by calling spi_free_slave(), but most
37630 driver probably don't want to do this.
37631
37632 Before starting one or more SPI transfers, the driver must call
37633 spi_claim_bus() to gain exclusive access to the SPI bus and initialize
37634 the hardware. When all transfers are done, the driver must call
37635 spi_release_bus() to make the bus available to others, and possibly
37636 shut down the SPI controller hardware.
37637
37638 spi_xfer() behaves mostly the same as before, but it now takes a
37639 spi_slave parameter instead of a spi_chipsel function pointer. It also
37640 got a new parameter, flags, which is used to specify chip select
37641 behaviour. This may be extended with other flags in the future.
37642
37643 This patch has been build-tested on all powerpc and arm boards
37644 involved. I have not tested NIOS since I don't have a toolchain for it
37645 installed, so I expect some breakage there even though I've tried
37646 fixing up everything I could find by visual inspection.
37647
37648 I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
37649 DataFlash drivers posted as a follow-up. I'd like some help testing
37650 other boards that use the existing SPI API.
37651
37652 But most of all, I'd like some comments on the new API. Is this stuff
37653 usable for everyone? If not, why?
37654
37655 Changed in v4:
37656 - Build fixes for various boards, drivers and commands
37657 - Provide common struct spi_slave definition that can be extended by
37658 drivers
37659 - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
37660 - Make default bus and mode build-time configurable
37661 - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
37662
37663 Changed in v3:
37664 - Add opaque struct spi_slave for controller-specific data associated
37665 with a slave.
37666 - Add spi_claim_bus() and spi_release_bus()
37667 - Add spi_free_slave()
37668 - spi_setup() is now called spi_setup_slave() and returns a
37669 struct spi_slave
37670 - soft_spi now supports four SPI modes (CPOL|CPHA)
37671 - Add bus parameter to spi_setup_slave()
37672 - Convert the new i.MX32 SPI driver
37673 - Convert the new MC13783 RTC driver
37674
37675 Changed in v2:
37676 - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
37677 new API.
37678
37679 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
37680 Tested-by: Guennadi Liakhovetski <lg@denx.de>
37681
37682 commit 289011207d999b2e4085150d2aa30d547ad9b800
37683 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37684 Date: Fri May 16 11:10:30 2008 +0200
37685
37686 Move definition of container_of() to common.h
37687
37688 AVR32 and AT91SAM9 both have their own identical definitions of
37689 container_of() taken from the Linux kernel. Move it to common.h so
37690 that all architectures can use it.
37691
37692 container_of() is already used by some drivers, and will be used
37693 extensively by the new and improved SPI API.
37694
37695 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37696
37697 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
37698 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37699 Date: Fri May 16 11:08:11 2008 +0200
37700
37701 soft_i2c: Pull SDA high before reading
37702
37703 Spotted by Dean Capindale.
37704
37705 Systems that support open-drain GPIO properly are allowed provide an
37706 empty I2C_TRISTATE define. However, this means that we need to be
37707 careful not to drive SDA low when the slave is expected to respond.
37708
37709 This patch adds a missing I2C_SDA(1) to read_byte() required to
37710 tristate the SDA line on systems that support open-drain GPIO.
37711
37712 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37713
37714 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
37715 Author: Stefan Roese <sr@denx.de>
37716 Date: Mon May 19 11:34:53 2008 +0200
37717
37718 ppc4xx: Remove implementations of testdram()
37719
37720 This patch removes the used testdram() implementations of the board
37721 that are maintained by myself.
37722
37723 Signed-off-by: Stefan Roese <sr@denx.de>
37724
37725 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
37726 Author: Stefan Roese <sr@denx.de>
37727 Date: Mon Jun 2 17:37:28 2008 +0200
37728
37729 ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
37730
37731 Historically the 405 U-Boot port had a dram_init() call in early init
37732 stage. This function was still called from start.S and most of the time
37733 coded in assembler. This is not needed anymore (since a long time) and
37734 boards should implement the common initdram() function in C instead.
37735
37736 This patch now removed the dram_init() call from start.S and removes the
37737 empty implementations that are scattered through most of the 405 board
37738 ports. Some older board ports really implement this dram_init() though.
37739 These are:
37740
37741 csb272
37742 csb472
37743 ERIC
37744 EXBITGEN
37745 W7OLMC
37746 W7OLMG
37747
37748 I changed those boards to call this assembler dram_init() function now
37749 from their board specific initdram() instead. This *should* work, but please
37750 test again on those platforms. And it is perhaps a good idea that those
37751 boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
37752 some time. So further patches welcome here.
37753
37754 Signed-off-by: Stefan Roese <sr@denx.de>
37755
37756 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
37757 Author: Stefan Roese <sr@denx.de>
37758 Date: Mon Jun 2 17:22:11 2008 +0200
37759
37760 ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
37761
37762 Signed-off-by: Stefan Roese <sr@denx.de>
37763
37764 commit 39b32be18cd33b53a84065edcd4e465165cc5564
37765 Author: Stefan Roese <sr@denx.de>
37766 Date: Mon Jun 2 17:20:03 2008 +0200
37767
37768 ppc4xx: Fix common ECC generation code for 440GP style platforms
37769
37770 This patch makes the common 4xx ECC code really usable on 440GP style
37771 platforms.
37772
37773 Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
37774 compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
37775 we need to make some processor dependant defines used later on by the
37776 driver.
37777
37778 Signed-off-by: Stefan Roese <sr@denx.de>
37779
37780 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
37781 Author: Stefan Roese <sr@denx.de>
37782 Date: Mon Jun 2 17:13:55 2008 +0200
37783
37784 ppc4xx: Change Kilauea to use the common DDR2 init function
37785
37786 This patch changes the kilauea and kilauea_nand (for NAND booting)
37787 board port to not use a board specific DDR2 init routine anymore. Now
37788 the common code from cpu/ppc4xx is used.
37789
37790 Thanks to Grant Erickson for all his basic work on this 405EX early
37791 bootup.
37792
37793 Signed-off-by: Stefan Roese <sr@denx.de>
37794
37795 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
37796 Author: Stefan Roese <sr@denx.de>
37797 Date: Mon Jun 2 14:59:21 2008 +0200
37798
37799 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
37800
37801 This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
37802 ppc4xx related SDRAM/DDR/DDR2 controller defines.
37803
37804 Signed-off-by: Stefan Roese <sr@denx.de>
37805
37806 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
37807 Author: Stefan Roese <sr@denx.de>
37808 Date: Mon Jun 2 14:57:41 2008 +0200
37809
37810 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
37811
37812 This patch removes all SDRAM related defines from the PPC4xx headers
37813 ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
37814 the same SDRAM controller as 440 systems do (like 405EX and 440SP).
37815
37816 It also introduces new defines for the equipped SDRAM controller based on
37817 which PPC variant is used. There new defines are:
37818
37819 used on 405GR/CR/EP and some Xilinx Virtex boards.
37820
37821 used on 440GP/GX/EP/GR.
37822
37823 used on 440EPx/GRx.
37824
37825 used on 405EX/r/440SP/SPe/460EX/GT.
37826
37827 Signed-off-by: Stefan Roese <sr@denx.de>
37828
37829 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
37830 Author: Stefan Roese <sr@denx.de>
37831 Date: Mon Jun 2 14:35:44 2008 +0200
37832
37833 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
37834
37835 This patch consolidates the 405 and 440 parts of the NAND booting code
37836 selected via CONFIG_NAND_SPL. Now common code is used to initialize the
37837 SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
37838 Only *after* running from this location, nand_boot() is called.
37839
37840 Please note that the initsdram() call is now moved from nand_boot.c
37841 to start.S. I experienced problems with some boards like Kilauea
37842 (405EX), which don't have internal SRAM (OCM) and relocation needs to
37843 be done to SDRAM before the NAND controller can get accessed. When
37844 initdram() is called later on in nand_boot(), this can lead to problems
37845 with variables in the bss sections like nand_ecc_pos[].
37846
37847 Signed-off-by: Stefan Roese <sr@denx.de>
37848 Acked-by: Scott Wood <scottwood@freescale.com>
37849
37850 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
37851 Author: Grant Erickson <gerickson@nuovations.com>
37852 Date: Thu May 22 14:44:24 2008 -0700
37853
37854 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
37855
37856 This patch (Part 2 of 2):
37857
37858 * Rolls up a suite of changes to enable correct primordial stack and
37859 global data handling when the data cache is used for such a purpose
37860 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
37861
37862 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
37863 eliminating redundant ECC initialization implementations and moving
37864 redundant SDRAM initialization out of board code into shared 4xx
37865 code.
37866
37867 * Enables MCSR visibility on the 405EX(r).
37868
37869 * Enables the use of the data cache for initial RAM on
37870 both AMCC's Kilauea and Makalu and removes a redundant
37871 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
37872
37873 - Removed, per Stefan Roese's request, defunct memory.c file for
37874 Makalu and rolled sdram_init from it into makalu.c.
37875
37876 With respect to the 4xx DDR initialization and ECC unification, there
37877 is certainly more work that can and should be done (file renaming,
37878 etc.). However, that can be handled at a later date on a second or
37879 third pass. As it stands, this patch moves things forward in an
37880 incremental yet positive way for those platforms that utilize this
37881 code and the features associated with it.
37882
37883 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37884 Signed-off-by: Stefan Roese <sr@denx.de>
37885
37886 commit c821b5f120bedf73867513466412587c6912a8f8
37887 Author: Grant Erickson <gerickson@nuovations.com>
37888 Date: Thu May 22 14:44:14 2008 -0700
37889
37890 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
37891
37892 This patch (Part 1 of 2):
37893
37894 * Rolls up a suite of changes to enable correct primordial stack and
37895 global data handling when the data cache is used for such a purpose
37896 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
37897
37898 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
37899 eliminating redundant ECC initialization implementations and moving
37900 redundant SDRAM initialization out of board code into shared 4xx
37901 code.
37902
37903 * Enables MCSR visibility on the 405EX(r).
37904
37905 * Enables the use of the data cache for initial RAM on
37906 both AMCC's Kilauea and Makalu and removes a redundant
37907 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
37908
37909 - Removed, per Stefan Roese's request, defunct memory.c file for
37910 Makalu and rolled sdram_init from it into makalu.c.
37911
37912 With respect to the 4xx DDR initialization and ECC unification, there
37913 is certainly more work that can and should be done (file renaming,
37914 etc.). However, that can be handled at a later date on a second or
37915 third pass. As it stands, this patch moves things forward in an
37916 incremental yet positive way for those platforms that utilize this
37917 code and the features associated with it.
37918
37919 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37920 Signed-off-by: Stefan Roese <sr@denx.de>
37921
37922 commit a439680019e06171d4a5694b7992accce87f590e
37923 Author: Grant Erickson <gerickson@nuovations.com>
37924 Date: Wed May 21 13:28:30 2008 -0700
37925
37926 PPC4xx: Simplified post_word_{load, store}
37927
37928 This patch simplifies post_word_{load,store} by using the preprocessor
37929 to eliminate redundant, copy-and-pasted code.
37930
37931 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37932
37933 commit f979690ee337450b2030aba128f95b7a8d9881c0
37934 Author: Kumar Gala <galak@kernel.crashing.org>
37935 Date: Thu May 15 15:13:08 2008 -0500
37936
37937 Fix warnings from gcc-4.3.0 build on a ppc host
37938
37939 * The cfi_flash.c memset fix actual allows the board to boot so there is
37940 a bit more going on here than just resolving warnings associated with
37941 uninitialized variables.
37942
37943 * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
37944 inline function 'ext2_find_next_zero_bit' which is not static
37945
37946 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37947
37948 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
37949 Author: Becky Bruce <becky.bruce@freescale.com>
37950 Date: Wed May 14 13:09:51 2008 -0500
37951
37952 MPC512x: Change traps.c to not reference non-addressable memory
37953
37954 Currently, END_OF_RAM is used by the trap code to determine if
37955 we should attempt to access the stack pointer or not. However,
37956 on systems with a lot of RAM, only a subset of the RAM is
37957 guaranteed to be mapped in and accessible. Change END_OF_RAM
37958 to use get_effective_memsize() instead of using the raw ram
37959 size out of the bd.
37960
37961 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37962
37963 commit 81673e9ae14b771cd13faf19947192599cae3959
37964 Author: Kumar Gala <galak@kernel.crashing.org>
37965 Date: Tue May 13 19:01:54 2008 -0500
37966
37967 Make sure common.h is the first include.
37968
37969 If common.h isn't first we can get CONFIG_ options defined in the
37970 board config file ignored. This can cause an issue if any of those
37971 config options impact the size of types of data structures
37972 (eg CONFIG_PHYS_64BIT).
37973
37974 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37975
37976 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
37977 Author: Marian Balakowicz <m8@semihalf.com>
37978 Date: Tue May 13 15:53:29 2008 +0200
37979
37980 Avoid initrd and logbuffer area overlaps
37981
37982 Add logbuffer to reserved LMB areas to prevent initrd allocation
37983 from overlaping with it.
37984
37985 Make sure to use correct logbuffer base address.
37986
37987 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37988
37989 commit 6956d53d9934862507f83f0e3255dfd4662e7482
37990 Author: Sascha Laue <sascha.laue@liebherr.com>
37991 Date: Tue May 13 13:29:54 2008 +0200
37992
37993 lwmon5: add memory-pattern-test to FPGA POST.
37994
37995 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
37996 Author: Becky Bruce <becky.bruce@freescale.com>
37997 Date: Thu May 8 19:02:51 2008 -0500
37998
37999 PPC: 86xx Add bat registers to reginfo command
38000
38001 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38002
38003 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
38004 Author: Becky Bruce <becky.bruce@freescale.com>
38005 Date: Fri May 9 15:41:35 2008 -0500
38006
38007 PPC: Add print_bats() to lib_ppc/bat_rw.c
38008
38009 This function prints the values of all the BAT register
38010 pairs - I needed this for debug earlier this week; adding it to
38011 lib_ppc so others can use it (and add it to reginfo commands
38012 if so desired).
38013
38014 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38015
38016 commit c148f24c15743a02e855636e6bed013bd121f7f2
38017 Author: Becky Bruce <becky.bruce@freescale.com>
38018 Date: Thu May 15 21:29:04 2008 -0500
38019
38020 PPC: Change lib_ppc/bat_rw.c to use high bats
38021
38022 Currently, this code only deals with BATs 0-3, which makes
38023 it useless on systems that support BATs 4-7. Add the
38024 support for these registers.
38025
38026 Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
38027
38028 commit 31d826722434931e1152a09d140187dcf72f8aac
38029 Author: Becky Bruce <becky.bruce@freescale.com>
38030 Date: Thu May 8 19:02:12 2008 -0500
38031
38032 PPC: Create and use CONFIG_HIGH_BATS
38033
38034 Change all code that conditionally operates on high bat
38035 registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
38036 instead of the myriad ways this is done now. Define the option
38037 for every config for which high bats are supported (and
38038 enabled by early boot, on parts where they're not always
38039 enabled)
38040
38041 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38042
38043 commit aa3b8bf9c30065bb2ea852799d32db5020598495
38044 Author: Wolfgang Grandegger <wg@grandegger.com>
38045 Date: Wed May 28 19:55:19 2008 +0200
38046
38047 E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
38048
38049 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
38050 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38051
38052 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
38053 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38054 Date: Wed May 28 13:06:25 2008 -0500
38055
38056 ColdFire: Add 10 base ethernet support for mcf5445x
38057
38058 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38059 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38060
38061 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
38062 Author: Jason McMullan <mcmullan@netapp.com>
38063 Date: Fri May 30 00:53:38 2008 +0900
38064
38065 mips: Add an 'include/asm/errno.h', like all other architectures
38066
38067 All other u-boot architectures have an include/asm/errno.h, so
38068 this change adds it to the mips include/asm-mips headers also.
38069
38070 Stolen from Linux 2.6.25.
38071
38072 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
38073
38074 commit e2ad8426624bac457acc6925b6ff408e9bf20466
38075 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38076 Date: Fri May 30 00:53:38 2008 +0900
38077
38078 [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
38079
38080 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38081
38082 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
38083 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38084 Date: Fri May 30 00:53:38 2008 +0900
38085
38086 [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
38087
38088 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38089
38090 commit bf462ae450a7f2eeeddc699ed345b391e3263540
38091 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38092 Date: Fri May 30 00:53:37 2008 +0900
38093
38094 [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
38095
38096 No functional changes.
38097
38098 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38099
38100 commit 89a1550ec6b74452274a7a23127936e2c7eec711
38101 Author: Jason McMullan <mcmullan@netapp.com>
38102 Date: Fri May 30 00:53:37 2008 +0900
38103
38104 mips: If CONFIG_CMD_SPI is defined, call spi_init()
38105
38106 The mips architecture currently does not call 'spi_init()' in the generic
38107 board initialization routine is CONFIG_CMD_SPI is defined.
38108
38109 This patch rectifies that problem.
38110
38111 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
38112 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38113
38114 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
38115 Author: Jason McMullan <mcmullan@netapp.com>
38116 Date: Fri May 30 00:53:37 2008 +0900
38117
38118 [MIPS] lib_mips/board.c: Add nand_init
38119
38120 This patch adds the standard 'nand_init()' call to the mips generic
38121 'board_init_r()' call, bringing MIPS in line with the other architectures.
38122
38123 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
38124 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38125
38126 commit d6ac2ed893c2168738aee01579d6283af8d37045
38127 Author: Scott Wood <scottwood@freescale.com>
38128 Date: Thu May 22 10:49:46 2008 -0500
38129
38130 Remove prototypes of nand_init() in favor of including nand.h.
38131
38132 Likewise with onenand_init().
38133
38134 Signed-off-by: Scott Wood <scottwood@freescale.com>
38135
38136 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
38137 Author: Scott Wood <scottwood@freescale.com>
38138 Date: Thu May 22 10:49:00 2008 -0500
38139
38140 Make onenand_uboot.h self-sufficient.
38141
38142 Don't assume types are provided by previously included headers.
38143
38144 Signed-off-by: Scott Wood <scottwood@freescale.com>
38145
38146 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
38147 Author: Dirk Behme <dirk.behme@gmail.com>
38148 Date: Wed Jan 16 14:26:59 2008 +0100
38149
38150 nand: Correct NAND erase percentage output
38151
38152 For NAND erase sizes smaller than one NAND erase block, erase
38153 percentage output becomes grater than 100% e.g.
38154
38155 -- cut --
38156 > nand info
38157 Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
38158 > nand erase 0x100000 0x2000
38159 NAND erase: device 0 offset 0x100000, size 0x2000
38160 Erasing at 0x100000 -- 200% complete.
38161 OK
38162 >
38163 -- cut --
38164
38165 Correct this and give user a warning that more is erased than specified:
38166
38167 -- cut --
38168 > nand erase 0x100000 0x2000
38169 NAND erase: device 0 offset 0x100000, size 0x2000
38170 Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
38171 Erasing 0x00004000 instead
38172 Erasing at 0x100000 -- 100% complete.
38173 OK
38174 >
38175 -- cut --
38176
38177 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
38178
38179 commit 5922db6c0948506be91e0de44e7a6863a18a417f
38180 Author: Stelian Pop <stelian@popies.net>
38181 Date: Tue May 13 17:31:24 2008 +0200
38182
38183 Cleanup nand_info[] declaration.
38184
38185 The nand_info array is declared as extern in several .c files.
38186 Those days, nand.h contains a reference to the array, so there is
38187 no need to declare it elsewhere.
38188
38189 Signed-off-by: Stelian Pop <stelian@popies.net>
38190 Signed-off-by: Scott Wood <scottwood@freescale.com>
38191
38192 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
38193 Author: Scott Wood <scottwood@freescale.com>
38194 Date: Mon May 19 09:30:43 2008 -0500
38195
38196 NAND: Provide a sane default for NAND_MAX_CHIPS.
38197
38198 This allows the header to be included regardless of whether a board's
38199 config file provides NAND-related defininitions.
38200
38201 Signed-off-by: Scott Wood <scottwood@freescale.com>
38202
38203 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
38204 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38205 Date: Mon May 26 12:19:10 2008 +0200
38206
38207 avr32: Fix theoretical race in udelay()
38208
38209 If the specified delay is very short, the cycle counter may go past the
38210 "end" time we are waiting for before we get around to reading it.
38211
38212 Fix it by checking the different between the cycle count "now" and the
38213 cycle count at the beginning. This will work as long as the delay
38214 measured in number of cycles is below 2^31.
38215
38216 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38217
38218 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
38219 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38220 Date: Wed May 21 13:01:09 2008 +0200
38221
38222 avr32: Compile atmel_mci.o conditionally
38223
38224 Remove #ifdef CONFIG_MMC from the source file and use conditional
38225 compilation in the Makefile instead.
38226
38227 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38228
38229 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
38230 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38231 Date: Thu May 22 12:28:25 2008 +0200
38232
38233 avr32: Fix wrong error flags in atmel_mci driver
38234
38235 Make sure we check for CRC errors when sending commands that use CRC
38236 checking.
38237
38238 Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
38239 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38240
38241 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
38242 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38243 Date: Wed May 21 11:10:59 2008 +0200
38244
38245 avr32: Fix two warnings in atmel_mci.c
38246
38247 The warnings are harmless but annoying. Let's fix them.
38248
38249 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38250
38251 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
38252 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38253 Date: Mon May 19 11:36:28 2008 +0200
38254
38255 avr32: Rework SDRAM initialization code
38256
38257 This cleans up the SDRAM initialization and related code a bit, and
38258 allows faster booting.
38259
38260 * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
38261 * Remove memory test from sdram_init() and make caller responsible
38262 for verifying the SDRAM and determining its size.
38263 * Remove base_address member from struct sdram_config (was sdram_info)
38264 * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
38265 * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
38266
38267 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38268
38269 commit 95107b7c028806919630bf02c653aa8f4f867c94
38270 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38271 Date: Mon May 19 11:27:37 2008 +0200
38272
38273 avr32: Do stricter stack checking in the exception handler
38274
38275 Don't do a stack dump if the stack pointer is outside the memory area
38276 reserved for stack.
38277
38278 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38279
38280 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
38281 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38282 Date: Fri May 2 15:32:57 2008 +0200
38283
38284 avr32: Use the same entry point for reset and exception handling
38285
38286 Since the reset vector is always aligned to a very large boundary, we
38287 can save a couple of KB worth of alignment padding by placing the
38288 exception vectors at the same address.
38289
38290 Deciding which one it is is easy: If we're handling an exception, the
38291 CPU is in Exception mode. If we're starting up after reset, the CPU is
38292 in Supervisor mode. So this adds a very minimal overhead to the reset
38293 path (only executed once) and the exception handling path (normally
38294 never executed at all.)
38295
38296 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38297
38298 commit 0c16eed2189a190bd5655b33c029f809a9b31128
38299 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38300 Date: Fri May 2 15:24:22 2008 +0200
38301
38302 avr32: Put memset in its own section
38303
38304 All C code is compiled with -ffunction-sections -fdata-sections.
38305 Assembly functions should get their own sections as well so that
38306 everything looks consistent.
38307
38308 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38309
38310 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
38311 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38312 Date: Fri May 2 15:21:40 2008 +0200
38313
38314 avr32: Rename pm_init() as clk_init() and make SoC-specific
38315
38316 pm_init() was always more about clock initialization than anything
38317 else. Dealing with PLLs, clock gating and such is also inherently
38318 SoC-specific, so move it into a SoC-specific directory.
38319
38320 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38321
38322 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
38323 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38324 Date: Wed Apr 30 16:15:57 2008 +0200
38325
38326 avr32: Use new-style Makefile for the at32ap platform
38327
38328 This makes it easier to avoid compiling certain files later.
38329
38330 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38331
38332 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
38333 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38334 Date: Wed Apr 30 14:36:47 2008 +0200
38335
38336 avr32: Remove unused file cpu/at32ap/pm.c
38337
38338 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38339
38340 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
38341 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38342 Date: Wed Apr 30 14:19:28 2008 +0200
38343
38344 avr32: Clean up the HMATRIX code
38345
38346 Rework the HMATRIX configuration interface so that it becomes easier
38347 to configure the HMATRIX for boards with special needs, and add new
38348 parts.
38349
38350 The HMATRIX header file has been split into a general,
38351 chip-independent part with register definitions, etc. and a
38352 chip-specific part with SFR bitfield definitions and master/slave
38353 identifiers.
38354
38355 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38356
38357 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
38358 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38359 Date: Thu Nov 22 12:14:11 2007 +0100
38360
38361 avr32: Add support for the ATSTK1006 board
38362
38363 This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
38364 board. It's currently in production and will be available soon.
38365
38366 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38367
38368 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
38369 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38370 Date: Tue Apr 29 12:53:05 2008 +0200
38371
38372 avr32: Get rid of the .flashprog section
38373
38374 The .flashprog section was only needed back when we were running
38375 directly from flash, and it's even more useless on NGW100 since it
38376 uses the CFI flash driver which never used this workaround in the
38377 first place.
38378
38379 Remove it on STK1000 as well, and get rid of all the associated code and
38380 annotations.
38381
38382 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38383
38384 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
38385 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38386 Date: Wed Apr 30 13:09:56 2008 +0200
38387
38388 avr32: Use correct condition around macb clock accessors
38389
38390 get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
38391 the chip has a MACB controller, not when it has a USART.
38392
38393 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38394
38395 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
38396 Author: David Brownell <david-b@pacbell.net>
38397 Date: Wed Apr 16 22:57:58 2008 -0700
38398
38399 avr32: Disable the AP7000 internal watchdog on startup
38400
38401 This patch forces the watchdog off in all cases. That will at least
38402 get rid of the constant reboot cycle, though it won't let the watchdog
38403 actually run in the new kernels: its probe() comes up with a polite
38404 warning.
38405
38406 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38407
38408 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
38409 Author: David Brownell <david-b@pacbell.net>
38410 Date: Fri Feb 22 12:54:39 2008 -0800
38411
38412 avr32: stk1002 and ngw100 convergence
38413
38414 Make STK1002 and NGW100 boards act more alike:
38415 - STK boards can use as many arguments as NGW
38416 - STK boards don't need to manage FPGAs either
38417 - NGW commands should match STK ones
38418
38419 Also spell U-Boot right in prompts for STK1002 and NGW100.
38420
38421 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
38422 [haavard.skinnemoen@atmel.com: update STK100[34] as well]
38423 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38424
38425 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
38426 Author: Sergei Poselenov <sposelenov@emcraft.com>
38427 Date: Tue May 27 13:47:00 2008 +0200
38428
38429 Socrates: Fix PCI bus frequency report
38430
38431 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38432
38433 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
38434 Author: Sergei Poselenov <sposelenov@emcraft.com>
38435 Date: Tue May 27 11:49:13 2008 +0200
38436
38437 Socrates: Added USB support.
38438
38439 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38440
38441 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
38442 Author: Sergei Poselenov <sposelenov@emcraft.com>
38443 Date: Tue May 27 11:35:02 2008 +0200
38444
38445 USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
38446
38447 In case of several PCI USB controllers on a board this variable
38448 specifys which controller to use.
38449 See doc/README.generic_usb_ohci for details.
38450
38451 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38452
38453 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
38454 Author: Sergei Poselenov <sposelenov@emcraft.com>
38455 Date: Tue May 27 10:36:07 2008 +0200
38456
38457 Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
38458
38459 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38460
38461 commit 83e9d7a2614d4006b92690afa3390c291734267e
38462 Author: Sergei Poselenov <sposelenov@emcraft.com>
38463 Date: Mon May 26 18:16:04 2008 +0200
38464
38465 Socrates: Config file cleanup.
38466
38467 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38468
38469 commit 602cac1389b755b223272f2328a47e6f8c240848
38470 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38471 Date: Sat May 24 12:47:46 2008 +0200
38472
38473 MAKEALL: add at91 list
38474
38475 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38476
38477 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
38478 Author: Ron Madrid <ron_madrid@sbcglobal.net>
38479 Date: Fri May 23 15:37:05 2008 -0700
38480
38481 Add Marvell 88E1118 support for TSEC
38482
38483 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
38484 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38485
38486 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
38487 Author: Jens Gehrlein <sew_s@tqs.de>
38488 Date: Mon May 5 14:06:11 2008 +0200
38489
38490 smc911x: add 16 bit support
38491
38492 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
38493 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38494
38495 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
38496 Author: Christian Eggers <ceggers@gmx.de>
38497 Date: Wed May 21 21:29:10 2008 +0200
38498
38499 Fix endianess conversion in usb_ohci.c
38500
38501 Sorry, I forgot this line:
38502
38503 Signed-off-by: Christian Eggers <ceggers@gmx.de>
38504
38505 I think this must be swapped (result may be equal).
38506
38507 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
38508 Author: Christian Eggers <ceggers@gmx.de>
38509 Date: Wed May 21 22:12:00 2008 +0200
38510
38511 USB: replace old swap_ with proper endianess conversion macros
38512
38513 Signed-off-by: Christian Eggers <ceggers@gmx.de>
38514 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
38515
38516 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
38517 Author: Christian Eggers <ceggers@gmx.de>
38518 Date: Wed May 21 21:29:10 2008 +0200
38519
38520 Fix endianess conversion in usb_ohci.c
38521
38522 Signed-off-by: Christian Eggers <ceggers@gmx.de>
38523 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
38524
38525 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
38526 Author: Sergei Poselenov <sposelenov@emcraft.com>
38527 Date: Thu May 22 01:15:53 2008 +0200
38528
38529 USB: add support for multiple PCI OHCI controllers
38530
38531 Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
38532 In case of several PCI USB controllers on a board this variable
38533 specifys which controller to use.
38534
38535 Also add USB support for sokrates board.
38536
38537 See doc/README.generic_usb_ohci for details.
38538
38539 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38540 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
38541
38542 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
38543 Author: Wolfgang Denk <wd@denx.de>
38544 Date: Wed May 21 16:56:08 2008 +0200
38545
38546 Fix some whitespace issues
38547
38548 introduced by 53677ef18 "Big white-space cleanup."
38549
38550 Signed-off-by: Wolfgang Denk <wd@denx.de>
38551
38552 commit 4416603aeb06861b468b06a981e52c3ff805db7b
38553 Author: York Sun <yorksun@freescale.com>
38554 Date: Mon May 12 14:36:39 2008 -0500
38555
38556 Make ads5121 out-of-tree compiling safe
38557
38558 Reuse the existing DIU driver in board/freescale/common.
38559
38560 Signed-off-by: York Sun <yorksun@freescale.com>
38561
38562 commit 0e1bad47cd345c76c91a64caf41011e431b62599
38563 Author: York Sun <yorksun@freescale.com>
38564 Date: Mon May 5 10:20:01 2008 -0500
38565
38566 Adding DIU support for Freescale 5121ADS
38567
38568 Add DIU and cfb console support to FSL 5121ADS board.
38569
38570 Use #define CONFIG_VIDEO in config file to enable fb console.
38571
38572 Signed-off-by: York Sun <yorksun@freescale.com>
38573
38574 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
38575 Author: York Sun <yorksun@freescale.com>
38576 Date: Mon May 5 10:20:00 2008 -0500
38577
38578 Replace DPRINTF with debug
38579
38580 Remove DPRINTF macro and replace it with generic debug macro.
38581
38582 Signed-off-by: York Sun <yorksun@freescale.com>
38583
38584 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
38585 Author: York Sun <yorksun@freescale.com>
38586 Date: Mon May 5 10:19:59 2008 -0500
38587
38588 Move pixel clock setting to board file
38589
38590 The clock divider has different format in 5121 and 8610. This patch moves it to
38591 board specific code.
38592
38593 Signed-off-by: York Sun <yorksun@freescale.com>
38594
38595 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
38596 Author: Wolfgang Denk <wd@denx.de>
38597 Date: Tue May 20 16:00:29 2008 +0200
38598
38599 Big white-space cleanup.
38600
38601 This commit gets rid of a huge amount of silly white-space issues.
38602 Especially, all sequences of SPACEs followed by TAB characters get
38603 removed (unless they appear in print statements).
38604
38605 Also remove all embedded "vim:" and "vi:" statements which hide
38606 indentation problems.
38607
38608 Signed-off-by: Wolfgang Denk <wd@denx.de>
38609
38610 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
38611 Author: Sergei Poselenov <sposelenov@emcraft.com>
38612 Date: Thu May 8 17:46:23 2008 +0200
38613
38614 socrates: fix second TSEC configuration (it is actually TSEC3)
38615
38616 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38617
38618 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
38619 Author: Sergei Poselenov <sposelenov@emcraft.com>
38620 Date: Thu May 8 14:17:08 2008 +0200
38621
38622 Fixed reset for socrates
38623
38624 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38625
38626 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
38627 Author: Sergei Poselenov <sposelenov@emcraft.com>
38628 Date: Wed May 7 15:10:49 2008 +0200
38629
38630 socrates: changes to support FDT
38631
38632 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38633 Signed-off-by: Wolfgang Denk <wd@denx.de>
38634
38635 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
38636 Author: Sergei Poselenov <sposelenov@emcraft.com>
38637 Date: Wed Apr 30 11:42:50 2008 +0200
38638
38639 Initial support for "Socrates" board
38640
38641 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38642
38643 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
38644 Author: Yuri Tikhonov <yur@emcraft.com>
38645 Date: Thu May 8 15:46:42 2008 +0200
38646
38647 POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
38648
38649 This way we become able to utilize the full post_log_word for POST
38650 activities (overwise, POST ECC, which has 0x8000 ID, could be
38651 erroneously treated as started in post_output_backlog() even if there
38652 was actually no POST ECC run (because of OCM POST failure, for
38653 example).
38654
38655 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38656
38657 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
38658 Author: Yuri Tikhonov <yur@emcraft.com>
38659 Date: Thu May 8 15:46:02 2008 +0200
38660
38661 POST: mark OCM test as POST_STOP
38662
38663 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
38664
38665 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
38666 Author: Yuri Tikhonov <yur@emcraft.com>
38667 Date: Thu May 8 15:45:26 2008 +0200
38668
38669 POST: add POST_STOP flag
38670
38671 Don't run futher tests in case of a test fails that is marked as
38672 POST_STOP.
38673
38674 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
38675 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38676
38677 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
38678 Author: Yuri Tikhonov <yur@emcraft.com>
38679 Date: Thu May 8 15:44:16 2008 +0200
38680
38681 POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
38682
38683 Switch the OCM testid with the codec one. The reason is that current
38684 implementation requires the POST_ROM testid to fit into lower 16
38685 bits, and the codec test will never run with POST_ROM hopefully.
38686
38687 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
38688
38689 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
38690 Author: Yuri Tikhonov <yur@emcraft.com>
38691 Date: Thu May 8 15:43:28 2008 +0200
38692
38693 lwmon5: enable OCM post test on lwmon5 board
38694
38695 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
38696
38697 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
38698 Author: Yuri Tikhonov <yur@emcraft.com>
38699 Date: Thu May 8 15:42:47 2008 +0200
38700
38701 POST: OCM test added.
38702
38703 Added OCM test to POST layer. This version runs before all other tests
38704 but doesn't yet interrupt post sequence on failure.
38705
38706 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
38707 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38708
38709 commit 6891260bdd935a382c95d9fa333922b0dfded68a
38710 Author: Yuri Tikhonov <yur@emcraft.com>
38711 Date: Thu May 8 15:40:39 2008 +0200
38712
38713 POST: typo fix
38714
38715 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
38716
38717 commit 727f63334676e760877d43bfb8f0e9331ac8b101
38718 Author: Hebbar <gururajakr@sanyo.co.in>
38719 Date: Tue May 20 02:16:36 2008 -0700
38720
38721 common/usb.c: fix incorrect escape sequence
38722
38723 Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
38724
38725 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
38726 Author: York Sun <yorksun@freescale.com>
38727 Date: Thu May 15 15:26:27 2008 -0500
38728
38729 Fix 8313ERDB board configuration
38730
38731 Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
38732 Correct TSEC1 vs TSEC2 assignment.
38733 Define ETHADDR and ETH1ADDR always.
38734
38735 Signed-off-by: York Sun <yorksun@freescale.com>
38736 Signed-off-by: Timur Tabi <timur@freescale.com>
38737
38738 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
38739 Author: Jon Loeliger <jdl@freescale.com>
38740 Date: Mon May 19 09:47:25 2008 -0500
38741
38742 mpc86xx: Removed unused and unconfigured memory test code.
38743
38744 Besides, other common code exists.
38745
38746 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38747
38748 commit 180a90abdae72587c0f679edf8991455e559440d
38749 Author: Wolfgang Denk <wd@denx.de>
38750 Date: Mon May 19 12:47:11 2008 +0200
38751
38752 Release v1.3.3
38753
38754 Update CHANGELOG for release.
38755
38756 Signed-off-by: Wolfgang Denk <wd@denx.de>
38757
38758 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
38759 Author: Stefan Roese <sr@denx.de>
38760 Date: Mon May 19 07:14:38 2008 +0200
38761
38762 ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
38763
38764 When SATA is selected (via jumper J6) we need to disable the first PCIe
38765 node in the device tree, so that Linux doesn't initialize it. Otherwise
38766 the Linux SATA driver will fail to detect the devices.
38767
38768 The same goes the other way around too. So if PCIe is selected we need
38769 to disable the SATA node in the device tree.
38770
38771 This is because PCIe port 0 and SATA on 460EX share the same pins
38772 (multiplexed) and we have to configure in U-Boot which peripheral is
38773 enabled.
38774
38775 Signed-off-by: Stefan Roese <sr@denx.de>
38776
38777 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
38778 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38779 Date: Sun May 18 19:09:58 2008 +0200
38780
38781 i386: Fix multiple definitions of __show_boot_progress
38782
38783 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38784
38785 commit 311f3446930c1e64c12026c1cfd00500b05be52d
38786 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38787 Date: Sun May 18 19:09:57 2008 +0200
38788
38789 sc530_spunk: add missing SOBJS entry
38790
38791 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38792
38793 commit a559317143b4f95927b08cd388707e6f077e95fa
38794 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38795 Date: Sun May 18 19:09:56 2008 +0200
38796
38797 sc520_spunk: Fix flash
38798
38799 flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
38800 flash.c:398: error: label at end of compound statement
38801
38802 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38803
38804 commit 91f221317af64191ee8caf303ea9305943158691
38805 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38806 Date: Sun May 18 19:09:49 2008 +0200
38807
38808 drivers/pcmcia: add missing i82365
38809
38810 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38811
38812 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
38813 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38814 Date: Sun May 18 19:09:47 2008 +0200
38815
38816 i386/bootm: remove unused var
38817
38818 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38819
38820 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
38821 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38822 Date: Sun May 18 19:09:45 2008 +0200
38823
38824 example/gitignore: update with all generated examples
38825
38826 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38827
38828 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
38829 Author: Wolfgang Denk <wd@denx.de>
38830 Date: Thu May 15 00:42:45 2008 +0200
38831
38832 TQM8272: fix out-of-tree building
38833
38834 ...and add to MAKEALL script
38835
38836 Signed-off-by: Wolfgang Denk <wd@denx.de>
38837
38838 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
38839 Author: Wolfgang Denk <wd@denx.de>
38840 Date: Wed May 14 23:34:53 2008 +0200
38841
38842 environment: fix bug introduced by commit a8409f4f1ac8
38843
38844 env_get_char is not a function, but a pointer to one.
38845
38846 Signed-off-by: Wolfgang Denk <wd@denx.de>
38847
38848 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
38849 Author: Gary Jennejohn <garyj@denx.de>
38850 Date: Wed May 14 13:39:22 2008 +0200
38851
38852 ppc4xx: QUAD100HD: Allow the environment to be put into flash.
38853
38854 After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect. Also
38855 use a redundant environment.
38856
38857 Signed-off-by: Gary Jennejohn <garyj@denx.de>
38858
38859 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
38860 Author: Wolfgang Denk <wd@denx.de>
38861 Date: Wed May 14 13:55:30 2008 +0200
38862
38863 Fix config files for out-of-tree building
38864
38865 Several board/<...>/config.mk files include dynamically built (by
38866 the Makefile) config files but used the wrong file name of
38867 $(TOPDIR)/board/$(BOARDDIR)/config.tmp
38868 instead if the correct
38869 $(OBJTREE)/board/$(BOARDDIR)/config.tmp
38870
38871 The bug is nasty because the build result is correct for the (normal)
38872 in-tree builds, and because 'sinclude' is used no errors get raised
38873 even for out-of-tree build tests. But out-of-tree builds use an
38874 incomplete and thus usually incorrect configuration...
38875
38876 Signed-off-by: Wolfgang Denk <wd@denx.de>
38877
38878 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
38879 Author: Stefan Roese <sr@denx.de>
38880 Date: Wed May 14 13:40:03 2008 +0200
38881
38882 ppc4xx: Fix bogus Canyonlands config.mk
38883
38884 This patch fixes the canyonlands config.mk file to enable correct
38885 out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
38886
38887 Signed-off-by: Stefan Roese <sr@denx.de>
38888
38889 commit fdd1247a66d788a3446244f6fde9955a93c26322
38890 Author: Stefan Roese <sr@denx.de>
38891 Date: Wed May 14 10:32:32 2008 +0200
38892
38893 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
38894
38895 Canyonlands has a file ddr2_fixed.c which needs special treatment when
38896 building in separate directory. It has to be linked to build directory
38897 otherwise it is not seen.
38898
38899 Signed-off-by: Stefan Roese <sr@denx.de>
38900
38901 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
38902 Author: Wolfgang Denk <wd@denx.de>
38903 Date: Wed May 14 12:22:49 2008 +0200
38904
38905 environment: cleanup prototype declarations of env functions.
38906
38907 Signed-off-by: Wolfgang Denk <wd@denx.de>
38908
38909 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
38910 Author: Wolfgang Denk <wd@denx.de>
38911 Date: Wed May 14 12:21:48 2008 +0200
38912
38913 linkstation_HGLAN: Fix out of tree building.
38914
38915 Signed-off-by: Wolfgang Denk <wd@denx.de>
38916
38917 commit 085551c05ca09e6c491ea11a1c6727a36776a545
38918 Author: Stefan Roese <sr@denx.de>
38919 Date: Wed May 14 10:32:32 2008 +0200
38920
38921 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
38922
38923 Canyonlands has a file ddr2_fixed.c which needs special treatment when
38924 building in separate directory. It has to be linked to build directory
38925 otherwise it is not seen.
38926
38927 Signed-off-by: Stefan Roese <sr@denx.de>
38928
38929 commit 1510b82d50615f344e89d42533e8224cce067dc0
38930 Author: Wolfgang Denk <wd@denx.de>
38931 Date: Tue May 13 23:15:52 2008 +0200
38932
38933 Makefile: fix "error: version_autogenerated.h: No such file or directory"
38934
38935 Signed-off-by: Wolfgang Denk <wd@denx.de>
38936
38937 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
38938 Author: Stelian Pop <stelian@popies.net>
38939 Date: Tue May 13 17:31:24 2008 +0200
38940
38941 Cleanup nand_info[] declaration.
38942
38943 The nand_info array is declared as extern in several .c files.
38944 Those days, nand.h contains a reference to the array, so there is
38945 no need to declare it elsewhere.
38946
38947 Signed-off-by: Stelian Pop <stelian@popies.net>
38948 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38949
38950 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
38951 Author: Stefan Roese <sr@denx.de>
38952 Date: Tue May 13 20:22:01 2008 +0200
38953
38954 ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
38955
38956 Signed-off-by: Stefan Roese <sr@denx.de>
38957
38958 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
38959 Author: Wolfgang Denk <wd@denx.de>
38960 Date: Mon May 12 01:11:21 2008 +0200
38961
38962 Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
38963
38964 This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
38965 which broke many PowerPC boards.
38966
38967 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
38968 Author: Wolfgang Denk <wd@denx.de>
38969 Date: Mon May 12 00:56:28 2008 +0200
38970
38971 Revert "Avoid initrd and logbuffer area overlaps"
38972
38973 This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
38974 which breaks building on all PPC boards that don't use a log buffer.
38975
38976 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
38977 Author: Nick Spence <nick.spence@freescale.com>
38978 Date: Sat May 10 14:02:04 2008 -0700
38979
38980 Fix offset calculation for multi-type legacy images.
38981
38982 Calculation of tail was incorrect when size % 4 == 0.
38983
38984 New code removes the conditional and does the same thing but with arithmetic
38985
38986 Signed-off-by: Nick Spence <nick.spence@freescale.com>
38987
38988 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
38989 Author: Wolfgang Denk <wd@denx.de>
38990 Date: Mon May 12 00:40:58 2008 +0200
38991
38992 Revert "Change env_get_char from a global function ptr to a function."
38993
38994 This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
38995 which is known to break booting from dataflash and NAND.
38996
38997 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
38998 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38999 Date: Sun May 11 23:13:57 2008 +0200
39000
39001 API: remove duplicate syscall check
39002
39003 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39004
39005 commit 67e3beb52c320b0a31cf030716c99392cde2d532
39006 Author: Stelian Pop <stelian@popies.net>
39007 Date: Fri May 9 21:46:51 2008 +0200
39008
39009 AT91: Cleanup unused config header file definitions.
39010
39011 CONFIG_ENV_OVERWRITE is commented out in the config header files,
39012 so let's cleanup the files by removing the whole definition.
39013
39014 Signed-off-by: Stelian Pop <stelian@popies.net>
39015 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39016
39017 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
39018 Author: Stelian Pop <stelian@popies.net>
39019 Date: Thu May 8 14:52:34 2008 +0200
39020
39021 Support AT91CAP9 revC CPUs
39022
39023 The AT91CAP9 revC CPU has a few differences over the previous,
39024 revB CPU which was distributed in small quantities only (revA was
39025 an internal Atmel product only).
39026
39027 The revC silicon needs a special initialisation sequence to
39028 switch from the internal (imprecise) RC oscillator to the
39029 external 32k clock.
39030
39031 Signed-off-by: Stelian Pop <stelian@popies.net>
39032 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39033
39034 commit 098b7b4b441b12c2a64dd517930f43c793542759
39035 Author: Stelian Pop <stelian@popies.net>
39036 Date: Thu May 8 14:52:33 2008 +0200
39037
39038 Use custom logo for Atmel boards
39039
39040 This patch adds a custom vendor logo for the Atmel AT91 boards.
39041
39042 Signed-off-by: Stelian Pop <stelian@popies.net>
39043 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39044
39045 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
39046 Author: Stelian Pop <stelian@popies.net>
39047 Date: Thu May 8 14:52:32 2008 +0200
39048
39049 AT91SAM9RLEK: hook up the ATMEL LCD driver
39050
39051 This patch makes the necessary adaptations (PIO configurations and
39052 defines in config header file) to hook up the Atmel LCD driver to the
39053 AT91SAM9RLEK board.
39054
39055 Signed-off-by: Stelian Pop <stelian@popies.net>
39056 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39057
39058 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
39059 Author: Stelian Pop <stelian@popies.net>
39060 Date: Thu May 8 14:52:31 2008 +0200
39061
39062 AT91SAM9263EK: hook up the ATMEL LCD driver
39063
39064 This patch makes the necessary adaptations (PIO configurations and
39065 defines in config header file) to hook up the Atmel LCD driver to the
39066 AT91SAM9263EK board.
39067
39068 Signed-off-by: Stelian Pop <stelian@popies.net>
39069 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39070
39071 commit 820f2a958325061a446115f3035e48e4726b3390
39072 Author: Stelian Pop <stelian@popies.net>
39073 Date: Thu May 8 14:52:30 2008 +0200
39074
39075 AT91SAM9261EK: hook up the ATMEL LCD driver
39076
39077 This patch makes the necessary adaptations (PIO configurations and
39078 defines in config header file) to hook up the Atmel LCD driver to the
39079 AT91SAM9261EK board.
39080
39081 Signed-off-by: Stelian Pop <stelian@popies.net>
39082 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39083
39084 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
39085 Author: Stelian Pop <stelian@popies.net>
39086 Date: Thu May 8 14:52:29 2008 +0200
39087
39088 AT91CAP9ADK: hook up the ATMEL LCD driver
39089
39090 This patch makes the necessary adaptations (PIO configurations and
39091 defines in config header file) to hook up the Atmel LCD driver to the
39092 AT91CAP9ADK board.
39093
39094 Signed-off-by: Stelian Pop <stelian@popies.net>
39095 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39096
39097 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
39098 Author: Stelian Pop <stelian@popies.net>
39099 Date: Fri May 9 21:57:18 2008 +0200
39100
39101 Add ATMEL LCD driver
39102
39103 This patch adds support for the ATMEL LCDC driver which is used on some
39104 AT91 and AVR platforms.
39105
39106 Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
39107 AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
39108
39109 Signed-off-by: Stelian Pop <stelian@popies.net>
39110 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39111
39112 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
39113 Author: Stelian Pop <stelian@popies.net>
39114 Date: Thu May 8 18:52:25 2008 +0200
39115
39116 AT91SAM9RLEK support
39117
39118 This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
39119 board.
39120
39121 Signed-off-by: Stelian Pop <stelian@popies.net>
39122 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39123
39124 commit 8e429b3eee23927c1222679f6b6f53667b21595c
39125 Author: Stelian Pop <stelian@popies.net>
39126 Date: Thu May 8 18:52:23 2008 +0200
39127
39128 AT91SAM9263EK support
39129
39130 This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
39131 board.
39132
39133 Signed-off-by: Stelian Pop <stelian@popies.net>
39134 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39135
39136 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
39137 Author: Stelian Pop <stelian@popies.net>
39138 Date: Thu May 8 20:52:22 2008 +0200
39139
39140 AT91SAM9261EK support
39141
39142 This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
39143 board.
39144
39145 Signed-off-by: Stelian Pop <stelian@popies.net>
39146 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39147
39148 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
39149 Author: Stelian Pop <stelian@popies.net>
39150 Date: Thu May 8 20:52:21 2008 +0200
39151
39152 AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
39153
39154 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
39155 in order to cope with the changes in DataFlash partitionning scheme
39156 (cset c3a60cb3).
39157
39158 Signed-off-by: Stelian Pop <stelian@popies.net>
39159 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39160
39161 commit 96996ac25d5222611a8888968db6e53a6d3726da
39162 Author: Stelian Pop <stelian@popies.net>
39163 Date: Thu May 8 20:52:20 2008 +0200
39164
39165 AT91SAM9260EK: Normalize BOOTARGS
39166
39167 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
39168 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
39169 variable.
39170
39171 Signed-off-by: Stelian Pop <stelian@popies.net>
39172 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39173
39174 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
39175 Author: Stelian Pop <stelian@popies.net>
39176 Date: Thu May 8 20:52:19 2008 +0200
39177
39178 AT91SAM9260EK: Normalize SPI timings
39179
39180 This patch changes the SPI timings to closely match the ones
39181 used by the Linux kernel and the Atmel's own bootstrap project.
39182
39183 Signed-off-by: Stelian Pop <stelian@popies.net>
39184 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39185
39186 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
39187 Author: Stelian Pop <stelian@popies.net>
39188 Date: Thu May 8 20:52:18 2008 +0200
39189
39190 AT91SAM9260EK: Handle 8 or 16 bit NAND
39191
39192 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
39193 makes the support configurable in the board config header file
39194 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
39195
39196 Signed-off-by: Stelian Pop <stelian@popies.net>
39197 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39198
39199 commit ab52640fc01624e208424e527af0b7b3a5a65a12
39200 Author: Stelian Pop <stelian@popies.net>
39201 Date: Thu May 8 20:52:17 2008 +0200
39202
39203 AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
39204
39205 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
39206 in order to cope with the changes in DataFlash partitionning scheme
39207 (cset c3a60cb3).
39208
39209 Signed-off-by: Stelian Pop <stelian@popies.net>
39210 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39211
39212 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
39213 Author: Stelian Pop <stelian@popies.net>
39214 Date: Thu May 8 20:52:16 2008 +0200
39215
39216 AT91CAP9ADK: Normalize BOOTARGS
39217
39218 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
39219 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
39220 variable.
39221
39222 Signed-off-by: Stelian Pop <stelian@popies.net>
39223 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39224
39225 commit 93da48b910511911ce110656e17ed733c8ac4c45
39226 Author: Stelian Pop <stelian@popies.net>
39227 Date: Thu May 8 20:52:15 2008 +0200
39228
39229 AT91CAP9ADK: Normalize SPI timings
39230
39231 This patch changes the SPI timings to closely match the ones
39232 used by the Linux kernel and the Atmel's own bootstrap project.
39233
39234 Signed-off-by: Stelian Pop <stelian@popies.net>
39235 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39236
39237 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
39238 Author: Stelian Pop <stelian@popies.net>
39239 Date: Thu May 8 20:52:14 2008 +0200
39240
39241 AT91CAP9ADK: Handle 8 or 16 bit NAND
39242
39243 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
39244 makes the support configurable in the board config header file
39245 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
39246
39247 Signed-off-by: Stelian Pop <stelian@popies.net>
39248 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39249
39250 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
39251 Author: Stelian Pop <stelian@popies.net>
39252 Date: Thu May 8 20:52:13 2008 +0200
39253
39254 Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
39255
39256 All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
39257 below avoids the duplication of u-boot.lds by putting the file in the
39258 cpu directory instead of the board one.
39259
39260 Signed-off-by: Stelian Pop <stelian@popies.net>
39261 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39262
39263 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
39264 Author: Stelian Pop <stelian@popies.net>
39265 Date: Thu May 8 20:52:12 2008 +0200
39266
39267 Add proper copyright notices in Atmel boards Makefiles
39268
39269 The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
39270 copyright notice. This patch adds the missing pieces.
39271
39272 Signed-off-by: Stelian Pop <stelian@popies.net>
39273 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39274
39275 commit e817a042cef6164bf26fee86f90326f2ec9e6745
39276 Author: Stelian Pop <stelian@popies.net>
39277 Date: Thu May 8 20:52:11 2008 +0200
39278
39279 Add copyright information in Atmel boards partition.c
39280
39281 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
39282 the new created files. This patch fixes the problem.
39283
39284 Signed-off-by: Stelian Pop <stelian@popies.net>
39285 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39286
39287 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
39288 Author: Stelian Pop <stelian@popies.net>
39289 Date: Thu May 8 20:52:10 2008 +0200
39290
39291 Update origin and copyright information in arch-at91sam9 header files
39292
39293 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
39294 copied from the Linux kernel sources. This patch explicitly specifies
39295 this origin for all the copied headers, and for those missing copyright
39296 information, adds it.
39297
39298 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
39299 in the latest kernel sources by 'at91sam9_smc.h'.
39300
39301 The copyright information has been confirmed by the AT91 Linux kernel
39302 maintainer, Andrew Victor <avictor.za@gmail.com>.
39303
39304 Signed-off-by: Stelian Pop <stelian@popies.net>
39305 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39306
39307 commit 79dd1712689d6a5031d7cbff54957049680751c7
39308 Author: Markus Klotzbücher <mk@denx.de>
39309 Date: Thu May 8 16:00:55 2008 +0200
39310
39311 ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
39312
39313 When using dhcp/bootp the "netmask" environment variable is not set
39314 because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
39315 desireable, so the following patch adds this this option to the board
39316 config.
39317
39318 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39319 Signed-off-by: Stefan Roese <sr@denx.de>
39320
39321 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
39322 Author: Stefan Roese <sr@denx.de>
39323 Date: Sat May 10 10:30:36 2008 +0200
39324
39325 ppc4xx: Update Makalu defconfig to use device-tree booting as default
39326
39327 This patch reworks the default environment on Makalu. Now "net_nfs" for
39328 example uses the device-tree style booting formerly know as "net_nfs_fdt".
39329 Also the addresses in RAM were changed because of the new image booting
39330 support, which check for image overwriting. So the addresses needed to
39331 get adjusted.
39332
39333 Signed-off-by: Stefan Roese <sr@denx.de>
39334
39335 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
39336 Author: Becky Bruce <bgill@freescale.com>
39337 Date: Wed May 7 13:28:16 2008 -0500
39338
39339 PPC: fix map_physmem build warning
39340
39341 map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
39342 enabled. This quiets the warning.
39343
39344 Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
39345
39346 commit 36f32675f40292002ee1fed252c180a43022d2d4
39347 Author: Becky Bruce <bgill@freescale.com>
39348 Date: Wed May 7 13:24:57 2008 -0500
39349
39350 Update pci code to use phys_addr_t
39351
39352 Physical addrs need to be represented by phys_addr_t, not
39353 unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT
39354 are going to fail mightily.
39355
39356 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39357
39358 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
39359 Author: Nick Spence <nick.spence@freescale.com>
39360 Date: Thu May 8 22:32:22 2008 -0700
39361
39362 Support legacy multi-type images without FDT section.
39363
39364 This patch enables legacy multi-type images containing only a Linux kernel
39365 and root file system to be loaded, maintaining compatibility with previous
39366 versions of u-boot.
39367
39368 This is required when using old image files such as a Linux 2.4 kernel /
39369 filesystem.
39370
39371 Signed-off-by: Nick Spence <nick.spence@freescale.com>
39372 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39373
39374 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
39375 Author: Wolfgang Denk <wd@denx.de>
39376 Date: Sat May 10 00:38:02 2008 +0200
39377
39378 Update CHANGELOG.
39379
39380 Signed-off-by: Wolfgang Denk <wd@denx.de>
39381
39382 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
39383 Author: Wolfgang Denk <wd@denx.de>
39384 Date: Sat May 10 00:36:09 2008 +0200
39385
39386 post/cpu/ppc4xx/Makefile: line length cleanup
39387
39388 Signed-off-by: Wolfgang Denk <wd@denx.de>
39389
39390 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
39391 Author: Stelian Pop <stelian@popies.net>
39392 Date: Thu May 8 22:52:09 2008 +0200
39393
39394 Fix @ -> <at> substitution
39395
39396 When applying the AT91CAP9 patches upstream, something transformed
39397 the '@' character into the ' <at> ' sequence.
39398
39399 The patch below restores the original form in all the places where
39400 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
39401 were copied from AT91CAP9, and a couple of other files where the
39402 ' <at> ' sequence was present).
39403
39404 Signed-off-by: Stelian Pop <stelian@popies.net>
39405
39406 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
39407 Author: Stelian Pop <stelian@popies.net>
39408 Date: Thu May 8 22:52:10 2008 +0200
39409
39410 Update origin and copyright information in arch-at91sam9 header files
39411
39412 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
39413 copied from the Linux kernel sources. This patch explicitly specifies
39414 this origin for all the copied headers, and for those missing copyright
39415 information, adds it.
39416
39417 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
39418 in the latest kernel sources by 'at91sam9_smc.h'.
39419
39420 The copyright information has been confirmed by the AT91 Linux kernel
39421 maintainer, Andrew Victor <avictor.za@gmail.com>.
39422
39423 Signed-off-by: Stelian Pop <stelian@popies.net>
39424
39425 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
39426 Author: Stelian Pop <stelian@popies.net>
39427 Date: Thu May 8 22:52:11 2008 +0200
39428
39429 Add copyright information in Atmel boards partition.c
39430
39431 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
39432 the new created files. This patch fixes the problem.
39433
39434 Signed-off-by: Stelian Pop <stelian@popies.net>
39435
39436 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
39437 Author: Guennadi Liakhovetski <lg@denx.de>
39438 Date: Thu May 8 10:09:27 2008 +0200
39439
39440 mx31ads: fix 32kHz clock handling
39441
39442 According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
39443 oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
39444 Also fix a typo when verifying a jumper configuration. While at it, make
39445 two needlessly global functions static.
39446
39447 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39448
39449 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
39450 Author: Marian Balakowicz <m8@semihalf.com>
39451 Date: Wed May 7 13:10:04 2008 +0200
39452
39453 Avoid initrd and logbuffer area overlaps
39454
39455 Add logbuffer to reserved LMB areas to prevent initrd allocation
39456 from overlaping with it.
39457
39458 Make sure to use correct logbuffer base address.
39459
39460 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39461
39462 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
39463 Author: Marian Balakowicz <m8@semihalf.com>
39464 Date: Wed May 7 13:08:54 2008 +0200
39465
39466 ppc: Cleanup get_effective_memsize() use
39467
39468 Removed duplicated effective memory size calculation code.
39469
39470 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39471
39472 commit 273c37d843d5b581090378016cd12dd9c586907b
39473 Author: Marian Balakowicz <m8@semihalf.com>
39474 Date: Wed May 7 09:03:53 2008 +0200
39475
39476 Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
39477
39478 Recent modifcations to LOGBUFFER handling code were incorrecly
39479 introduced to fit_check_kernel() routine during
39480 "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
39481 commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
39482
39483 This patch cleans up this merge issue.
39484
39485 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39486
39487 commit bc11756daff89a3de09ca80adac962b88cf06e6e
39488 Author: Grant Erickson <gerickson@nuovations.com>
39489 Date: Tue May 6 20:16:15 2008 -0700
39490
39491 Propagate Error Status to the Shell on fw_printenv Errors
39492
39493 Changed implementation such that fw_printenv returns failure status
39494 when one or more specified variables do not exist or when incorrect
39495 command syntax is used.
39496
39497 This aids scripting fw_printenv such that the script can key of the
39498 return status rather than relying on standard error "scraping".
39499
39500 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
39501 Signed-off-by: Wolfgang Denk <wd@denx.de>
39502
39503 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
39504 Author: Grant Erickson <gerickson@nuovations.com>
39505 Date: Tue May 6 16:18:00 2008 -0700
39506
39507 Fix Compilation Errors with 'tools/env/fw_printenv'
39508
39509 In the current top-of-tree, 1.3.3.-rc2, the optional tool
39510 'tools/env/fw_printenv' fails to compile for two reasons:
39511
39512 1) The header watchdog.h cannot be found.
39513 2) The header zlib.h is picked up from the tool chain rather than the
39514 project causing a prototype conflict for crc32.
39515
39516 This patch addresses both of these issues.
39517
39518 Platforms Tested On:
39519 - AMCC "Kilauea"
39520
39521 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
39522
39523 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
39524 Author: James Yang <James.Yang@freescale.com>
39525 Date: Mon May 5 10:22:53 2008 -0500
39526
39527 Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
39528
39529 When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
39530 work before relocating to RAM because command history is written into
39531 a global array that is not writable before relocation. This patch
39532 defers to the no-editing and no-history code in readline_into_buffer()
39533 if it is called before relocation.
39534
39535 Signed-off-by: James Yang <James.Yang@freescale.com>
39536 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39537
39538 commit 726c0f1e5f108dccea052965123b95837d2bd402
39539 Author: Detlev Zundel <dzu@denx.de>
39540 Date: Mon May 5 16:11:22 2008 +0200
39541
39542 cosmetic: Adjust coding style for switch statements to be consistent
39543
39544 Signed-off-by: Detlev Zundel <dzu@denx.de>
39545
39546 commit 574b319512b13e10800f0045e39b993f4ca25e42
39547 Author: Detlev Zundel <dzu@denx.de>
39548 Date: Mon May 5 16:11:21 2008 +0200
39549
39550 Fix disk type output in disk/part.c
39551
39552 Signed-off-by: Detlev Zundel <dzu@denx.de>
39553
39554 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
39555 Author: Vlad Lungu <vlad.lungu@windriver.com>
39556 Date: Mon May 5 14:20:03 2008 +0300
39557
39558 Mail address change, documentation modified
39559
39560 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
39561
39562 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
39563 Author: Michal Simek <monstr@monstr.eu>
39564 Date: Sun May 4 15:42:41 2008 +0200
39565
39566 microblaze: Repare intc handling
39567
39568 Signed-off-by: Michal Simek <monstr@monstr.eu>
39569
39570 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
39571 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39572 Date: Sun May 4 15:17:52 2008 +0200
39573
39574 include/gitignore: update to all architectures
39575
39576 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39577
39578 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
39579 Author: Marcel Ziswiler <marcel@ziswiler.com>
39580 Date: Mon May 5 02:12:06 2008 +0200
39581
39582 ide: Remove spurious second include of io.h
39583
39584 Removed the second include, with all the #ifdef around as suggested by Wolfgang.
39585
39586 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
39587
39588 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
39589 Author: Adrian Filipi <adrian.filipi@eurotech.com>
39590 Date: Tue May 6 16:46:37 2008 -0400
39591
39592 Fix some typos
39593
39594 This patch fixes three typos.
39595 The first is a repetition of CONFIG_CMD_BSP.
39596 The second makes the #endif comment match its #if.
39597 The third is a spelling error.
39598
39599 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
39600
39601 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
39602 Author: Grant Erickson <gerickson@nuovations.com>
39603 Date: Sun May 4 16:45:01 2008 -0700
39604
39605 Recognize 'powerpc' As an Alias for IH_ARCH_PPC
39606
39607 Add support for the recognition of 'powerpc' as an alias for the PowerPC
39608 architecture type since Linux is already trending in that direction,
39609 preferring 'powerpc' to 'ppc'.
39610
39611 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
39612
39613 commit f5a24259190c388c2527bdc49fee34577d862cc7
39614 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
39615 Date: Fri May 2 13:35:15 2008 -0700
39616
39617 7450 and 86xx L2 cache invalidate bug corrections
39618
39619 The 7610 and related parts have an L2IP bit in the L2CR that is
39620 monitored to signal when the L2 cache invalidate is complete whereas the
39621 7450 and related parts utilize L2I for this purpose. However, the
39622 current code does not account for this difference. Additionally the 86xx
39623 L2 cache invalidate code used an "andi" instruction where an "andis"
39624 instruction should have been used.
39625
39626 This patch addresses both of these bugs.
39627
39628 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
39629 Acked-By: Jon Loeliger <jdl@freescale.com>
39630
39631 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
39632 Author: Wolfgang Denk <wd@denx.de>
39633 Date: Fri May 9 10:16:13 2008 +0200
39634
39635 Avoid infinite loop "Generating include/autoconf.mk"
39636
39637 Fix a bogus circular dependency that caused an infinite loop of
39638 "Generating include/autoconf.mk" again and again.
39639
39640 Signed-off-by: Wolfgang Denk <wd@denx.de>
39641
39642 commit 567fb852178dbf59529d7301620a3f3732a4b02d
39643 Author: Stelian Pop <stelian@popies.net>
39644 Date: Thu May 8 22:52:09 2008 +0200
39645
39646 Fix @ -> <at> substitution
39647
39648 When applying the AT91CAP9 patches upstream, something transformed
39649 the '@' character into the ' <at> ' sequence.
39650
39651 The patch below restores the original form in all the places where
39652 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
39653 were copied from AT91CAP9, and a couple of other files where the
39654 ' <at> ' sequence was present).
39655
39656 Signed-off-by: Stelian Pop <stelian@popies.net>
39657 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39658
39659 commit 73ccb3410a0785593cda7aee455dfc51f790e281
39660 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
39661 Date: Mon Apr 28 14:04:32 2008 +0200
39662
39663 ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
39664
39665 Signed-off-by: Gary Jennejohn <garyj@denx.de>
39666 Signed-off-by: Stefan Roese <sr@denx.de>
39667
39668 commit ef2642625cbfb1c3695e3478d08ae515052a4950
39669 Author: Stefan Roese <sr@denx.de>
39670 Date: Thu May 8 11:10:46 2008 +0200
39671
39672 ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
39673
39674 Signed-off-by: Stefan Roese <sr@denx.de>
39675
39676 commit a00eccfebc954ad9485161efeca7d9aaf626d530
39677 Author: Stefan Roese <sr@denx.de>
39678 Date: Thu May 8 11:05:15 2008 +0200
39679
39680 ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
39681
39682 This patch adds fdt (flattened device tree) support to all remaining AMCC
39683 eval boards. Most newer boards already support device tree. With this patch,
39684 all AMCC boards now enable device tree passing from U-Boot to Linux
39685 arch/powerpc kernels.
39686
39687 Signed-off-by: Stefan Roese <sr@denx.de>
39688
39689 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
39690 Author: Stefan Roese <sr@denx.de>
39691 Date: Thu May 8 11:01:09 2008 +0200
39692
39693 ppc4xx: Add weak default ft_board_setup() routine
39694
39695 This patch adds a default ft_board_setup() routine to the 4xx fdt code.
39696 This routine is defined as weak and can be overwritten by a board specific
39697 one if needed.
39698
39699 Signed-off-by: Stefan Roese <sr@denx.de>
39700
39701 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
39702 Author: Stefan Roese <sr@denx.de>
39703 Date: Thu May 8 10:48:58 2008 +0200
39704
39705 ppc4xx: acadia: Add fdt support and fix section overlap problem
39706
39707 This patch adds fdt (flattened device tree) support to the AMCC
39708 Acadia eval board. This increases the image size and it doesn't
39709 fit anymore into 256kByte. Since we didn't want to remove features
39710 from the configuration, we decided to increase the U-Boot image size
39711 (add one flash sector).
39712
39713 Also changed the default environment definition to make it
39714 independent of such changes.
39715
39716 Signed-off-by: Stefan Roese <sr@denx.de>
39717
39718 commit 4adb3023de75bc150f088c8935db340930ad38c8
39719 Author: Ira Snyder <iws@ovro.caltech.edu>
39720 Date: Tue Apr 29 11:18:54 2008 -0700
39721
39722 ppc4xx: Add device tree support to AMCC Yosemite
39723
39724 Add support for booting with a device tree blob. This is needed to boot
39725 ARCH=powerpc kernels. Also add support for setting the eth0 mac address
39726 via the ethaddr variable.
39727
39728 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
39729 Signed-off-by: Stefan Roese <sr@denx.de>
39730
39731 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
39732 Author: Dave Mitchell <dmitchell@amcc.com>
39733 Date: Wed May 7 09:00:23 2008 -0700
39734
39735 ppc4xx: Fix typos in 460GT/EX FBDV array
39736
39737 Corrected two typos in the 460GT/EX FBDV array.
39738
39739 Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
39740 Signed-off-by: Stefan Roese <sr@denx.de>
39741
39742 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
39743 Author: Andy Fleming <afleming@freescale.com>
39744 Date: Wed May 7 16:54:31 2008 -0500
39745
39746 85xx: Limit CPU2 workaround to parts that have the errata
39747
39748 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
39749 Signed-off-by: Andy Fleming <afleming@freescale.com>
39750
39751 commit a5fe514e8ace564300d2c1d73846ddff49654243
39752 Author: Lee Nipper <lee.nipper@freescale.com>
39753 Date: Fri Apr 25 15:44:45 2008 -0500
39754
39755 mpc83xx: system performance settings for MPC8349EMDS.
39756
39757 These same settings are used on MPC8349ITX, and
39758 improve performance on MPC8349EMDS.
39759
39760 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
39761 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39762
39763 commit 49387dba910e485640b575e920ee463b7e611dc3
39764 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39765 Date: Tue May 6 13:22:52 2008 +0900
39766
39767 [MIPS] cpu/mips/cache.S: Fix build warning
39768
39769 Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
39770 warns illegal global symbol references by bal (and jal also) instruction.
39771 This does not happen with the latest binutils v2.18.
39772
39773 Here's an example on gth2_config:
39774
39775 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
39776 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
39777 c -EB -c -o cache.o cache.S
39778 cache.S: Assembler messages:
39779 cache.S:243: Warning: Pretending global symbol used as branch target is local.
39780 cache.S:250: Warning: Pretending global symbol used as branch target is local.
39781
39782 In principle, gas might be sensitive to global symbol references in PIC
39783 code because they should be processed through GOT (global offset table).
39784 But if `bal' instruction is used, it results in PC-based offset jump.
39785 This is the cause of this warning.
39786
39787 In practice, we know it doesn't matter whether PC-based reference or GOT-
39788 based. As for this case, both will work before/after relocation. But let's
39789 fix the code.
39790
39791 This patch explicitly sets up a target address, then jump there.
39792 Here's an example of disassembled code with/without this patch.
39793
39794 90000668: 1485ffef bne a0,a1,90000628 <mips_cache_reset+0x20>
39795 9000066c: ac80fffc sw zero,-4(a0)
39796 90000670: 01402821 move a1,t2
39797 -90000674: 0411ffba bal 90000560 <mips_init_icache>
39798 -90000678: 01803021 move a2,t4
39799 -9000067c: 01602821 move a1,t3
39800 -90000680: 0411ffcc bal 900005b4 <mips_init_dcache>
39801 -90000684: 01a03021 move a2,t5
39802 -90000688: 03000008 jr t8
39803 -9000068c: 00000000 nop
39804 +90000674: 01803021 move a2,t4
39805 +90000678: 8f8f83ec lw t7,-31764(gp)
39806 +9000067c: 01e0f809 jalr t7
39807 +90000680: 00000000 nop
39808 +90000684: 01602821 move a1,t3
39809 +90000688: 01a03021 move a2,t5
39810 +9000068c: 8f8f81e0 lw t7,-32288(gp)
39811 +90000690: 01e0f809 jalr t7
39812 +90000694: 00000000 nop
39813 +90000698: 03000008 jr t8
39814 +9000069c: 00000000 nop
39815
39816 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39817
39818 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
39819 Author: Vlad Lungu <vlad.lungu@windriver.com>
39820 Date: Mon May 5 14:04:00 2008 +0300
39821
39822 Allow building mips versions with ELDK 3.1.1
39823
39824 .gpword works only with local symbols on certain binutils versions
39825
39826 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
39827
39828 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
39829 Author: Wolfgang Denk <wd@denx.de>
39830 Date: Mon May 5 12:52:36 2008 +0200
39831
39832 MAKEALL: add inka4x0 board
39833
39834 Signed-off-by: Wolfgang Denk <wd@denx.de>
39835
39836 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
39837 Author: Wolfgang Denk <wd@denx.de>
39838 Date: Sun May 4 21:34:23 2008 +0200
39839
39840 kb9202 board: fix build problem.
39841
39842 Signed-off-by: Wolfgang Denk <wd@denx.de>
39843
39844 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
39845 Author: Wolfgang Denk <wd@denx.de>
39846 Date: Sun May 4 12:10:33 2008 +0200
39847
39848 Prepare for v1.3.3-rc3
39849
39850 Update ChNAGELOG, minor white space cleanup.
39851
39852 Signed-off-by: Wolfgang Denk <wd@denx.de>
39853
39854 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
39855 Author: Wolfgang Denk <wd@denx.de>
39856 Date: Sun May 4 00:35:15 2008 +0200
39857
39858 drivers/net/tsec.c: Fix typo.
39859
39860 Signed-off-by: Wolfgang Denk <wd@denx.de>
39861
39862 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
39863 Author: Mike Frysinger <vapier@gentoo.org>
39864 Date: Fri May 2 21:45:12 2008 -0400
39865
39866 version_autogenerated.h: use printf rather than echo -n
39867
39868 Some systems are dumb and do not implement the -n flag to echo (like OS X).
39869 Convert the Makefile to use printf as this should work everywhere.
39870
39871 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39872 Signed-off-by: Wolfgang Denk <wd@denx.de>
39873
39874 commit 4acc2a108ad0a669165924704a6cb083f9138242
39875 Author: Mike Frysinger <vapier@gentoo.org>
39876 Date: Fri May 2 18:17:50 2008 -0400
39877
39878 fix building when saveenv is disabled in some setups
39879
39880 If you enable environment in the flash, but disable the embedded
39881 option, and you disable the saveenv command, then the #if nested
39882 logic will trigger a compile failure:
39883 env_flash.c: In function 'env_relocate_spec':
39884 env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
39885 The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
39886
39887 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39888
39889 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
39890 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
39891 Date: Fri May 2 16:10:04 2008 -0400
39892
39893 SBC8548: fix address mask to allow 64M flash
39894
39895 Fix incorrect mask to enable all 64MB of onboard flash.
39896 Previously U-Boot incorrectly mapped only 8MB of flash, this
39897 patch correctly maps all the available flash.
39898
39899 Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
39900
39901 commit 3648085c464c8c22ef76fab006ca4344d3796124
39902 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39903 Date: Fri May 2 19:48:56 2008 +0200
39904
39905 qemu_mips: add README
39906
39907 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39908
39909 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
39910 Author: Marcel Ziswiler <marcel@ziswiler.com>
39911 Date: Fri May 2 02:35:59 2008 +0200
39912
39913 Fix misspelled comment
39914
39915 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
39916
39917 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
39918 Author: Mike Frysinger <vapier@gentoo.org>
39919 Date: Thu May 1 04:13:05 2008 -0400
39920
39921 mkimage: make mmap() checks consistent
39922
39923 The mmap() related code is full of inconsistent casts/constants when
39924 it comes to error checking, and may break when building on some
39925 systems (like ones that do not implicitly define the caddr_t type).
39926 Let's just avoid the whole mess by writing the code nice and clean in
39927 the first place.
39928
39929 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39930
39931 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
39932 Author: Marcel Ziswiler <marcel@ziswiler.com>
39933 Date: Thu May 1 09:05:34 2008 +0200
39934
39935 Fix defined but not used build warning
39936
39937 - warning: 'srom' defined but not used
39938
39939 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
39940
39941 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
39942 Author: Marcel Ziswiler <marcel@ziswiler.com>
39943 Date: Thu May 1 09:05:26 2008 +0200
39944
39945 Fix implicit declaration build warnings
39946
39947 - warning: implicit declaration of function ‘serial_initialize’
39948
39949 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
39950
39951 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
39952 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
39953 Date: Tue Apr 29 19:18:32 2008 +0200
39954
39955 TSEC: add config options for VSC8601 RGMII PHY
39956
39957 The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
39958 and Tx clock lines. They are configured using 2 bits in extended
39959 register 0x17.
39960 Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
39961 been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
39962
39963 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
39964 Acked-by: Andy Fleming <afleming@freescale.com>
39965 Acked-by: Ben Warren <biggerbadderben@gmail.com>
39966 --
39967
39968 drivers/net/tsec.c | 6 ++++++
39969 drivers/net/tsec.h | 3 +++
39970 2 files changed, 9 insertions(+), 0 deletions(-)
39971
39972 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
39973 Author: Wolfgang Denk <wd@denx.de>
39974 Date: Sat May 3 23:07:15 2008 +0200
39975
39976 Revert "ColdFire: Get information from the correct GCC"
39977
39978 This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
39979 (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
39980
39981 commit c4e5f52a58d278eebb87f476e353972c5dacea40
39982 Author: Wolfgang Denk <wd@denx.de>
39983 Date: Sat May 3 22:25:00 2008 +0200
39984
39985 config.mk: use correct (cross) compiler
39986
39987 Some config.mk files reference $(CC) to test for specific tool chain
39988 features, so make sure $(CC) gets set before including any such
39989 config files.
39990
39991 This patch replaces commit b7166e05a5 ("ColdFire: Get information from
39992 the correct GCC").
39993
39994 Signed-off-by: Wolfgang Denk <wd@denx.de>
39995
39996 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
39997 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39998 Date: Thu May 1 02:13:44 2008 +0200
39999
40000 pxa: fix previous definition on cpu init
40001
40002 start.S:183:1: warning: "ICMR" redefined
40003 In file included from start.S:33:
40004 include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
40005 start.S:187:1: warning: "RCSR" redefined
40006 ...
40007
40008 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40009
40010 commit 6d12e697de794d700767f22f950e3026ccf4daf6
40011 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40012 Date: Thu May 1 02:13:43 2008 +0200
40013
40014 pxa: fix pcmcia operation on 'i' may be undefined
40015
40016 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40017 Signed-off-by: Wolfgang Denk <wd@denx.de>
40018
40019 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
40020 Author: Kumar Gala <galak@kernel.crashing.org>
40021 Date: Wed Apr 30 16:24:35 2008 -0500
40022
40023 MPC8610HPCD: Drop -O2 from the build flags
40024
40025 Make the flags use -Os like all other boards
40026
40027 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40028
40029 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
40030 Author: Stefan Roese <sr@denx.de>
40031 Date: Wed Apr 30 15:50:39 2008 +0200
40032
40033 RTC: Fix month offset by one problem in M41T62 RTC driver
40034
40035 This patch fixes a problem with the month being read and written
40036 incorrectly (offset by one). This only gets visible by also using
40037 the Linux driver (rtc-m41t80).
40038
40039 Tested on AMCC Canyonlands.
40040
40041 Signed-off-by: Stefan Roese <sr@denx.de>
40042
40043 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
40044 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40045 Date: Sat May 3 13:51:44 2008 +0900
40046
40047 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
40048
40049 Current trick to pick up GNU assembler minor version uses a dot(.) as a
40050 delimiter, and take the second field to obtain minor version number. But
40051 as can be expected, this doesn't work with a version string which has
40052 dots more than needs.
40053
40054 Here's an example:
40055
40056 $ mips-linux-gnu-as --version | grep 'GNU assembler'
40057 GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
40058 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
40059 2-129) 2
40060 $
40061
40062 This patch restricts the version format to 2.XX.XX... This will work
40063 in most cases.
40064
40065 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
40066 2.18.50.20080215
40067 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
40068 18
40069 $
40070
40071 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40072
40073 commit ea638951acead7f1086c908c0b9f086beab82a22
40074 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40075 Date: Sat May 3 13:51:28 2008 +0900
40076
40077 [MIPS] cpu/mips/cache.S: Add dcache_enable
40078
40079 Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
40080 "allow ports to override bootelf behavior") requires ports to have this
40081 function.
40082
40083 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40084 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40085
40086 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
40087 Author: Wolfgang Denk <wd@denx.de>
40088 Date: Thu May 1 21:30:16 2008 +0200
40089
40090 onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
40091
40092 Onenand needs a version of memcpy() which performs 16 bit accesses
40093 only; make sure the name does not conflict with the standard
40094 function.
40095
40096 Signed-off-by: Wolfgang Denk <wd@denx.de>
40097
40098 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
40099 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40100 Date: Wed Apr 30 22:38:17 2008 +0200
40101
40102 cmd_nand: fix warning: str2long ncompatible pointer type
40103
40104 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40105
40106 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
40107 Author: Timur Tabi <timur@freescale.com>
40108 Date: Fri Apr 4 11:16:11 2008 -0500
40109
40110 Fix calculation of I2C clock for some 86xx chips
40111
40112 Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
40113 There is no pattern that can be used to determine which chips use which
40114 frequency, so the only way to determine is to look up the actual SOC
40115 designation and use the right value for that SOC.
40116
40117 Signed-off-by: Timur Tabi <timur@freescale.com>
40118
40119 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
40120 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40121 Date: Wed Apr 30 12:11:19 2008 -0500
40122
40123 ColdFire: Fix ethernet hang issue for mcf547x_8x
40124
40125 The ethernet hang is caused by receiving buffer in DRAM is not
40126 yet ready due to access cycles require longer time in DRAM.
40127 Relocate DMA buffer descriptors from DRAM to internal SRAM.
40128
40129 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40130
40131 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
40132 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40133 Date: Wed Apr 30 12:10:47 2008 -0500
40134
40135 ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
40136
40137 Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
40138 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40139
40140 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
40141 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40142 Date: Wed Apr 30 12:10:23 2008 -0500
40143
40144 ColdFire: Get information from the correct GCC
40145
40146 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
40147 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40148
40149 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
40150 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
40151 Date: Wed Apr 30 18:02:59 2008 +0200
40152
40153 Fix warning in env_nand.c if compiled for DaVinci Schmoogie
40154
40155 Fix warnings
40156
40157 nv_nand.c: In function 'saveenv':
40158 env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
40159 env_nand.c: In function 'env_relocate_spec':
40160 env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
40161
40162 if compiled for davinci_schmoogie_config.
40163
40164 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
40165 Ack by: Sergey Kubushyn <ksi@koi8.net>
40166
40167 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
40168 Author: Anatolij Gustschin <agust@denx.de>
40169 Date: Wed Apr 30 13:34:40 2008 +0200
40170
40171 Fix warnings while compiling net/net.c for MPC8610HPCD board
40172
40173 MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
40174 causing overriding default -Os option. New gcc (ver. 4.2.2)
40175 produces warnings while compiling net/net.c file with -O2
40176 option. The patch is an attempt to fix this.
40177
40178 Signed-off-by: Anatolij Gustschin <agust@denx.de>
40179
40180 commit 58b575e575c25fdf8c88141e145db201f3092149
40181 Author: Sascha Laue <Sascha.Laue@gmx.biz>
40182 Date: Wed Apr 30 15:23:38 2008 +0200
40183
40184 lwmon5: fix offset error in sysmon0 POST
40185
40186 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
40187 Signed-off-by: Wolfgang Denk <wd@denx.de>
40188
40189 commit e7419b243a373de4ee042f7d4f45f66de787240d
40190 Author: Sascha Laue <Sascha.Laue@gmx.biz>
40191 Date: Wed Apr 30 15:16:35 2008 +0200
40192
40193 lwmon5: fix manual merge error in POST
40194
40195 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
40196
40197 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
40198 Author: Wolfgang Denk <wd@denx.de>
40199 Date: Wed Apr 30 17:46:26 2008 +0200
40200
40201 cmd_nand.c: fix another 'incompatible pointer type' warning.
40202
40203 Signed-off-by: Wolfgang Denk <wd@denx.de>
40204
40205 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
40206 Author: Wolfgang Denk <wd@denx.de>
40207 Date: Wed Apr 30 17:25:07 2008 +0200
40208
40209 Makefile: fix parallel builds
40210
40211 This problem shows up with parallel builds only; it results in
40212 somewhat cryptic error messages like
40213
40214 $ JOBS=-j6 MAKEALL netstar
40215 Configuring for netstar board...
40216 arm-linux-ld: cannot find -lgeneric
40217 make[1]: *** [eeprom.srec] Error 1
40218
40219 A few boards (like netstar and voiceblue) need some libraries for
40220 building; however, the board Makefile does not contain any such
40221 dependencies which may cause problems with parallel builds. Adding
40222 such dependencies is difficult as we would also have to provide build
40223 rules, which already exist in the respective library Makefiles.
40224
40225 To solve this, we make sure that all libraries get built before the
40226 board code.
40227
40228 Signed-off-by: Wolfgang Denk <wd@denx.de>
40229
40230 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
40231 Author: Stefan Roese <sr@denx.de>
40232 Date: Wed Apr 30 14:51:36 2008 +0200
40233
40234 ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
40235
40236 This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
40237 used for NAND booting to match the values needed for the new 512MB
40238 DIMM modules shipped with the productions boards:
40239
40240 Crucial: CT6464AC667.8FB
40241
40242 Signed-off-by: Stefan Roese <sr@denx.de>
40243
40244 commit ea9202a659dc75996facf1475f1866a19a9d3129
40245 Author: Stefan Roese <sr@denx.de>
40246 Date: Wed Apr 30 10:49:43 2008 +0200
40247
40248 ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
40249
40250 This patch fixes a problem with DIMMs that have 8 banks. Now the
40251 MCIF0_MBxCF register will be setup correctly for this setup too.
40252
40253 This was noticed with the 512MB DIMM on Canyonlands/Glacier.
40254
40255 Signed-off-by: Stefan Roese <sr@denx.de>
40256
40257 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
40258 Author: Wolfgang Denk <wd@denx.de>
40259 Date: Tue Apr 29 23:41:06 2008 +0200
40260
40261 Prepare v1.3.3-rc2, again.
40262
40263 Signed-off-by: Wolfgang Denk <wd@denx.de>
40264
40265 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
40266 Author: Wolfgang Denk <wd@denx.de>
40267 Date: Tue Apr 29 23:35:24 2008 +0200
40268
40269 Prepare v1.3.3-rc2
40270
40271 Signed-off-by: Wolfgang Denk <wd@denx.de>
40272
40273 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
40274 Author: Wolfgang Denk <wd@denx.de>
40275 Date: Tue Apr 29 23:32:20 2008 +0200
40276
40277 common/env_nand.c: fix one more incompatible pointer type issue
40278
40279 Signed-off-by: Wolfgang Denk <wd@denx.de>
40280
40281 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
40282 Author: Wolfgang Denk <wd@denx.de>
40283 Date: Tue Apr 29 21:33:08 2008 +0200
40284
40285 post/board/lwmon5/sysmon.c: fix manual merge error.
40286
40287 Signed-off-by: Wolfgang Denk <wd@denx.de>
40288
40289 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
40290 Author: Kumar Gala <galak@kernel.crashing.org>
40291 Date: Tue Apr 29 12:54:59 2008 -0500
40292
40293 85xx: Add -mno-spe to e500/85xx builds
40294
40295 Newer gcc's might be configured to enable autovectorization by default.
40296 If we happen to build with one of those compilers we will get SPE
40297 instructions in random code.
40298
40299 -mno-spe disables the compiler for automatically generating SPE
40300 instructions without our knowledge.
40301
40302 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40303
40304 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
40305 Author: Kumar Gala <galak@kernel.crashing.org>
40306 Date: Tue Apr 29 10:18:34 2008 -0500
40307
40308 Update .gitignore for zlib.h
40309
40310 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40311
40312 commit 45239cf4152109caa925145ccd433529902df887
40313 Author: Kumar Gala <galak@kernel.crashing.org>
40314 Date: Tue Apr 29 10:27:08 2008 -0500
40315
40316 85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
40317
40318 All the 85xx and 86xx UM describe the register as timing_cfg_3
40319 not as ext_refrec.
40320
40321 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40322
40323 commit ef7d30b14394e4c4a153118f5845760cadada02a
40324 Author: Kumar Gala <galak@kernel.crashing.org>
40325 Date: Tue Apr 29 10:28:34 2008 -0500
40326
40327 85xx/86xx: Rename DDR init address and init extended address register
40328
40329 Rename init_addr and init_ext_addr to match the docs between
40330 85xx and 86xx. Both now use 'init_addr' and 'init_ext_addr'.
40331
40332 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40333
40334 commit cf6cc014270549684873a5972d2595052c468cb6
40335 Author: Kumar Gala <galak@kernel.crashing.org>
40336 Date: Mon Apr 28 02:24:04 2008 -0500
40337
40338 85xx: Additional fixes and cleanup of MP code
40339
40340 * adjust __spin_table alignment to match ePAPR v0.94 spec
40341 * loop over all cpus when determing who is up. This fixes an issue if
40342 the "boot cpu" isn't core0. The "boot cpu" will already be in the
40343 cpu_up_mask so there is no harm
40344 * Added some protection in the code to ensure proper behavior. These
40345 changes are explicitly needed but don't hurt:
40346 - Added eieio to ensure the "hot word" of the table is written after
40347 all other table updates have occurred.
40348 - Added isync to ensure we don't prefetch loading of table entries
40349 until we a released
40350
40351 These issues we raised by Dave Liu.
40352
40353 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40354
40355 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
40356 Author: Yuri Tikhonov <yur@emcraft.com>
40357 Date: Tue Apr 29 15:06:41 2008 +0200
40358
40359 lwmon5: minor clean-up to include/configs/lwmon5.h
40360
40361 LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
40362 the CFG_DSPIC_TEST_ADDR definition more readable.
40363
40364 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
40365
40366 commit f4c4d21a885ccc222fd0acdf653b683249e85117
40367 Author: Stefan Roese <sr@denx.de>
40368 Date: Tue Apr 29 16:08:05 2008 +0200
40369
40370 ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
40371
40372 Signed-off-by: Stefan Roese <sr@denx.de>
40373
40374 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
40375 Author: Yuri Tikhonov <yur@emcraft.com>
40376 Date: Tue Apr 29 13:32:45 2008 +0200
40377
40378 ppc flush_cache: add watch-dog triggering into the loops.
40379
40380 Some boards (e.g. lwmon5) need rather a frequent watch-dog
40381 kicking. Since the time it takes for the flush_cache() function
40382 to complete its job depends on the size of data being flushed, one
40383 may encounter watch-dog resets on such boards when, for example,
40384 download big files over ethernet.
40385
40386 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
40387
40388 commit cab99d6f3281ab6784feccf98b9b425daa58418a
40389 Author: Stefan Roese <sr@denx.de>
40390 Date: Tue Apr 29 14:44:54 2008 +0200
40391
40392 ppc4xx: Fix compilation warning in denali_spd_ddr2.c
40393
40394 Signed-off-by: Stefan Roese <sr@denx.de>
40395
40396 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
40397 Author: Stefan Roese <sr@denx.de>
40398 Date: Tue Apr 29 14:12:07 2008 +0200
40399
40400 ppc4xx: Fix Katmai CFG_MONITOR_LEN
40401
40402 Signed-off-by: Stefan Roese <sr@denx.de>
40403
40404 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
40405 Author: Stefan Roese <sr@denx.de>
40406 Date: Tue Apr 29 13:57:07 2008 +0200
40407
40408 ppc4xx: Complete remove bogus dflush()
40409
40410 Since the current dflush() implementation is know to have some problems
40411 (as seem on lwmon5 ECC init) this patch removes it completely and replaces
40412 it by using clean_dcache_range().
40413
40414 Tested on Katmai with ECC DIMM.
40415
40416 Signed-off-by: Stefan Roese <sr@denx.de>
40417
40418 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
40419 Author: Stefan Roese <sr@denx.de>
40420 Date: Tue Apr 29 13:36:51 2008 +0200
40421
40422 ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
40423
40424 As it seems the "old" ECC initialization routine by using dflush() didn't
40425 write all lines in the dcache back to memory on lwmon5. This could lead
40426 to ECC error upon Linux booting. This patch changes the program_ecc()
40427 routine to now use clean_dcache_range() instead of dflush().
40428 clean_dcache_range() uses dcbst which is exactly what we want in this
40429 case.
40430
40431 Since dflush() is known is cause problems, this routine will be
40432 removed completely and replaced by clean_dcache_range() with an
40433 additional patch.
40434
40435 Signed-off-by: Stefan Roese <sr@denx.de>
40436
40437 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
40438 Author: Yuri Tikhonov <yur@emcraft.com>
40439 Date: Mon Apr 28 18:19:34 2008 +0200
40440
40441 POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
40442
40443 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
40444
40445 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
40446 Author: Markus Brunner <super.firetwister@googlemail.com>
40447 Date: Mon Apr 28 08:47:47 2008 +0200
40448
40449 ppc4xx: Fixup ebc clock in FDT for 405GP/EP
40450
40451 On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
40452 and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
40453 doesn't exist.
40454
40455 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
40456
40457 commit 2ef7503a593c77a80c2a054011970227c4b62774
40458 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40459 Date: Thu Apr 24 07:57:17 2008 +0200
40460
40461 NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
40462
40463 Move non-inlied functions into specific drivers file
40464 Set get_prom as weak
40465
40466 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40467 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
40468 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40469
40470 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
40471 Author: Guennadi Liakhovetski <lg@denx.de>
40472 Date: Thu Apr 3 17:04:19 2008 +0200
40473
40474 net: make ARP timeout configurable
40475
40476 Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
40477 On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
40478 to the boards get lost, which typically are ARP replies. By configuring
40479 the timeout to a lower value we significantly improve the first network
40480 transfer time on this board. The timeout is specified in milliseconds,
40481 later internally it is converted to deciseconds, because it has to be
40482 converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
40483 different boards.
40484
40485 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40486 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40487
40488 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
40489 Author: Guennadi Liakhovetski <lg@denx.de>
40490 Date: Thu Apr 3 13:36:18 2008 +0200
40491
40492 minor cs8900 driver clean up
40493
40494 Remove a redundant register definition, clean up some coding style
40495 violations.
40496
40497 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40498 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40499
40500 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
40501 Author: Wolfgang Denk <wd@denx.de>
40502 Date: Mon Apr 28 22:01:04 2008 +0200
40503
40504 jffs2_1pass.c: fix incompatible pointer type warning
40505
40506 Signed-off-by: Wolfgang Denk <wd@denx.de>
40507
40508 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
40509 Author: Sascha Laue <Sascha.Laue@gmx.biz>
40510 Date: Tue Apr 1 10:10:18 2008 +0200
40511
40512 lwmon5: update dsPIC POST spezification
40513
40514 The specification for the lwmon5 board dsPIC POST got changed.
40515 Also add defines for the temperatures and voltages.
40516
40517 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
40518
40519 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
40520 Author: Sascha Laue <Sascha.Laue@gmx.biz>
40521 Date: Tue Apr 1 15:13:03 2008 +0200
40522
40523 Fix watchdog POST for lwmon5
40524
40525 If the hardware watchdog detects a voltage error, the watchdog sets
40526 GPIO62 to low. The watchdog POST has to detect this low level.
40527
40528 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
40529 Signed-off-by: Wolfgang Denk <wd@denx.de>
40530
40531 commit dd5748bcd669f46aeb6686c1b341323843738ccc
40532 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
40533 Date: Mon Apr 28 14:37:14 2008 +0200
40534
40535 rtl8169: fix compiler warnings
40536
40537 Fix multiple compiler warnings related to argument type mismatch.
40538
40539 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
40540
40541 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
40542 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
40543 Date: Mon Apr 28 14:36:06 2008 +0200
40544
40545 IDE: fix compiler warnings
40546
40547 The IDE driver can use 32-bit addresses in LBA mode, in which case it
40548 spits multiple warnings during compilation. Fix them.
40549
40550 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
40551
40552 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
40553 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
40554 Date: Mon Apr 28 14:35:57 2008 +0200
40555
40556 LinkStation: fix compiler warning, add a maintainer
40557
40558 out_8 wants a pointer to an unsigned as the first argument. Add a
40559 maintainer for Linkstation boards.
40560
40561 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
40562
40563 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
40564 Author: Wolfgang Denk <wd@denx.de>
40565 Date: Mon Apr 28 14:55:12 2008 +0200
40566
40567 cmd_nand.c: fix "differ in signedness" problem
40568
40569 Signed-off-by: Wolfgang Denk <wd@denx.de>
40570
40571 commit f2c288a35341ad02ac03b1563d786763c9c8f159
40572 Author: Wolfgang Denk <wd@denx.de>
40573 Date: Mon Apr 28 12:48:47 2008 +0200
40574
40575 pcnet.c: fix a merge issue
40576
40577 Signed-off-by: Wolfgang Denk <wd@denx.de>
40578
40579 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
40580 Author: Wolfgang Denk <wd@denx.de>
40581 Date: Mon Apr 28 12:08:18 2008 +0200
40582
40583 NAND: fix some strict-aliasing compiler warnings
40584
40585 Signed-off-by: Wolfgang Denk <wd@denx.de>
40586
40587 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
40588 Author: Stefan Roese <sr@denx.de>
40589 Date: Mon Apr 28 11:37:14 2008 +0200
40590
40591 ppc4xx: Fix compile warning of hcu4 board
40592
40593 Signed-off-by: Stefan Roese <sr@denx.de>
40594
40595 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
40596 Author: Wolfgang Denk <wd@denx.de>
40597 Date: Mon Apr 28 11:31:23 2008 +0200
40598
40599 MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
40600
40601 Signed-off-by: Wolfgang Denk <wd@denx.de>
40602
40603 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
40604 Author: Guennadi Liakhovetski <lg@denx.de>
40605 Date: Mon Apr 28 00:25:32 2008 +0200
40606
40607 mx31ads: fix loadaddr environment variable define
40608
40609 Arithmetic expressions do not get evaluated under stringification. Remove
40610 default network configuration, add DHCP command support. Thanks to Felix
40611 Radensky for reporting.
40612
40613 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40614
40615 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
40616 Author: Wolfgang Denk <wd@denx.de>
40617 Date: Mon Apr 28 10:55:24 2008 +0200
40618
40619 katmai: fix section overlap problem
40620
40621 Since we didn't want to remove features from the configuration, we
40622 decided to increase the U-Boot image size (add one flash sector).
40623
40624 Also changed the default environment definition to make it
40625 independent of such changes.
40626
40627 Signed-off-by: Wolfgang Denk <wd@denx.de>
40628 Acked-by: Stefan Roese <sr@denx.de>
40629
40630 commit 941d696d25624e3cc65ebf924199541acf52d74e
40631 Author: Wolfgang Denk <wd@denx.de>
40632 Date: Mon Apr 28 10:55:24 2008 +0200
40633
40634 katmai: fix section overlap problem
40635
40636 Since we didn't want to remove features from the configuration, we
40637 decided to increase the U-Boot image size (add one flash sector).
40638
40639 Also changed the default environment definition to make it
40640 independent of such changes.
40641
40642 Signed-off-by: Wolfgang Denk <wd@denx.de>
40643 Acked-by: Stefan Roese <sr@denx.de>
40644
40645 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
40646 Author: Kumar Gala <galak@kernel.crashing.org>
40647 Date: Sat Apr 26 11:44:44 2008 -0500
40648
40649 post: Fix building with O=
40650
40651 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40652
40653 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
40654 Author: Wolfgang Denk <wd@denx.de>
40655 Date: Sat Apr 26 01:55:00 2008 +0200
40656
40657 Prepare v1.3.3-rc1
40658
40659 Signed-off-by: Wolfgang Denk <wd@denx.de>
40660
40661 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
40662 Author: Wolfgang Denk <wd@denx.de>
40663 Date: Sat Apr 26 01:25:39 2008 +0200
40664
40665 post/Makefile: make sure to use the correct flags
40666
40667 ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
40668 messages to be printed.
40669
40670 Signed-off-by: Wolfgang Denk <wd@denx.de>
40671
40672 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
40673 Author: Wolfgang Denk <wd@denx.de>
40674 Date: Sat Apr 26 00:34:42 2008 +0200
40675
40676 Coding Style cleanup, update CHANGELOG
40677
40678 Signed-off-by: Wolfgang Denk <wd@denx.de>
40679
40680 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
40681 Author: Magnus Lilja <lilja.magnus@gmail.com>
40682 Date: Sun Apr 20 10:38:12 2008 +0200
40683
40684 i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
40685
40686 This patch enables SPI and MC13783/RTC support for the Litekit board.
40687
40688 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
40689
40690 commit f97abbfb47d9e407354e157cae3f6369e460cd37
40691 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40692 Date: Fri Apr 25 01:08:32 2008 -0500
40693
40694 MPC8544DS: decode pcie3 end-point configuration correctly.
40695
40696 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40697 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40698
40699 commit 292188e15523c165c4269403fdcd33c26d89176e
40700 Author: Roy Zang <tie-fei.zang@freescale.com>
40701 Date: Fri Apr 25 00:55:09 2008 -0500
40702
40703 MPC8544DS: Removes the unknown flash message information
40704
40705 This patch removes the unknown flash message information:
40706 '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
40707 This unknown flash message is caused by PromJet.
40708 Some of the board user is unhappy with this information.
40709
40710 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
40711 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40712
40713 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
40714 Author: Kim Phillips <kim.phillips@freescale.com>
40715 Date: Thu Apr 24 14:07:38 2008 -0500
40716
40717 mpc83xx: bump loadaddr over fdtaddr to 0x500000
40718
40719 this seems as a good compromise between human memory, typing,
40720 and last but not least, to accommodate for current and future kernel bloat.
40721
40722 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40723 Acked-by: Dave Liu <daveliu@freescale.com>
40724
40725 commit be5a7190265a34d968578ff266549c60f6f57654
40726 Author: Dave Liu <r63238@freescale.com>
40727 Date: Tue Apr 15 13:12:23 2008 +0800
40728
40729 mpc83xx: clean up the readme for 83xx boards
40730
40731 1. correct the typo
40732 2. correct the memory map for 837xerdb board
40733
40734 Signed-off-by: Dave Liu <daveliu@freescale.com>
40735
40736 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
40737 Author: Dave Liu <r63238@freescale.com>
40738 Date: Tue Apr 15 13:11:11 2008 +0800
40739
40740 mpc83xx: remove the unused CPM's stuff
40741
40742 The MPC83xx family never have CPM block, so remove it from 83xx.
40743
40744 Signed-off-by: Dave Liu <daveliu@freescale.com>
40745
40746 commit c63ad6325a8ac0097a54b418a3288926b0484b18
40747 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40748 Date: Fri Apr 18 16:29:40 2008 +0200
40749
40750 cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
40751
40752 This patch adds a configurable flash auto protection list that can be used
40753 to make U-Boot protect flash regions in flash_init().
40754
40755 The idea has been discussed on the u-boot mailing list starting
40756 on Nov 18th, 2007.
40757
40758 Even this patch brings a new feature it is used as a bugfix for 4xx
40759 platforms where flash_init() does not completely protect the
40760 monitor's flash range in all situations.
40761
40762 U-Boot protects the flash range from CFG_MONITOR_BASE to
40763 (CFG_MONITOR_BASE + monitor_flash_len - 1) by default. This does not
40764 include the reset vector at 0xfffffffc.
40765
40766 Example:
40767 #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
40768
40769 This config option will auto protect the last 512k of flash that
40770 contains the bootloader on board like APC405 and PMC405.
40771
40772 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40773
40774 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
40775 Author: Stefan Roese <sr@denx.de>
40776 Date: Fri Apr 25 13:59:03 2008 +0200
40777
40778 ppc4xx: Remove double defines in lwmon5.h
40779
40780 introduced with latest lwmon5/POST merge
40781
40782 Signed-off-by: Stefan Roese <sr@denx.de>
40783
40784 commit 7590378fb9c686709492ceb142825cd058255956
40785 Author: Bartlomiej Sieka <tur@semihalf.com>
40786 Date: Fri Apr 25 13:54:02 2008 +0200
40787
40788 Use watchdog-aware functions when calculating hashes of images - take two
40789
40790 Some files didn't get updated properly with the "Use watchdog-aware
40791 functions when calculating hashes of images" commit, this commit
40792 fixes this.
40793
40794 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
40795 Signed-off-by: Wolfgang Denk <wd@denx.de>
40796
40797 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
40798 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40799 Date: Fri Apr 25 12:01:39 2008 +0200
40800
40801 ppc4xx: Add bootcount limit handling for APC405 boards
40802
40803 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40804
40805 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
40806 Author: Bartlomiej Sieka <tur@semihalf.com>
40807 Date: Fri Apr 25 12:10:09 2008 +0200
40808
40809 Use watchdog-aware functions when calculating hashes of images
40810
40811 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
40812
40813 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
40814 Author: Wolfgang Denk <wd@denx.de>
40815 Date: Fri Apr 25 12:44:08 2008 +0200
40816
40817 USB: fix more GCC 4.2.x aliasing warnings
40818
40819 Signed-off-by: Wolfgang Denk <wd@denx.de>
40820 Acked-by: Markus Klotzbuecher <mk@denx.de>
40821
40822 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
40823 Author: Wolfgang Denk <wd@denx.de>
40824 Date: Fri Apr 25 12:41:53 2008 +0200
40825
40826 lib_generic/crc32.c: add missing #include <watchdog.h>
40827
40828 Signed-off-by: Wolfgang Denk <wd@denx.de>
40829
40830 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
40831 Author: Wolfgang Denk <wd@denx.de>
40832 Date: Fri Apr 25 11:52:21 2008 +0200
40833
40834 lib_generic/crc32.c: fix compile problem
40835
40836 Signed-off-by: Wolfgang Denk <wd@denx.de>
40837
40838 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
40839 Author: Stefan Roese <sr@denx.de>
40840 Date: Tue Apr 22 12:20:32 2008 +0200
40841
40842 ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
40843
40844 The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
40845 environment variable will now get passed to the Linux kernel by setting
40846 the device_type property of the PCIe device tree node. For normal root-
40847 complex configuration it will keep its defaults value of "pci" and for
40848 endpoint configuration it will get changed to "pci-endpoint".
40849
40850 Signed-off-by: Stefan Roese <sr@denx.de>
40851
40852 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
40853 Author: Yuri Tikhonov <yur@emcraft.com>
40854 Date: Thu Apr 24 10:30:53 2008 +0200
40855
40856 lwmon5: watchdog POST fix
40857
40858 Use the GPT0_MASKx registers as the temporary storage for watch-dog
40859 timer POST test instead of GPT0_COMPx. The latter
40860 (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
40861
40862 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
40863 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
40864
40865 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
40866 Author: Kim Phillips <kim.phillips@freescale.com>
40867 Date: Mon Apr 21 18:10:14 2008 -0500
40868
40869 lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
40870
40871 This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
40872 proven problematic getting right from the start at least on 83xx and
40873 4xx.
40874
40875 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40876
40877 commit a99715b8ebfc500f3f40e01b36b64d473938443d
40878 Author: Detlev Zundel <dzu@denx.de>
40879 Date: Fri Apr 18 14:50:01 2008 +0200
40880
40881 Realining some header definitions.
40882
40883 Signed-off-by: Detlev Zundel <dzu@denx.de>
40884
40885 commit 4acbc6c7f993cae409c424615415a3e76820f13d
40886 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40887 Date: Thu Apr 24 07:57:16 2008 +0200
40888
40889 NE2000: coding style cleanup
40890
40891 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40892
40893 commit b4aff1ffaf7120032c653357c007faa14f74d29d
40894 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40895 Date: Wed Apr 23 00:11:47 2008 +0900
40896
40897 qemu-mips.h: Add CFI support
40898
40899 CONFIG_ENV_OVERWRITE is also added.
40900
40901 This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
40902
40903 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40904 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40905
40906 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
40907 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40908 Date: Tue Apr 22 22:47:27 2008 +0900
40909
40910 doc/README.mips: Add MIPS notes
40911
40912 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40913
40914 commit 215b01bba8bc662d35f72b084700b192d367dfb4
40915 Author: Bartlomiej Sieka <tur@semihalf.com>
40916 Date: Tue Apr 22 12:27:56 2008 +0200
40917
40918 Add support for calculating hashes with watchdog triggering
40919
40920 Implement watchodg-aware variants of hash calculation functions:
40921 - crc32_wd()
40922 - md5_wd()
40923 - sha1_csum_wd()
40924 The above functions calculate the hash of the input buffer in chunks,
40925 triggering the watchdog after processing each chunk. The chunk size
40926 is given as a function call parameter.
40927
40928 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
40929
40930 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
40931 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40932 Date: Wed Apr 23 11:02:12 2008 +0900
40933
40934 qemu-mips: Cleanup whitespace, indentation, etc.
40935
40936 No functional change.
40937
40938 This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
40939 Then I re-created from scratch, and changed more lines than the original.
40940
40941 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40942 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40943
40944 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
40945 Author: Vlad Lungu <vlad@comsys.ro>
40946 Date: Wed Oct 10 23:02:09 2007 +0300
40947
40948 Fixed pcnet io_base
40949
40950 Bus and phys address are not always the same
40951
40952 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
40953
40954 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
40955 Author: Wolfgang Denk <wd@denx.de>
40956 Date: Thu Apr 24 23:44:26 2008 +0200
40957
40958 drivers/net/pcnet.c: Coding Style cleanup.
40959
40960 Signed-off-by: Wolfgang Denk <wd@denx.de>
40961
40962 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
40963 Author: Vlad Lungu <vlad@comsys.ro>
40964 Date: Wed Oct 10 23:04:23 2007 +0300
40965
40966 Added Am79C970A chip id to pcnet
40967
40968 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
40969
40970 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
40971 Author: Magnus Lilja <lilja.magnus@gmail.com>
40972 Date: Sun Apr 20 10:35:03 2008 +0200
40973
40974 i.MX31: Fix architecture numbers for ADS and Litekit boards
40975
40976 Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
40977
40978 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
40979
40980 commit e7ae84d6c7288790e88639f57cb60daf89c11369
40981 Author: Magnus Lilja <lilja.magnus@gmail.com>
40982 Date: Sun Apr 20 10:36:36 2008 +0200
40983
40984 i.MX31: Use symbolic names for Litekit membases.
40985
40986 Use symbolic names instead of hard coded addresses for Litekit membases.
40987
40988 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
40989
40990 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
40991 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40992 Date: Sat Apr 19 17:59:20 2008 +0200
40993
40994 Fix show_boot_progress prototype
40995
40996 in commit fad634071 "make show_boot_progress () weak."
40997 show_boot_progress is supposed to be declared as weak but declared as
40998 inline instead.
40999
41000 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41001
41002 commit edbed247a14d70b94958010f736621212285de91
41003 Author: Bartlomiej Sieka <tur@semihalf.com>
41004 Date: Fri Apr 18 12:39:23 2008 +0200
41005
41006 Memory footprint optimizations
41007
41008 As suggested by Wolfgang Denk:
41009 - image printing functions:
41010 - remove wrappers
41011 - remove indentation prefix from functions' signatures
41012 - merge getenv_verify and getenv_autostart into one parametrized function
41013
41014 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41015
41016 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
41017 Author: Guennadi Liakhovetski <lg@denx.de>
41018 Date: Tue Apr 15 13:33:11 2008 +0200
41019
41020 MX31ADS environment variable update, spi and rtc support
41021
41022 Update MX31ADS default environment to better match the flash layout and
41023 the memory map, support SPI and RTC.
41024
41025 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41026
41027 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
41028 Author: Kumar Gala <galak@kernel.crashing.org>
41029 Date: Mon Apr 21 09:28:36 2008 -0500
41030
41031 85xx: Round up frequency calculations to get reasonable output
41032
41033 eg. because of rounding error we can get 799Mhz instead of 800Mhz.
41034
41035 Introduced DIV_ROUND_UP and roundup taken from linux kernel.
41036
41037 Signed-off-by: Dejan Minic <minic@freescale.com>
41038 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
41039 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41040 Acked-by: Andy Fleming <afleming@freescale.com>
41041
41042 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
41043 Author: Kumar Gala <galak@kernel.crashing.org>
41044 Date: Wed Apr 23 16:58:04 2008 -0500
41045
41046 fsl_pci: Only modify registers if we have them
41047
41048 pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
41049
41050 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41051
41052 commit 83fe32334337def160b302aa9d152d808bfcc68e
41053 Author: Markus Klotzbücher <mk@denx.de>
41054 Date: Wed Apr 23 10:57:33 2008 +0200
41055
41056 USB: remove a cpu bug workaround for an unsupported architecture.
41057
41058 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41059
41060 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
41061 Author: Markus Klotzbücher <mk@denx.de>
41062 Date: Wed Apr 23 10:53:23 2008 +0200
41063
41064 USB: fix those pesky aliasing warnings issued by gcc-4.2
41065
41066 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41067 Signed-off-by: Detlev Zundel <dzu@denx.de>
41068
41069 commit 89cdab788f3716b335fefb60b836ebcf975aceab
41070 Author: Mike Frysinger <vapier@gentoo.org>
41071 Date: Mon Mar 31 11:02:01 2008 -0400
41072
41073 crc32: use uint32_t rather than unsigned long
41074
41075 The envcrc.c does sizeof(unsigned long) when calculating the crc, but
41076 this is done with the build toolchain instead of the target tool
41077 chain, so if the build is a 64bit system but the target is 32bits,
41078 the size will obviously be wrong. This converts all unsigned long
41079 stuff related to crc32 to uint32_t types. Compile tested only: output
41080 of ./tools/envcrc when run on a 32bit build system matches that of a
41081 64bit build system.
41082
41083 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41084 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41085
41086 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
41087 Author: Dirk Behme <dirk.behme@googlemail.com>
41088 Date: Wed Mar 26 09:53:29 2008 +0100
41089
41090 ARM: Davinci: Fix DM644x timer overflow handling and cleanup
41091
41092 Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
41093
41094 Changes:
41095
41096 - Remove *_masked() functions as noted by Wolfgang
41097
41098 - Adapt register naming to recent TI spec (sprue26, March 2007)
41099
41100 - Fix reset_timer() handling
41101
41102 - 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.
41103
41104 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
41105
41106 - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
41107
41108 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
41109
41110 Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
41111
41112 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
41113 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
41114
41115 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
41116 Author: Sergei Poselenov <sposelenov@emcraft.com>
41117 Date: Wed Apr 9 16:09:41 2008 +0200
41118
41119 Added watchdog triggering calls in the "mtest" test function.
41120
41121 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
41122
41123 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
41124 Author: Yuri Tikhonov <yur@emcraft.com>
41125 Date: Sun Apr 6 19:19:14 2008 +0200
41126
41127 lwmon5 watchdog: limit trigger rate
41128
41129 Limit the rate of h/w watch-dog triggering on the LWMON5 board by
41130 the CONFIG_WD_MAX_RATE value.
41131
41132 Note that an earlier version of this patch which used microseconds
41133 instead of ticks dis not work. The problem was that we used
41134 usec2ticks() to convert microseconds into ticks. usec2ticks() uses
41135 get_tbclk(), which in turn calls get_sys_info(). It turns out that
41136 this function does a lot of prolonged operations (like divisions)
41137 which take too much time so we do not trigger the watchdog in time,
41138 and it resets the system.
41139
41140 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
41141
41142 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
41143 Author: Yuri Tikhonov <yur@emcraft.com>
41144 Date: Mon Mar 31 10:51:37 2008 +0200
41145
41146 POST: move CONFIG_POST to Makefiles
41147
41148 Introduce the new logical option CONFIG_HAS_POST which is set when the
41149 platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
41150 to determine should the POST libs be compiled for the selected target
41151 platform, or not.
41152
41153 To avoid breaking u-boot linking process, the empty post/libpost.a file is
41154 created for platforms which do not have POSTs.
41155
41156 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
41157 Signed-off-by: Wolfgang Denk <wd@denx.de>
41158
41159 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
41160 Author: Yuri Tikhonov <yur@emcraft.com>
41161 Date: Mon Mar 31 10:49:34 2008 +0200
41162
41163 POST: preparations for moving CONFIG_POST to Makefiles
41164
41165 Remove CONFIG_POST ifdefs from the post/ source files.
41166
41167 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
41168 Signed-off-by: Wolfgang Denk <wd@denx.de>
41169
41170 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
41171 Author: Stefan Roese <sr@denx.de>
41172 Date: Tue Apr 22 14:14:20 2008 +0200
41173
41174 ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
41175
41176 This patch fixes the Canyonlands and Glacier default environment to better
41177 fit to the arch/powerpc device-tree kernels. The variables dealing with
41178 arch/ppc booting are removed, since these boards are supported only in
41179 arch/powerpc. Glacier uses the same config file as Canyonlands.
41180
41181 Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
41182
41183 Signed-off-by: Stefan Roese <sr@denx.de>
41184
41185 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
41186 Author: Stefan Roese <sr@denx.de>
41187 Date: Tue Apr 22 14:06:42 2008 +0200
41188
41189 ppc4xx: Small coding style cleanup for the latest esd patches
41190
41191 Signed-off-by: Stefan Roese <sr@denx.de>
41192
41193 commit 79941d63bc03aed8c48d7602f18217cc200ee931
41194 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41195 Date: Mon Apr 21 18:01:07 2008 +0200
41196
41197 ppc4xx: Update CPU strapping for PMC440 boards
41198
41199 This patch removes the temporary 'test' strapping option
41200 of the sbe command. The '667' strapping option now uses
41201 a PLB/PCI divider of 3.
41202
41203 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41204
41205 commit f00cf3193a6635355b121e90debb2f54e777e7da
41206 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41207 Date: Mon Apr 21 14:42:21 2008 +0200
41208
41209 ppc4xx: Remove unused APC405 strataflash driver
41210
41211 The APC405 board support has been migrated to use the common
41212 CFI flash driver.
41213
41214 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41215
41216 commit 1c686676a86473bbd92151f0544e109413f6ed06
41217 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41218 Date: Mon Apr 21 14:42:17 2008 +0200
41219
41220 ppc4xx: Update APC405 configuration
41221
41222 - enable esd's auto_update mechanism
41223 - support alternative flash layout on rev. 1.8 boards
41224 - update default environment
41225 - use common CFI flash driver
41226 - coding style cleanup
41227
41228 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41229
41230 commit 0b9872515a521bf7866dc24b85ddce708e60d702
41231 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41232 Date: Mon Apr 21 14:42:11 2008 +0200
41233
41234 ppc4xx: Update APC405 board support
41235
41236 - enable esd's auto_update mechanism
41237 - fix LCD support on latest hardware revision (uses other LCD controller)
41238 - support alternative flash layout on rev. 1.8 boards
41239 - coding style cleanup
41240
41241 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41242
41243 commit 83975d02e225e231960784972e7820a8b303756b
41244 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41245 Date: Mon Apr 21 14:42:06 2008 +0200
41246
41247 ppc4xx: update esd's common auto_update code for 405 boards
41248
41249 - Coding style cleanup (long lines)
41250 - improve handling of protected flash regions
41251 - remove dead code
41252
41253 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41254
41255 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
41256 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41257 Date: Mon Apr 21 14:41:59 2008 +0200
41258
41259 ppc4xx: Update esd's common LCD code for 405 boards
41260
41261 - Coding style cleanup (long lines)
41262 - Add s1d13505 support
41263 - Make some functions return a result code instead of void
41264
41265 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41266
41267 commit dea68189424c3f1242427a8146a3861bf093173c
41268 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41269 Date: Mon Apr 21 11:36:55 2008 +0200
41270
41271 ppc4xx: Update FPGA image for APC405 boards
41272
41273 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41274
41275 commit 2a05b152924acfcec3b037693329e517e6d3578f
41276 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41277 Date: Mon Apr 21 11:36:08 2008 +0200
41278
41279 ppc4xx: Update bootlogo for APC405 boards
41280
41281 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41282
41283 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
41284 Author: Stefan Roese <sr@denx.de>
41285 Date: Fri Apr 18 16:41:31 2008 +0200
41286
41287 ppc4xx: Add dcache_enable() for 440
41288
41289 dcache_enable() was missing for 440 and the patch
41290 017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
41291 "] behavior uses this function.
41292
41293 Note: Currently the cache handling functions like
41294 d/icache_disable/enable() are NOP's on 440. This may be changed in the
41295 future.
41296
41297 Signed-off-by: Stefan Roese <sr@denx.de>
41298
41299 commit a49e0d177a0749614b316ec847fb623f09c82c07
41300 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41301 Date: Mon Apr 21 11:19:04 2008 +0200
41302
41303 video: Add missing free for logo memory
41304
41305 This patch adds two missing free()s.
41306
41307 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41308
41309 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
41310 Author: Troy Kisky <troy.kisky@boundarydevices.com>
41311 Date: Mon Sep 24 16:41:43 2007 -0700
41312
41313 PATCH - Fix oob data copied into supplied buffer
41314
41315 This patch correctly sets the oobavail variable
41316 and fixes a bug where the oob data was not valid when
41317 there where multiple groups in oobfree.
41318
41319 First segment fixes a typo
41320 Second segment fixes a bug where oob data may be copied incorrectly.
41321 Third segment adds an error message when exiting due to write protect.
41322 Forth segment fixes a bug where oobavail may be set incorrectly.
41323
41324 Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
41325
41326 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
41327 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41328 Date: Fri Apr 18 17:24:32 2008 +0200
41329
41330 ppc4xx: Fix sys_get_info() for 405GP(r)
41331
41332 This patch assigns the correct EBC clock for 405GP(r) CPUs
41333 to PPC4xx_SYS_INFO structure. Without this patch U-Boot
41334 uses an uninitialized EBC clock in its startup message.
41335
41336 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41337
41338 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
41339 Author: Wolfgang Denk <wd@denx.de>
41340 Date: Sun Apr 20 15:39:38 2008 -0700
41341
41342 Makefile: remove nand_spl/System.map when cleaning up.
41343
41344 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
41345 Author: Wolfgang Denk <wd@denx.de>
41346 Date: Sun Apr 20 15:35:52 2008 -0700
41347
41348 MAKEALL: sort entries / lists.
41349
41350 Signed-off-by: Wolfgang Denk <wd@denx.de>
41351
41352 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
41353 Author: Kumar Gala <galak@kernel.crashing.org>
41354 Date: Fri Apr 18 11:29:01 2008 -0500
41355
41356 85xx: Fix size of cpu-release-addr property
41357
41358 The cpu-release-addr is defined as always being a 64-bit quanity regardless
41359 if we are running on a 32-bit or 64-bit machine.
41360
41361 commit 88353a985109562a639b2f8a0c90d77011bfe374
41362 Author: Timur Tabi <timur@freescale.com>
41363 Date: Fri Apr 4 11:15:58 2008 -0500
41364
41365 Fix calculation of I2C clock for some 85xx chips
41366
41367 Some 85xx chips use CCB as the base clock for the I2C. Some use CCB/2, and
41368 some use CCB/3. There is no pattern that can be used to determine which
41369 chips use which frequency, so the only way to determine is to look up the
41370 actual SOC designation and use the right value for that SOC.
41371
41372 Update immap_85xx.h to include the GUTS PORDEVSR2 register.
41373
41374 Signed-off-by: Timur Tabi <timur@freescale.com>
41375
41376 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
41377 Author: Wolfgang Denk <wd@denx.de>
41378 Date: Fri Apr 18 11:44:27 2008 -0700
41379
41380 Fix build breakage casued by commit c0559be371b2
41381
41382 Change env_get_char from a global function ptr to a function.
41383
41384 Signed-off-by: Wolfgang Denk <wd@denx.de>
41385
41386 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
41387 Author: Wolfgang Denk <wd@denx.de>
41388 Date: Fri Apr 18 10:53:41 2008 -0700
41389
41390 Coding Style cleanup, update CHANGELOG.
41391
41392 Signed-off-by: Wolfgang Denk <wd@denx.de>
41393
41394 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
41395 Author: Mike Frysinger <vapier@gentoo.org>
41396 Date: Tue Apr 8 14:00:57 2008 -0400
41397
41398 Add support for u-boot in svn and localversion-* files
41399
41400 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41401
41402 commit d23ff6827decf121461fbc5622612fd7effe207e
41403 Author: Guennadi Liakhovetski <lg@denx.de>
41404 Date: Thu Apr 3 17:04:22 2008 +0200
41405
41406 MX31ADS network and flash updates
41407
41408 This patch allows U-Boot to use buffered writes to the Spansion NOR
41409 flash installed on this board, and eliminates long delays in network
41410 transfers after the board startup.
41411
41412 Also modify flash layout to embed main and redundant environment
41413 blocks in the U-Boot image.
41414
41415 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41416
41417 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
41418 Author: Guennadi Liakhovetski <lg@denx.de>
41419 Date: Mon Apr 14 10:53:12 2008 +0200
41420
41421 Support for the MX31ADS evaluation board from Freescale
41422
41423 This patch adds support for the MX31ADS evaluation board from Freescale,
41424 initialization code is copied from RedBoot sources, also provided by
41425 Freescale.
41426
41427 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41428
41429 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
41430 Author: Stefan Roese <sr@denx.de>
41431 Date: Tue Apr 8 10:33:29 2008 +0200
41432
41433 ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
41434
41435 Signed-off-by: Stefan Roese <sr@denx.de>
41436
41437 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
41438 Author: Stefan Roese <sr@denx.de>
41439 Date: Tue Apr 8 10:33:28 2008 +0200
41440
41441 ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
41442
41443 Signed-off-by: Stefan Roese <sr@denx.de>
41444
41445 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
41446 Author: Stefan Roese <sr@denx.de>
41447 Date: Tue Apr 8 10:33:27 2008 +0200
41448
41449 ppc4xx: Add Glacier NAND booting target
41450
41451 Signed-off-by: Stefan Roese <sr@denx.de>
41452
41453 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
41454 Author: Stefan Roese <sr@denx.de>
41455 Date: Tue Apr 8 10:31:00 2008 +0200
41456
41457 nand_spl: Update nand_spl to support 2k page size NAND devices
41458
41459 This patch adds support for booting from 2k page sized NAND device
41460 (e.g. Micron 29F2G08AAC).
41461
41462 Tested on AMCC Canyonlands.
41463
41464 Signed-off-by: Stefan Roese <sr@denx.de>
41465
41466 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
41467 Author: Anatolij Gustschin <agust@denx.de>
41468 Date: Thu Apr 17 18:18:00 2008 +0200
41469
41470 Fix crash on sequoia in ppc_4xx_eth_init
41471
41472 Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
41473 with cache enabled (TLB Parity exeption). This patch
41474 fixes the problem.
41475
41476 Signed-off-by: Anatolij Gustschin <agust@denx.de>
41477
41478 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
41479 Author: Anatolij Gustschin <agust@denx.de>
41480 Date: Thu Apr 17 18:15:27 2008 +0200
41481
41482 ppc4xx: Fix crash on sequoia with cache enabled
41483
41484 Currently U-Boot crashes on sequoia board in CPU POST if
41485 cache is enabled (CONFIG_4xx_DCACHE defined). The cache
41486 won't be disabled by change_tlb before CPU POST because
41487 there is an insufficient adress range check since
41488 CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
41489 this problem.
41490
41491 Signed-off-by: Anatolij Gustschin <agust@denx.de>
41492
41493 commit 43c509254fab375c49936498da944658117ed07c
41494 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
41495 Date: Thu Apr 17 23:35:13 2008 +0900
41496
41497 Use jr as register jump instruction
41498
41499 Current assembler codes are inconsistent in the way of register jump
41500 instruction usage; some use jr, some use j. Of course GNU as allows both
41501 usages, but as can be expected from `Jump Register' the mnemonic `jr' is
41502 more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
41503 at all.
41504
41505 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
41506
41507 commit 7ce63709828d37b08866e537339a169bd0db2bd3
41508 Author: Guennadi Liakhovetski <lg@denx.de>
41509 Date: Tue Apr 15 14:15:30 2008 +0200
41510
41511 RTC driver for MC13783
41512
41513 MC13783 is a multifunction IS with an SPI interface to the host. This
41514 driver handles the RTC controller in this chip.
41515
41516 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41517
41518 commit 38254f45b0b412332726c90d3184ad47479fcffb
41519 Author: Guennadi Liakhovetski <lg@denx.de>
41520 Date: Tue Apr 15 14:14:25 2008 +0200
41521
41522 New i.MX31 SPI driver
41523
41524 This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
41525 only implemented and tested on i.MX31, can with a modified register layout
41526 and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
41527 controllers too.
41528
41529 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41530
41531 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
41532 Author: Magnus Lilja <lilja.magnus@gmail.com>
41533 Date: Tue Apr 15 19:09:10 2008 +0200
41534
41535 Fix name of i.MX31 boards in config file header
41536
41537 Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
41538
41539 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
41540
41541 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
41542 Author: Mike Frysinger <vapier@gentoo.org>
41543 Date: Sun Apr 13 19:42:19 2008 -0400
41544
41545 allow ports to override go behavior
41546
41547 Split the arch-specific logic out of the common go code and into a dedicated
41548 weak function called do_go_exec() that lives in cpu directories. This will
41549 need review from i386/nios people to make sure I didn't break them.
41550
41551 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
41552 Author: Mike Frysinger <vapier@gentoo.org>
41553 Date: Sun Apr 13 19:42:18 2008 -0400
41554
41555 allow ports to override bootelf behavior
41556
41557 Change the bootelf setup function into a dedicated weak function called
41558 do_bootelf_exec. This way ports can control the behavior however they
41559 like before/after calling the ELF entry point.
41560
41561 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
41562 Author: Ulf Samuelsson <ulf@atmel.com>
41563 Date: Sat Apr 12 20:56:03 2008 +0200
41564
41565 Reorder ARM boards in Makefile
41566
41567 Rearrange ARM boards in Makefile so that ARM926EJ-S boards
41568 are no longer under ARM92xT header.
41569
41570 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
41571 Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41572
41573 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
41574 Author: Ulf Samuelsson <ulf@atmel.com>
41575 Date: Sat Apr 12 20:29:44 2008 +0200
41576
41577 Clean up dataflash partitioning
41578
41579 This patch removes the board dependent parts from
41580 "drivers/mtd/dataflash.c".
41581 Each board relying on this, will have the appropriate
41582 code in a new file, "partition.c" in the board directory.
41583 board Makefiles updated to use the file.
41584
41585 The dataflash partitions are aligned on sector/page boundaries.
41586
41587 The CONFIG_NEW_DF_PARTITION was used to create named partitions
41588 This is now the default operation, and the CONFIG variable is removed.
41589
41590 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
41591
41592 commit 51ecde946fec511a16346e498204ca10ad71080d
41593 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41594 Date: Sat Apr 12 14:08:45 2008 +0200
41595
41596 gitignore: udpate stgit generated and .patch file
41597
41598 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41599
41600 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
41601 Author: Wolfgang Denk <wd@denx.de>
41602 Date: Fri Apr 18 00:15:36 2008 -0700
41603
41604 Get rid of redundant copy of renamed header file.
41605
41606 Signed-off-by: Wolfgang Denk <wd@denx.de>
41607
41608 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
41609 Author: Vlad Lungu <vlad@comsys.ro>
41610 Date: Fri Apr 11 21:20:14 2008 +0300
41611
41612 Fix dependency generation for older gcc versions
41613
41614 With gcc 3.3.3 at least, compilation fails with
41615
41616 Generating include/autoconf.mk
41617 gcc: compilation of header file requested
41618 make: *** [include/autoconf.mk] Error 1
41619
41620 since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
41621
41622 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
41623
41624 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
41625 Author: Marian Balakowicz <m8@semihalf.com>
41626 Date: Fri Apr 11 11:07:49 2008 +0200
41627
41628 Restore the ability to continue booting after legacy image overwrite
41629
41630 Before new uImage code was merged, bootm code allowed for the kernel image to
41631 get overwritten during decompresion. new uImage introduced a check for image
41632 overwrites and refused to boot the image that got overwritten. This patch
41633 restores the old behavior. It also adds a warning when the image overwriten is
41634 a multi-image file, because in such case accessing componentes other than the
41635 first one will fail.
41636
41637 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
41638
41639 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
41640 Author: Marian Balakowicz <m8@semihalf.com>
41641 Date: Fri Apr 11 11:07:43 2008 +0200
41642
41643 ppc: Fix ftd_blob variable init when processing raw blob
41644
41645 Set fdt_blob variable before its value is printed out.
41646
41647 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
41648
41649 commit 3d36be030043cd841a2551d00a395135e363a64b
41650 Author: Jason Wessel <jason.wessel@windriver.com>
41651 Date: Thu Apr 10 14:30:16 2008 -0500
41652
41653 Remove all the search paths from the .lds files.
41654
41655 The cross compiler is responsible for providing the correct libraries
41656 and the logic to find the linking libraries.
41657
41658 Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
41659
41660 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
41661 Author: Bartlomiej Sieka <tur@semihalf.com>
41662 Date: Mon Apr 14 15:44:16 2008 +0200
41663
41664 Boot-related documentation update
41665
41666 - document 'bootm_low' and 'bootm_size' environment variables
41667 - update inaccurate CFG_BOOTMAPSZ entry
41668
41669 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41670
41671 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
41672 Author: Guennadi Liakhovetski <lg@denx.de>
41673 Date: Wed Apr 9 17:34:08 2008 +0200
41674
41675 Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
41676
41677 Restore logic reverted by commit
41678
41679 commit 80767a6cead9990d9e77e62be947843c2c72f469
41680 Author: Peter Pearse <peter.pearse@arm.com>
41681 Date: Wed Sep 5 16:04:41 2007 +0100
41682
41683 Changed API name to coloured_led.h
41684 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
41685 Tidied other cpu/arm920t/start.S code
41686
41687 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41688
41689 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
41690 Author: Mike Frysinger <vapier@gentoo.org>
41691 Date: Tue Apr 8 10:24:24 2008 -0400
41692
41693 Remove conflicting NAND ID
41694
41695 There are two NAND entries with ID 0xDC and this obviously causes problems.
41696 In the kernel, they punted the first entry, so we should do the same.
41697
41698 See this upstream e-mail for more info:
41699 http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
41700
41701 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
41702 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41703
41704 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
41705 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
41706 Date: Tue Apr 8 16:20:35 2008 +0900
41707
41708 cpu/mips/cpu.c: Fix flush_cache bug
41709
41710 Cache operations have to take line address (addr), not start_addr.
41711 I noticed this bug when debugging ping failure.
41712
41713 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
41714
41715 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
41716 Author: Martin Krause <martin.krause@tqs.de>
41717 Date: Thu Apr 3 14:29:01 2008 +0200
41718
41719 TQM5200: fix default IDE reset level
41720
41721 Before the first call of ide_reset(), the level of the IDE reset
41722 signal on the TQM5200 is low (reset asserted). This patch sets the
41723 default value to high (reset not asserted).
41724
41725 Currently this patch fixes no real problem, but it is cleaner to
41726 assert the reset signal only on demand, and not permanently.
41727
41728 Signed-off-by: Martin Krause <martin.krause@tqs.de>
41729
41730 commit c61e033d6e8abb7b4060ee36060961e1399f6079
41731 Author: Detlev Zundel <dzu@denx.de>
41732 Date: Thu Apr 3 14:18:48 2008 +0200
41733
41734 mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
41735
41736 Signed-off-by: Detlev Zundel <dzu@denx.de>
41737
41738 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
41739 Author: Detlev Zundel <dzu@denx.de>
41740 Date: Thu Apr 3 14:18:47 2008 +0200
41741
41742 mgcoge, mgsuv: rename 'addcon' to 'addcons'
41743
41744 The latter name with 13 users is already established, so we will use
41745 that.
41746
41747 Signed-off-by: Detlev Zundel <dzu@denx.de>
41748
41749 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
41750 Author: Martin Krause <martin.krause@tqs.de>
41751 Date: Thu Apr 3 13:37:56 2008 +0200
41752
41753 IDE: fix bug in reset sequence
41754
41755 According to the ata (ata5) specification the RESET- signal
41756 shall be asserted for at least 25 us. Without this patch,
41757 the RESET- signal is asserted on some boards for only < 1 us
41758 (e. g. on the TQM5200). This patch adds a general delay of
41759 25 us to the RESET- signal.
41760
41761 Without this patch a Platinum 4 GiB CF card is not recognised
41762 properly on boards with a TQM5200 (STK52xx, TB5200).
41763
41764 Signed-off-by: Martin Krause <martin.krause@tqs.de>
41765
41766 commit 813bea96a960916c72b4a3a7df840151529c26ce
41767 Author: Sascha Laue <Sascha.Laue@gmx.biz>
41768 Date: Thu Apr 3 14:43:11 2008 +0200
41769
41770 lwmon5: disable CONFIG_ZERO_BOOTDELAY
41771
41772 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
41773
41774 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
41775 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41776 Date: Wed Apr 2 08:03:58 2008 +0200
41777
41778 ds174x: Fix warning on return in rtc_get and rtc_set functions
41779
41780 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41781
41782 commit a253b38bf50c85227c33ca0febc870ee49d1588e
41783 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41784 Date: Wed Apr 2 08:03:57 2008 +0200
41785
41786 cmd_log.c: Fix assignment differ in signedness
41787
41788 In function 'logbuff_init_ptrs':
41789 cmd_log.c:79: warning: pointer targets in assignment differ in signedness
41790
41791 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41792
41793 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
41794 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
41795 Date: Wed Apr 2 11:04:43 2008 +0530
41796
41797 Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
41798
41799 Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
41800
41801 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
41802 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41803 Date: Tue Apr 1 14:07:10 2008 +0200
41804
41805 s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
41806
41807 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41808
41809 commit c08fb3ea36d19b1640b7906264581e9105534399
41810 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
41811 Date: Tue Apr 15 10:24:14 2008 +0200
41812
41813 Additional PCI IDs for IDE and network controllers
41814
41815 These PCI IDs are required by the Linkstation platforms.
41816
41817 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
41818
41819 commit c0559be371b2a64b1a817088c3308688e2182f93
41820 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
41821 Date: Mon Apr 14 23:01:50 2008 +0200
41822
41823 Change env_get_char from a global function ptr to a function.
41824
41825 This avoids an early global data reference.
41826
41827 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41828
41829 commit 3e0f331c05d72f140715c1e9fca991927e44d422
41830 Author: Guennadi Liakhovetski <lg@denx.de>
41831 Date: Tue Apr 29 12:35:08 2008 +0000
41832
41833 Clean up smsc911x driver
41834
41835 Replace direct register address derefencing with accessor functions.
41836 Restrict explicitly 32-bit bus-width, extend affected configurations
41837 respectively.
41838
41839 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41840 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41841
41842 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
41843 Author: Sascha Hauer <s.hauer@pengutronix.de>
41844 Date: Tue Apr 15 00:08:20 2008 -0400
41845
41846 This patch adds a driver for the following smsc network controllers:
41847 LAN9115
41848 LAN9116
41849 LAN9117
41850 LAN9215
41851 LAN9216
41852 LAN9217
41853
41854 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
41855 Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
41856 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41857
41858 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
41859 Author: Sascha Laue <Sascha.Laue@gmx.biz>
41860 Date: Tue Apr 1 15:13:03 2008 +0200
41861
41862 Fix watchdog POST for lwmon5
41863
41864 If the hardware watchdog detects a voltage error, the watchdog sets
41865 GPIO62 to low. The watchdog POST has to detect this low level.
41866
41867 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
41868
41869 commit 24b448448a917e52806f82660a5c9d47608894fb
41870 Author: Dave Liu <r63238@freescale.com>
41871 Date: Tue Apr 1 15:22:11 2008 +0800
41872
41873 ata: update the libata.h from ata.h of linux kernel
41874
41875 Current libata.h of u-boot is out of sync from linux kernel,
41876 this patch make it be consistent with linux kernel.
41877
41878 Signed-off-by: Dave Liu <daveliu@freescale.com>
41879 Signed-off-by: Tor Krill <tor@excito.com>
41880
41881 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
41882 Author: Kumar Gala <galak@kernel.crashing.org>
41883 Date: Mon Mar 31 11:59:27 2008 -0500
41884
41885 Allow use of ARCH=powerpc when building
41886
41887 The linux kernel is now mostly ARCH=powerpc, so to make life easier
41888 allow use to use ARCH=powerpc and convert it to ARCH=ppc.
41889
41890 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41891
41892 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
41893 Author: Kyungmin Park <kmpark@infradead.org>
41894 Date: Mon Mar 31 10:40:54 2008 +0900
41895
41896 Add apollon board MAINTAINERS entry
41897
41898 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
41899
41900 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
41901 Author: Kyungmin Park <kmpark@infradead.org>
41902 Date: Mon Mar 31 10:40:36 2008 +0900
41903
41904 Fix OneNAND read
41905
41906 It should access with 16-bit instead of 8-bit
41907
41908 Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
41909
41910 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
41911
41912 commit a9da2b41079d230db3a5641625311983f85ce1fb
41913 Author: Kyungmin Park <kmpark@infradead.org>
41914 Date: Mon Mar 31 10:40:19 2008 +0900
41915
41916 Fix OneNAND erase command
41917
41918 It mis-calculates the block address.
41919 Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
41920
41921 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
41922
41923 commit 61525f2ffa156665a66908fda47dbf29d65ea579
41924 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
41925 Date: Mon Mar 31 01:32:15 2008 +0200
41926
41927 Support for LinkStation / KuroBox HD and HG PPC models
41928
41929 This patch is based on the port by Mihai Georgian (see linkstation.c for
41930 Copyright information) and implements support for LinkStation / KuroBox HD
41931 and HG PPC models from Buffalo Technology, whereby HD is deactivated at
41932 the moment, pending network driver fixing.
41933
41934 Notice to users: this is pretty much a barebone port. Support for network
41935 on HG models is already in the U-Boot mainline, but you might also want
41936 patches to switch fan / phy modes depending on the negotiated ethernet
41937 parameters. This patch also doesn't support console switching, booting EM
41938 mode, Buffalo specific ext2 magic number. So, if you want to use any of
41939 those, you need additional patches. Otherwise this patche provides a fully
41940 functional u-boot with a network console on your system.
41941
41942 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41943
41944 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
41945 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41946 Date: Sun Mar 30 01:22:13 2008 -0500
41947
41948 Add CONFIG_MII_INIT support to related boards
41949
41950 Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
41951 cmd_init.c. Add CONFIG_MII_INIT to board configuration files
41952 that use mii_init() in cmd_init.c.
41953
41954 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41955 Acked-by: Ben Warren <biggerbadderben@gmail.com>
41956
41957 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
41958 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41959 Date: Sun Mar 30 01:19:06 2008 -0500
41960
41961 Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
41962
41963 Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
41964 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
41965
41966 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41967
41968 commit e99ccb488181d012248c6be30b2093e950319fc5
41969 Author: Kumar Gala <galak@kernel.crashing.org>
41970 Date: Thu Mar 27 11:46:38 2008 -0500
41971
41972 Introduce phys_size_t and move phys_addr_t into asm/types.h
41973
41974 Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
41975 that have larger physical addresses like 44x, 85xx, and 86xx.
41976
41977 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41978
41979 commit 20a14a42a25f72e379f38460b8a8484667536795
41980 Author: Andy Fleming <afleming@freescale.com>
41981 Date: Wed Apr 2 16:19:07 2008 -0500
41982
41983 Rename include/md5.h to include/u-boot/md5.h
41984
41985 Some systems have md5.h installed in /usr/include/. This isn't the
41986 desired file (we want the one in include/md5.h). This will avoid the
41987 conflict. This fixes the host tools building problem by creating a new
41988 directory for U-Boot specific header files.
41989
41990 [Patch by Andy Fleming, modified to use separate directory by Wolfgang
41991 Denk]
41992
41993 Signed-off-by: Wolfgang Denk <wd@denx.de>
41994 Signed-off-by: Andy Fleming <afleming@freescale.com>
41995 Acked-by: Timur Tabi <timur@freescale.com>
41996
41997 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
41998 Author: Dave Liu <r63238@freescale.com>
41999 Date: Thu Mar 27 18:51:17 2008 +0800
42000
42001 drivers: code clean up
42002
42003 Signed-off-by: Dave Liu <daveliu@freescale.com>
42004
42005 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
42006 Author: Dave Liu <r63238@freescale.com>
42007 Date: Thu Mar 27 18:50:41 2008 +0800
42008
42009 drivers: clean up the ata_piix.h
42010
42011 Signed-off-by: Dave Liu <daveliu@freescale.com>
42012
42013 commit e8f7ba404f1409606962815ecc955a06984b08b3
42014 Author: Dave Liu <r63238@freescale.com>
42015 Date: Thu Mar 27 18:49:56 2008 +0800
42016
42017 doc: english polishing for README.sata
42018
42019 according to gvb's suggestion, polishing for the doc.
42020
42021 Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
42022 Signed-off-by: Dave Liu <daveliu@freescale.com>
42023
42024 commit 3e3f766a5274d204780460e1879723b565296d34
42025 Author: Kumar Gala <galak@kernel.crashing.org>
42026 Date: Wed Mar 26 18:53:28 2008 -0500
42027
42028 Fix warnings introduced by I2C bus speed setting patch
42029
42030 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42031
42032 commit 3c735e7437150e8615f26930c7819db85634276d
42033 Author: eran liberty <eran.liberty@gmail.com>
42034 Date: Thu Mar 27 00:50:49 2008 +0100
42035
42036 Altera Stratix II support
42037
42038 Adds Support for Altera's Stratix II.
42039
42040 Within your board specific init file you will have to call
42041
42042 1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
42043 2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
42044
42045 Altera_desc* contines (for example):
42046 {
42047 Altera_StratixII, /* part type */
42048 passive_serial, /* interface type */
42049 1, /* bytes of data part can accept */
42050 (void *)(&funcs), /* interface function table */
42051 0L, /* base interface address */
42052 0 /* implementation specific cookie */
42053 }
42054
42055 funcs is the interface. It is of type altera_board_specific_func.
42056 It looks like this:
42057 altera_board_specific_func func = {
42058 pre_fn,
42059 config_fn,
42060 status_fn,
42061 done_fn,
42062 clk_fn,
42063 data_fn,
42064 abort_fn,
42065 post_fn,
42066 };
42067
42068 you will have to implement these functions, which is usually bit
42069 banging some gpio.
42070
42071 Signed-off-by: Eran Liberty <liberty@extricom.com>
42072
42073 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
42074 Author: Wolfgang Denk <wd@denx.de>
42075 Date: Sun Apr 13 14:32:54 2008 -0700
42076
42077 Update CHANGELOG
42078
42079 Signed-off-by: Wolfgang Denk <wd@denx.de>
42080
42081 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
42082 Author: Sascha Hauer <s.hauer@pengutronix.de>
42083 Date: Wed Mar 26 20:41:17 2008 +0100
42084
42085 Phytec Phycore-i.MX31 support
42086
42087 This patch adds support for the Phytec Phycore-i.MX31 board
42088
42089 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
42090 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
42091
42092 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
42093 Author: Sascha Hauer <s.hauer@pengutronix.de>
42094 Date: Wed Mar 26 20:41:09 2008 +0100
42095
42096 mx31 litekit support
42097
42098 This patch adds support for the mx31 litekit board
42099
42100 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
42101 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
42102
42103 commit cdace0661208754a53019ea0dc7b803a040e0939
42104 Author: Sascha Hauer <s.hauer@pengutronix.de>
42105 Date: Wed Mar 26 20:40:49 2008 +0100
42106
42107 add an i2c driver for mx31
42108
42109 This patch adds an i2c driver for Freescale i.MX processors
42110
42111 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
42112 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
42113
42114 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
42115 Author: Sascha Hauer <s.hauer@pengutronix.de>
42116 Date: Wed Mar 26 20:40:42 2008 +0100
42117
42118 core support for Freescale mx31
42119
42120 This patch adds the core support for Freescale mx31
42121
42122 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
42123 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
42124
42125 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
42126 Author: Wolfgang Denk <wd@denx.de>
42127 Date: Sun Apr 13 14:19:23 2008 -0700
42128
42129 Fix compile error
42130
42131 ...as suggested by Peter Pearse
42132
42133 Signed-off-by: Wolfgang Denk <wd@denx.de>
42134
42135 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
42136 Author: Sascha Hauer <s.hauer@pengutronix.de>
42137 Date: Wed Mar 26 20:40:36 2008 +0100
42138
42139 Separate omap24xx specific code from arm1136
42140
42141 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
42142 to cpu/arm1136/omap24xx.
42143
42144 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
42145 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
42146
42147 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
42148 Author: Mike Frysinger <vapier@gentoo.org>
42149 Date: Tue Jan 29 18:21:05 2008 -0500
42150
42151 disable caches before booting an app for Blackfin apps
42152
42153 It isn't generally save to execute applications outside of U-Boot with caches
42154 enabled due to the way the Blackfin processor handles caches (requires
42155 software assistance). This patch disables caches before booting an ELF or
42156 just booting raw code. The previous discussion on the patch was that we
42157 wanted to use weaks instead, but that proved to not be feasible when multiple
42158 symbols are involved, which puts us back at the ifdef solution. I've
42159 minimized the ugliness by moving the setup step outside of the main function.
42160
42161 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42162
42163 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
42164 Author: Wolfgang Denk <wd@denx.de>
42165 Date: Sun Apr 13 10:03:54 2008 -0700
42166
42167 ppc: Get rid of unused machine type definitions
42168
42169 Signed-off-by: Wolfgang Denk <wd@denx.de>
42170
42171 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
42172 Author: Wolfgang Denk <wd@denx.de>
42173 Date: Sun Apr 13 09:59:26 2008 -0700
42174
42175 Coding Style cleanup; update CHANGELOG
42176
42177 Signed-off-by: Wolfgang Denk <wd@denx.de>
42178
42179 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
42180 Author: Larry Johnson <lrj@acm.org>
42181 Date: Thu Feb 21 13:58:11 2008 -0500
42182
42183 LM73 bug fix for negative temperatures and cleanup
42184
42185 When the LM73 temperature sensor measures a temperature below 0 C, the
42186 current driver does not perform sign extension, so the result returned is
42187 512 C too high. This patch fixes the problem, and does general cleanup
42188 of the code.
42189
42190 Signed-off-by: Larry Johnson <lrj@acm.org>
42191
42192 commit 96ef831f713289afba19da0c8f905e99da2b23e0
42193 Author: Guennadi Liakhovetski <lg@denx.de>
42194 Date: Thu Apr 3 13:36:02 2008 +0200
42195
42196 cfi_flash: Support buffered writes on non-standard Spansion NOR flash
42197
42198 Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
42199 series require different addresses for buffered write commands. Define a
42200 configuration option to support buffered writes on those chips. A more
42201 elegant solution would be to automatically detect those chips by parsing
42202 their CFI records, but that would require introduction of a fixup table
42203 into the cfi_flash driver.
42204
42205 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
42206
42207 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
42208 Author: Lee Nipper <lee.nipper@freescale.com>
42209 Date: Thu Apr 10 09:35:06 2008 -0500
42210
42211 mpc83xx: Update DIMM data bus width test to support 40-bit width
42212
42213 32-bit wide ECC memory modules report 40-bit width.
42214 Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
42215
42216 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
42217 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42218
42219 commit 5fb5a689d822ca61e814bd523fc930af335242fa
42220 Author: Dave Liu <r63238@freescale.com>
42221 Date: Mon Mar 31 17:05:12 2008 +0800
42222
42223 mpc83xx: Fix the bug of serdes initialization
42224
42225 Currently the serdes will not be initializated due to the
42226 partid's error.
42227
42228 Signed-off-by: Dave Liu <daveliu@freescale.com>
42229 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42230
42231 commit 2000784818f043db7ca60e2846a72d097766b894
42232 Author: Dave Liu <r63238@freescale.com>
42233 Date: Thu Apr 3 16:28:29 2008 +0800
42234
42235 mpc83xx: Fix the SATA clock setting of 837x targets
42236
42237 Currently the SATA controller clock is configured as CSB clock,
42238 usually the CSB clock is 400/333/266MHz.
42239
42240 However, The SATA IP block is only guaranteed to operate up to
42241 200 MHz as stated in the HW spec.
42242
42243 The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
42244
42245 This patch makes the SATA clock as half of CSB clock.
42246
42247 Signed-off-by: Dave Liu <daveliu@freescale.com>
42248 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42249
42250 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
42251 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42252 Date: Wed Apr 2 13:41:21 2008 +0200
42253
42254 mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
42255
42256 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42257 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42258
42259 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
42260 Author: Kumar Gala <galak@kernel.crashing.org>
42261 Date: Wed Apr 9 04:20:57 2008 -0500
42262
42263 85xx: Fix detection of MP cpu spin up
42264
42265 We were looking at the wrong memory offset to determine of a secondary
42266 cpu had been spun up or not. Also added a warning message if the
42267 all the secondary cpus we expect don't spin up.
42268
42269 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42270
42271 commit f3e04bdc3f360c66801a9048956e61e41a16edba
42272 Author: Kumar Gala <galak@kernel.crashing.org>
42273 Date: Tue Apr 8 10:45:50 2008 -0500
42274
42275 85xx: Use SVR_SOC_VER instead of SVR_VER
42276
42277 The recent change introduced by 'Update SVR numbers to expand support'
42278 now requires that we use SVR_SOC_VER instead of SVR_VER if we want
42279 to compare against a particular processor id.
42280
42281 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42282
42283 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
42284 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
42285 Date: Fri Apr 11 10:00:35 2008 -0400
42286
42287 ppc4xx: Fix power mgt definitions for PPC440
42288
42289 Corrected DCR addresses of PPC440EP power management registers.
42290
42291 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
42292
42293 commit 950a392464e616b4590bc4501be46e2d7d162dea
42294 Author: Wolfgang Denk <wd@denx.de>
42295 Date: Fri Apr 11 15:11:26 2008 +0200
42296
42297 Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
42298
42299 Reverting became necessary after it turned out that the patches in
42300 the u-boot-arm repo were modified, and in some cases corrupted.
42301
42302 This reverts the following commits:
42303
42304 066bebd6353e33af3adefc3404560871699e9961
42305 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
42306 c88ae20580b2b01487b4cdcc8b2a113f551aee36
42307 a147e56f03871bba4f05058d5e04ce7deb010b04
42308 d6674e0e2a6a1f033945f78838566210d3f28c95
42309 8c8463cce44d849e37744749b32d38e1dfb12e50
42310 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
42311 8bf69d81782619187933a605f1a95ee1d069478d
42312 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
42313 a574a73852a527779234e73e17e7597fd8128882
42314 1377b5583a48021d983e1fd565f7d40c89e84d63
42315 1704dc20917b4f71e373e2c888497ee666d40380
42316
42317 Signed-off-by: Wolfgang Denk <wd@denx.de>
42318
42319 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
42320 Author: Stefan Roese <sr@denx.de>
42321 Date: Fri Apr 11 07:02:29 2008 +0200
42322
42323 ppc4xx: Update Kilauea defconfig to use device-tree booting as default
42324
42325 This patch reworks the default environment on Kilauea/Haleakala. Now
42326 "net_nfs" for exmaple uses the device-tree style booting formerly know
42327 as "net_nfs_fdt". Also the addresses in RAM were changed because of the
42328 new image booting support, which check for image overwriting. So the
42329 addresses needed togeet adjusted.
42330
42331 Signed-off-by: Stefan Roese <sr@denx.de>
42332
42333 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
42334 Author: Stefan Roese <sr@denx.de>
42335 Date: Wed Apr 9 11:58:02 2008 +0200
42336
42337 ppc4xx: Fix Canyonlands default environment to work with new image support
42338
42339 Since the new image support checks for image overwriting, the default
42340 environment needs to get adjusted to use correct addresses.
42341
42342 Signed-off-by: Stefan Roese <sr@denx.de>
42343
42344 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
42345 Author: Stefan Roese <sr@denx.de>
42346 Date: Wed Apr 9 11:54:11 2008 +0200
42347
42348 ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
42349
42350 The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
42351 closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
42352 on 4xx systems _start currently cannot be used for this calculation.
42353 So revert back to the original version for now.
42354
42355 Signed-off-by: Stefan Roese <sr@denx.de>
42356
42357 commit f91374f65eae8b42cac329e06ba1c54728278efb
42358 Author: Michal Simek <monstr@monstr.eu>
42359 Date: Fri Mar 28 12:49:52 2008 +0100
42360
42361 microblaze: Sort microblaze boards in MAKEALL script
42362
42363 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
42364 Author: Michal Simek <monstr@monstr.eu>
42365 Date: Fri Mar 28 11:58:45 2008 +0100
42366
42367 microblaze: clean microblaze_config.mk
42368
42369 FLAGS are generated by U-BOOT generator.
42370 Board specific FLAGS are in board directory
42371
42372 Signed-off-by: Michal Simek <monstr@monstr.eu>
42373
42374 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
42375 Author: Michal Simek <monstr@monstr.eu>
42376 Date: Fri Mar 28 12:47:19 2008 +0100
42377
42378 microblaze: xupv2p fix config file for supporting FDT
42379
42380 commit 188dc16b189143573b1ed90e584bf866d75cdd12
42381 Author: Michal Simek <monstr@monstr.eu>
42382 Date: Fri Mar 28 11:53:02 2008 +0100
42383
42384 microblaze: ml401 fix config file for supporting FDT
42385
42386 Signed-off-by: Michal Simek <monstr@monstr.eu>
42387
42388 commit 4c6a6f02e239236261333759997eeaf86b30b54c
42389 Author: Michal Simek <monstr@monstr.eu>
42390 Date: Fri Mar 28 11:22:48 2008 +0100
42391
42392 microblaze: ml401 - add ifdef for GPIO
42393
42394 Signed-off-by: Michal Simek <monstr@monstr.eu>
42395
42396 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
42397 Author: Michal Simek <monstr@monstr.eu>
42398 Date: Fri Mar 28 12:13:03 2008 +0100
42399
42400 microblaze: clean uart16550 and uartlite handling
42401
42402 Signed-off-by: Michal Simek <monstr@monstr.eu>
42403
42404 commit 0b20f250877441460fb79d72192954abe8498834
42405 Author: Michal Simek <monstr@monstr.eu>
42406 Date: Fri Mar 28 11:08:31 2008 +0100
42407
42408 microblaze: Add Emaclite driver to Makefile
42409
42410 Signed-off-by: Michal Simek <monstr@monstr.eu>
42411
42412 commit 868cde5310f88234b774878e4f06e79df10a88b3
42413 Author: Michal Simek <monstr@monstr.eu>
42414 Date: Fri Mar 28 11:08:01 2008 +0100
42415
42416 microblaze: Add Emac driver to Makefile
42417
42418 Signed-off-by: Michal Simek <monstr@monstr.eu>
42419
42420 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
42421 Author: Michal Simek <monstr@monstr.eu>
42422 Date: Fri Mar 28 12:42:29 2008 +0100
42423
42424 microblaze: add Emac ethernet driver
42425
42426 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
42427 Author: Michal Simek <monstr@monstr.eu>
42428 Date: Fri Mar 28 12:41:56 2008 +0100
42429
42430 microblaze: add Emaclite ethernet driver
42431
42432 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
42433 Author: Michal Simek <monstr@monstr.eu>
42434 Date: Fri Mar 28 11:04:01 2008 +0100
42435
42436 microblaze: ML401 and XUPV2P remove emac and emaclite reference
42437
42438 Signed-off-by: Michal Simek <monstr@monstr.eu>
42439
42440 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
42441 Author: Michal Simek <monstr@monstr.eu>
42442 Date: Fri Mar 28 10:59:32 2008 +0100
42443
42444 microblaze: remove old setting for emac driver
42445
42446 Signed-off-by: Michal Simek <monstr@monstr.eu>
42447
42448 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
42449 Author: Michal Simek <monstr@monstr.eu>
42450 Date: Fri Mar 28 10:58:15 2008 +0100
42451
42452 microblaze: Clean Makefile from ancient emac driver
42453
42454 Signed-off-by: Michal Simek <monstr@monstr.eu>
42455
42456 commit ab68f921d9c741830f721c3d879c13a0c5597183
42457 Author: Daniel Hellstrom <daniel@gaisler.com>
42458 Date: Fri Mar 28 10:20:43 2008 +0100
42459
42460 SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
42461
42462 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42463
42464 commit 6ed8a43a19bb0275501bc286007daafa923552cf
42465 Author: Daniel Hellstrom <daniel@gaisler.com>
42466 Date: Wed Mar 26 23:38:48 2008 +0100
42467
42468 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.
42469
42470 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42471
42472 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
42473 Author: Daniel Hellstrom <daniel@gaisler.com>
42474 Date: Wed Mar 26 23:34:47 2008 +0100
42475
42476 SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
42477
42478 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42479
42480 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
42481 Author: Daniel Hellstrom <daniel@gaisler.com>
42482 Date: Fri Mar 28 10:06:52 2008 +0100
42483
42484 SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
42485
42486 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42487
42488 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
42489 Author: Daniel Hellstrom <daniel@gaisler.com>
42490 Date: Wed Mar 26 23:26:48 2008 +0100
42491
42492 SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
42493
42494 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42495
42496 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
42497 Author: Daniel Hellstrom <daniel@gaisler.com>
42498 Date: Fri Mar 28 10:00:33 2008 +0100
42499
42500 SPARC: Added support for SPARC LEON2 SOC Processor.
42501
42502 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42503
42504 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
42505 Author: Daniel Hellstrom <daniel@gaisler.com>
42506 Date: Wed Mar 26 23:00:38 2008 +0100
42507
42508 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.
42509
42510 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42511
42512 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
42513 Author: Daniel Hellstrom <daniel@gaisler.com>
42514 Date: Wed Mar 26 22:51:29 2008 +0100
42515
42516 SPARC: Added support for SPARC LEON3 SOC processor.
42517
42518 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42519
42520 commit bf3d8b31169546fcddb4737391e1893fb12d033a
42521 Author: Daniel Hellstrom <daniel@gaisler.com>
42522 Date: Fri Mar 28 08:29:26 2008 +0100
42523
42524 SPARC: added SPARC support for new uimage in common code.
42525
42526 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42527
42528 commit 00ab32c85405a4fe65fd4128243086210fc90a21
42529 Author: Daniel Hellstrom <daniel@gaisler.com>
42530 Date: Wed Mar 26 22:36:03 2008 +0100
42531
42532 SPARC: added SPARC board information to the command bdinfo.
42533
42534 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42535
42536 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
42537 Author: Daniel Hellstrom <daniel@gaisler.com>
42538 Date: Fri Mar 28 09:47:00 2008 +0100
42539
42540 SPARC: Added generic support for SPARC architecture.
42541
42542 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42543
42544 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
42545 Author: Stefan Roese <sr@denx.de>
42546 Date: Thu Apr 3 14:50:34 2008 +0200
42547
42548 ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
42549
42550 This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
42551 has 2 RGMII instances and we need to configure the 2nd RGMII instance
42552 for the EMAC2+3 channels.
42553
42554 Signed-off-by: Stefan Roese <sr@denx.de>
42555
42556 commit c2a545ce33b26d80337f80b533828839249fb1c9
42557 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42558 Date: Wed Apr 2 08:03:56 2008 +0200
42559
42560 MPC8xx: Fix libfdt support introduced in commit 77ff7b74
42561
42562 fdt.c: In function 'ft_cpu_setup':
42563 fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
42564 fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
42565 fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
42566 fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
42567
42568 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42569
42570 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
42571 Author: Andy Fleming <afleming@freescale.com>
42572 Date: Mon Mar 31 20:45:56 2008 -0500
42573
42574 Fix fdt set command to conform to dts spec
42575
42576 The fdt set command was treating properties specified as <00> and <0011>
42577 as byte streams, rather than as an array of cells. As we already have
42578 syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
42579 we should use the <> syntax to describe arrays of cells, which are always
42580 32-bits per element. If we imagine this likely (IMHO) scenario:
42581
42582 > fdt set /ethernet-phy@1 reg <1>
42583
42584 With the old code, this would create a bad fdt, since the reg cell would be
42585 made to be one byte in length. But the cell must be 4 bytes, so this would
42586 break mysteriously.
42587
42588 Also, the dts spec calls for constants inside the angle brackets (<>)
42589 to conform to C constant standards as they pertain to base.
42590 Take this scenario:
42591
42592 > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
42593
42594 The old fdt command would complain that it couldn't parse that. Or, if you
42595 wanted to specify that a certain clock ran at 33 MHz, you'd be required to
42596 do this:
42597
42598 > fdt set /mydev clock <1f78a40>
42599
42600 Whereas the new code will accept decimal numbers.
42601
42602 While I was in there, I extended the fdt command parser to handle property
42603 strings which are split across multiple arguments:
42604
42605 > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
42606 > fdt p /ethernet@f00
42607 ethernet@f00 {
42608 interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
42609 };
42610
42611 Lastly, the fdt print code was rearranged slightly to print arrays of cells
42612 if the length of the property is a multiple of 4 bytes, and to not print
42613 leading zeros.
42614
42615 Signed-off-by: Andy Fleming <afleming@freescale.com>
42616
42617 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
42618 Author: Stefan Roese <sr@denx.de>
42619 Date: Wed Apr 2 08:39:33 2008 +0200
42620
42621 ppc4xx: Canyonlands: Init SATA/PCIe port correctly
42622
42623 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
42624 interface. This usage can be configured with the jumper J6. This patch
42625 correctly configures the SATA/PCIe PHY for SATA usage when this jumper
42626 is installed.
42627
42628 Signed-off-by: Stefan Roese <sr@denx.de>
42629
42630 commit 6fe2946f198481254a6ee9600d7456b8316a4083
42631 Author: Kim Phillips <kim.phillips@freescale.com>
42632 Date: Fri Mar 28 17:37:49 2008 -0500
42633
42634 remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
42635
42636 finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
42637 "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
42638 started.
42639
42640 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42641
42642 commit b5873f1732b92a25690e1513b90dfb0d644f6697
42643 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42644 Date: Tue Apr 1 07:30:51 2008 +0200
42645
42646 dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
42647
42648 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42649
42650 commit 2d934ea51f276522b532f870a820e844ff480b5b
42651 Author: Tor Krill <tor@excito.com>
42652 Date: Fri Mar 28 15:29:45 2008 +0100
42653
42654 Add Vitesse 8601 support to TSEC driver
42655
42656 Add phy_info for Vitesse VSC8601.
42657 Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
42658
42659 Signed-off-by: Tor Krill <tor@excito.com>
42660 Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
42661 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42662
42663 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
42664 Author: Daniel Hellstrom <daniel@gaisler.com>
42665 Date: Mon Mar 31 14:25:00 2008 +0000
42666
42667 SPARC: added SMC91111 driver in and out macros for LEON processors.
42668
42669 This patch makes SPARC/LEON processors able to read and write
42670 to the SMC91111 chip using the chip external I/O bus of the memory
42671 controller. This patchs defines the standard in and out macros
42672 expected by the SMC9111 driver.
42673
42674 To access that I/O bus one must set up the memory controller
42675 (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
42676 up this correctly when the other MCTRL parameters are set up. It
42677 can be set up from the board configuration header file.
42678
42679 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42680 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42681
42682 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
42683 Author: Stelian Pop <stelian@popies.net>
42684 Date: Wed Mar 26 18:52:34 2008 +0100
42685
42686 Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
42687
42688 Signed-off-by: Stelian Pop <stelian@popies.net>
42689
42690 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
42691 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42692 Date: Mon Mar 31 21:31:04 2008 +0200
42693
42694 AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
42695
42696 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42697
42698 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
42699 Author: Stelian Pop <stelian@popies.net>
42700 Date: Wed Mar 26 18:52:33 2008 +0100
42701
42702 Add support for AT91SAM9260EK
42703
42704 Support for booting from internal DataFlash, external DataFlash card
42705 or NAND flash is available.
42706
42707 Signed-off-by: Stelian Pop <stelian@popies.net>
42708
42709 commit 1762f13b4aab88b685b1722f17dada247945624b
42710 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42711 Date: Mon Mar 31 21:20:49 2008 +0200
42712
42713 AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
42714
42715 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42716
42717 commit 761712188b353494defb2b644491ff73d0daaa6f
42718 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42719 Date: Mon Mar 31 21:12:17 2008 +0200
42720
42721 AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
42722
42723 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42724
42725 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
42726 Author: Stelian Pop <stelian@popies.net>
42727 Date: Wed Mar 26 20:52:32 2008 +0100
42728
42729 Port AT91CAP9 to the new headers
42730
42731 Adapt the existing AT91CAP9 code to the new headers and APIs.
42732
42733 Signed-off-by: Stelian Pop <stelian@popies.net>
42734
42735 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
42736 Author: Stelian Pop <stelian@popies.net>
42737 Date: Wed Mar 26 19:52:31 2008 +0100
42738
42739 Finish header files reworking
42740
42741 Replace AT91CAP9.h file with several splitted header files coming
42742 from the Linux kernel.
42743
42744 This is part 2 of the replacement: more header imports and edits.
42745
42746 Signed-off-by: Stelian Pop <stelian@popies.net>
42747
42748 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
42749 Author: Stelian Pop <stelian@popies.net>
42750 Date: Wed Mar 26 19:52:30 2008 +0100
42751
42752 Import several header files from Linux
42753
42754 Replace AT91CAP9.h file with several splitted header files coming
42755 from the Linux kernel.
42756
42757 This is part 1 of the replacement: pristine header files import.
42758
42759 Signed-off-by: Stelian Pop <stelian@popies.net>
42760
42761 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
42762 Author: Stelian Pop <stelian@popies.net>
42763 Date: Wed Mar 26 20:52:28 2008 +0100
42764
42765 Move at91cap9 specific files to at91sam9 directory
42766
42767 AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
42768 common infrastructure can be used. Let this infrastructure be
42769 named after the AT91SAM9 family, and move the existing AT91CAP9
42770 files to the new place.
42771
42772 Signed-off-by: Stelian Pop <stelian@popies.net>
42773
42774 commit 61106a565870ff503f92b251b94bd7afef889a04
42775 Author: Stelian Pop <stelian@popies.net>
42776 Date: Wed Mar 26 21:52:27 2008 +0100
42777
42778 Use timer_init() instead of board supplied interrupt_init()
42779
42780 The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
42781 the board, so use timer_init() instead of interrupt_init().
42782
42783 Signed-off-by: Stelian Pop <stelian@popies.net>
42784
42785 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
42786 Author: Stelian Pop <stelian@popies.net>
42787 Date: Wed Mar 26 21:52:36 2008 +0100
42788
42789 Cleanup DataFlash partition handling
42790
42791 DataFlash partition information has become a mess. This patch
42792 defines a single partition scheme for Atmel DataFlashes. This partition
42793 scheme will be used by all AT91CAP9 and AT91SAM9 boards.
42794
42795 Signed-off-by: Stelian Pop <stelian@popies.net>
42796
42797 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
42798 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42799 Date: Fri Mar 28 08:47:45 2008 -0500
42800
42801 ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
42802
42803 When the version_string function in start.S is not 4-byte align,
42804 it will cause the compiler generates "unaligned opcodes detected
42805 in executable segment". This issue affects all ColdFire CPUs.
42806 By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
42807 it is not aligned.
42808
42809 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42810 Acked-by: John Rigby <jrigby@freescale.com>
42811
42812 commit bae61eefe15b4d454060a7140e49ae58322be803
42813 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42814 Date: Tue Mar 25 15:41:15 2008 -0500
42815
42816 ColdFire: Add dspi and serial flash support for MCF5445x
42817
42818 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42819 Acked-by: John Rigby <jrigby@freescale.com>
42820
42821 commit 48ead7a7a922fceaf494e352abfab8216a41b417
42822 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42823 Date: Tue Mar 18 17:37:01 2008 -0500
42824
42825 ColdFire: Remove R5200 board
42826
42827 This board never went into production
42828
42829 Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
42830 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42831 Acked-by: John Rigby <jrigby@freescale.com>
42832
42833 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
42834 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
42835 Date: Thu Jan 24 14:02:32 2008 -0600
42836
42837 ColdFire: Added M5275EVB support.
42838
42839 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
42840 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42841 Acked-by: John Rigby <jrigby@freescale.com>
42842
42843 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
42844 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
42845 Date: Mon Feb 4 15:38:20 2008 -0600
42846
42847 ColdFire: Added MCF5275 cpu support.
42848
42849 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
42850 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42851 Acked-by: John Rigby <jrigby@freescale.com>
42852
42853 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
42854 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42855 Date: Mon Mar 17 12:14:11 2008 -0500
42856
42857 ColdFire: Define bootdelay in configuration file for M52277EVB
42858
42859 Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
42860 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42861 Acked-by: John Rigby <jrigby@freescale.com>
42862
42863 commit 77878f16cedee17161ff2336990970fffc6cea35
42864 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42865 Date: Mon Mar 17 12:09:07 2008 -0500
42866
42867 ColdFire: Fix second memory Chipselect for M5475EVB
42868
42869 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42870 Acked-by: John Rigby <jrigby@freescale.com>
42871
42872 commit 43d60642395a550956cb21d287c8cfa563913d28
42873 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42874 Date: Thu Mar 13 14:26:32 2008 -0500
42875
42876 ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
42877
42878 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42879 Acked-by: John Rigby <jrigby@freescale.com>
42880
42881 commit eb14ebe813a0cb5d47905228da446a5ad692473b
42882 Author: Larry Johnson <lrj@acm.org>
42883 Date: Sun Mar 30 20:33:04 2008 -0500
42884
42885 ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
42886
42887 Signed-off-by: Larry Johnson <lrj@acm.org>
42888
42889 commit 02e3892021112f21067d9ed1d04ae4182725ba52
42890 Author: Stefan Roese <sr@denx.de>
42891 Date: Mon Mar 31 12:20:48 2008 +0200
42892
42893 ppc4xx: Small whitespace fix of esd patches
42894
42895 Signed-off-by: Stefan Roese <sr@denx.de>
42896
42897 commit 034394abb524785047c815f00dde8cdbdc1593c5
42898 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42899 Date: Sun Mar 30 18:52:44 2008 +0200
42900
42901 ppc4xx: Cleanup PMC440 board support
42902
42903 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42904
42905 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
42906 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42907 Date: Sun Mar 30 18:52:06 2008 +0200
42908
42909 ppc4xx: Add ptm configuration variables for PMC440
42910
42911 Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
42912 environment variables.
42913
42914 Cleanup pci_target_init.
42915
42916 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42917
42918 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
42919 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42920 Date: Sun Mar 30 18:01:15 2008 +0200
42921
42922 ppc4xx: Minor updates for DU440 boards
42923
42924 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42925
42926 commit d5bffeb868d6b4d462f558dac43011027b6644b7
42927 Author: Mike Frysinger <vapier@gentoo.org>
42928 Date: Tue Feb 19 00:54:20 2008 -0500
42929
42930 Blackfin: cleanup and overhaul common board init functions
42931
42932 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42933
42934 commit b86b3416f874358acaf07519e7620cdb2145f75b
42935 Author: Mike Frysinger <vapier@gentoo.org>
42936 Date: Tue Feb 19 00:50:58 2008 -0500
42937
42938 Blackfin: cleanup lib_blackfin/cache.c
42939
42940 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42941
42942 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
42943 Author: Mike Frysinger <vapier@gentoo.org>
42944 Date: Sun Mar 30 15:46:13 2008 -0400
42945
42946 Blackfin: unify cpu and boot modes
42947
42948 All of the duplicated code for Blackfin processors and boot modes have been
42949 unified. After all, the core is the same for all processors, just the
42950 peripheral set differs (which gets handled in the drivers).
42951
42952 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42953
42954 commit 880cc4381ea8360248cddcdf87a64566745a5724
42955 Author: Stelian Pop <stelian@popies.net>
42956 Date: Wed Mar 26 22:52:35 2008 +0100
42957
42958 Fix CFG_NO_FLASH compilation.
42959
42960 Many Atmel boards have no "real" (NOR) flash on board, and rely only
42961 on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
42962 be present in a board configuration file, while still enabling flash
42963 commands like 'flinfo', 'protect', etc.
42964
42965 Signed-off-by: Stelian Pop <stelian@popies.net>
42966
42967 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
42968 Author: Mike Frysinger <vapier@gentoo.org>
42969 Date: Tue Feb 19 00:58:13 2008 -0500
42970
42971 Blackfin: BF537-stamp: cleanup spi flash driver
42972
42973 This punts the old spi flash driver for a new/generalized one until the
42974 common one can be integrated.
42975
42976 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42977
42978 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
42979 Author: Ben Warren <biggerbadderben@gmail.com>
42980 Date: Sun Mar 30 11:34:34 2008 -0400
42981
42982 Fix macro typo in common/cmd_mii.c
42983
42984 This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206. I
42985 actually applied the wrong patch.
42986
42987 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42988
42989 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
42990 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42991 Date: Sun Mar 30 16:39:53 2008 +0200
42992
42993 use correct at91rm9200 register name in m501sk board
42994
42995 This fixes a naming bug for at91rm9200 lowlevel init code:
42996 NOR boot flash is on chipselect 0, not chipselect 2. This
42997 makes code use the register name from chip datasheets.
42998
42999 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43000
43001 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
43002 Author: David Brownell <david-b@pacbell.net>
43003 Date: Fri Jan 18 12:55:00 2008 -0800
43004
43005 use correct at91rm9200 register name
43006
43007 This fixes a naming bug for at91rm9200 lowlevel init code:
43008 NOR boot flash is on chipselect 0, not chipselect 2. This
43009 makes code use the register name from chip datasheets.
43010
43011 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
43012
43013 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
43014 Author: David Brownell <david-b@pacbell.net>
43015 Date: Fri Jan 18 12:45:45 2008 -0800
43016
43017 add missing ARM boards to MAKEALL
43018
43019 Add some missing ARM boards to MAKEALL. These build correctly,
43020 unlike several of the boards already listed.
43021
43022 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
43023
43024 commit 066bebd6353e33af3adefc3404560871699e9961
43025 Author: Peter Pearse <peter.pearse@arm.com>
43026 Date: Sun Mar 30 11:34:09 2008 +0100
43027
43028 Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
43029 to prevent compilation error.
43030
43031 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
43032
43033 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
43034 Author: Guennadi Liakhovetski <[lg@denx.de]>
43035 Date: Sun Mar 30 11:32:30 2008 +0100
43036
43037 Support for the MX31ADS evaluation board from Freescale
43038
43039 This patch adds support for the MX31ADS evaluation board from Freescale,
43040 initialization code is copied from RedBoot sources, also provided by Freescale.
43041
43042 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43043
43044 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
43045 Author: Sascha Hauer <s.hauer@pengutronix.de>
43046 Date: Sun Mar 30 11:32:27 2008 +0100
43047
43048 Phytec Phycore-i.MX31 support
43049
43050 This patch adds support for the Phytec Phycore-i.MX31 board
43051
43052 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
43053 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43054
43055 commit a147e56f03871bba4f05058d5e04ce7deb010b04
43056 Author: Sascha Hauer <s.hauer@pengutronix.de>
43057 Date: Sun Mar 30 11:32:24 2008 +0100
43058
43059 mx31 litekit support
43060
43061 This patch adds support for the mx31 litekit board
43062
43063 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
43064 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43065
43066 commit d6674e0e2a6a1f033945f78838566210d3f28c95
43067 Author: Sascha Hauer <s.hauer@pengutronix.de>
43068 Date: Sun Mar 30 11:32:21 2008 +0100
43069
43070 add SMSC LAN9x1x Network driver
43071
43072 This patch adds a driver for the following smsc network controllers:
43073 LAN9115
43074 LAN9116
43075 LAN9117
43076 LAN9215
43077 LAN9216
43078 LAN9217
43079
43080 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
43081 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43082
43083 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
43084 Author: Sascha Hauer <s.hauer@pengutronix.de>
43085 Date: Sun Mar 30 11:32:16 2008 +0100
43086
43087 add an i2c driver for mx31
43088
43089 This patch adds an i2c driver for Freescale i.MX processors
43090
43091 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
43092 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43093
43094 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
43095 Author: Sascha Hauer <s.hauer@pengutronix.de>
43096 Date: Sun Mar 30 11:30:43 2008 +0100
43097
43098 core support for Freescale mx31
43099
43100 This patch adds the core support for Freescale mx31
43101
43102 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
43103 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43104
43105 commit 8bf69d81782619187933a605f1a95ee1d069478d
43106 Author: Sascha Hauer <s.hauer@pengutronix.de>
43107 Date: Sun Mar 30 11:28:46 2008 +0100
43108
43109 Separate omap24xx specific code from arm1136
43110
43111 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
43112
43113 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
43114 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43115
43116 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
43117 Author: Peter Pearse <peter.pearse@arm.com>
43118 Date: Sun Mar 30 11:23:05 2008 +0100
43119
43120 Add pmdra into MAKEALL
43121
43122 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
43123
43124 commit a574a73852a527779234e73e17e7597fd8128882
43125 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
43126 Date: Sun Mar 30 11:21:58 2008 +0100
43127
43128 Adds support for the Prodrive PMDRA board, based on a DM6441
43129
43130 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
43131
43132 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
43133 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
43134 Date: Sun Mar 30 11:11:34 2008 +0100
43135
43136 Removes all board specific code from the arch. part for DM644x (DaVinci) boards
43137
43138 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
43139
43140 commit 1704dc20917b4f71e373e2c888497ee666d40380
43141 Author: Dirk Behme <dirk.behme@gmail.com>
43142 Date: Sun Mar 30 11:09:01 2008 +0100
43143
43144 - Remove *_masked() functions as noted by Wolfgang
43145 - Adapt register naming to recent TI spec (sprue26, March 2007)
43146 - Fix reset_timer() handling
43147 - As reported by Pieter [1] the overflow fix introduced a
43148 delay of factor 16 (e.g 2 seconds became 32). While the
43149 overflow fix is basically okay, it missed to divide udelay by
43150 16, too. Fix this.
43151 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
43152 - Remove software division of timer count value (DIV(x)
43153 macro) and do it in hardware (TIM_CLK_DIV).
43154 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
43155 and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
43156 the hints & testing!
43157
43158 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
43159
43160 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
43161
43162 commit ac3315c26e143c31680750c9c13f027efbcc887e
43163 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
43164 Date: Thu Mar 6 16:45:44 2008 +0100
43165
43166 new PHY @ e1000 - 2nd try
43167
43168 Add 82541ER device with latest integrated IGP2 PHY.
43169 Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
43170
43171 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
43172 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43173
43174 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
43175 Author: Daniel Hellstrom <daniel@gaisler.com>
43176 Date: Fri Mar 28 20:22:53 2008 +0100
43177
43178 SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
43179
43180 GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
43181 a debug link (EDCL). The GRETH core is documented in GRIP.pdf
43182 available at www.gaisler.com.
43183
43184 If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
43185 offloading etc.) can be determined by a bit in the control register.
43186 The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
43187
43188 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
43189 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43190
43191 commit 233a8bcd94997f3f345833a3b82e836222f2a206
43192 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
43193 Date: Mon Mar 17 17:08:22 2008 -0500
43194
43195 Add CONFIG_MII_INIT in cmd_mii.c
43196
43197 Provide common configuration in do_mii() to execute mii_init()
43198 for all cpu architectures
43199
43200 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43201 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43202
43203 commit f605479de2deb11e834f31dfdb0af107c86aced6
43204 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
43205 Date: Mon Mar 17 17:08:16 2008 -0500
43206
43207 ColdFire: Fix FEC transmit issue for MCF5275
43208
43209 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43210 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43211
43212 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
43213 Author: Aras Vaichas <arasv@magtech.com.au>
43214 Date: Wed Mar 26 09:43:57 2008 +1100
43215
43216 DHCP request fix for Windows Server 2003
43217
43218 Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
43219 delay before sending "DHCP Request" in net/bootp.c. Required to overcome
43220 interoperability problems with Windows Server 200x DHCP server when U-Boot
43221 client responds too fast for server to handle.
43222
43223 Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
43224 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43225
43226 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
43227 Author: Daniel Hellstrom <daniel@gaisler.com>
43228 Date: Fri Mar 28 20:40:19 2008 +0100
43229
43230 MTD/CFI: flash_read64 is defined a weak function (for SPARC)
43231
43232 SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
43233 SPARC CPUs implement flash_read64 which calls __raw_readq.
43234
43235 For current SPARC architectures (LEON2 and LEON3) each read from the
43236 FLASH must lead to a cache miss. This is because FLASH can not be set
43237 non-cacheable since program code resides there, and alternatively disabling
43238 cache is poor from performance view, or doing a cache flush between each
43239 read is even poorer.
43240
43241 Forcing a cache miss on a SPARC is done by a special instruction "lda" -
43242 load alternative space, the alternative space number (ASI) is processor
43243 implementation spcific and can be found by including <asm/processor.h>.
43244
43245 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
43246
43247 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
43248 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
43249 Date: Fri Mar 28 15:41:25 2008 +0100
43250
43251 Make MPC83xx one step closer to full relocation.
43252
43253 Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
43254 and use GOT relative reference.
43255
43256 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
43257 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43258
43259 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
43260 Author: Michael Barkowski <michael.barkowski@freescale.com>
43261 Date: Thu Mar 27 14:34:43 2008 -0400
43262
43263 mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
43264
43265 This patch fixes eeprom page size so that you can now write more than
43266 64 bytes at a time.
43267
43268 It also makes the board take MAC addresses, if found, from EEPROM.
43269
43270 User should place up to 4 addresses at offset 0x7f00, for
43271 eth{,1,2,3}addr. Any unused addresses should be zero. This group of
43272 four six-byte values should have it's CRC at the end. crc32 and
43273 eeprom commands can be used to accomplish this.
43274
43275 If CRC fails, MAC addresses come from the environment. If CRC
43276 succeeds, the environment is overwritten at startup.
43277
43278 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
43279 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43280
43281 commit 8f325cff31f6e745e6540014b131b9a97f61944c
43282 Author: Michael Barkowski <michael.barkowski@freescale.com>
43283 Date: Fri Mar 28 15:15:38 2008 -0400
43284
43285 mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
43286
43287 Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
43288 controller on the PCI bus in Linux on the MPC8323ERDB.
43289
43290 This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
43291 config file.
43292
43293 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
43294 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43295
43296 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
43297 Author: Kim Phillips <kim.phillips@freescale.com>
43298 Date: Fri Mar 28 10:19:07 2008 -0500
43299
43300 mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
43301
43302 in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
43303 85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
43304 and processor ID display. Add REVID_{MAJ,MIN}OR macros to make
43305 REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR
43306 convenience macros.
43307
43308 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43309
43310 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
43311 Author: Kim Phillips <kim.phillips@freescale.com>
43312 Date: Fri Mar 28 10:18:53 2008 -0500
43313
43314 mpc83xx: display ddr frequency in board_add_ram_info banner
43315
43316 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43317
43318 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
43319 Author: Kim Phillips <kim.phillips@freescale.com>
43320 Date: Fri Mar 28 10:18:40 2008 -0500
43321
43322 mpc83xx: unreinvent mem_clk
43323
43324 delete ddr_clk and use mem_clk instead. Rename other ddr_*_clk to
43325 mem_*_clk for consistency's sake.
43326
43327 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43328
43329 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
43330 Author: Kim Phillips <kim.phillips@freescale.com>
43331 Date: Fri Mar 28 14:31:23 2008 -0500
43332
43333 mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
43334
43335 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43336
43337 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
43338 Author: Dave Liu <r63238@freescale.com>
43339 Date: Wed Mar 26 22:57:19 2008 +0800
43340
43341 mpc83xx: enable the SATA interface on mpc837xemds board
43342
43343 Enable the first two SATA interfaces on MPC837xEMDS board,
43344 The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
43345
43346 Signed-off-by: Dave Liu <daveliu@freescale.com>
43347 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43348
43349 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
43350 Author: Dave Liu <r63238@freescale.com>
43351 Date: Wed Mar 26 22:56:36 2008 +0800
43352
43353 mpc83xx: initialize serdes for MPC837xEMDS boards
43354
43355 This patch is stolen from Anton Vorontsov's patch
43356 for mpc837xerdb boards.
43357
43358 The reference clk and xcorevdd voltage of serdes1/2
43359 is same between mpc837xemds and mpc837xerdb.
43360
43361 8377E: LYNX1- 2 SATA LYNX2- 2 PCIE
43362 8378E: LYNX1- 2 SGMII LYNX2- 2 PCIE
43363 8379E: LYNX1- 2 SATA LYNX2- 2 SATA
43364
43365 Signed-off-by: Dave Liu <daveliu@freescale.com>
43366 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43367
43368 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
43369 Author: Stefan Roese <sr@denx.de>
43370 Date: Fri Mar 28 14:09:04 2008 +0100
43371
43372 ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
43373
43374 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
43375 interface. This usage can be configured with the jumper J6. This patch
43376 displays the current configuration upon bootup and changes the PCIe
43377 init loop, to only initialize the availabel PCIe slots.
43378
43379 Signed-off-by: Stefan Roese <sr@denx.de>
43380
43381 commit 90447ecbbac8572457b6d8903073ac3f120995ba
43382 Author: Tor Krill <tor@excito.com>
43383 Date: Fri Mar 28 11:29:10 2008 +0100
43384
43385 MTD/CFI: Add support for 16bit legacy AMD flash
43386
43387 Add entry for 512Kx16 AMD flash to jedec_table.
43388 Read out 16bit device id if chipwidth is 16bit.
43389 Fixed coding style after Stefans feedback
43390
43391 Signed-off-by: Tor Krill <tor@excito.com>
43392
43393 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
43394 Author: Stefan Roese <sr@denx.de>
43395 Date: Fri Mar 28 11:02:53 2008 +0100
43396
43397 ppc: Small change to CFG_MEM_TOP_HIDE description
43398
43399 Signed-off-by: Stefan Roese <sr@denx.de>
43400
43401 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
43402 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43403 Date: Thu Mar 27 15:44:12 2008 +0900
43404
43405 sh: Add support stat structure and stat.h
43406
43407 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43408
43409 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
43410 Author: Mark Jonas <toertel@gmail.com>
43411 Date: Sat Mar 22 19:27:52 2008 +0100
43412
43413 sh: Removed warning when compiling drivers/serial/serial_sh.c.
43414
43415 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
43416 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43417
43418 commit f309fa38929ffba71230c02330ffa42f4bba6333
43419 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43420 Date: Wed Mar 12 18:02:57 2008 +0900
43421
43422 sh: Remove disable_ctrlc function from R7780MP
43423
43424 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43425
43426 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
43427 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43428 Date: Wed Mar 12 17:55:15 2008 +0900
43429
43430 sh: Add maintainer of R7780MP to MAINTAINER file
43431
43432 Update MAINTAINER entry for R7780MP. And fix maintainer's name.
43433
43434 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43435
43436 commit f5e2466f7baa887a7df0c536333eea8231333497
43437 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43438 Date: Tue Mar 25 17:11:24 2008 +0900
43439
43440 sh: Add support Renesas Solutions R2D plus board
43441
43442 R2D plus is SH reference board used with SH7751R.
43443 This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
43444 one PCI bus, VGA, and two Ethernet controller.
43445
43446 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43447
43448 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
43449 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43450 Date: Wed Mar 12 12:15:29 2008 +0900
43451
43452 sh: Add support SH4 cache control
43453
43454 Add support SH4 cache control and flash_cache function
43455
43456 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43457
43458 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
43459 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43460 Date: Mon Mar 24 01:53:01 2008 +0900
43461
43462 sh: Add support PCI host driver for SH7751/SH7751R
43463
43464 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43465
43466 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
43467 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43468 Date: Mon Mar 24 02:11:26 2008 +0900
43469
43470 sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
43471
43472 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43473
43474 commit 566933278101c144d75361ea682678a326c1290d
43475 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43476 Date: Wed Mar 12 12:10:28 2008 +0900
43477
43478 sh: Add support SuperH SH7751/SH7751R
43479
43480 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43481
43482 commit 3313e0e26224fc9a0c445124f3455058c696df84
43483 Author: Mark Jonas <toertel@gmail.com>
43484 Date: Mon Mar 10 11:37:10 2008 +0100
43485
43486 sh: Added support for SH7720 based board MPR2.
43487
43488 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
43489 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43490
43491 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
43492 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43493 Date: Thu Mar 6 14:05:53 2008 +0900
43494
43495 sh: Fix receive FIFO level register of SH4A
43496
43497 Receive FIFO level register is different in SH4A.
43498 Because register is different, cannot occasionally receive data.
43499
43500 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43501
43502 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
43503 Author: Yusuke Goda <goda.yusuke@renesas.com>
43504 Date: Tue Mar 11 12:55:12 2008 +0900
43505
43506 sh: Add support Renesas Solutions R7780MP
43507
43508 Renesas Solutions R7780MP is a reference board on SH7780.
43509 This board has serial, 10/100 base Ethernet deivice, CF slot
43510 and VGA devices. This board can set extension board.
43511 Extension board has 10/100/1000 base Ethernet device, PCI slot,
43512 S-ATA, iDVR slot.
43513
43514 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
43515 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43516
43517 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
43518 Author: Yusuke Goda <goda.yusuke@renesas.com>
43519 Date: Wed Mar 5 14:30:02 2008 +0900
43520
43521 sh: Add support PCI of SuperH and SH7780
43522
43523 This patch add support PCI of SuperH base code and SH7780 specific code.
43524
43525 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
43526 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43527
43528 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
43529 Author: Yusuke Goda <goda.yusuke@renesas.com>
43530 Date: Wed Mar 5 14:23:26 2008 +0900
43531
43532 sh: Add support SH7780
43533
43534 SH7780 is CPU of Renesas Technology.
43535 This CPU has
43536 - CPU clock 400MHz
43537 - PCI support
43538 - DDR-SDRAM controller
43539 - etc ...
43540
43541 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
43542 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43543
43544 commit c2042f5952a686c414031309b8f244513bf578f0
43545 Author: goda.yusuke <goda.yusuke@renesas.com>
43546 Date: Fri Jan 25 20:46:36 2008 +0900
43547
43548 sh: Add support Renesas Solutions Migo-R board
43549
43550 Migo-R is a board based on SH7722 and has may devices.
43551 In this patch, supported SCIF, NOR flash and Ethernet.
43552
43553 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
43554 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43555
43556 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
43557 Author: Bartlomiej Sieka <tur@semihalf.com>
43558 Date: Thu Mar 27 15:06:40 2008 +0100
43559
43560 Fix host tool build breakage, take two
43561
43562 Revert commit 87c8431f and fix build breakage so that the build continues
43563 to work on FC systems.
43564
43565 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43566
43567 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
43568 Author: Stefan Roese <sr@denx.de>
43569 Date: Wed Mar 19 09:36:47 2008 +0100
43570
43571 ppc4xx: Enable ECC on LWMON5
43572
43573 Since all ECC related problems seem to be resolved on LWMON5, this patch
43574 now enables ECC support.
43575
43576 We have to write the ECC bytes by zeroing and flushing in smaller
43577 steps, since the whole 256MByte takes too long for the external
43578 watchdog.
43579
43580 Signed-off-by: Stefan Roese <sr@denx.de>
43581
43582 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
43583 Author: Larry Johnson <lrj@acm.org>
43584 Date: Mon Mar 17 11:10:35 2008 -0500
43585
43586 ppc4xx: Updates to Korat-specific code
43587
43588 This patch contains updates for changes for the Korat PPC440EPx board.
43589 These changes include:
43590
43591 (1) Support for "permanent" and "upgradable" copies of U-Boot, as
43592 described in the new "doc/README.korat" file;
43593
43594 (2) a new memory map for the registers in the board's CPLD;
43595
43596 (3) a revised format for manufacturer's data in serial EEPROM; and
43597
43598 (4) changes to track updates to U-Boot for the Sequoia board.
43599
43600 Signed-off-by: Larry Johnson <lrj@acm.org>
43601
43602 commit f766cdf89b3a2a7634b8c5869f606150e332036c
43603 Author: Markus Brunner <super.firetwister@gmail.com>
43604 Date: Thu Mar 27 10:46:25 2008 +0100
43605
43606 ppc4xx: PPC405EP Set EMAC noise filter bits
43607
43608 This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
43609 which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
43610 disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
43611
43612 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
43613 Signed-off-by: Stefan Roese <sr@denx.de>
43614
43615 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
43616 Author: Mike Nuss <mike@terascala.com>
43617 Date: Wed Feb 20 11:54:20 2008 -0500
43618
43619 ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
43620
43621 On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
43622 after startup to change the speed of the clocks. This patch adds the
43623 option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
43624 initialization code will reconfigure the PLL to run the system with a CPU
43625 frequency of 667MHz and PLB frequency of 166MHz, without the need for an
43626 external EEPROM.
43627
43628 Signed-off-by: Mike Nuss <mike@terascala.com>
43629 Acked-by: Stefan Roese <sr@denx.de>
43630
43631 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
43632 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43633 Date: Thu Mar 27 09:12:40 2008 +0100
43634
43635 new-image: Fix host tool build breakage
43636
43637 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43638
43639 commit 6fb4b640562a10daff0dbe537638d511b5b48650
43640 Author: Stefan Roese <sr@denx.de>
43641 Date: Thu Mar 27 10:24:03 2008 +0100
43642
43643 ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
43644
43645 Signed-off-by: Stefan Roese <sr@denx.de>
43646
43647 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
43648 Author: Stefan Roese <sr@denx.de>
43649 Date: Wed Mar 19 10:23:43 2008 +0100
43650
43651 ppc4xx: Add fdt support to Prodrive alpr
43652
43653 Since this board will probably be ported to arch/powerpc in the
43654 near future, we add device tree support now. This way we are
43655 "ready" for arch/powerpc from now on.
43656
43657 Signed-off-by: Stefan Roese <sr@denx.de>
43658
43659 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
43660 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
43661 Date: Mon Mar 17 09:27:56 2008 +0100
43662
43663 ppc4xx: Enable cache support on the ALPR board
43664
43665 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
43666
43667 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
43668 Author: Stefan Roese <sr@denx.de>
43669 Date: Wed Mar 26 10:14:11 2008 +0100
43670
43671 ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
43672
43673 If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
43674 memory area will get subtracted from the top (end) of ram and won't get
43675 "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
43676 should gets passed the now "corrected" memory size and won't touch it
43677 either. This should work for arch/ppc and arch/powerpc. Only Linux board
43678 ports in arch/powerpc with bootwrapper support, which recalculate the
43679 memory size from the SDRAM controller setup, will have to get fixed
43680 in Linux additionally.
43681
43682 This patch enables this config option on some PPC440EPx boards as a workaround
43683 for the CHIP 11 errata. Here the description from the AMCC documentation:
43684
43685 CHIP_11: End of memory range area restricted access.
43686 Category: 3
43687
43688 Overview:
43689 The 440EPx DDR controller does not acknowledge any
43690 transaction which is determined to be crossing over the
43691 end-of-memory-range boundary, even if the starting address is
43692 within valid memory space. Any such transaction from any PLB4
43693 master will result in a PLB time-out on PLB4 bus.
43694
43695 Impact:
43696 In case of such misaligned bursts, PLB4 masters will not
43697 retrieve any data at all, just the available data up to the
43698 end of memory, especially the 440 CPU. For example, if a CPU
43699 instruction required an operand located in memory within the
43700 last 7 words of memory, the DCU master would burst read 8
43701 words to update the data cache and cross over the
43702 end-of-memory-range boundary. Such a DCU read would not be
43703 answered by the DDR controller, resulting in a PLB4 time-out
43704 and ultimately in a Machine Check interrupt. The data would
43705 be inaccessible to the CPU.
43706
43707 Workaround:
43708 Forbid any application to access the last 256 bytes of DDR
43709 memory. For example, make your operating system believe that
43710 the last 256 bytes of DDR memory are absent. AMCC has a patch
43711 that does this, available for Linux.
43712
43713 This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
43714 lwmon5, korat, sequoia
43715
43716 The other remaining 440EPx board were intentionally not included
43717 since it is not clear to me, if they use the end of ram for some
43718 other purpose. This is unclear, since these boards have CONFIG_PRAM
43719 defined and even comments like this:
43720
43721 PMC440.h:
43722 /* esd expects pram at end of physical memory.
43723 * So no logbuffer at the moment.
43724 */
43725
43726 It is strongly recommended to not use the last 256 bytes on those
43727 boards too. Patches from the board maintainers are welcome.
43728
43729 Signed-off-by: Stefan Roese <sr@denx.de>
43730
43731 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
43732 Author: Stefan Roese <sr@denx.de>
43733 Date: Thu Mar 27 10:09:05 2008 +0100
43734
43735 ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
43736
43737 Signed-off-by: Stefan Roese <sr@denx.de>
43738
43739 commit d56a3ce179688cde61073a3690e21703d68fafd7
43740 Author: Stefan Roese <sr@denx.de>
43741 Date: Tue Mar 25 17:51:13 2008 +0100
43742
43743 ppc4xx: Correctly pass phyiscal FLASH base address into dtb
43744
43745 The routine ft_board_setup() configures the EBC NOR mappings for the
43746 Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
43747 0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
43748 problem, we need to pass the corrected address here too.
43749
43750 Signed-off-by: Stefan Roese <sr@denx.de>
43751
43752 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
43753 Author: Stefan Roese <sr@denx.de>
43754 Date: Wed Mar 19 16:35:12 2008 +0100
43755
43756 ppc4xx: Fix compilation warning in 4xx_enet.c
43757
43758 Signed-off-by: Stefan Roese <sr@denx.de>
43759
43760 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
43761 Author: Stefan Roese <sr@denx.de>
43762 Date: Wed Mar 19 16:20:49 2008 +0100
43763
43764 ppc4xx: Add AMCC Glacier 406GT eval board support
43765
43766 This patch adds support for the AMCC Glacier 460GT eval board.
43767 The main difference to the Canyonlands board are listed here:
43768
43769 - 4 ethernet ports instead of 2
43770 - no SATA port
43771 - no USB port
43772
43773 Currently EMAC2+3 are not working. This will be fixed in a later
43774 release.
43775
43776 Signed-off-by: Stefan Roese <sr@denx.de>
43777
43778 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
43779 Author: Stefan Roese <sr@denx.de>
43780 Date: Thu Mar 27 08:47:26 2008 +0100
43781
43782 ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
43783
43784 Signed-off-by: Stefan Roese <sr@denx.de>
43785
43786 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
43787 Author: Anatolij Gustschin <agust@denx.de>
43788 Date: Wed Mar 26 21:05:43 2008 +0100
43789
43790 Fix out of tree building issue
43791
43792 Currently U-Boot building in some external directory
43793 doesn't work. This patch tries to fix the problem.
43794
43795 Signed-off-by: Anatolij Gustschin <agust@denx.de>
43796
43797 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
43798 Author: Anatolij Gustschin <agust@denx.de>
43799 Date: Wed Mar 26 18:13:33 2008 +0100
43800
43801 README: update documentation (availability, links, etc.)
43802
43803 Fix typo in README
43804
43805 Signed-off-by: Anatolij Gustschin <agust@denx.de>
43806
43807 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
43808 Author: Anatolij Gustschin <agust@denx.de>
43809 Date: Wed Mar 26 17:47:44 2008 +0100
43810
43811 Fix compilation error in cmd_usb.c
43812
43813 This patch fixes compilation error
43814 cmd_usb.c: In function 'do_usb':
43815 cmd_usb.c:552: error: void value not ignored as it ought to be
43816
43817 Signed-off-by: Anatolij Gustschin <agust@denx.de>
43818
43819 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
43820 Author: Timur Tabi <timur@freescale.com>
43821 Date: Fri Mar 14 17:45:29 2008 -0500
43822
43823 Add support for setting the I2C bus speed in fsl_i2c.c
43824
43825 Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
43826 the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro,
43827 but fsl_i2c.c ignores it and uses conservative value when programming the
43828 I2C bus speed.
43829
43830 Signed-off-by: Timur Tabi <timur@freescale.com>
43831 Acked-by: Andy Fleming <afleming@freescale.com>
43832
43833 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
43834 Author: Wolfgang Denk <wd@denx.de>
43835 Date: Thu Mar 27 00:03:57 2008 +0100
43836
43837 Coding style cleanup, update CHANGELOG
43838
43839 Signed-off-by: Wolfgang Denk <wd@denx.de>
43840
43841 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
43842 Author: Dave Liu <r63238@freescale.com>
43843 Date: Wed Mar 26 22:55:32 2008 +0800
43844
43845 drivers: add the support for Freescale SATA controller
43846
43847 Add the Freescale on-chip SATA controller driver to u-boot,
43848 The SATA controller is used on the 837x and 8315 targets,
43849 The driver can be used to load kernel, fs and dtb.
43850
43851 The features list:
43852 - 1.5/3 Gbps link speed
43853 - LBA48, LBA28 support
43854 - DMA and FPDMA support
43855 - Two ports support
43856
43857 Signed-off-by: Dave Liu <daveliu@freescale.com>
43858
43859 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
43860 Author: Dave Liu <r63238@freescale.com>
43861 Date: Wed Mar 26 22:54:44 2008 +0800
43862
43863 ata: add the readme for SATA command line
43864
43865 Signed-off-by: Dave Liu <daveliu@freescale.com>
43866
43867 commit cd54081cd479e542fc399b8a40651ff11a1ad849
43868 Author: Dave Liu <r63238@freescale.com>
43869 Date: Wed Mar 26 22:53:24 2008 +0800
43870
43871 ata: enable the sata initialize on boot up
43872
43873 Signed-off-by: Dave Liu <daveliu@freescale.com>
43874
43875 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
43876 Author: Dave Liu <r63238@freescale.com>
43877 Date: Wed Mar 26 22:52:36 2008 +0800
43878
43879 ata: add the fis struct for SATA
43880
43881 Signed-off-by: Dave Liu <daveliu@freescale.com>
43882
43883 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
43884 Author: Dave Liu <r63238@freescale.com>
43885 Date: Wed Mar 26 22:51:44 2008 +0800
43886
43887 ata: add the libata support
43888
43889 add simple libata support in u-boot
43890
43891 Signed-off-by: Dave Liu <daveliu@freescale.com>
43892
43893 commit 8e9bb43429e50df55fa41932cbe65841ff579220
43894 Author: Dave Liu <r63238@freescale.com>
43895 Date: Wed Mar 26 22:50:45 2008 +0800
43896
43897 ata: make the ata_piix driver using new SATA framework
43898
43899 original ata_piix driver is using IDE framework, not real
43900 SATA framework. For now, the ata_piix driver is only used
43901 by x86 sc520_cdp board. This patch makes the ata_piix driver
43902 use the new SATA framework, so
43903
43904 - remove the duplicated command stuff
43905 - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
43906 - add the CONFIG_CMD_SATA define to sc520_cdp.h
43907
43908 Signed-off-by: Dave Liu <daveliu@freescale.com>
43909
43910 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
43911 Author: Dave Liu <r63238@freescale.com>
43912 Date: Wed Mar 26 22:49:44 2008 +0800
43913
43914 ata: add the support for SATA framework
43915
43916 - add the SATA framework
43917 - add the SATA command line
43918
43919 Signed-off-by: Dave Liu <daveliu@freescale.com>
43920
43921 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
43922 Author: Dave Liu <r63238@freescale.com>
43923 Date: Wed Mar 26 22:48:18 2008 +0800
43924
43925 ata: merge the header of ata_piix driver
43926
43927 move the sata.h from include/ to drivers/block/ata_piix.h
43928
43929 Signed-off-by: Dave Liu <daveliu@freescale.com>
43930
43931 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
43932 Author: Dave Liu <r63238@freescale.com>
43933 Date: Wed Mar 26 22:47:06 2008 +0800
43934
43935 ata: merge the ata_piix driver
43936
43937 move the cmd_sata.c from common/ to drivers/ata_piix.c,
43938 the cmd_sata.c have some part of ata_piix controller drivers.
43939 consolidate the driver to have better framework.
43940
43941 Signed-off-by: Dave Liu <daveliu@freescale.com>
43942
43943 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
43944 Author: Markus Klotzbuecher <mk@denx.de>
43945 Date: Wed Mar 26 18:26:43 2008 +0100
43946
43947 USB, Storage: fix a bug introduced in commit
43948 f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
43949 to only print only information on one storage device, but not for
43950 multiple.
43951
43952 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
43953
43954 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
43955 Author: Anatolij Gustschin <agust@denx.de>
43956 Date: Wed Mar 26 17:47:44 2008 +0100
43957
43958 Fix compilation error in cmd_usb.c
43959
43960 This patch fixes compilation error
43961 cmd_usb.c: In function 'do_usb':
43962 cmd_usb.c:552: error: void value not ignored as it ought to be
43963
43964 Signed-off-by: Anatolij Gustschin <agust@denx.de>
43965 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
43966
43967 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
43968 Author: Kumar Gala <galak@kernel.crashing.org>
43969 Date: Wed Mar 26 08:53:53 2008 -0500
43970
43971 85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
43972
43973 Provide a board_lmb_reserve helper function to ensure we reserve
43974 the page of memory we are using for the boot page translation code.
43975
43976 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43977
43978 commit 79679d80021ab095e639e250ca472fe526da02e2
43979 Author: Kumar Gala <galak@kernel.crashing.org>
43980 Date: Wed Mar 26 08:34:25 2008 -0500
43981
43982 85xx: Update multicore boot mechanism to ePAPR v0.81 spec
43983
43984 The following changes are needed to be inline with ePAPR v0.81:
43985
43986 * r4, r5 and now always set to 0 on boot release
43987 * r7 is used to pass the size of the initial map area (IMA)
43988 * EPAPR_MAGIC value changed for book-e processors
43989 * changes in the spin table layout
43990 * spin table supports a 64-bit physical release address
43991
43992 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43993
43994 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
43995 Author: Jon Loeliger <jdl@freescale.com>
43996 Date: Wed Mar 19 15:02:07 2008 -0500
43997
43998 FSL: Clean up board/freescale/common/Makefile
43999
44000 Each file that can be built here now follows some
44001 CONFIG_ option so that they are appropriately built
44002 or not, as needed. And CONFIG_ defines were added
44003 to various board config files to make sure that happens.
44004
44005 The other board/freescale/*/Makefiles no longer need
44006 to reach up and over into ../common to build their
44007 individually needed files any more.
44008
44009 Boards that are CDS specific were renamed with cds_ prefix.
44010
44011 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44012
44013 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
44014 Author: Kumar Gala <galak@kernel.crashing.org>
44015 Date: Wed Feb 27 22:00:27 2008 -0600
44016
44017 85xx: Fix merge duplication
44018
44019 ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate.
44020
44021 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44022
44023 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
44024 Author: James Yang <James.Yang@freescale.com>
44025 Date: Tue Feb 12 16:35:07 2008 -0600
44026
44027 85xx: Expand CCSR space with more DDR controller registers.
44028
44029 Signed-off-by: James Yang <James.Yang@freescale.com>
44030 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44031 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44032
44033 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
44034 Author: James Yang <James.Yang@freescale.com>
44035 Date: Fri Feb 8 18:05:08 2008 -0600
44036
44037 85xx: Speed up get_ddr_freq() and get_bus_freq()
44038
44039 get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
44040 called. However, get_sys_info() recalculates extraneous information when
44041 called each time. Have get_ddr_freq() and get_bus_freq() return memoized
44042 values from global_data instead.
44043
44044 Signed-off-by: James Yang <James.Yang@freescale.com>
44045 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44046
44047 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
44048 Author: James Yang <James.Yang@freescale.com>
44049 Date: Fri Feb 8 16:46:27 2008 -0600
44050
44051 85xx: Show DDR memory data rate in addition to the memory clock frequency.
44052
44053 Show the DDR memory data rate in addition to the memory clock
44054 frequency. For DDR/DDR2 memories the memory data rate is 2x the
44055 memory clock.
44056
44057 Signed-off-by: James Yang <James.Yang@freescale.com>
44058 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44059
44060 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
44061 Author: James Yang <James.Yang@freescale.com>
44062 Date: Fri Feb 8 16:44:53 2008 -0600
44063
44064 85xx: get_tbclk() speed up and rounding fix
44065
44066 Speed up get_tbclk() by referencing pre-computed bus clock
44067 frequency value from global data instead of sys_info_t. Fix
44068 rounding of result to nearest; previously it was rounding
44069 upwards.
44070
44071 Signed-off-by: James Yang <James.Yang@freescale.com>
44072 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44073
44074 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
44075 Author: Andy Fleming <afleming@freescale.com>
44076 Date: Wed Feb 6 01:19:40 2008 -0600
44077
44078 Update SVR numbers to expand support
44079
44080 FSL has taken to using SVR[16:23] as an SOC sub-version field. This
44081 is used to distinguish certain variants within an SOC family. To
44082 account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
44083 constants to reflect the larger value. We also add SVR numbers for all
44084 of the current variants. Finally, to make things neater, rather than
44085 use an enormous switch statement to print out the CPU type, we create
44086 and array of SVR/name pairs (using a macro), and print out the CPU name
44087 that matches the SVR SOC version.
44088
44089 Signed-off-by: Andy Fleming <afleming@freescale.com>
44090
44091 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
44092 Author: Andy Fleming <afleming@freescale.com>
44093 Date: Wed Feb 6 01:12:57 2008 -0600
44094
44095 Add the Freescale PCI device IDs
44096
44097 Signed-off-by: Andy Fleming <afleming@freescale.com>
44098
44099 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
44100 Author: Kumar Gala <galak@kernel.crashing.org>
44101 Date: Thu Feb 14 11:04:23 2008 -0600
44102
44103 85xx: Added support for multicore boot mechanism
44104
44105 Added the cpu command that provides a generic mechanism to get status,
44106 reset, and release secondary cores in multicore processors.
44107
44108 Added support for using the ePAPR defined spin-table mechanism on 85xx.
44109
44110 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44111 Signed-off-by: Andy Fleming <afleming@freescale.com>
44112
44113 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
44114 Author: Kumar Gala <galak@kernel.crashing.org>
44115 Date: Thu Jan 17 16:48:33 2008 -0600
44116
44117 85xx: Added support for multicore boot mechanism
44118
44119 Added the cpu command that provides a generic mechanism to get status,
44120 reset, and release secondary cores in multicore processors.
44121
44122 Added support for using the ePAPR defined spin-table mechanism on 85xx.
44123
44124 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44125
44126 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
44127 Author: Kumar Gala <galak@kernel.crashing.org>
44128 Date: Wed Jan 30 14:55:14 2008 -0600
44129
44130 85xx: Add the concept of CFG_CCSRBAR_PHYS
44131
44132 When we go to 36-bit physical addresses we need to keep the concept of
44133 the physical CCSRBAR address seperate from the virtual one.
44134
44135 For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
44136
44137 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44138
44139 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
44140 Author: Wolfgang Denk <wd@denx.de>
44141 Date: Wed Mar 26 15:38:47 2008 +0100
44142
44143 Coding style cleanup.
44144
44145 Signed-off-by: Wolfgang Denk <wd@denx.de>
44146
44147 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
44148 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
44149 Date: Wed Mar 26 13:02:13 2008 +0100
44150
44151 Add CFG_RTC_DS1337_NOOSC to turn off OSC output
44152
44153 The default settings for RTC DS1337 keeps the OSC
44154 output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
44155 turn it off.
44156
44157 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
44158
44159 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
44160 Author: Wolfgang Denk <wd@denx.de>
44161 Date: Wed Mar 26 11:48:46 2008 +0100
44162
44163 Cleanup coding style, update CHANGELOG
44164
44165 Signed-off-by: Wolfgang Denk <wd@denx.de>
44166
44167 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
44168 Author: Wolfgang Denk <wd@denx.de>
44169 Date: Wed Mar 26 10:40:12 2008 +0100
44170
44171 README: update documentation (availability, links, etc.)
44172
44173 Signed-off-by: Wolfgang Denk <wd@denx.de>
44174
44175 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
44176 Author: Aras Vaichas <arasv@magtech.com.au>
44177 Date: Tue Mar 25 12:09:07 2008 +1100
44178
44179 USB Storage, add meaningful return value
44180
44181 This patch changes the "usb storage" command to return success if it
44182 finds a USB storage device, otherwise it returns error.
44183
44184 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
44185
44186 commit 18e69a35efbb078403db0c0063986470dad7d082
44187 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44188 Date: Fri Mar 14 23:20:18 2008 +0300
44189
44190 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
44191
44192 Linux understands "host" (default), "peripheral" and "otg" (broken).
44193 Though, U-Boot doesn't restrict dr_mode variable to these values (think
44194 of renames in future).
44195
44196 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44197 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44198
44199 commit c7604783b236e368f225efb7b3efb418fe20b404
44200 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44201 Date: Fri Mar 14 23:20:30 2008 +0300
44202
44203 tsec: fix link detection for the RTL8211B PHY
44204
44205 RTL8211B sets link state register after autonegotiation complete,
44206 so with bootdelay=0 RTL8211B will report lack of the link.
44207
44208 To fix this, we should wait for aneg to complete, even if the
44209 link is currently down.
44210
44211 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44212 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44213
44214 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
44215 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44216 Date: Mon Mar 24 20:47:09 2008 +0300
44217
44218 mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
44219
44220 device_type = "soc" is being deprecated, newer device trees will use
44221 "fsl,soc" and/or "fsl,immr" for the soc nodes.
44222
44223 This patch also adds clock-frequency property for soc nodes (the same
44224 value as bus-frequency).
44225
44226 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44227
44228 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
44229 Author: Joe D'Abbraccio <ljd015@freescale.com>
44230 Date: Mon Mar 24 13:00:59 2008 -0400
44231
44232 Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
44233
44234 With the original value of 1/2 clock cycle delay, the system ran relatively
44235 stable except when we run benchmarks that are intensive users of memory.
44236 When I run samba connected disk with a HDBENCH test, the system locks-up
44237 or reboots sporadically.
44238
44239 Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
44240
44241 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
44242 Author: Scott Wood <scottwood@freescale.com>
44243 Date: Mon Mar 24 12:44:13 2008 -0500
44244
44245 mpc83xx: Set PCI I/O bus-address base to zero.
44246
44247 The device trees for these boards describe PCI I/O as starting from
44248 address zero from the device's perspective.
44249
44250 Placing I/O elsewhere may cause problems with certain PCI boards, and may
44251 cause problems with Linux.
44252
44253 Signed-off-by: Scott Wood <scottwood@freescale.com>
44254
44255 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
44256 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44257 Date: Mon Mar 24 20:47:05 2008 +0300
44258
44259 mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
44260
44261 At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
44262 This patch fixes "system time drifting" problem.
44263
44264 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44265
44266 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
44267 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44268 Date: Mon Mar 24 20:47:02 2008 +0300
44269
44270 mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
44271
44272 This is needed to update /choosen/linux,stdout-path properly.
44273
44274 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44275
44276 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
44277 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44278 Date: Mon Mar 24 20:47:00 2008 +0300
44279
44280 mpc83xx: MPC8360E-RDK: add dhcp command
44281
44282 Plus modify environment to use it and remove bootfile env variable,
44283 it is internal and CONFIG_BOOTFILE is used for these purposes.
44284
44285 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44286
44287 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
44288 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44289 Date: Mon Mar 24 20:46:57 2008 +0300
44290
44291 mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
44292
44293 Current DDR setup easily causes memory corruption, this patch fixes it.
44294
44295 Also fix TIMING_CFG0_MRS_CYC definition.
44296
44297 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44298
44299 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
44300 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44301 Date: Mon Mar 24 20:46:53 2008 +0300
44302
44303 mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
44304
44305 This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
44306 controller and FHCI (QE USB).
44307
44308 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44309
44310 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
44311 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44312 Date: Mon Mar 24 20:46:51 2008 +0300
44313
44314 mpc83xx: MPC8360E-RDK: add support for NAND
44315
44316 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44317
44318 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
44319 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44320 Date: Mon Mar 24 20:46:46 2008 +0300
44321
44322 mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
44323
44324 This is needed for BCM PHYs to work on this board.
44325
44326 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44327
44328 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
44329 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44330 Date: Mon Mar 24 20:46:34 2008 +0300
44331
44332 uec: add support for Broadcom BCM5481 Gigabit PHY
44333
44334 This patch adds basic support for Broadcom BCM5481 PHY.
44335
44336 RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
44337 Peter Barada <peterb@logicpd.com>.
44338
44339 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44340
44341 commit 6a600c3a1876bc203445df4f0fd6b12648259666
44342 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44343 Date: Mon Mar 24 20:46:28 2008 +0300
44344
44345 uec: add support for RGMII_RXID interface mode
44346
44347 PHY drivers will use it to setup software delay between RXD and RXC
44348 signals.
44349
44350 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44351
44352 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
44353 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44354 Date: Mon Mar 24 20:46:24 2008 +0300
44355
44356 uec: add support for gbit mii status readings
44357
44358 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44359
44360 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
44361 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44362 Date: Mon Mar 24 17:40:47 2008 +0300
44363
44364 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
44365
44366 This is primarily for the early console support.
44367
44368 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44369
44370 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
44371 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44372 Date: Mon Mar 24 17:40:43 2008 +0300
44373
44374 83xx: initialize serdes for MPC837XRDB boards
44375
44376 On the MPC8377ERDB: 2 SATA and 2 PCI-E.
44377 On the MPC8378ERDB: 2 PCI-E
44378 On the MPC8379ERDB: 4 SATA
44379
44380 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44381
44382 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
44383 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44384 Date: Mon Mar 24 17:40:32 2008 +0300
44385
44386 83xx: serdes setup routines
44387
44388 This patch adds few routines to configure serdes on 837x targets.
44389
44390 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44391
44392 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
44393 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44394 Date: Mon Mar 24 17:40:27 2008 +0300
44395
44396 83xx: split COBJS onto separate lines
44397
44398 ..plus get rid of some #ifdefs in the .c files.
44399
44400 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44401
44402 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
44403 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44404 Date: Mon Mar 24 17:40:23 2008 +0300
44405
44406 83xx: nand support for MPC837XRDB boards
44407
44408 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44409
44410 commit 82e45a204190593e8613145a928f998fb8c909c4
44411 Author: Jerry Van Baren <gvb.uboot@gmail.com>
44412 Date: Tue Mar 18 21:44:41 2008 -0400
44413
44414 Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
44415
44416 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44417 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44418
44419 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
44420 Author: Michael Barkowski <michael.barkowski@freescale.com>
44421 Date: Thu Mar 20 13:15:39 2008 -0400
44422
44423 mpc8323erdb: remove RTC and add EEPROM
44424
44425 There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
44426
44427 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
44428 Acked-by: Kim Phillips <kim.phillips@freescale.com>
44429
44430 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
44431 Author: Michael Barkowski <michael.barkowski@freescale.com>
44432 Date: Thu Mar 20 13:15:34 2008 -0400
44433
44434 mpc8323erdb: Improve the system performance
44435
44436 The following changes are based on kernel UCC ethernet performance:
44437
44438 1. Make the CSB bus pipeline depth as 4, and enable the repeat mode
44439 2. Optimize transactions between QE and CSB. Added CFG_SPCR_OPT
44440 switch to enable this setting.
44441
44442 The following changes are based on the App Note AN3369 and
44443 verified to improve memory latency using LMbench:
44444
44445 3. CS0_CONFIG[AP_n_EN] is changed from 1 to 0
44446 4. CS0_CONFIG[ODT_WR_CONFIG] set to 1. Was a reserved setting
44447 previously.
44448 5. TIMING_CFG_1[WRREC] is changed from 3clks to 2clks (based on
44449 Twr=15ns, and this was already the setting in DDR_MODE)
44450 6. TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
44451 Trp=15ns)
44452 7. TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
44453 Tras=40ns)
44454 8. TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
44455 Trcd=15ns)
44456 9. TIMING_CFG_1[REFREC] changed from 21 clks to 11clks. (based on
44457 Trfc=75ns)
44458 10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks. (based
44459 on Tfaw=50ns)
44460 11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
44461 on CL=3 and WL=2).
44462
44463 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
44464 Acked-by: Kim Phillips <kim.phillips@freescale.com>
44465
44466 commit fc549c871f43933396a5b3e21d897023d4b31b8d
44467 Author: Michael Barkowski <michael.barkowski@freescale.com>
44468 Date: Thu Mar 20 13:15:28 2008 -0400
44469
44470 mpc8323erdb: use readable DDR config macros
44471
44472 Use available shift/mask macros to define DDR configuration.
44473
44474 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
44475 Acked-by: Kim Phillips <kim.phillips@freescale.com>
44476
44477 commit 89c7784ed90ba50301eec521144f95111e472906
44478 Author: Timur Tabi <timur@freescale.com>
44479 Date: Fri Feb 8 13:15:55 2008 -0600
44480
44481 83xx: Add Vitesse VSC7385 firmware uploading
44482
44483 Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
44484 the Vitesse VSC7385 firmware. Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
44485 Cleaned up the board header files to make selecting the VSC7385 easier to
44486 control.
44487
44488 Signed-off-by: Timur Tabi <timur@freescale.com>
44489 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44490
44491 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
44492 Author: Timur Tabi <timur@freescale.com>
44493 Date: Fri Feb 8 13:15:54 2008 -0600
44494
44495 NET: Add Vitesse VSC7385 firmware uploading
44496
44497 The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
44498 and other boards. A small firwmare must be uploaded to its on-board memory
44499 before it can be enabled. This patch adds the code which uploads firmware
44500 (but not the firmware itself).
44501
44502 Previously, this feature was provided by a U-Boot application that was
44503 made available only on Freescale BSPs. The VSC7385 firmware must still
44504 be obtained separately, but at least there is no longer a need for a separate
44505 application.
44506
44507 Signed-off-by: Timur Tabi <timur@freescale.com>
44508 Acked-by: Ben Warren <biggerbadderben@gmail.com>
44509
44510 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
44511 Author: Wolfgang Denk <wd@denx.de>
44512 Date: Wed Mar 26 00:52:10 2008 +0100
44513
44514 Coding Style cleanyp; update CHANGELOG
44515
44516 Signed-off-by: Wolfgang Denk <wd@denx.de>
44517
44518 commit 43ddd9c820fec44816188f53346b464e20b3142d
44519 Author: Jerry Van Baren <gvb.uboot@gmail.com>
44520 Date: Sat Mar 22 14:23:49 2008 -0400
44521
44522 Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
44523
44524 These defines embedded the u-boot env variables and/or the bd_t structure
44525 in the fdt blob. The conclusion of discussion on the u-boot email list
44526 was that embedding these in the fdt blob is not useful: there are better
44527 ways of passing the data (in fact, the fdt blob itself replaces the
44528 bd_t struct).
44529
44530 The only board that enables these is the stxxtc and they don't appear
44531 to be used by linux.
44532
44533 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44534 Acked-by: Kim Phillips <kim.phillips@freescale.com>
44535
44536 commit 22ed2285743359fd1fe73e411dff914b2256e68f
44537 Author: Stefan Roese <sr@denx.de>
44538 Date: Mon Mar 17 10:49:25 2008 +0100
44539
44540 rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
44541
44542 Signed-off-by: Stefan Roese <sr@denx.de>
44543
44544 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
44545 Author: Kyungmin Park <kmpark@infradead.org>
44546 Date: Mon Mar 17 08:54:06 2008 +0900
44547
44548 Add Flex-OneNAND booting support
44549
44550 Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
44551 using a NOR Flash interface. This on-chip integration enables system designers
44552 to reduce external system logic and use high-density NAND Flash
44553 in applications that would otherwise have to use more NOR components.
44554
44555 Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
44556 in more flexible way. While MLC area of Flex-OneNAND can be used to store data
44557 that require low reliability and high density, SLC area of Flex-OneNAND
44558 to store data that need high reliability and high performance. Flex-OneNAND
44559 can let users take advantage of storing these two different types of data
44560 into one chip, which is making Flex-OneNAND more cost- and space-effective.
44561
44562 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
44563
44564 commit c512389cc4a10253249271ff6c887c6dab1f0db2
44565 Author: André Schwarz <andre.schwarz@matrix-vision.de>
44566 Date: Thu Mar 13 13:50:52 2008 +0100
44567
44568 MPC5200: support setup without FEC
44569
44570 Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
44571 defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
44572
44573 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44574 Acked-by: Grant Likely <grant.likely@secretlab.ca>
44575
44576 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
44577 Author: Jon Loeliger <jdl@freescale.com>
44578 Date: Wed Mar 5 18:05:46 2008 -0600
44579
44580 FSL: Move board/mpc8266ads under board/freescale
44581
44582 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44583
44584 commit 7f1d846e5c5754449c286587d099d85246062772
44585 Author: Jon Loeliger <jdl@freescale.com>
44586 Date: Wed Mar 5 18:05:47 2008 -0600
44587
44588 FSL: Move board/mpc7448hpc2 under board/freescale
44589
44590 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44591
44592 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
44593 Author: Jon Loeliger <jdl@freescale.com>
44594 Date: Wed Mar 5 18:05:45 2008 -0600
44595
44596 FSL: Move board/mpc8260ads under board/freescale
44597
44598 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44599
44600 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
44601 Author: goda.yusuke <goda.yusuke@renesas.com>
44602 Date: Wed Mar 5 17:08:33 2008 +0900
44603
44604 net: Add support AX88796L ethernet device
44605
44606 AX88796L is device of NE2000 compatible.
44607 This patch support AX88796L ethernet device.
44608
44609 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
44610 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44611
44612 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
44613 Author: Wolfgang Denk <wd@denx.de>
44614 Date: Tue Mar 25 22:50:41 2008 +0100
44615
44616 ne2000 driver: change #ifdef to Makefile conditional compilation
44617
44618 Signed-off-by: Wolfgang Denk <wd@denx.de>
44619
44620 commit e710185aae90c64d39c2d453e40e58ceefe4f250
44621 Author: goda.yusuke <goda.yusuke@renesas.com>
44622 Date: Wed Mar 5 17:08:20 2008 +0900
44623
44624 net: Divided code of NE2000 ethernet driver
44625
44626 There are more devices of the NE2000 base.
44627 A present code is difficult for us to support more devices.
44628 To support more NE2000 clone devices, separated the function.
44629
44630 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
44631 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44632
44633 commit 395bce4f59a507a60a475f7ee46bed47de9482df
44634 Author: Mike Frysinger <vapier@gentoo.org>
44635 Date: Sun Feb 24 23:58:13 2008 -0500
44636
44637 net/Blackfin: move on-chip MAC driver into drivers/net/
44638
44639 The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
44640 directory, but it is not board specific, so relocate it to the drivers dir
44641 so that other Blackfin ports can utilize it.
44642
44643 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
44644
44645 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
44646 Author: Mike Frysinger <vapier@gentoo.org>
44647 Date: Sun Feb 24 23:52:35 2008 -0500
44648
44649 smc91111: use SSYNC() rather than asm(ssync) for Blackfin
44650
44651 Since the "ssync" instruction may have hardware anomalies associated with
44652 it, have the smc91111 driver use the SSYNC macro rather than invoking it
44653 directly. We workaround all the anomalies via this macro.
44654
44655 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
44656
44657 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
44658 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
44659 Date: Sun Feb 17 22:57:47 2008 +0000
44660
44661 8xx: Update OF support on 8xx
44662
44663 This patch does some shifting around of OF support on 8xx.
44664
44665 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
44666
44667 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
44668 Author: Kumar Gala <galak@kernel.crashing.org>
44669 Date: Fri Feb 15 15:16:18 2008 -0600
44670
44671 ppc: Allow boards to specify how much memory they can map
44672
44673 For historical reasons we limited the stack to 256M because some boards
44674 could only map that much via BATS. However newer boards are capable of
44675 mapping more memory (for example 85xx is capble of doing up to 2G).
44676
44677 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44678
44679 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
44680 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
44681 Date: Fri Feb 15 01:05:58 2008 +0000
44682
44683 8xx : Add OF support to Adder875 board port - resubmit
44684
44685 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
44686
44687 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
44688 Author: Kumar Gala <galak@kernel.crashing.org>
44689 Date: Thu Feb 14 20:44:42 2008 -0600
44690
44691 Add setexpr command
44692
44693 Add a simple expr style command that will set an env variable as the result
44694 of the command. This allows us to do simple math in shell. The following
44695 operations are supported: &, |, ^, +, -, *, /.
44696
44697 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44698
44699 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
44700 Author: Jon Loeliger <jdl@freescale.com>
44701 Date: Wed Mar 5 17:27:48 2008 -0600
44702
44703 FSL: Move board/mpc7448hpc2 under board/freescale
44704
44705 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44706
44707 commit 449c703374a8868453425e15da7e2f76221b72e4
44708 Author: Jon Loeliger <jdl@freescale.com>
44709 Date: Wed Mar 5 17:21:43 2008 -0600
44710
44711 FSL: Move board/mpc8266ads under board/freescale
44712
44713 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44714
44715 commit 5863577989ad689427bb750107e9a75f1c1645d2
44716 Author: Jon Loeliger <jdl@freescale.com>
44717 Date: Wed Mar 5 16:41:41 2008 -0600
44718
44719 FSL: Move board/mpc8260ads under board/freescale
44720
44721 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44722
44723 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
44724 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44725 Date: Tue Mar 25 21:30:08 2008 +0900
44726
44727 [MIPS] Move gth2_config from ARM section to MIPS
44728
44729 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44730
44731 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
44732 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44733 Date: Tue Mar 25 21:30:07 2008 +0900
44734
44735 [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
44736
44737 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44738
44739 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
44740 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44741 Date: Tue Mar 25 21:30:07 2008 +0900
44742
44743 [MIPS] Fix dcache_status()
44744
44745 You can't judge UNCACHED by Config.K0 LSB.
44746
44747 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44748
44749 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
44750 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44751 Date: Tue Mar 25 21:30:07 2008 +0900
44752
44753 [MIPS] Introduce _machine_restart
44754
44755 Handles machine specific functions by using weak functions.
44756
44757 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44758
44759 commit decaba6f5cf386d569ac3997bebb871b966c6b18
44760 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44761 Date: Tue Mar 25 21:30:07 2008 +0900
44762
44763 [MIPS] Cleanup CP0 Status initialization
44764
44765 Add setup_c0_status from Linux. For the moment we disable interrupts, set
44766 CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
44767 reset-time configuration and will work well across most processors.
44768
44769 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44770
44771 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
44772 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44773 Date: Tue Mar 25 21:30:07 2008 +0900
44774
44775 [MIPS] Initialize CP0 Cause before setting up CP0 Status register
44776
44777 Without this change, we'll be suffering from deffered WATCH exception
44778 once Status.EXL is cleared. Make sure Cause.WP is cleared.
44779
44780 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44781
44782 commit 26138623230ca2bad3c78e05a65527ea70c8b688
44783 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44784 Date: Tue Mar 25 21:30:07 2008 +0900
44785
44786 [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
44787
44788 Move things to appropriate place.
44789
44790 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44791
44792 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
44793 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44794 Date: Tue Mar 25 21:30:06 2008 +0900
44795
44796 [MIPS] Implement flush_cache()
44797
44798 We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
44799 don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
44800 function is used not only in U-Boot specfic programs but also at loading
44801 target binaries.
44802
44803 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44804
44805 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
44806 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44807 Date: Tue Mar 25 21:30:06 2008 +0900
44808
44809 [MIPS] Fix I-/D-cache initialization loops
44810
44811 Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
44812 again per a loop for I-cache initialization. But according to 'See MIPS
44813 Run', we're encouraged to use three separate loops rather than combining
44814 them *for both I- and D-cache*. This patch tries to fix this.
44815
44816 In accordance with fixing above, mips_init_[id]cache are separated from
44817 mips_cache_reset(), and rewrite cache loops are completely rewritten with
44818 useful macros.
44819
44820 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44821
44822 commit 1898840797c7f50799377bd5b285a8a93a82c419
44823 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44824 Date: Tue Mar 25 21:30:06 2008 +0900
44825
44826 [MIPS] Replace memory clearance code with f_fill64
44827
44828 This routine fills memory with zero by 64 bytes, and is 64-bit capable.
44829
44830 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44831
44832 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
44833 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44834 Date: Tue Mar 25 21:30:06 2008 +0900
44835
44836 [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
44837
44838 This patch replaces the current function definitions with NESTED, LEAF
44839 and END macro. They specify some more additional information about the
44840 function; an alignment of symbol, type of symbol, stack frame usage, etc.
44841 These information explicitly tells the assembler and the debugger about
44842 the types of code we want to generate.
44843
44844 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44845
44846 commit 282223a607c611425fa33f5428f8eae6636972bb
44847 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44848 Date: Tue Mar 25 11:43:17 2008 +0900
44849
44850 [MIPS] asm headers' updates
44851
44852 Make some asm headers adjusted to the latest Linux kernel.
44853
44854 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44855
44856 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
44857 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44858 Date: Tue Mar 25 11:39:29 2008 +0900
44859
44860 [MIPS] Request for the 'mips_cache_lock()' removal
44861
44862 The initial intension of having mips_cache_lock() was to use the cache
44863 as memory for temporary stack use so that a C environment can be set up
44864 as early as possible.
44865
44866 But now mips_cache_lock() follow lowlevel_init(). We've already have the
44867 real memory initilaized at this point, therefore we could/should use it.
44868 No reason to lock at all.
44869
44870 Other problems:
44871
44872 Cache locking is not consistent across MIPS implementaions. Some imple-
44873 mentations don't support locking at all. The style of locking varies -
44874 some support per line locking, others per way, etc. Some parts use bits
44875 in status registers instead of cache ops. Current mips_cache_lock() is
44876 not necessarily general-purpose.
44877
44878 And this is worthy of special mention; once U-Boot/MIPS locks the lines,
44879 they are never get unlocked, so the code relies on whatever gets loaded
44880 after U-Boot to re-initialize the cache and clear the locks. We're sup-
44881 posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
44882 but leave the situation as it is for a long time.
44883
44884 For these reasons, I proposed the removal of mips_cache_lock() from the
44885 global start-up code.
44886
44887 This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
44888 *things have changed*. If he wants the same behavior as before, he needs
44889 to have CFG_INIT_RAM_LOCK_MIPS in his config file.
44890
44891 If we don't have any regression report through several releases, then
44892 we'll remove codes entirely.
44893
44894 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44895 Acked-by: Andrew Dyer <amdyer@gmail.com>
44896
44897 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
44898 Author: Yuri Tikhonov <yur@emcraft.com>
44899 Date: Mon Mar 24 11:30:54 2008 +0100
44900
44901 lwmon5 SYSMON POST: fix backlight control
44902
44903 If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
44904 run on the board, then the SYSMON POST controls the display backlight
44905 (doesn't switch backlight ON if POST FAILED, and does switch the
44906 backlight ON if PASSED).
44907
44908 If not, then the video driver controls the display backlight (just
44909 switch ON the backlight upon initialization).
44910
44911 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
44912
44913 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
44914 Author: Yuri Tikhonov <yur@emcraft.com>
44915 Date: Mon Mar 24 11:29:14 2008 +0100
44916
44917 lwmon5 SYSMON POST: fix handling of negative temperatures
44918
44919 Fix errors in the LWMON5 Sysmon POST for negative temperatures.
44920
44921 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
44922
44923 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
44924 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44925 Date: Fri Mar 7 16:04:25 2008 +0900
44926
44927 pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
44928
44929 In current source code, when the device number of PCI is 0, process PCI
44930 bridge without fail. However, when the device number is 0, it is not PCI
44931 always bridge. There are times when device of PCI allocates.
44932
44933 When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
44934 use this patch.
44935
44936 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44937 Acked-by: Stefan Roese <sr@denx.de>
44938
44939 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
44940 Author: Yuri Tikhonov <yur@emcraft.com>
44941 Date: Fri Mar 21 09:18:40 2008 +0100
44942
44943 LWMON5: fix dsPIC POST
44944
44945 Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
44946
44947 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
44948
44949 commit 388b82fddc7c05596f3f615f190da0448227dc82
44950 Author: Bartlomiej Sieka <tur@semihalf.com>
44951 Date: Thu Mar 20 23:23:13 2008 +0100
44952
44953 [new uImage] Enable new uImage support for the pcs440ep board.
44954
44955 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44956
44957 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
44958 Author: Bartlomiej Sieka <tur@semihalf.com>
44959 Date: Thu Mar 20 23:23:13 2008 +0100
44960
44961 [new uImage] Do not compile new uImage format support by default
44962
44963 Disable default building of new uImage format support in preparation
44964 for merge with the master. Support for new format can be enabled on
44965 a per-board basis, by defining the following in the board's config file:
44966
44967 #define CONFIG_FIT 1
44968 #define CONFIG_OF_LIBFDT 1
44969
44970 This can be optionally defined to give more verbose output:
44971
44972 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
44973
44974 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44975
44976 commit dafaede8a46c7159310239e036c93e31c6374487
44977 Author: Bartlomiej Sieka <tur@semihalf.com>
44978 Date: Thu Mar 20 23:20:31 2008 +0100
44979
44980 [new uImage] Disable debuging output in preparation for merge with master
44981
44982 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44983
44984 commit fbe7a155027beacebaee9b32e1ada781fe924bca
44985 Author: Bartlomiej Sieka <tur@semihalf.com>
44986 Date: Thu Mar 20 19:38:45 2008 +0100
44987
44988 [new uImage] Compilation and new uImage handling fixes for imxtract
44989
44990 Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
44991 include/config_cmd_default.h. Fix few warnings and handling of new format
44992 images.
44993
44994 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44995
44996 commit 36cc8cbb3379d5166f882641123521735c469f92
44997 Author: Bartlomiej Sieka <tur@semihalf.com>
44998 Date: Thu Mar 20 23:10:19 2008 +0100
44999
45000 [new uImage] Fix autoscr command used with new uImage format
45001
45002 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
45003
45004 commit 43142e817f0597be412e7cbe19413f5532eafa5d
45005 Author: Bartlomiej Sieka <tur@semihalf.com>
45006 Date: Thu Mar 20 23:10:19 2008 +0100
45007
45008 [new uImage] Fix *.its files location in documentation
45009
45010 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
45011
45012 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
45013 Author: Wolfgang Denk <wd@denx.de>
45014 Date: Thu Mar 20 22:01:38 2008 +0100
45015
45016 lwmon5 POST: remove unreachable code
45017
45018 plus some coding style cleanup
45019
45020 Signed-off-by: Wolfgang Denk <wd@denx.de>
45021
45022 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
45023 Author: Yuri Tikhonov <yur@emcraft.com>
45024 Date: Thu Mar 20 17:56:04 2008 +0300
45025
45026 LWMON5: POST RTC fix
45027
45028 Modify the RTC API to provide one a status for the time reported by
45029 the rtc_get() function:
45030 0 - a reliable time is guaranteed,
45031 < 0 - a reliable time isn't guaranteed (power fault, clock issues,
45032 and so on).
45033
45034 The RTC chip drivers are responsible for providing this info if the
45035 corresponding chip supports such functionality. If not - always
45036 report that the time is reliable.
45037
45038 The POST RTC test was modified to detect the RTC faults utilizing
45039 this new rtc_get() feature.
45040
45041 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45042
45043 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
45044 Author: Martin Krause <martin.krause@tqs.de>
45045 Date: Wed Mar 19 14:25:14 2008 +0100
45046
45047 TQM5200B: update MTD partition layout
45048
45049 - insert partition for dtb blob to TQM5200B MTD layout
45050 - set env variables dependent on the configured board
45051 (TQM5200 or TQM5200B)
45052
45053 Signed-off-by: Martin Krause <martin.krause@tqs.de>
45054
45055 commit f0105727d132f56a21fa3ed8b162309cca6cac44
45056 Author: Stefan Roese <sr@denx.de>
45057 Date: Wed Mar 19 07:09:26 2008 +0100
45058
45059 CFI: Small cleanup for FLASH_SHOW_PROGRESS
45060
45061 With this patch we don't need that many #ifdef's in the code. It moves
45062 the subtraction into the macro and defines a NOP-macro when
45063 CONFIG_FLASH_SHOW_PROGRESS is not defined.
45064
45065 Signed-off-by: Stefan Roese <sr@denx.de>
45066 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
45067
45068 commit 9a042e9ca512beaaa2cb450274313fc477141241
45069 Author: Jerry Van Baren <gvb.uboot@gmail.com>
45070 Date: Sat Mar 8 13:48:01 2008 -0500
45071
45072 Flash programming progress countdown.
45073
45074 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
45075
45076 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
45077 Author: Bartlomiej Sieka <tur@semihalf.com>
45078 Date: Wed Mar 19 10:00:06 2008 +0100
45079
45080 [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
45081
45082 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
45083
45084 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
45085 Author: David Gibson <david@gibson.dropbear.id.au>
45086 Date: Mon Feb 18 18:09:04 2008 +1100
45087
45088 libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
45089
45090 Since fdt_node_offset_by_compatible() was converted to the new
45091 fdt_next_node() iterator, a chunk of initialization code became
45092 redundant, but was not removed by oversight. This patch cleans it up.
45093
45094 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
45095
45096 commit d0ccb9b140b472039732de102fc14597eedb14df
45097 Author: David Gibson <david@gibson.dropbear.id.au>
45098 Date: Mon Feb 18 18:06:31 2008 +1100
45099
45100 libfdt: Trivial cleanup for CHECK_HEADER)
45101
45102 Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
45103 However, there are a handful of functions (fdt_move, rw_check_header,
45104 fdt_open_into) from other files which could also use it (currently
45105 they open-code something more-or-less identical). Therefore, this
45106 patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
45107 places.
45108
45109 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
45110
45111 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
45112 Author: Kumar Gala <galak@kernel.crashing.org>
45113 Date: Wed Feb 20 14:32:36 2008 -0600
45114
45115 Fix fdt boardsetup command parsing
45116
45117 The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
45118
45119 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45120
45121 commit 804887e6001e2f00bea11431bf34d6d472512cda
45122 Author: Kumar Gala <galak@kernel.crashing.org>
45123 Date: Fri Feb 15 03:34:36 2008 -0600
45124
45125 Add sub-commands to fdt
45126
45127 fdt header - Display header info
45128 fdt bootcpu <id> - Set boot cpuid
45129 fdt memory <addr> <size> - Add/Update memory node
45130 fdt rsvmem print - Show current mem reserves
45131 fdt rsvmem add <addr> <size> - Add a mem reserve
45132 fdt rsvmem delete <index> - Delete a mem reserves
45133
45134 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45135
45136 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
45137 Author: David Gibson <david@gibson.dropbear.id.au>
45138 Date: Thu Feb 14 16:50:34 2008 +1100
45139
45140 libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
45141
45142 fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
45143 node which has NOP tags interspersed with its properties. In this
45144 case fdt_add_subnode_namelen() will put the new subnode before the
45145 first NOP tag, even if there are properties after it, which will
45146 result in an invalid blob.
45147
45148 This patch fixes the bug, and adds a testcase for it.
45149
45150 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
45151
45152 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
45153 Author: David Gibson <david@gibson.dropbear.id.au>
45154 Date: Tue Feb 12 11:58:31 2008 +1100
45155
45156 libfdt: Add and use a node iteration helper function.
45157
45158 This patch adds an fdt_next_node() function which can be used to
45159 iterate through nodes of the tree while keeping track of depth. This
45160 function is used to simplify the iteration code in a lot of other
45161 functions, and is also exported for use by library users.
45162
45163 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
45164
45165 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
45166 Author: David Gibson <david@gibson.dropbear.id.au>
45167 Date: Fri Jan 11 14:55:05 2008 +1100
45168
45169 libfdt: Add fdt_set_name() function
45170
45171 This patch adds an fdt_set_name() function to libfdt, mirroring
45172 fdt_get_name(). This is a r/w function which alters the name of a
45173 given device tree node.
45174
45175 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
45176
45177 commit 23e20aa6488e6c0622496549861bfdc74108debe
45178 Author: Yuri Tikhonov <yur@pollux.denx.de>
45179 Date: Tue Mar 18 13:33:30 2008 +0100
45180
45181 lwmon5: Fix register test logic to match the specific GDC h/w.
45182
45183 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45184 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45185
45186 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
45187 Author: Yuri Tikhonov <yur@pollux.denx.de>
45188 Date: Tue Mar 18 13:27:57 2008 +0100
45189
45190 Fix backlight in the lwmon5 POST.
45191
45192 Backlight was switched on even when temperature was too low.
45193
45194 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45195 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45196
45197 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
45198 Author: Yuri Tikhonov <yur@pollux.denx.de>
45199 Date: Wed Feb 6 18:48:36 2008 +0100
45200
45201 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).
45202
45203 To enable this, alternative, configuration the U-Boot board configuration
45204 file for lwmon5 includes the definitions of alternative addresses for header
45205 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
45206
45207 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
45208 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
45209 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
45210
45211 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45212
45213 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
45214 Author: Yuri Tikhonov <yur@pollux.denx.de>
45215 Date: Mon Feb 4 17:11:53 2008 +0100
45216
45217 Add support for the lwmon5 board reset via GPIO58.
45218
45219 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45220 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45221
45222 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
45223 Author: Yuri Tikhonov <yur@pollux.denx.de>
45224 Date: Mon Feb 4 17:09:55 2008 +0100
45225
45226 Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
45227
45228 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45229 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45230
45231 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
45232 Author: Yuri Tikhonov <yur@pollux.denx.de>
45233 Date: Mon Feb 4 14:11:03 2008 +0100
45234
45235 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.
45236
45237 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45238 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45239
45240 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
45241 Author: Yuri Tikhonov <yur@pollux.denx.de>
45242 Date: Mon Feb 4 14:10:42 2008 +0100
45243
45244 The patch adds new POST tests for the Lwmon5 board. These are:
45245
45246 * External Watchdog test;
45247 * dsPIC tests;
45248 * FPGA test;
45249 * GDC test;
45250 * Sysmon tests.
45251
45252 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45253 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45254
45255 commit c2ed33efbfff5767bca236828e021c55fd547b6c
45256 Author: Yuri Tikhonov <yur@pollux.denx.de>
45257 Date: Mon Feb 4 14:10:01 2008 +0100
45258
45259 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
45260
45261 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45262
45263 commit 3a5d1e7f1309998791702b2a559e3126781746b9
45264 Author: Yuri Tikhonov <yur@pollux.denx.de>
45265 Date: Tue Mar 18 13:33:30 2008 +0100
45266
45267 lwmon5: Fix register test logic to match the specific GDC h/w.
45268
45269 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45270 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45271
45272 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
45273 Author: Yuri Tikhonov <yur@pollux.denx.de>
45274 Date: Tue Mar 18 13:27:57 2008 +0100
45275
45276 Fix backlight in the lwmon5 POST.
45277
45278 Backlight was switcehd on even when temperature was too low.
45279
45280 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45281 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45282
45283 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
45284 Author: Yuri Tikhonov <yur@pollux.denx.de>
45285 Date: Wed Feb 6 18:48:36 2008 +0100
45286
45287 The patch introduces the alternative configuration of the log buffer for
45288 the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
45289 the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
45290 PPC440EPX_GPT0_COMP5).
45291
45292 To enable this, alternative, configuration the U-Boot board configuration
45293 file for lwmon5 includes the definitions of alternative addresses for header
45294 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
45295
45296 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
45297 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
45298 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
45299
45300 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45301
45302 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
45303 Author: Yuri Tikhonov <yur@pollux.denx.de>
45304 Date: Mon Feb 4 17:11:53 2008 +0100
45305
45306 Add support for the lwmon5 board reset via GPIO58.
45307
45308 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45309 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45310
45311 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
45312 Author: Yuri Tikhonov <yur@pollux.denx.de>
45313 Date: Mon Feb 4 17:09:55 2008 +0100
45314
45315 Some fixes to dspic, fpga, and gdc post tests for lwmon5.
45316 Disable external watch-dog for now.
45317
45318 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45319 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45320
45321 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
45322 Author: Yuri Tikhonov <yur@pollux.denx.de>
45323 Date: Mon Feb 4 14:11:03 2008 +0100
45324
45325 The patch introduces the CRITICAL feature of POST tests. If the test
45326 marked as POST_CRITICAL fails then the alternative, post_critical,
45327 boot-command is used. If this command is not defined then U-Boot
45328 enters into interactive mode.
45329
45330 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45331 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45332
45333 commit 65b20dcefc89618193fa51947968dada91e4c778
45334 Author: Yuri Tikhonov <yur@pollux.denx.de>
45335 Date: Mon Feb 4 14:10:42 2008 +0100
45336
45337 The patch adds new POST tests for the Lwmon5 board.
45338 These are:
45339
45340 * External Watchdog test;
45341 * dsPIC tests;
45342 * FPGA test;
45343 * GDC test;
45344 * Sysmon tests.
45345
45346 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45347 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45348
45349 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
45350 Author: Yuri Tikhonov <yur@pollux.denx.de>
45351 Date: Mon Feb 4 14:10:01 2008 +0100
45352
45353 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
45354
45355 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45356
45357 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
45358 Author: Wolfgang Denk <wd@denx.de>
45359 Date: Tue Mar 18 17:35:51 2008 +0100
45360
45361 HMI1001: fix compile problem.
45362
45363 Signed-off-by: Wolfgang Denk <wd@denx.de>
45364
45365 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
45366 Author: Mike Frysinger <vapier@gentoo.org>
45367 Date: Mon Feb 18 05:32:30 2008 -0500
45368
45369 Blackfin: BF537-stamp: drop board-specific flash driver for CFI
45370
45371 The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
45372 for the board specific driver at all. Just use the common CFI driver.
45373
45374 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45375
45376 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
45377 Author: Mike Frysinger <vapier@gentoo.org>
45378 Date: Tue Feb 19 00:36:14 2008 -0500
45379
45380 Blackfin: add proper ELF markings to some assembly functions
45381
45382 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45383
45384 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
45385 Author: Mike Frysinger <vapier@gentoo.org>
45386 Date: Tue Feb 19 00:35:17 2008 -0500
45387
45388 Blackfin: new cplbinfo command for viewing cplb tables
45389
45390 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45391
45392 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
45393 Author: Mike Frysinger <vapier@gentoo.org>
45394 Date: Mon Feb 18 05:37:51 2008 -0500
45395
45396 Blackfin: update MAINTAINERS list
45397
45398 Add maintainer information for the Blackfin boards.
45399
45400 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45401
45402 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
45403 Author: Mike Frysinger <vapier@gentoo.org>
45404 Date: Mon Feb 18 05:26:48 2008 -0500
45405
45406 Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
45407
45408 Stop tying things to the processor that should be tied to other defines and
45409 change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
45410 system to select the -mcpu option.
45411
45412 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45413
45414 commit 86a20fb920bd198105acf7b1191117f566d637ed
45415 Author: Mike Frysinger <vapier@gentoo.org>
45416 Date: Sat Feb 16 07:40:36 2008 -0500
45417
45418 Blackfin: move bootldr command to common code
45419
45420 This moves the Blackfin-common bootldr command out of the BF537-STAMP
45421 specific board directory and into the common directory so that all Blackfin
45422 boards may utilize it.
45423
45424 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45425
45426 commit decbe029b2a9d3333d02c433389b1c821eea96d7
45427 Author: Heiko Schocher <hs@denx.de>
45428 Date: Fri Mar 14 11:05:20 2008 +0100
45429
45430 mgcoge: update configuration
45431
45432 Fix configuration for mgcoge board
45433
45434 Signed-off-by: Heiko Schocher <hs@denx.de>
45435
45436 commit c136724cda0219c49f1d4b346f00da29b14fdf14
45437 Author: Wolfgang Denk <wd@denx.de>
45438 Date: Sun Mar 16 01:22:59 2008 +0100
45439
45440 drivers/rtc/Makefile: keep list sorted
45441
45442 Signed-off-by: Wolfgang Denk <wd@denx.de>
45443
45444 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
45445 Author: Tor Krill <tor@excito.com>
45446 Date: Sat Mar 15 15:40:26 2008 +0100
45447
45448 Add support for Intersil isl1208 RTC
45449
45450 Signed-off-by: Tor Krill <tor@excito.com>
45451
45452 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
45453 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45454 Date: Sat Mar 15 17:36:41 2008 +0100
45455
45456 cramfs: Fix ifdef
45457
45458 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45459
45460 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
45461 Author: Wolfgang Denk <wd@denx.de>
45462 Date: Sun Mar 16 01:12:58 2008 +0100
45463
45464 Conding style cleanup
45465
45466 Signed-off-by: Wolfgang Denk <wd@denx.de>
45467
45468 commit 41712b4e8c95dff23354bcd620e1f9477160c190
45469 Author: Stefan Roese <sr@denx.de>
45470 Date: Wed Mar 5 12:31:53 2008 +0100
45471
45472 ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
45473
45474 This patch adds USB OHCI support to the Canyonlands board port. It also
45475 enables EXT2 support.
45476
45477 Signed-off-by: Stefan Roese <sr@denx.de>
45478
45479 commit 2596f5b9d353ff3e4387a3325d05740f16958038
45480 Author: Stefan Roese <sr@denx.de>
45481 Date: Wed Mar 5 12:29:32 2008 +0100
45482
45483 usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
45484
45485 This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
45486 way a board just needs to define this new option to enable the "force
45487 NoPowerSwitching mode" instead of adding new CPU/architecture defines
45488 to the USB source itself.
45489
45490 This new option will be used first with the new AMCC 460EX Canyonlands
45491 board port, which will be posted in a few days.
45492
45493 This patch also fixes a small compilation problem when DEBUG is enabled.
45494
45495 Signed-off-by: Stefan Roese <sr@denx.de>
45496
45497 commit 71665ebf88408ff2acb762af47989fd4365b321a
45498 Author: Stefan Roese <sr@denx.de>
45499 Date: Mon Mar 3 17:27:02 2008 +0100
45500
45501 ppc4xx: Add Canyonlands NAND booting support
45502
45503 460EX doesn't support a fixed bootstrap option to boot from 512 byte page
45504 NAND devices. The only bootstrap option for NAND booting is option F for
45505 2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
45506 EEPROM needs to be programmed accordingly.
45507
45508 This patch adds basic NAND booting support for the AMCC Canyonlands aval
45509 board and also adds support to the "bootstrap" command, to enable NAND
45510 booting I2C setting.
45511
45512 Tested with 512 byte page NAND device (32MByte) on Canyonlands.
45513
45514 Signed-off-by: Stefan Roese <sr@denx.de>
45515
45516 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
45517 Author: Stefan Roese <sr@denx.de>
45518 Date: Tue Mar 11 16:53:00 2008 +0100
45519
45520 ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
45521
45522 This patch adds support for the AMCC Canyonlands 460EX evaluation
45523 board.
45524
45525 Signed-off-by: Stefan Roese <sr@denx.de>
45526
45527 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
45528 Author: Stefan Roese <sr@denx.de>
45529 Date: Tue Mar 11 16:52:24 2008 +0100
45530
45531 ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
45532
45533 This patch adds support for the AMCC Canyonlands 460EX evaluation
45534 board.
45535
45536 Signed-off-by: Stefan Roese <sr@denx.de>
45537
45538 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
45539 Author: Stefan Roese <sr@denx.de>
45540 Date: Tue Mar 11 16:51:17 2008 +0100
45541
45542 ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
45543
45544 This patch adds support for the AMCC Canyonlands 460EX evaluation
45545 board.
45546
45547 Signed-off-by: Stefan Roese <sr@denx.de>
45548
45549 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
45550 Author: Stefan Roese <sr@denx.de>
45551 Date: Tue Mar 11 15:11:43 2008 +0100
45552
45553 ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
45554
45555 This patch adds basic support for the AMCC 460EX/460GT PPC's.
45556
45557 Signed-off-by: Stefan Roese <sr@denx.de>
45558
45559 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
45560 Author: Stefan Roese <sr@denx.de>
45561 Date: Tue Mar 11 15:11:18 2008 +0100
45562
45563 ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
45564
45565 This patch adds basic support for the AMCC 460EX/460GT PPC's.
45566
45567 Signed-off-by: Stefan Roese <sr@denx.de>
45568
45569 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
45570 Author: Stefan Roese <sr@denx.de>
45571 Date: Tue Mar 11 15:07:10 2008 +0100
45572
45573 ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
45574
45575 This patch adds basic support for the AMCC 460EX/460GT PPC's.
45576
45577 Signed-off-by: Stefan Roese <sr@denx.de>
45578
45579 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
45580 Author: Stefan Roese <sr@denx.de>
45581 Date: Tue Mar 11 15:05:50 2008 +0100
45582
45583 ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
45584
45585 This patch adds basic support for the AMCC 460EX/460GT PPC's.
45586
45587 Signed-off-by: Stefan Roese <sr@denx.de>
45588
45589 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
45590 Author: Stefan Roese <sr@denx.de>
45591 Date: Tue Mar 11 15:05:26 2008 +0100
45592
45593 ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
45594
45595 This patch adds basic support for the AMCC 460EX/460GT PPC's.
45596
45597 Signed-off-by: Stefan Roese <sr@denx.de>
45598
45599 commit 56e410178375d9f20be25fb24e180974f0ae120b
45600 Author: Stefan Roese <sr@denx.de>
45601 Date: Tue Feb 19 22:07:57 2008 +0100
45602
45603 ppc4xx: interrupt.c reworked
45604
45605 This patch is a rework of the 4xx interrupt handling done while
45606 adding the 460EX/GT support. Interrupts are needed on 4xx for the
45607 EMAC driver.
45608
45609 Signed-off-by: Stefan Roese <sr@denx.de>
45610
45611 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
45612 Author: Stefan Roese <sr@denx.de>
45613 Date: Tue Feb 19 22:01:57 2008 +0100
45614
45615 ppc4xx: program_tlb now uses 64bit physical addess
45616
45617 This patch changes the physical addess parameter from 32bit to 64bit.
45618 This is needed for 36bit 4xx platforms to access areas located
45619 beyond the 4GB border, like SoC peripherals (EBC etc.).
45620
45621 Signed-off-by: Stefan Roese <sr@denx.de>
45622
45623 commit c3307fa186af85771924c434997089b8104c0a46
45624 Author: Stefan Roese <sr@denx.de>
45625 Date: Tue Feb 19 21:58:25 2008 +0100
45626
45627 ppc4xx: miiphy.c reworked
45628
45629 While adding the 460EX/GT support I reworked the 4xx miiphy code. It
45630 badly neede some cleanup.
45631
45632 Signed-off-by: Stefan Roese <sr@denx.de>
45633
45634 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
45635 Author: Stefan Roese <sr@denx.de>
45636 Date: Tue Feb 19 16:21:49 2008 +0100
45637
45638 rtc: Add M41T62 support
45639
45640 This patch add support for the STM M41T62 RTC. It is used and tested
45641 on the AMCC Canyonlands 406EX platform.
45642
45643 Signed-off-by: Stefan Roese <sr@denx.de>
45644
45645 commit 217d383e201adc7f2271145ae345ea5eae2b7170
45646 Author: Niklaus Giger <niklaus.giger@netstal.com>
45647 Date: Mon Feb 25 18:46:43 2008 +0100
45648
45649 ppc4xx: Add 405GPr based MCU25 board specific files
45650
45651 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45652
45653 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
45654 Author: Niklaus Giger <niklaus.giger@netstal.com>
45655 Date: Mon Feb 25 18:46:42 2008 +0100
45656
45657 ppc4xx: Add 405GPr based MCU25 board config file
45658
45659 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45660
45661 commit b05f35436b733a240559e77e46bed8439665ecc5
45662 Author: Niklaus Giger <niklaus.giger@netstal.com>
45663 Date: Mon Feb 25 18:46:41 2008 +0100
45664
45665 ppc4xx: Add 405GPr based MCU25 board. Global files
45666
45667 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45668
45669 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
45670 Author: Niklaus Giger <niklaus.giger@netstal.com>
45671 Date: Mon Feb 25 18:37:02 2008 +0100
45672
45673 ppc4xx: HCU4/5. remove obsolete hcu_flash.c
45674
45675 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45676
45677 commit a079494853cc2bfeddb26673219db0b4b2b31566
45678 Author: Niklaus Giger <niklaus.giger@netstal.com>
45679 Date: Mon Feb 25 18:37:01 2008 +0100
45680
45681 ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
45682
45683 Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
45684 the FLASH_CFI_LEGACY et al. config options.
45685
45686 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45687
45688 commit e4170e5a50c8110f792bc37472833ae669d69951
45689 Author: Stefan Roese <sr@denx.de>
45690 Date: Tue Mar 11 13:52:25 2008 +0100
45691
45692 ppc4xx: Fix comment in 405EX DDR2 init code
45693
45694 Signed-off-by: Stefan Roese <sr@denx.de>
45695
45696 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
45697 Author: Bartlomiej Sieka <tur@semihalf.com>
45698 Date: Fri Mar 14 16:22:34 2008 +0100
45699
45700 Add MD5 support to the new uImage format
45701
45702 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
45703
45704 commit 0ede0c383530a418cf98be9122371a86573cd0db
45705 Author: Bartlomiej Sieka <tur@semihalf.com>
45706 Date: Fri Mar 14 16:22:34 2008 +0100
45707
45708 Add the MD5 algorithm
45709
45710 MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
45711 calculated using the md5() function -- see include/md5.h for details.
45712
45713 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
45714
45715 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
45716 Author: Wolfgang Denk <wd@denx.de>
45717 Date: Fri Mar 14 16:04:54 2008 +0100
45718
45719 tools/setlocalversion: use a git-describe-ish format
45720
45721 Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
45722 where 'nnnnn' is the number of commits since the last tag (i.e.,
45723 1.3.2-rc3). This makes it much easier to recognize "newer" versions
45724 and to see how much has been changed since the referenced tag.
45725
45726 Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
45727
45728 Signed-off-by: Wolfgang Denk <wd@denx.de>
45729
45730 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
45731 Author: Wolfgang Denk <wd@denx.de>
45732 Date: Thu Mar 13 14:32:03 2008 +0100
45733
45734 HMI1001: add support for MPC5200 Rev. B processors.
45735
45736 Signed-off-by: Wolfgang Denk <wd@denx.de>
45737
45738 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
45739 Author: Wolfgang Denk <wd@denx.de>
45740 Date: Thu Mar 13 14:29:49 2008 +0100
45741
45742 TQM5200: remove dead code
45743
45744 This board never used a MGT5100 processor.
45745
45746 Signed-off-by: Wolfgang Denk <wd@denx.de>
45747
45748 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
45749 Author: Marian Balakowicz <m8@semihalf.com>
45750 Date: Wed Mar 12 12:14:15 2008 +0100
45751
45752 [new uImage] Fix build issue on ARM
45753
45754 ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
45755
45756 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45757
45758 commit 3310c549a73a949430bfda90876df7552a1dab0c
45759 Author: Marian Balakowicz <m8@semihalf.com>
45760 Date: Wed Mar 12 12:13:13 2008 +0100
45761
45762 [new uImage] Add new uImage format documentation and examples
45763
45764 Create doc/uImage.FIT documentation directory with the following files:
45765 - command_syntax_extensions.txt : extended command syntax description
45766 - howto.txt : short usage howto
45767 - source_file_format.txt : internal new uImage format description
45768
45769 Add example image source files:
45770 - kernel.its
45771 - kernel_fdt.its
45772 - multi.its
45773
45774 Update README appropriately.
45775
45776 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45777 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
45778
45779 commit 1ec73761d2e247078f4520a265d463e8b73391a2
45780 Author: Marian Balakowicz <m8@semihalf.com>
45781 Date: Wed Mar 12 10:35:52 2008 +0100
45782
45783 [new uImage] Fix definition of common bootm_headers_t fields
45784
45785 verify, autostart and lmb fields are used regardless of CONFIG_FIT
45786 setting, move their definitions to common section.
45787
45788 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45789
45790 commit 1d1cb4270edc6a99276834064069717f9782c491
45791 Author: Marian Balakowicz <m8@semihalf.com>
45792 Date: Wed Mar 12 10:35:51 2008 +0100
45793
45794 [new uImage] Fix build problems on trab board
45795
45796 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45797
45798 commit f773bea8e11f4a11c388dcee956b2444203e6b65
45799 Author: Marian Balakowicz <m8@semihalf.com>
45800 Date: Wed Mar 12 10:35:46 2008 +0100
45801
45802 [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
45803
45804 Save FIT configuration provied in the first bootm argument and use it
45805 when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
45806 arguments are not specified.
45807
45808 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45809
45810 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
45811 Author: Marian Balakowicz <m8@semihalf.com>
45812 Date: Wed Mar 12 10:33:01 2008 +0100
45813
45814 [new uImage] More verbose kernel image uncompress error message
45815
45816 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45817
45818 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
45819 Author: Marian Balakowicz <m8@semihalf.com>
45820 Date: Wed Mar 12 10:33:01 2008 +0100
45821
45822 [new uImage] Use show_boot_progress() for new uImage format
45823
45824 This patch allocates a set of show_boot_progress() IDs for new uImage format
45825 and adds show_boot_progress() calls in new uImage format handling code.
45826
45827 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45828
45829 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
45830 Author: Marian Balakowicz <m8@semihalf.com>
45831 Date: Wed Mar 12 10:33:01 2008 +0100
45832
45833 [new uImage] Add new uImage fromat support to fpga command
45834
45835 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45836
45837 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
45838 Author: Marian Balakowicz <m8@semihalf.com>
45839 Date: Wed Mar 12 10:33:01 2008 +0100
45840
45841 [new uImage] Add new uImage format handling to other bootm related commands
45842
45843 Updated commands:
45844
45845 docboot - cmd_doc.c
45846 fdcboot - cmd_fdc.c
45847 diskboot - cmd_ide.c
45848 nboot - cmd_nand.c
45849 scsiboot - cmd_scsi.c
45850 usbboot - cmd_usb.c
45851
45852 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45853
45854 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
45855 Author: Marian Balakowicz <m8@semihalf.com>
45856 Date: Wed Mar 12 10:33:00 2008 +0100
45857
45858 [new uImage] Add new uImage format support to imgextract command
45859
45860 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45861
45862 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
45863 Author: Marian Balakowicz <m8@semihalf.com>
45864 Date: Wed Mar 12 10:33:00 2008 +0100
45865
45866 [new uImage] Add new uImage format support to autoscript routine
45867
45868 autoscript() routine is updated to accept second argument, which
45869 is only used for FIT images and provides a FIT subimage unit name.
45870
45871 autoscript() routine callers must now pass two arguments. For
45872 non-interactive use (like in cmd_load.c, cmd_net.c), new environment
45873 variable 'autoscript_uname' is introduced and used as a FIT
45874 subimage unit name source.
45875
45876 autoscript command accepts extended syntax of the addr argument:
45877 addr:<subimg_uname>
45878
45879 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45880
45881 commit cd7c596e9f561dbbc17b717277438aee78cde14f
45882 Author: Marian Balakowicz <m8@semihalf.com>
45883 Date: Wed Mar 12 10:33:00 2008 +0100
45884
45885 [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
45886
45887 This patch updates architecture specific implementations of
45888 do_bootm_linux() adding new uImage format handling for
45889 operations like get kernel entry point address, get kernel
45890 image data start address.
45891
45892 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45893
45894 commit 3dfe110149311425919e6d6a14b561b4207498f1
45895 Author: Marian Balakowicz <m8@semihalf.com>
45896 Date: Wed Mar 12 10:32:59 2008 +0100
45897
45898 [new uImage] Add node offsets for FIT images listed in struct bootm_headers
45899
45900 This patch adds new node offset fields to struct bootm_headers
45901 and updates bootm_headers processing code to make use of them.
45902 Saved node offsets allow to avoid repeating fit_image_get_node() calls.
45903
45904 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45905
45906 commit bc8ed486b125452ba3bd8344f052f437329150c5
45907 Author: Marian Balakowicz <m8@semihalf.com>
45908 Date: Wed Mar 12 10:32:53 2008 +0100
45909
45910 [new uImage] ppc: Add new uImage format support to FDT handling routines
45911
45912 Support for new (FIT) format uImages is added to powerpc specific
45913 boot_get_fdt() routine which now recognizes, sanity checks FIT image
45914 and is able to access data sections of the requested component image.
45915
45916 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45917
45918 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
45919 Author: Marian Balakowicz <m8@semihalf.com>
45920 Date: Wed Mar 12 10:14:57 2008 +0100
45921
45922 [new uImage] Re-enable interrupts for non automatic booting
45923
45924 Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
45925 environment variable is not set to 'yes'.
45926
45927 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45928
45929 commit d985c8498c4e47095820da97aa722381d39172c5
45930 Author: Marian Balakowicz <m8@semihalf.com>
45931 Date: Wed Mar 12 10:14:38 2008 +0100
45932
45933 [new uImage] Remove unnecessary arguments passed to ramdisk routines
45934
45935 boot_get_ramdisk() and image_get_ramdisk() do not need all
45936 cmdtp, flag, argc and argv arguments. Simplify routines definition.
45937
45938 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45939
45940 commit c87796483bc7c2900470dc747c367f602577608d
45941 Author: Marian Balakowicz <m8@semihalf.com>
45942 Date: Wed Mar 12 10:12:37 2008 +0100
45943
45944 [new uImage] Add new uImage format support for ramdisk handling
45945
45946 This patch updates boot_get_ramdisk() routine adding format
45947 verification and handling for new (FIT) uImages.
45948
45949 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45950
45951 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
45952 Author: Marian Balakowicz <m8@semihalf.com>
45953 Date: Wed Mar 12 10:01:05 2008 +0100
45954
45955 [new uImage] Add new uImage format support for kernel booting
45956
45957 New format uImages are recognized by the bootm command,
45958 validity of specified kernel component image is checked and
45959 its data section located and used for further processing
45960 (uncompress, load, etc.)
45961
45962 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45963
45964 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
45965 Author: Marian Balakowicz <m8@semihalf.com>
45966 Date: Tue Mar 11 12:35:20 2008 +0100
45967
45968 [new uImage] Add new uImage format support for imls and iminfo commands
45969
45970 imls and iminfo can now recognize nad print out contents of the new (FIT)
45971 format uImages.
45972
45973 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45974
45975 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
45976 Author: Bartlomiej Sieka <tur@semihalf.com>
45977 Date: Tue Mar 11 12:34:47 2008 +0100
45978
45979 [new uImage] Add support for new uImage format to mkimage tool
45980
45981 Support for the new uImage format (FIT) is added to mkimage tool.
45982 Commandline syntax is appropriately extended:
45983
45984 mkimage [-D dtc_options] -f fit-image.its fit-image
45985
45986 mkimage (together with dtc) takes fit-image.its and referenced therein
45987 binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
45988 final image that can be transferred to the target (e.g., via tftp) and then
45989 booted using the bootm command in U-Boot.
45990
45991 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
45992
45993 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
45994 Author: Marian Balakowicz <m8@semihalf.com>
45995 Date: Mon Mar 10 17:53:49 2008 +0100
45996
45997 [new uImage] Make node unit names const in struct bootm_headers
45998
45999 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46000
46001 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
46002 Author: Marian Balakowicz <m8@semihalf.com>
46003 Date: Fri Feb 29 21:24:06 2008 +0100
46004
46005 [new uImage] New uImage low-level API
46006
46007 Add FDT-based functions for handling new format component images,
46008 configurations, node operations, property get/set, etc.
46009
46010 fit_ - routines handling global new format uImage operations
46011 like get/set top level property, process all nodes, etc.
46012 fit_image_ - routines handling component images subnodes
46013 fit_conf_ - routines handling configurations node
46014
46015 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
46016 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46017
46018 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
46019 Author: Wolfgang Denk <wd@denx.de>
46020 Date: Sun Mar 9 16:20:02 2008 +0100
46021
46022 Release v1.3.2
46023
46024 Update CHANGELOG for release.
46025
46026 Signed-off-by: Wolfgang Denk <wd@denx.de>
46027
46028 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
46029 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46030 Date: Sun Mar 9 14:52:11 2008 +0100
46031
46032 SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
46033
46034 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46035 Signed-off-by: Wolfgang Denk <wd@denx.de>
46036
46037 commit db695b78515ddb88a2d4f3357c120345efbf59ec
46038 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46039 Date: Sun Mar 9 10:44:01 2008 +0100
46040
46041 scb9328: Fix flash warning: type qualifiers ignored on function return type
46042
46043 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46044
46045 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
46046 Author: Wolfgang Denk <wd@denx.de>
46047 Date: Sun Mar 9 10:50:41 2008 +0100
46048
46049 esd/common/fpga.c: fix indentation.
46050
46051 Signed-off-by: Wolfgang Denk <wd@denx.de>
46052
46053 commit cc3843e36453e2b8db65d7e56de938ba045016a0
46054 Author: Wolfgang Denk <wd@denx.de>
46055 Date: Sun Mar 9 10:33:31 2008 +0100
46056
46057 common/kgdb.c: fix 'dereferencing type-punned pointer' warning
46058
46059 and get rid of a couple of unneeded casts.
46060
46061 Signed-off-by: Wolfgang Denk <wd@denx.de>
46062
46063 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
46064 Author: Wolfgang Denk <wd@denx.de>
46065 Date: Sun Mar 9 10:09:53 2008 +0100
46066
46067 esd/common/fpga.c: fix 'assignment of read-only location' error
46068
46069 Signed-off-by: Wolfgang Denk <wd@denx.de>
46070
46071 commit c6fe4dabac066e8758345d249032768496983a3e
46072 Author: Wolfgang Denk <wd@denx.de>
46073 Date: Sun Mar 9 02:13:19 2008 +0100
46074
46075 Makefile: make build silently again.
46076
46077 Signed-off-by: Wolfgang Denk <wd@denx.de>
46078
46079 commit 76babc86576f092573599334c85ec543fdbc6015
46080 Author: Wolfgang Denk <wd@denx.de>
46081 Date: Sun Mar 9 02:07:49 2008 +0100
46082
46083 m501sk: Fix out of tree building
46084
46085 Signed-off-by: Wolfgang Denk <wd@denx.de>
46086
46087 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
46088 Author: Wolfgang Denk <wd@denx.de>
46089 Date: Sun Mar 9 00:06:09 2008 +0100
46090
46091 ADS5121: fix out of tree build
46092
46093 and simplify Makefile a bit.
46094
46095 Signed-off-by: Wolfgang Denk <wd@denx.de>
46096
46097 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
46098 Author: Wolfgang Denk <wd@denx.de>
46099 Date: Sat Mar 8 22:35:31 2008 +0100
46100
46101 Release v1.3.2
46102
46103 Signed-off-by: Wolfgang Denk <wd@denx.de>
46104
46105 commit 78a90f827df74520e939c794fc7413dace21c4db
46106 Author: Wolfgang Denk <wd@denx.de>
46107 Date: Sat Mar 8 22:35:04 2008 +0100
46108
46109 Update CHANGELOG
46110
46111 Signed-off-by: Wolfgang Denk <wd@denx.de>
46112
46113 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
46114 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46115 Date: Sat Mar 8 21:30:04 2008 +0100
46116
46117 esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
46118
46119 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46120
46121 commit d75469d48c05795144f4b8ba76addbb4920a7bba
46122 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46123 Date: Sat Mar 8 09:25:49 2008 +0900
46124
46125 net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
46126
46127 When rtl_recv() of rtl8169 is called, OWNbit of status register
46128 is not enable occasionally.
46129 rtl_recv() doesn't work normally when the driver doesn't do
46130 appropriate processing.
46131 This patch fix this problem.
46132
46133 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46134
46135 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
46136 Author: Heiko Schocher <hs@denx.de>
46137 Date: Fri Mar 7 08:15:28 2008 +0100
46138
46139 mgsuvd: update board configuration
46140
46141 initialize the UPIOx controller.
46142
46143 Signed-off-by: Heiko Schocher <hs@denx.de>
46144
46145 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
46146 Author: Heiko Schocher <hs@denx.de>
46147 Date: Fri Mar 7 08:13:41 2008 +0100
46148
46149 mgcoge: update board configuration
46150
46151 add support for the config Flash.
46152 initialize the UPIOx controller.
46153
46154 Signed-off-by: Heiko Schocher <hs@denx.de>
46155
46156 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
46157 Author: Kim Phillips <kim.phillips@freescale.com>
46158 Date: Fri Mar 7 12:27:31 2008 -0600
46159
46160 mpc83xx: make dtb basename file references equal those of linux
46161
46162 the dts file basenames were updated in linux - this helps avoid
46163 inadvertently loading any old dtbs laying around.
46164
46165 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
46166
46167 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
46168 Author: Kim Phillips <kim.phillips@freescale.com>
46169 Date: Wed Feb 27 16:08:22 2008 -0600
46170
46171 net: uec_phy: actually increment the timeout counter
46172
46173 allow u-boot to recover (and, e.g., switch to another interface) in the
46174 case where a PHY does not report autonegotiation is complete within its
46175 two second timeout value.
46176
46177 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
46178
46179 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
46180 Author: Markus Brunner <super.firetwister@googlemail.com>
46181 Date: Wed Mar 5 21:38:12 2008 +0100
46182
46183 fix taihu soft spi_read
46184
46185 The taihu board used gpio_read_out_bit which reads the output register and not
46186 the pin state.
46187
46188 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
46189
46190 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
46191 Author: Stefan Roese <sr@denx.de>
46192 Date: Fri Mar 7 08:01:43 2008 +0100
46193
46194 ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
46195
46196 Signed-off-by: Stefan Roese <sr@denx.de>
46197
46198 commit bd4458cb47abecabd406b1210457be96c69fc49d
46199 Author: Dave Liu <r63238@freescale.com>
46200 Date: Tue Mar 4 16:59:22 2008 +0800
46201
46202 837xEMDS: Improve the system performance
46203
46204 1. Make the CSB bus pipeline depth as 4, and enable
46205 the repeat mode;
46206 2. Raise the eTSEC emergency priority;
46207 3. Use the highest IP blocks clock.
46208
46209 Signed-off-by: Dave Liu <daveliu@freescale.com>
46210
46211 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
46212 Author: Detlev Zundel <dzu@denx.de>
46213 Date: Thu Mar 6 16:45:53 2008 +0100
46214
46215 Replace "run load; run update" with conditionalized "run load update".
46216
46217 The latter version stops when "run load" fails for whatever reasons
46218 rendering the combination *a lot* more secure.
46219
46220 Signed-off-by: Detlev Zundel <dzu@denx.de>
46221
46222 commit 6bc113886d7d316df1a4e459bec8baf027518551
46223 Author: Stefan Roese <sr@denx.de>
46224 Date: Tue Mar 4 17:40:41 2008 +0100
46225
46226 net: Print error message upon net usage when no ethernet-interface is found
46227
46228 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
46229 defined. Then no ethernet interface is available but a simple "tftp"
46230 command will return without any error message which is quite confusing.
46231
46232 Signed-off-by: Stefan Roese <sr@denx.de>
46233
46234 commit a30a549a3553032d809e0356306b62de0b125901
46235 Author: Jon Loeliger <jdl@freescale.com>
46236 Date: Tue Mar 4 10:03:03 2008 -0600
46237
46238 Remove erroneous or extra spd.h #includers.
46239
46240 Many of the spd.h #includers don't need it,
46241 and wanted to have spd_sdram() declared instead.
46242 Since they didn't get that, some also had open
46243 coded extern declarations of it instead or as well.
46244 Fix it all up by using spd_sdram.h where needed.
46245
46246 Signed-off-by: Jon Loeliger <jdl@freescale.com>
46247
46248 commit a4475386cef14af3fd88f0518b688e755669486d
46249 Author: Wolfgang Denk <wd@denx.de>
46250 Date: Tue Mar 4 17:41:28 2008 +0100
46251
46252 PCS440EP: fix build problems (redundant #define)
46253
46254 Signed-off-by: Wolfgang Denk <wd@denx.de>
46255
46256 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
46257 Author: Stefan Roese <sr@denx.de>
46258 Date: Tue Mar 4 17:39:25 2008 +0100
46259
46260 net: Print error message upon net usage when no ethernet-interface is found
46261
46262 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
46263 defined. Then no ethernet interface is available but a simple "tftp"
46264 command will return without any error message which is quite confusing.
46265
46266 Signed-off-by: Stefan Roese <sr@denx.de>
46267
46268 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
46269 Author: Wolfgang Denk <wd@denx.de>
46270 Date: Tue Mar 4 17:38:50 2008 +0100
46271
46272 W7OLMC/W7OLMG: fix build problems (redundant #define)
46273
46274 Signed-off-by: Wolfgang Denk <wd@denx.de>
46275
46276 commit f9301e1cda296245ba052d7b08321199c3d0af9d
46277 Author: Wolfgang Denk <wd@denx.de>
46278 Date: Tue Mar 4 14:58:31 2008 +0100
46279
46280 Makefile: fix problem with out-of-tree builds introduced by 5013c09f
46281
46282 Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
46283 problem for out-of-tree builds which caused "make clean" to fail.
46284
46285 Signed-off-by: Wolfgang Denk <wd@denx.de>
46286
46287 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
46288 Author: Wolfgang Denk <wd@denx.de>
46289 Date: Tue Mar 4 11:58:26 2008 +0100
46290
46291 examples/Makefile: build "hello_world" on 8xx, too.
46292
46293 Signed-off-by: Wolfgang Denk <wd@denx.de>
46294
46295 commit 74eb0222594fd23aafdf168e60e872814eea8b62
46296 Author: Mike Nuss <mike@terascala.com>
46297 Date: Mon Mar 3 15:27:05 2008 -0500
46298
46299 PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
46300
46301 Every now and then a Sequoia board (or equivalent hardware) had
46302 problems connecting to a Gigabit capable network interface.
46303
46304 There were differences in the PHY setup between Linux and U-Boot.
46305
46306 This patch fixes the problem. Apparently "remote fault" is being set,
46307 which signals to some devices (on the other end of the cable) that a
46308 fault has occurred, while other devices ignore it. I believe the RF bit
46309 was causing the issue, but I removed T4 also, to match up with Linux.
46310
46311 Signed-off-by: Mike Nuss <mike@terascala.com>
46312
46313 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
46314 Author: Timur Tabi <timur@freescale.com>
46315 Date: Mon Mar 3 09:58:52 2008 -0600
46316
46317 fix QE firmware uploading limit
46318
46319 Fix a typo in qe_upload_firmware() that prevented uploading firmware on
46320 systems with more than one RISC core.
46321
46322 Signed-off-by: Timur Tabi <timur@freescale.com>
46323
46324 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
46325 Author: Bernhard Nemec <bnemec@ganssloser.com>
46326 Date: Mon Mar 3 11:57:23 2008 +0000
46327
46328 Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
46329
46330 Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
46331 see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
46332
46333 Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
46334
46335 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
46336 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
46337 Date: Mon Mar 3 10:39:13 2008 +0200
46338
46339 fix copy from ram to dataflash
46340
46341 If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
46342 routines instead of dataflash. This is because it checks "if source
46343 address is not dataflash" instead of target address.
46344
46345 Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
46346
46347 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
46348 Author: Wolfgang Denk <wd@denx.de>
46349 Date: Mon Mar 3 12:16:44 2008 +0100
46350
46351 Fix quoting problem (preboot setting) in many board config files.
46352
46353 Signed-off-by: Wolfgang Denk <wd@denx.de>
46354
46355 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
46356 Author: Wolfgang Denk <wd@denx.de>
46357 Date: Mon Mar 3 12:36:49 2008 +0100
46358
46359 ADS5121: Fix default environment.
46360
46361 Signed-off-by: Wolfgang Denk <wd@denx.de>
46362
46363 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
46364 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46365 Date: Sun Mar 2 16:12:31 2008 +0100
46366
46367 Makefile: Fix missing unconfig and mkconfig use
46368
46369 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46370
46371 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
46372 Author: michael <trimarchi@gandalf.sssup.it>
46373 Date: Sun Mar 2 23:33:46 2008 +0100
46374
46375 Fix checking fat32 cluster size.
46376
46377 This fixes the cluster size tests in the FAT32 file system.
46378 The current implementation of VFAT support doesn't work if the
46379 referred cluster has an offset > 16bit representation, causing
46380 "fatload" and "fatls" commands etc. to fail.
46381
46382 Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
46383
46384 commit 661bad63a076a96c39c64f136915f146725af92b
46385 Author: Wolfgang Denk <wd@denx.de>
46386 Date: Sun Mar 2 22:57:23 2008 +0100
46387
46388 Prepare v1.3.2-rc2 release candidate
46389
46390 Signed-off-by: Wolfgang Denk <wd@denx.de>
46391
46392 commit 76957cb3d621bf664311908e5962e151c633c285
46393 Author: Stefan Roese <sr@denx.de>
46394 Date: Sat Mar 1 12:11:40 2008 +0100
46395
46396 ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
46397
46398 The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
46399 currently 4k/2k is configured. This patch fixes this issue.
46400
46401 Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
46402
46403 Signed-off-by: Stefan Roese <sr@denx.de>
46404
46405 commit 118978c8eb43803e2794233922df4249fa278b83
46406 Author: Woodruff, Richard <r-woodruff2@ti.com>
46407 Date: Fri Feb 29 17:34:35 2008 -0600
46408
46409 Fix alignment error on ARM for modules
46410
46411 Fix alignment fault on ARM when running modules. With out an explicit
46412 linker file gcc4.2.1 will half word align __bss_start's value. The word
46413 dereference will crash hello_world.
46414
46415 signed-off-by Richard Woodruff <r-woodruff2@ti.com>
46416
46417 commit ce1120dd703e6f12c59e4eba9962356a0300b832
46418 Author: Dave Liu <r63238@freescale.com>
46419 Date: Fri Feb 29 17:45:31 2008 +0800
46420
46421 fs: Fix ext2 read issue
46422
46423 The ext2 aligned process will corrupt the key
46424 data struct, the patch fix this.
46425
46426 Signed-off-by: Dave Liu <daveliu@freescale.com>
46427
46428 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
46429 Author: Wolfgang Denk <wd@denx.de>
46430 Date: Sun Mar 2 22:45:33 2008 +0100
46431
46432 Makefile: cleanup "clean" target
46433
46434 Make sure CDPATH settings cannot interfere.
46435 Update CHANGELOG.
46436
46437 Signed-off-by: Wolfgang Denk <wd@denx.de>
46438
46439 commit ffda586fc1373243c9794babde69500f6293a8d8
46440 Author: Li Yang <leoli@freescale.com>
46441 Date: Fri Feb 29 11:46:05 2008 +0800
46442
46443 add cscope build target
46444
46445 Add cscope build target to generate cscope database for code browsing.
46446
46447 Signed-off-by: Li Yang <leoli@freescale.com>
46448
46449 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
46450 Author: Kim Phillips <kim.phillips@freescale.com>
46451 Date: Wed Feb 27 15:06:39 2008 -0600
46452
46453 net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
46454
46455 erratum 5.6 states the autoneg completion bit is functional only if the
46456 autoneg bit is asserted.
46457
46458 This fixes any secondarily-issued networking commands on non-gigabit
46459 links on the mpc8360 mds board.
46460
46461 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
46462
46463 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
46464 Author: John Rigby <jrigby@freescale.com>
46465 Date: Tue Feb 26 09:38:14 2008 -0700
46466
46467 MPC5121e ADS PCI support take 3
46468
46469 Adds PCI support for MPC5121
46470
46471 Tested with drivers/net/rtl8139.c
46472
46473 Support is conditional since PCI on old silicon does not work.
46474
46475 ads5121_PCI_config turns on PCI
46476
46477 In this version, condition compilation of PCI code has been moved
46478 from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
46479 suggested by Jean-Christophe PLAGNIOL-VILLARD
46480
46481 Signed-off-by: John Rigby <jrigby@freescale.com>
46482
46483 commit 44b4dbed4133f657705b7c5193209da9978243a7
46484 Author: Anatolij Gustschin <agust@denx.de>
46485 Date: Mon Feb 25 23:53:07 2008 +0100
46486
46487 Fix warnings while compilation of post/drivers/memory.c
46488
46489 Fix warnings while compilation with new gcc in eldk-4.2
46490
46491 Signed-off-by: Anatolij Gustschin <agust@denx.de>
46492
46493 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
46494 Author: Anatolij Gustschin <agust@denx.de>
46495 Date: Mon Feb 25 20:54:04 2008 +0100
46496
46497 ppc4xx: Fix problem in 4xx_enet.c driver
46498
46499 U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
46500 enabled. To reproduce the problem ensure that 'ethrotate'
46501 environment variable isn't set to "no" and then run
46502 "tftp 200000 not_existent_file".
46503 This patch tries to fix the issue.
46504
46505 Signed-off-by: Anatolij Gustschin <agust@denx.de>
46506
46507 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
46508 Author: Anatolij Gustschin <agust@denx.de>
46509 Date: Mon Feb 25 20:04:20 2008 +0100
46510
46511 POST: Disable cache while SPR POST
46512
46513 Currently (since commit b2e2142c) u-boot crashes on
46514 sequoia board while SPR test if CONFIG_4xx_DCACHE is
46515 enabled. This patch disables the cache while SPR test.
46516
46517 Signed-off-by: Anatolij Gustschin <agust@denx.de>
46518
46519 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
46520 Author: Martin Krause <martin.krause@tqs.de>
46521 Date: Mon Feb 25 17:52:40 2008 +0100
46522
46523 TQM5200: use automatic fdt memory fixup (part 2)
46524
46525 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
46526 TB5200 and TB5200_B to fixup the /memory node with the memory values
46527 detected by U-Boot.
46528
46529 Signed-off-by: Martin Krause <martin.krause@tqs.de>
46530
46531 commit 44ceec253ea941b301abf4b079d52324def69d92
46532 Author: Martin Krause <martin.krause@tqs.de>
46533 Date: Mon Feb 25 15:17:05 2008 +0100
46534
46535 TQM5200: use automatic fdt memory fixup
46536
46537 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
46538 TB5200 and TB5200_B to fixup the /memory node with the memory values
46539 detected by U-Boot.
46540
46541 Signed-off-by: Martin Krause <martin.krause@tqs.de>
46542
46543 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
46544 Author: Martin Krause <martin.krause@tqs.de>
46545 Date: Mon Feb 25 13:27:52 2008 +0100
46546
46547 TQM5200: fix bug in SDRAM initialization code
46548
46549 This patch fixes a bug in the SDRAM initialization code for the
46550 TQM5200. The hi_addr bit is now set correctly. Without this patch
46551 the hi_addr bit is always set to 1, if the second SDRAM bank is
46552 not populated.
46553
46554 For other MPC5200 boards a correspondig patch has already been applied
46555 some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
46556
46557 Signed-off-by: Martin Krause <martin.krause@tqs.de>
46558 --
46559 Forget the first patch please. I confused flash with SDRAM in
46560 the comment ...
46561
46562 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
46563 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46564 Date: Mon Feb 25 00:03:12 2008 +0100
46565
46566 mx1fs2/flash: Fix multiple compiler warnings
46567
46568 "pointer targets in assignment differ in signedness"
46569
46570 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46571
46572 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
46573 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46574 Date: Mon Feb 25 00:03:11 2008 +0100
46575
46576 arm-imx: Fix register definitions
46577
46578 Sync register definitions with linux
46579
46580 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46581
46582 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
46583 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46584 Date: Mon Feb 25 00:03:10 2008 +0100
46585
46586 actua1/actua2/actua3: Fix multiple unused variable warnings
46587
46588 - actua1:
46589 actux1.c: In function 'checkboard':
46590 actux1.c:92: warning: unused variable 'revision'
46591
46592 - actua2:
46593 actux2.c: In function 'checkboard':
46594 actux2.c:100: warning: unused variable 's'
46595 actux2.c:99: warning: unused variable 'revision'
46596 actux2.c: In function 'reset_phy':
46597 actux2.c:130: warning: unused variable 'i'
46598
46599 - actua3:
46600 actux3.c: In function 'checkboard':
46601 actux3.c:114: warning: unused variable 'revision'
46602
46603 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46604
46605 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
46606 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
46607 Date: Sun Feb 24 11:44:29 2008 +0900
46608
46609 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
46610
46611 The previous patch was lacking of i386, microblaze, nios and nios2. This
46612 patch tries to fix them.
46613
46614 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
46615
46616 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
46617 Author: Marian Balakowicz <m8@semihalf.com>
46618 Date: Fri Feb 29 22:22:46 2008 +0100
46619
46620 [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
46621
46622 Do not use global fdt blob pointer, calculate blob size from routine
46623 argument blob pointer.
46624
46625 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46626
46627 commit d1cc52879c8966507dad9fb575481e6d3985e64e
46628 Author: David Gibson <david@gibson.dropbear.id.au>
46629 Date: Tue Feb 12 00:58:31 2008 +1100
46630
46631 libfdt: Add and use a node iteration helper function.
46632
46633 This patch adds an fdt_next_node() function which can be used to
46634 iterate through nodes of the tree while keeping track of depth. This
46635 function is used to simplify the iteration code in a lot of other
46636 functions, and is also exported for use by library users.
46637
46638 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
46639
46640 commit 8cf30809a82902a471866d2f07725ce3b8a22291
46641 Author: Bartlomiej Sieka <tur@semihalf.com>
46642 Date: Fri Feb 29 16:00:24 2008 +0100
46643
46644 [new uImage] Add libfdt support to mkimage
46645
46646 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
46647
46648 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
46649 Author: Bartlomiej Sieka <tur@semihalf.com>
46650 Date: Fri Feb 29 16:00:23 2008 +0100
46651
46652 [new uImage] Add sha1.o object to mkimage binary build
46653
46654 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
46655
46656 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
46657 Author: Marian Balakowicz <m8@semihalf.com>
46658 Date: Fri Feb 29 16:00:06 2008 +0100
46659
46660 [new uImage] Fix component handling for legacy multi component images
46661
46662 Use uint32_t when accessing size table in image_multi_count() and
46663 image_multi_getimg() for multi component images.
46664
46665 Add missing uimage_to_cpu() endianness conversion.
46666
46667 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46668
46669 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
46670 Author: Marian Balakowicz <m8@semihalf.com>
46671 Date: Fri Feb 29 15:59:59 2008 +0100
46672
46673 [new uImage] Share common uImage code between mkimage and U-boot
46674
46675 This patch adds the following common routines:
46676
46677 1) Dedicated mkimage print_header() is replaced with common
46678 image_print_contents()
46679 image_print_contents_noindent()
46680
46681 2) Common os/arch/type/comp fields name <--> id translation routines
46682 genimg_get_os_name()
46683 genimg_get_arch_name()
46684 genimg_get_type_name()
46685 genimg_get_comp_name()
46686 genimg_get_os_id()
46687 genimg_get_arch_id()
46688 genimg_get_type_id()
46689 genimg_get_comp_id()
46690
46691 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46692
46693 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
46694 Author: Marian Balakowicz <m8@semihalf.com>
46695 Date: Fri Feb 29 14:58:34 2008 +0100
46696
46697 [new uImage] Update naming convention for bootm/uImage related code
46698
46699 This patch introduces the following prefix convention for the
46700 image format handling and bootm related code:
46701
46702 genimg_ - dual format shared code
46703 image_ - legacy uImage format specific code
46704 fit_ - new uImage format specific code
46705 boot_ - booting process related code
46706
46707 Related routines are renamed and a few pieces of code are moved around and
46708 re-grouped.
46709
46710 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46711
46712 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
46713 Author: Kumar Gala <galak@kernel.crashing.org>
46714 Date: Wed Feb 27 21:51:51 2008 -0600
46715
46716 [new uImage] Respect autostart setting in linux bootm
46717
46718 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46719 Acked-by: Marian Balakowicz <m8@semihalf.com>
46720
46721 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
46722 Author: Kumar Gala <galak@kernel.crashing.org>
46723 Date: Wed Feb 27 21:51:50 2008 -0600
46724
46725 [new uImage] Provide ability to restrict region used for boot images
46726
46727 Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
46728 to restrict what memory range is used for bootm.
46729
46730 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46731 Acked-by: Marian Balakowicz <m8@semihalf.com>
46732
46733 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
46734 Author: Kumar Gala <galak@kernel.crashing.org>
46735 Date: Wed Feb 27 21:51:49 2008 -0600
46736
46737 [new uImage] Use lmb for bootm allocations
46738
46739 Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
46740 functions over to using lmb for allocation of the ramdisk, command line
46741 and kernel bd info.
46742
46743 Convert PPC specific fdt_relocate() to use lmb for allocation of the device
46744 tree.
46745
46746 Provided a weak function that board code can call to do additional
46747 lmb reserves if needed.
46748
46749 Also introduce the concept of bootmap_base to specify the offset in
46750 physical memory that the bootmap is located at. This is used for
46751 allocations of the cmdline, kernel bd, and device tree as they should
46752 be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
46753
46754 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46755
46756 commit f5614e7926863bf0225ec860d9b319741a9c4004
46757 Author: Kumar Gala <galak@kernel.crashing.org>
46758 Date: Wed Feb 27 21:51:48 2008 -0600
46759
46760 [new uImage] Add autostart flag to bootm_headers structure
46761
46762 The autostart env variable was dropped as part of the initial new uImage
46763 cleanup. Add it back here so the arch specific code can decide if it
46764 wants to really boot or not.
46765
46766 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46767 Acked-by: Marian Balakowicz <m8@semihalf.com>
46768
46769 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
46770 Author: Kumar Gala <galak@kernel.crashing.org>
46771 Date: Wed Feb 27 21:51:47 2008 -0600
46772
46773 [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
46774
46775 Introduce the LMB lib used on PPC in the kernel as a clean way to manage
46776 the memory spaces used by various boot images and structures. This code
46777 will allow us to simplify the code in bootm and its support functions.
46778
46779 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46780
46781 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
46782 Author: Kumar Gala <galak@kernel.crashing.org>
46783 Date: Tue Feb 19 22:03:47 2008 -0600
46784
46785 [new uImage] ppc: Allow boards to specify effective amount of memory
46786
46787 For historical reasons we limited the stack to 256M because some boards
46788 could only map that much via BATS. However newer boards are capable of
46789 mapping more memory (for example 85xx is capable of doing up to 2G).
46790
46791 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46792 Acked-by: Marian Balakowicz <m8@semihalf.com>
46793
46794 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
46795 Author: Kumar Gala <galak@kernel.crashing.org>
46796 Date: Wed Feb 27 21:51:46 2008 -0600
46797
46798 [new uImage] rework error handling so common functions don't reset
46799
46800 Changed image_get_ramdisk() to just return NULL on error and have
46801 get_ramdisk() propogate that error to the caller. It's left to the
46802 caller to call do_reset() if it wants to.
46803
46804 Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
46805 to a common location. In the future we will change get_fdt() and
46806 fdt_relocate() to return success/failure and not call do_reset() at all.
46807
46808 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46809 Acked-by: Marian Balakowicz <m8@semihalf.com>
46810
46811 commit d2bc095a639672def11d5d043b5688d0dbd692ec
46812 Author: Kumar Gala <galak@kernel.crashing.org>
46813 Date: Wed Feb 27 21:51:45 2008 -0600
46814
46815 [new uImage] ppc: Re-order ramdisk/fdt handling sequence
46816
46817 Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
46818 however it does mean we have to go in and fixup the initrd info since
46819 we don't know where it will be.
46820
46821 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46822
46823 commit 27953493ef025fb698d68c5dee39b36f01f4d530
46824 Author: Kumar Gala <galak@kernel.crashing.org>
46825 Date: Wed Feb 27 21:51:44 2008 -0600
46826
46827 [new uImage] ppc: Determine if we are booting an OF style
46828
46829 If we are bootin OF style than we can skip setting up some things
46830 that are used for the old boot method.
46831
46832 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46833 Acked-by: Marian Balakowicz <m8@semihalf.com>
46834
46835 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
46836 Author: Kumar Gala <galak@kernel.crashing.org>
46837 Date: Wed Feb 27 21:51:43 2008 -0600
46838
46839 [new uImage] Don't pass kdb to ramdisk_high since we may not have one
46840
46841 We don't actually need the kdb param as we are just using it to get
46842 bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we
46843 boot via OF we might not actually fill out a kdb.
46844
46845 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46846 Acked-by: Marian Balakowicz <m8@semihalf.com>
46847
46848 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
46849 Author: Kumar Gala <galak@kernel.crashing.org>
46850 Date: Wed Feb 27 16:30:47 2008 -0600
46851
46852 85xx: Don't icbi when unlocking the cache
46853
46854 There is no reason to icbi when invalidating the temporary stack in
46855 the d-cache. Its impossible on e500 to have the i-cache contain
46856 any addresses in the temp stack and it can be problematic in generating
46857 transactions on the bus to non-valid addresses.
46858
46859 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46860
46861 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
46862 Author: Andy Fleming <afleming@freescale.com>
46863 Date: Wed Feb 27 15:50:50 2008 -0600
46864
46865 Fix source for ECM error IVPR
46866
46867 The source vector for the ECM was being set to 2,
46868 but that's what the source vector for DDR was being
46869 set to. Change it to 1.
46870
46871 Signed-off-by: Andy Fleming <afleming@freescale.com>
46872
46873 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
46874 Author: Andy Fleming <afleming@freescale.com>
46875 Date: Wed Feb 27 14:29:58 2008 -0600
46876
46877 Invalidate INIT_RAM TLB mappings
46878
46879 Commit 0db37dc... (and some others) changed the INIT_RAM TLB
46880 mappings to be unguarded. This collided with an existing "bug"
46881 where the mappings for the INIT_RAM were being kept around.
46882 This meant that speculative loads to those addresses were
46883 succeeding in the TLB, and going out to the bus, where they
46884 were causing an exception (there's nothing at that address). The
46885 Flash code was coincidentally causing such a speculative load.
46886 Rather than go back to mapping the INIT RAM as guarded, we fix
46887 it so that the entries for the INIT_RAM are invalidated. Thus
46888 the speculative loads will fail in the TLB, and have no effect.
46889
46890 Signed-off-by: Andy Fleming <afleming@freescale.com>
46891
46892 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
46893 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46894 Date: Sun Feb 17 22:56:17 2008 +0100
46895
46896 sbc8548: Fix Revision reading and unused variable 'path'
46897
46898 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46899
46900 commit 495d162374c472f46454453553382ad0735dc725
46901 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46902 Date: Sun Feb 17 22:56:16 2008 +0100
46903
46904 sbc8548: Fix cfi flash bank declaration
46905
46906 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46907
46908 commit 4efbe9dbb129f857f27856936112c8c02f016be6
46909 Author: Marian Balakowicz <m8@semihalf.com>
46910 Date: Wed Feb 27 11:02:26 2008 +0100
46911
46912 [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
46913
46914 Dual format image code must properly handle all three FDT passing methods:
46915 - raw FDT blob passed
46916 - FDT blob embedded in the legacy uImage
46917 - FDT blob embedded in the new uImage
46918
46919 This patch enables proper raw FDT handling when no FIT imaeg support
46920 is compiled in. This is a bit tricky as we must dected FIT format even
46921 when FIT uImage handling is not enabled as both FIT uImages and raw FDT
46922 blobs use tha same low level format (libfdt).
46923
46924 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46925
46926 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
46927 Author: Marian Balakowicz <m8@semihalf.com>
46928 Date: Wed Feb 27 11:02:26 2008 +0100
46929
46930 [new uImage] POWERPC: Add image_get_fdt() routine
46931
46932 FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
46933 (3) or embedded in the new uImage. For the (2) case embedding image must be
46934 verified before we get FDT from it. This patch factors out legacy image
46935 specific verification routine to the separate helper routine.
46936
46937 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46938 Acked-by: Kumar Gala <galak@kernel.crashing.org>
46939
46940 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
46941 Author: Marian Balakowicz <m8@semihalf.com>
46942 Date: Wed Feb 27 11:02:07 2008 +0100
46943
46944 [new uImage] Add image_get_kernel() routine
46945
46946 Legacy image specific verification is factored out to a separate helper
46947 routine to keep get_kernel() generic and simple.
46948
46949 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46950 Acked-by: Kumar Gala <galak@kernel.crashing.org>
46951
46952 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
46953 Author: Marian Balakowicz <m8@semihalf.com>
46954 Date: Wed Feb 27 11:01:04 2008 +0100
46955
46956 [new uImage] Move image verify flag to bootm_headers structure
46957
46958 Do not pass image verification flag directly to related routines.
46959 Simplify argument passing and move it to the bootm_header structure which
46960 contains curently processed image specific data and is already being passed
46961 on the argument list.
46962
46963 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46964 Acked-by: Kumar Gala <galak@kernel.crashing.org>
46965
46966 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
46967 Author: Marian Balakowicz <m8@semihalf.com>
46968 Date: Wed Feb 27 11:00:47 2008 +0100
46969
46970 [Makefile] Sort COBJS in lib_<arch> Makefiles
46971
46972 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46973
46974 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
46975 Author: Marian Balakowicz <m8@semihalf.com>
46976 Date: Wed Feb 27 11:00:47 2008 +0100
46977
46978 [new uImage] Optimize gen_get_image() flow control
46979
46980 When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
46981 to do, update its control flow to better reflect that simple case.
46982
46983 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46984 Acked-by: Kumar Gala <galak@kernel.crashing.org>
46985
46986 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
46987 Author: Marian Balakowicz <m8@semihalf.com>
46988 Date: Mon Feb 4 08:28:17 2008 +0100
46989
46990 [new uImage] POWERPC: Split get_fdt() into get and relocate routines
46991
46992 PPC specific FDT blob handling code is divided into two separate routines:
46993
46994 get_fdt() - find and verify a FDT blob (either raw or image embedded)
46995 fdt_relocate() - move FDT blob to within BOOTMAP if needed
46996
46997 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46998 Acked-by: Kumar Gala <galak@kernel.crashing.org>
46999
47000 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
47001 Author: Jon Loeliger <jdl@freescale.com>
47002 Date: Mon Feb 25 13:13:37 2008 -0600
47003
47004 86xx: Fix renamed GUR symbols in sbc8641d board.
47005
47006 Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
47007 (86xx: Fix GUR PCI config registers properly), we should have
47008 changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
47009 symbols in the sbc8641d board as well. Fix this oversight.
47010
47011 Signed-off-by: Jon Loeliger <jdl@freescale.com>
47012
47013 commit 64cd594e623c39f73964d18787763e4533f791f7
47014 Author: Stefan Roese <sr@denx.de>
47015 Date: Mon Feb 25 16:50:48 2008 +0100
47016
47017 ppc4xx: Fix acadia_nand build problem
47018
47019 Don't include testdram() on NAND-booting target acadia_nand. This saves
47020 a few bytes and makes the target build clean again.
47021
47022 Signed-off-by: Stefan Roese <sr@denx.de>
47023
47024 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
47025 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47026 Date: Sun Feb 24 23:03:12 2008 +0000
47027
47028 mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
47029
47030 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47031
47032 commit 724902c8464e610642b3a170278b99710325888e
47033 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47034 Date: Sun Feb 24 23:03:11 2008 +0000
47035
47036 arm-imx: Fix registers definition
47037
47038 Sync registers definition with linux
47039
47040 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47041
47042 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
47043 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47044 Date: Sun Feb 24 23:03:10 2008 +0000
47045
47046 actua1/actua2/actua3: Fix multipleunused variable
47047
47048 - actua1:
47049 actux1.c: In function 'checkboard':
47050 actux1.c:92: warning: unused variable 'revision'
47051
47052 - actua2:
47053 actux2.c: In function 'checkboard':
47054 actux2.c:100: warning: unused variable 's'
47055 actux2.c:99: warning: unused variable 'revision'
47056 actux2.c: In function 'reset_phy':
47057 actux2.c:130: warning: unused variable 'i'
47058
47059 - actua3:
47060 actux3.c: In function 'checkboard':
47061 actux3.c:114: warning: unused variable 'revision'
47062
47063 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47064
47065 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
47066 Author: Marian Balakowicz <m8@semihalf.com>
47067 Date: Mon Feb 4 08:28:09 2008 +0100
47068
47069 [new uImage] Add dual format uImage support framework
47070
47071 This patch adds framework for dual format images. Format detection is added
47072 and the bootm controll flow is updated to include cases for new FIT format
47073 uImages.
47074
47075 When the legacy (image_header based) format is detected appropriate
47076 legacy specific handling is invoked. For the new (FIT based) format uImages
47077 dual boot framework has a minial support, that will only print out a
47078 corresponding debug messages. Implementation of the FIT specific handling will
47079 be added in following patches.
47080
47081 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47082
47083 commit b29661fc1151077776454288051bc9a488351ce8
47084 Author: Wolfgang Denk <wd@denx.de>
47085 Date: Sun Feb 24 15:21:36 2008 +0100
47086
47087 Coding style cleanup. Prepare v1.3.2-rc2 release candidate
47088
47089 Signed-off-by: Wolfgang Denk <wd@denx.de>
47090
47091 commit 00b48a48424894daa589d166d73277830b1c6ac4
47092 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47093 Date: Sat Feb 23 12:15:56 2008 +0100
47094
47095 ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
47096
47097 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47098
47099 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
47100 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47101 Date: Sat Feb 23 17:24:16 2008 +0900
47102
47103 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
47104
47105 ----------------------------------------------------------------
47106 Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
47107
47108 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
47109 32bit targets.
47110
47111 GCC can be made to warn about usage of long long types with ISO C90
47112 (-ansi), but only with -pedantic. You can write this in a way that even
47113 then it doesn't cause warnings, namely by:
47114
47115 #ifdef __GNUC__
47116 __extension__ typedef __signed__ long long __s64;
47117 __extension__ typedef unsigned long long __u64;
47118 #endif
47119
47120 The __extension__ keyword in front of this switches off any pedantic
47121 warnings for this expression.
47122
47123 Signed-off-by: Olaf Hering <olh@suse.de>
47124 Cc: <linux-arch@vger.kernel.org>
47125 Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
47126 Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
47127 ----------------------------------------------------------------
47128
47129 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47130
47131 commit 208acd112e6517b21fc30c420396902b103563ac
47132 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47133 Date: Sat Feb 23 17:07:57 2008 +0900
47134
47135 cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
47136
47137 This will reduce the build time.
47138
47139 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47140
47141 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
47142 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47143 Date: Sat Feb 23 17:05:00 2008 +0900
47144
47145 cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
47146
47147 This will reduce the build time.
47148
47149 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47150
47151 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
47152 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47153 Date: Sat Feb 23 16:58:41 2008 +0900
47154
47155 cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
47156
47157 This reduces the build time by ~10%. Here's the gth2_config example.
47158
47159 BEFORE AFTER
47160 real 0m31.441s 0m27.833s
47161 user 0m24.766s 0m23.045s
47162 sys 0m10.425s 0m7.468s
47163
47164 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47165
47166 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
47167 Author: Marcel Moolenaar <marcelm@juniper.net>
47168 Date: Fri Feb 22 10:48:07 2008 -0800
47169
47170 make define2mk.sed work on FreeBSD
47171
47172 In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
47173 the define2mk.sed script was identified as the source of the link
47174 failure on FreeBSD. The problem is that sed(1) does not always support
47175 the '+' operator. It isn't on FreeBSD. The attach patch implements the
47176 equivalent, using the '*' operator instead and should work everywhere.
47177
47178 Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
47179
47180 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
47181 Author: Detlev Zundel <dzu@denx.de>
47182 Date: Fri Feb 22 17:21:32 2008 +0100
47183
47184 Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
47185
47186 The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
47187 final traces of long-deprecated "ramdisk" kernel parm") makes these
47188 changes neccessary.
47189
47190 Signed-off-by: Detlev Zundel <dzu@denx.de>
47191
47192 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
47193 Author: Larry Johnson <lrj@acm.org>
47194 Date: Thu Feb 21 13:58:16 2008 -0500
47195
47196 LM75 bug fix for negative temperatures
47197
47198 When the LM75 temperature sensor measures a temperature below 0 C, the
47199 current driver does not perform sign extension, so the result returned is
47200 256 C too high. This patch fixes the problem.
47201
47202 Signed-off-by: Larry Johnson <lrj@acm.org>
47203
47204 commit 5a910c224b13e413bda41922379add6d75c32da3
47205 Author: Heiko Schocher <hs@denx.de>
47206 Date: Thu Feb 21 18:33:45 2008 +0100
47207
47208 IDS8247: update MAINTAINER entry.
47209
47210 Signed-off-by: Heiko Schocher <hs@denx.de>
47211
47212 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
47213 Author: Heiko Schocher <hs@denx.de>
47214 Date: Thu Feb 21 18:31:15 2008 +0100
47215
47216 Fix device tree for mgsuvd board.
47217
47218 Rename the "scc" node in "ethernet" for the mgsuvd board.
47219
47220 Signed-off-by: Heiko Schocher <hs@denx.de>
47221
47222 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
47223 Author: Yuri Tikhonov <yur@emcraft.com>
47224 Date: Thu Feb 21 14:23:42 2008 +0100
47225
47226 lwmon5: enable hardware watchdog
47227
47228 Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
47229 causing it to reboot the board if U-Boot does a long busy-wait with
47230 udelay(). Thus, for these boards we have to restart WD more
47231 frequently.
47232
47233 This patch splits the busy-wait udelay() into smaller, predefined,
47234 intervals, so that the watchdog timer may be resetted with the
47235 configurable (CONFIG_WD_PERIOD) interval.
47236
47237 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
47238
47239 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
47240 Author: Anatolij Gustschin <agust@denx.de>
47241 Date: Thu Feb 21 12:52:29 2008 +0100
47242
47243 ppc4xx: Support for ATI Radeon 9200 card on sequoia
47244
47245 Adds configuration option for ATI Radeon 9200 card
47246 support to sequoia config file. If CONFIG_VIDEO
47247 is enabled, TEXT_BASE should be changed to 0xFFF80000.
47248
47249 Signed-off-by: Anatolij Gustschin <agust@denx.de>
47250
47251 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
47252 Author: Kumar Gala <galak@kernel.crashing.org>
47253 Date: Mon Feb 18 08:18:07 2008 -0600
47254
47255 Remove duplicate defines for ARRAY_SIZE
47256
47257 A few duplicate of the ARRAY_SIZE macro sneaked in since we put
47258 the define in common.h.
47259
47260 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47261
47262 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
47263 Author: Kumar Gala <galak@kernel.crashing.org>
47264 Date: Mon Feb 18 08:09:37 2008 -0600
47265
47266 ppc: Allow boards to specify effective amount of memory
47267
47268 For historical reasons we limited the stack to 256M because some boards
47269 could only map that much via BATS. However newer boards are capable of
47270 mapping more memory (for example 85xx is capable of doing up to 2G).
47271
47272 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47273
47274 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
47275 Author: Mike Frysinger <vapier@gentoo.org>
47276 Date: Mon Feb 18 05:24:13 2008 -0500
47277
47278 include autoconf.mk before any other .mk files
47279
47280 This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
47281 those .mk files can have make if statements based on the current config.
47282
47283 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47284
47285 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
47286 Author: Mike Frysinger <vapier@gentoo.org>
47287 Date: Mon Feb 18 05:10:07 2008 -0500
47288
47289 error check autoconf.mk generation
47290
47291 If any of the steps for generating autoconf.mk fail currently, they go
47292 unnoticed. To fix, we can simply add 'set -e' to the long list of commands.
47293 This is simpler and more robust than placing '|| exit $$?' after every line.
47294
47295 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47296
47297 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
47298 Author: Stefano Babic <sbabic@denx.de>
47299 Date: Mon Feb 18 08:03:51 2008 +0100
47300
47301 Fix bug in dependency checking
47302
47303 By adding VERSION_FILE to the PHONY targets the script
47304 /tools/setlocalversion is always called and version_autogenerated.h
47305 is replaced only if the script find a modified source file.
47306
47307 Signed-off-by: Stefano Babic <sbabic@denx.de>
47308
47309 commit 98ba144ccc912eee90dd42699f023c497ce774c6
47310 Author: Kyungmin Park <kmpark@infradead.org>
47311 Date: Mon Feb 18 14:35:43 2008 +0900
47312
47313 Fix GPMC CS2 memory setup at apollon
47314
47315 It disables the current map first
47316
47317 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47318
47319 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
47320 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47321 Date: Sun Feb 17 23:52:46 2008 +0100
47322
47323 uli526x: Fix multiple differ in signedness and parentheses around comparison
47324
47325 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47326
47327 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
47328 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47329 Date: Sun Feb 17 16:58:04 2008 +0100
47330
47331 MIPS: Fix CFG_NO_FLASH support
47332
47333 - Fix flash_init call when CFG_NO_FLASH is used
47334 - Remove no more needed flash.c for qemu-mips
47335
47336 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47337
47338 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
47339 Author: Mike Frysinger <vapier@gentoo.org>
47340 Date: Sat Feb 16 02:40:18 2008 -0500
47341
47342 easylogo: clean up some more and add -r (rgb) support
47343
47344 Michael Hennerich added support for outputting an image in RGB format rather
47345 than forcing YUYV all the time. This makes obvious sense if the display you
47346 have takes RGB input rather than YUYV.
47347
47348 Rather than hack in support for options, I've converted it to use getopt and
47349 cleaned up the argument parsing in the process.
47350
47351 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
47352 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47353
47354 commit f65c98129ccada3f7caf97d80395a95b84e911de
47355 Author: Mike Frysinger <vapier@gentoo.org>
47356 Date: Sat Feb 16 02:12:37 2008 -0500
47357
47358 Makefile: add target for $(LDSCRIPT)
47359
47360 If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
47361 then change into the board directory and try and create it. This allows you
47362 to generate the linker script on the fly based upon board defines (like the
47363 Blackfin boards do).
47364
47365 There should be no regressions due to this change as the normal case is to
47366 already have a u-boot.lds file. If that's the case, then there's nothing to
47367 generate, and so make will always exit. The fix here is that if the linker
47368 script does not exist, the implicit rules take over and attempt to guess how
47369 to generate the file.
47370
47371 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47372
47373 commit 5583cbf736474ef754e128a54fb78632f57b48fd
47374 Author: Marian Balakowicz <m8@semihalf.com>
47375 Date: Thu Feb 21 17:27:49 2008 +0100
47376
47377 [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
47378
47379 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47380
47381 commit 2242f5369822bc7780db95c47985bb408ea9157b
47382 Author: Marian Balakowicz <m8@semihalf.com>
47383 Date: Thu Feb 21 17:27:41 2008 +0100
47384
47385 [new uImage] Rename and move print_image_hdr() routine
47386
47387 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47388
47389 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
47390 Author: Marian Balakowicz <m8@semihalf.com>
47391 Date: Thu Feb 21 17:20:20 2008 +0100
47392
47393 [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
47394
47395 Introducing routines for parsing new uImage format bootm arguments:
47396 [<addr>]#<conf> - configuration specification
47397 [<addr>]:<subimg> - subimage specification
47398
47399 New format images can contain multiple subimages of the same type. For example
47400 a single new format image file can contain three kernels, two ramdisks and a
47401 couple of FDT blobs. Subimage and configuration specifications are extensions
47402 to bootm (and other image-related commands) arguments' syntax that allow to
47403 specify which particular subimage should be operated on.
47404
47405 Subimage specification is used to denote a particular subimage. Configurations
47406 are a bit more complex -- they are used to define a particualr booting setup,
47407 for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
47408 etc.
47409
47410 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47411
47412 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
47413 Author: Marian Balakowicz <m8@semihalf.com>
47414 Date: Thu Feb 21 17:20:19 2008 +0100
47415
47416 [new uImage] Add gen_get_image() routine
47417
47418 This routine assures that image (whether legacy or FIT) is not
47419 in a special dataflash storage.
47420
47421 If image address is a dataflash address image is moved to system RAM.
47422
47423 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47424
47425 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
47426 Author: Marian Balakowicz <m8@semihalf.com>
47427 Date: Thu Feb 21 17:20:18 2008 +0100
47428
47429 [new uImage] Pull in libfdt if CONFIG_FIT is enabled
47430
47431 New uImage format (Flattened Image Tree) requires libfdt
47432 functionality, print out error message if CONFIG_OF_LIBFDT
47433 is not defined.
47434
47435 New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
47436 This commit turns it on by default.
47437
47438 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47439
47440 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
47441 Author: Michael Schwingen <michael@schwingen.org>
47442 Date: Mon Feb 18 23:16:35 2008 +0100
47443
47444 CFI: Do not use uninitialized cmd_reset
47445
47446 Do not use uninitialized cmd_reset; issue both AMD and Intel reset
47447 commands instead
47448
47449 From a short test, it looks like AMD-style flash roms treat *any* unknown
47450 command write as a reset, at least when in CFI Query mode, so issuing the
47451 Intel reset command to AMD-style flashs seems safe (from the small sample I
47452 have), plus the 3-cycle magic sequence should kick the state machine into
47453 the right state even without a reset command. Since the AMD-style flashs
47454 require the unlock sequence for real operation, I chose to try the AMD reset
47455 command first, so that Intel flashs do no see an invalid command prior to
47456 the CFI query.
47457
47458 I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
47459 plus Intel StrataFlash.
47460
47461 Signed-off-by: Michael Schwingen <michael@schwingen.org>
47462 Signed-off-by: Stefan Roese <sr@denx.de>
47463
47464 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
47465 Author: Rafal Jaworowski <raj@semihalf.com>
47466 Date: Thu Feb 21 11:56:44 2008 +0100
47467
47468 API: Add (c) and licensing notice to the public API header.
47469
47470 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
47471
47472 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
47473 Author: Yuri Tikhonov <yur@emcraft.com>
47474 Date: Thu Feb 21 11:06:07 2008 +0100
47475
47476 Fix CPU POST test failure
47477
47478 The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
47479 ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
47480 by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
47481 This patch just saves the CR value before running the test code, so allowing
47482 it to do anything it wants with CR.
47483
47484 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
47485 Acked-by: Yuri Tikhonov <yur@emcraft.com>
47486 --
47487
47488 commit d5908b093955415f3d340706378b991f911af671
47489 Author: Jon Loeliger <jdl@freescale.com>
47490 Date: Wed Feb 20 15:26:51 2008 -0600
47491
47492 8610HPCD: Document the flashbank selection switches.
47493
47494 Signed-off-by: Jon Loeliger <jdl@freescale.com>
47495
47496 commit a551cee99ad1d1da20fd23ad265de47448852f56
47497 Author: Jon Loeliger <jdl@freescale.com>
47498 Date: Wed Feb 20 14:22:26 2008 -0600
47499
47500 86xx: Fix GUR PCI config registers properly.
47501
47502 Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
47503 I tried to "8610HPCD: Fix typos in two PCI setup registers", I
47504 botched it due to not realizing that 8610 and 8641 had different
47505 Global Utility Register defintions, one of which was like 85xx,
47506 and the other wasn't. Correct this problem by introducing two
47507 symbols, one for each 86xx SoC, but neither of which is named
47508 anything like 85xx.
47509
47510 My bad. Lovely Wednesday with git bisect. You know.
47511
47512 Signed-off-by: Jon Loeliger <jdl@freescale.com>
47513
47514 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
47515 Author: Jon Loeliger <jdl@freescale.com>
47516 Date: Wed Feb 20 12:24:11 2008 -0600
47517
47518 8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
47519
47520 Without an actual supported video card hooked up, enabling
47521 the CONFIG_VIDEO by default just makes it look broken by
47522 routing all console output to the video card. Don't.
47523
47524 Signed-off-by: Jon Loeliger <jdl@freescale.com>
47525
47526 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
47527 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47528 Date: Wed Jan 30 15:08:15 2008 -0600
47529
47530 ColdFire: Fix missing code flash size for M5485EVB
47531
47532 Signed-off-by: James Mahan <kmahan@freescale.com>
47533 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47534
47535 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
47536 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47537 Date: Wed Jan 30 15:04:42 2008 -0600
47538
47539 ColdFire: Fix 5282 and 5271 interrupt mask bit
47540
47541 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47542
47543 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
47544 Author: Jon Loeliger <jdl@freescale.com>
47545 Date: Tue Feb 19 12:31:08 2008 -0600
47546
47547 8610HPCD: Fix typos in two PCI setup registers.
47548
47549 The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
47550 were erroneously present as 85xx names and values, leftover from
47551 the clone wars. Fix this by removing the 85xx cruft from the
47552 86xx codebase.
47553
47554 Signed-off-by: Jon Loeliger <jdl@freescale.com>
47555
47556 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
47557 Author: Jon Loeliger <jdl@freescale.com>
47558 Date: Mon Feb 18 14:01:56 2008 -0600
47559
47560 86xx: Convert sbc8641d to use libfdt.
47561
47562 This is the proper fix for a missing closing brace in the function
47563 ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
47564 The ft_cpu_setup() function in mpc8641hpcn.c should have been
47565 removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
47566 but was missed. Only, the sbc8641d was nominally still using it.
47567 It all got ripped out, and the funcality that was in ft_board_setup()
47568 was refactored to remove the CPU portions into the new file
47569 cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now.
47570
47571 Based loosely on an original patch from joe.hamman@embeddedspecialties.com
47572
47573 Signed-off-by: Jon Loeliger <jdl@freescale.com>
47574
47575 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
47576 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47577 Date: Sun Feb 17 23:35:31 2008 +0100
47578
47579 mpc86xx: Fix unused variable 'config' and 'immap'
47580
47581 and remove useless CONFIG_DDR_INTERLEAVE
47582
47583 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47584
47585 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
47586 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47587 Date: Sun Feb 17 23:03:36 2008 +0100
47588
47589 mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
47590
47591 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47592
47593 commit b6f29c84c208a091f95a10cbc9852d729659ba20
47594 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47595 Date: Sun Feb 17 14:15:31 2008 +0100
47596
47597 s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
47598
47599 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47600
47601 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
47602 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47603 Date: Sun Feb 17 14:15:32 2008 +0100
47604
47605 pxa: fix assignment from incompatible pointer type
47606
47607 fix mmc_bread function prototype
47608
47609 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47610
47611 commit 64d792063fff90b8118179b092feee09fe5cae13
47612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47613 Date: Sun Feb 17 14:15:30 2008 +0100
47614
47615 at91cap9adk: fix implicit declaration of function 'eth_init'
47616
47617 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47618
47619 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
47620 Author: Wolfgang Denk <wd@denx.de>
47621 Date: Sun Feb 17 15:43:44 2008 +0100
47622
47623 Remove files added by mistake, update CHANGELOG.
47624
47625 Signed-off-by: Wolfgang Denk <wd@denx.de>
47626
47627 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
47628 Author: Mike Nuss <mike@terascala.com>
47629 Date: Wed Feb 6 11:10:11 2008 -0500
47630
47631 PPC440EPx: Optionally enable second I2C bus
47632
47633 The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
47634 PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
47635 code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
47636
47637 Signed-off-by: Mike Nuss <mike@terascala.com>
47638 Cc: Stefan Roese <sr@denx.de>
47639
47640 commit ef5b4f221c22d05770878513951745f236b5b43f
47641 Author: Niklaus Giger <niklaus.giger@netstal.com>
47642 Date: Tue Feb 5 10:26:44 2008 +0100
47643
47644 ppc4xx: HCU4/5. Cleanup configs
47645
47646 - hcu4.h: Removed define of CONFIG_PPC405GPr
47647 - Corrected phy addresses
47648 - Fix boot variables
47649 - Respect line length of 80 chars
47650
47651 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47652
47653 commit 74973126d1be63ac75bdc192f46234dca3a7c421
47654 Author: Niklaus Giger <niklaus.giger@netstal.com>
47655 Date: Tue Feb 5 11:31:28 2008 +0100
47656
47657 ppc4xx: HCU4/5. Cleanups
47658
47659 - Fix some coding style violations.
47660 - Use in/out_u16/32 where appropriate.
47661 - Use register names from ppc405.h.
47662 - Fix trace useage for Lauterbach.
47663 - Remove obsolete generation HCU2.
47664 - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
47665
47666 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47667
47668 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
47669 Author: Niklaus Giger <niklaus.giger@netstal.com>
47670 Date: Tue Feb 5 10:26:41 2008 +0100
47671
47672 ppc4xx: PPC405GPr fix missing register definitions
47673
47674 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47675
47676 commit 214398d9cb22268d9d4f7563359edca0f78297a2
47677 Author: Larry Johnson <lrj@acm.org>
47678 Date: Fri Jan 18 21:49:05 2008 -0500
47679
47680 ppc4xx: Beautify configuration files for Sequoia and Korat boards
47681
47682 Signed-off-by: Larry Johnson <lrj@acm.org>
47683
47684 commit 30c6a241e88499f536e86d325759e29ba00ff67f
47685 Author: Anatolij Gustschin <agust@denx.de>
47686 Date: Fri Feb 15 20:09:01 2008 +0100
47687
47688 Wipe out assembler warnings while compiling x86 biosemu
47689
47690 This patch tries to get rid of some assembler warnings about
47691 changed .got2 section type while compiling x86 bios emulator
47692 code.
47693
47694 Signed-off-by: Anatolij Gustschin <agust@denx.de>
47695
47696 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
47697 Author: Wolfgang Denk <wd@denx.de>
47698 Date: Fri Feb 15 00:57:09 2008 +0100
47699
47700 Prepare v1.3.2-rc1 release candidate
47701
47702 commit f33e9653c9c09868995d788511d573771c209fe5
47703 Author: Anatolij Gustschin <agust@denx.de>
47704 Date: Fri Feb 15 00:13:20 2008 +0100
47705
47706 Fix compile warning on lib_ppc/board.c
47707
47708 Signed-off-by: Anatolij Gustschin <agust@denx.de>
47709
47710 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
47711 Author: Anatolij Gustschin <agust@denx.de>
47712 Date: Thu Feb 14 18:22:04 2008 +0100
47713
47714 Add Radeon Mobility 9200 pci device id to the radeon driver
47715
47716 This patch extends PCI device id table of the
47717 radeon driver so that the driver will also support
47718 Radeon Mobility 9200 (M9+) based boards.
47719
47720 Signed-off-by: Anatolij Gustschin <agust@denx.de>
47721
47722 commit 1b8607e1f7143548c6062c28371449ec69588c00
47723 Author: Anatolij Gustschin <agust@denx.de>
47724 Date: Thu Feb 14 18:19:50 2008 +0100
47725
47726 Extend ATI Radeon driver to support more video modes
47727
47728 Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
47729 800x600, 640x480 at 24, 16 and 8 bpp.
47730
47731 Signed-off-by: Anatolij Gustschin <agust@denx.de>
47732
47733 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
47734 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47735 Date: Sun Feb 10 17:05:20 2008 +0100
47736
47737 xsengine: fix typo and few coding style
47738
47739 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47740
47741 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
47742 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
47743 Date: Fri Feb 8 21:25:58 2008 +0100
47744
47745 Fix wrong memory limit calculation in memory-test
47746
47747 If the length of the memory address range passed to the "mtest" command is
47748 not of the form 2^x - 1, not all address lines are tested. This bug is
47749 inherited from the original software at
47750 http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
47751 this.
47752
47753 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
47754
47755 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
47756 Author: Wolfgang Denk <wd@denx.de>
47757 Date: Fri Feb 15 00:11:39 2008 +0100
47758
47759 Coding STyle cleanup.
47760
47761 Signed-off-by: Wolfgang Denk <wd@denx.de>
47762
47763 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
47764 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47765 Date: Tue Feb 5 13:30:43 2008 +0900
47766
47767 sh: Fix register address of SH7722
47768
47769 The address of SH7722 is wrong by old document.
47770 This patch fixes this problem.
47771
47772 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47773
47774 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
47775 Author: Mike Frysinger <vapier@gentoo.org>
47776 Date: Mon Feb 4 17:44:23 2008 -0500
47777
47778 only update version header as needed
47779
47780 Constantly rebuilding the version header will force useless relinking, so we
47781 simply need to compare the new header with the existing one before updating
47782 it.
47783
47784 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47785
47786 commit 208447f8e953f347425eb92c8e28d59e6d911363
47787 Author: Mike Frysinger <vapier@gentoo.org>
47788 Date: Mon Jan 28 05:56:19 2008 -0500
47789
47790 Do not specify a CROSS_COMPILE default when executing size
47791
47792 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47793
47794 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
47795 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
47796 Date: Wed Feb 13 11:19:19 2008 +0100
47797
47798 Fix return value of mtest when CFG_ALT_MEMTEST set
47799
47800 Fix a missing return statement from a non-void function.
47801
47802 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
47803
47804 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
47805 Author: Timur Tabi <timur@freescale.com>
47806 Date: Wed Jan 9 14:35:26 2008 -0600
47807
47808 85xx, 86xx: Determine I2C clock frequencies and store in global_data
47809
47810 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
47811
47812 Update the get_clocks() function in 85xx and 86xx to determine the I2C
47813 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
47814
47815 Signed-off-by: Timur Tabi <timur@freescale.com>
47816
47817 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
47818 Author: Wolfgang Denk <wd@denx.de>
47819 Date: Thu Feb 14 23:18:01 2008 +0100
47820
47821 TQM834x: clean up configuration
47822
47823 Get board name consistent with Linux and elsewhere;
47824 get rid of local network definitions etc.
47825
47826 Signed-off-by: Wolfgang Denk <wd@denx.de>
47827
47828 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
47829 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47830 Date: Thu Feb 14 08:02:12 2008 +0100
47831
47832 TFTP: fix search of ':' in BootFile
47833
47834 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47835
47836 commit 0bc9efada170096c6b273f19165e32936d330d80
47837 Author: Wolfgang Denk <wd@denx.de>
47838 Date: Thu Feb 14 22:46:55 2008 +0100
47839
47840 Coding style cleanup; update CHANGELOG.
47841
47842 Signed-off-by: Wolfgang Denk <wd@denx.de>
47843
47844 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
47845 Author: Wolfgang Denk <wd@denx.de>
47846 Date: Thu Feb 14 22:43:22 2008 +0100
47847
47848 PPC: Use r2 instead of r29 as global data pointer
47849
47850 R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
47851 will refuse to use load/store multiple insns; instead, it issues a
47852 list of simple load/store instructions upon function entry and exit,
47853 resulting in bigger code size, which in turn makes the build for a
47854 few boards fail.
47855
47856 Use r2 instead.
47857
47858 Signed-off-by: Wolfgang Denk <wd@denx.de>
47859
47860 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
47861 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
47862 Date: Wed Jan 30 09:08:49 2008 +0100
47863
47864 ARM: make the machid configurable via the environment
47865
47866 If the variable "machid" exists, let do_bootm_linux use that instead
47867 of bd->bi_arch_number.
47868
47869 Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
47870
47871 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
47872 Author: Vlad Lungu <vlad@comsys.ro>
47873 Date: Wed Jan 23 16:34:46 2008 +0200
47874
47875 Use #ifdef CONFIG_FSLDMAFEC
47876
47877 MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
47878 fails
47879
47880 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
47881
47882 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
47883 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47884 Date: Sat Jan 19 10:25:59 2008 +0900
47885
47886 common/miiphyutil.c: Cleanup MII_DEBUG and debug()
47887
47888 Current MII_DEBUG is confusing in two ways. One is useless define-then-
47889 undef at the top of the file. The other is there is only one debug() in
47890 this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
47891 While there are many useful printf()/puts() debug codes, but they are for
47892 DEBUG, not for MII_DEBUG.
47893
47894 This patch tries to put them all together into MII_DEBUG and debug().
47895
47896 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47897
47898 commit 751b9b5189f3274b03c809172631316d6b002c82
47899 Author: Kyungmin Park <kmpark@infradead.org>
47900 Date: Thu Jan 17 16:43:25 2008 +0900
47901
47902 OneNAND Initial Program Loader (IPL) support
47903
47904 This patch enables the OneNAND boot within U-Boot.
47905 Before this work, we used another OneNAND IPL called X-Loader based
47906 on open source. With this work, we can build the oneboot.bin image
47907 without other program.
47908
47909 The build sequence is simple.
47910 First, it compiles the u-boot.bin
47911 Second, it compiles OneNAND IPL
47912 Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
47913 The mechanism is similar with NAND boot except it boots from itself.
47914
47915 Another thing is that you can only use the OneNAND IPL only to work
47916 other bootloader such as RedBoot and so on.
47917
47918 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47919
47920 commit 21f6f9636f0e978397548751347425fbf8d42bb3
47921 Author: Andy Fleming <afleming@freescale.com>
47922 Date: Wed Jan 16 13:06:59 2008 -0600
47923
47924 Fix CONFIG_MMC usage in fat code
47925
47926 A #if statement in fat.c depended on CONFIG_MMC, instead of
47927 defined(CONFIG_MMC). This meant CONFIG_MMC needed to be defined
47928 as "1" rather than just defined. Now it's better.
47929
47930 Signed-off-by: Andy Fleming <afleming@freescale.com>
47931
47932 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
47933 Author: Rafal Jaworowski <raj@semihalf.com>
47934 Date: Tue Jan 15 12:52:31 2008 +0100
47935
47936 ppc: Refactor cache routines, so there is only one common set.
47937
47938 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
47939
47940 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
47941 Author: Jon Loeliger <jdl@jdl.com>
47942 Date: Wed Jan 23 15:55:02 2008 -0600
47943
47944 86xx: Fix compilation warning in sys_eprom.c
47945
47946 sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
47947
47948 Signed-off-by: Jon Loeliger <jdl@freescale.com>
47949
47950 commit 65230107025733e89e28fd5e5cfd916d4953c28a
47951 Author: Haavard Skinnemoen <hskinnemoen at>
47952 Date: Fri Feb 22 11:40:50 2008 +0000
47953
47954 Move AT91RM9200DK board support under board/atmel
47955
47956 We already have a vendor subdir for Atmel, so we should use it.
47957
47958 Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
47959
47960 commit 6d0943a6be99977d6d853d51749e9963d68eb192
47961 Author: Andreas Engel <andreas.engel@ericsson.com>
47962 Date: Mon Jan 14 09:06:52 2008 +0000
47963
47964 ARM: cleanup duplicated exception handlingcode
47965
47966 Move duplicated exception handling code into lib_arm.
47967
47968 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
47969
47970 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
47971 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
47972 Date: Fri Feb 1 10:09:03 2008 +0000
47973
47974 Support for Artila M-501 starter kit
47975
47976 Kimmo Leppala / Sysart and
47977 Timo Tuunainen / Sysart
47978
47979 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
47980 Author: Stelian Pop <stelian@popies.net>
47981 Date: Mon Feb 11 10:50:19 2008 +0000
47982
47983 AT91CAP9 support
47984
47985 ---------------------------------
47986
47987 read_dataflash() takes a signed char pointer as a parameter. Silence a
47988 few warnings dues to incorrect parameter types in env_dataflash.c.
47989
47990 Signed-off-by: Stelian Pop <stelian@popies.net>
47991
47992 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
47993 Author: Stelian Pop <stelian@popies.net>
47994 Date: Thu Feb 7 09:42:57 2008 +0000
47995
47996 AT91CAP9 support : move board files to Atmel vendor directory.
47997
47998 AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
47999
48000 Signed-off-by: Stelian Pop <stelian@popies.net>
48001
48002 commit 7263ef191b87da94768f762c7093bedeb70db98f
48003 Author: Stelian Pop <stelian at>
48004 Date: Thu Jan 3 21:15:56 2008 +0000
48005
48006 AT91CAP9 support : MACB changes
48007
48008 Signed-off-by: Stelian Pop <stelian <at> popies.net>
48009 Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
48010
48011 commit 6afcabf11d7321850f4feaadfee841488ace54c5
48012 Author: Stelian Pop <stelian@popies.net>
48013 Date: Thu Feb 7 16:37:54 2008 +0000
48014
48015 AT91CAP9 support : board/ files
48016
48017 Signed-off-by: Stelian Pop <stelian@popies.net>
48018
48019 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
48020 Author: Stelian Pop <stelian at>
48021 Date: Wed Jan 30 21:15:54 2008 +0000
48022
48023 AT91CAP9 support : cpu/ files
48024
48025 Signed-off-by: Stelian Pop <stelian <at> popies.net>
48026
48027 commit fa506a926cec348805143576c941f8e61b333cc0
48028 Author: Stelian Pop <stelian@popies.net>
48029 Date: Thu Jan 31 21:15:53 2008 +0000
48030
48031 AT91CAP9 support : include/ files
48032
48033 Signed-off-by: Stelian Pop <stelian@popies.net>
48034
48035 commit 20b197c6f2799af399a68f96a1aff543a75621b8
48036 Author: Stelian Pop <stelian@popies.net>
48037 Date: Sun Jan 20 19:49:21 2008 +0000
48038
48039 AT91CAP9 support : build integration
48040
48041 Signed-off-by: Stelian Pop <stelian@popies.net>
48042
48043 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
48044 Author: Stelian Pop <stelian@popies.net>
48045 Date: Sun Jan 20 21:07:00 2008 +0000
48046
48047 Improve DataFlash CS definition.
48048
48049 Use a structure instead of the error prone unnamed array to
48050 define the possible dataflash banks.
48051
48052 Signed-off-by: Stelian Pop <stelian@popies.net>
48053
48054 commit a6cdd21b56014208706238712a853a9e9a0a2290
48055 Author: Stelian Pop <stelian@popies.net>
48056 Date: Sat Jan 19 21:09:35 2008 +0000
48057
48058 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
48059
48060 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
48061
48062 cpu/arm926ejs/start.o: In function `cpu_init_crit':
48063 .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
48064
48065 Signed-off-by: Stelian Pop <stelian@popies.net>
48066
48067 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
48068 Author: Peter Pearse <peter.pearse@arm.com>
48069 Date: Fri Feb 1 16:50:24 2008 +0000
48070
48071 Fix timer overflow in DaVinci
48072 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
48073
48074 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
48075 Author: Peter Pearse <peter.pearse@arm.com>
48076 Date: Fri Feb 1 16:49:08 2008 +0000
48077
48078 Update board NetStar
48079 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
48080
48081 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
48082 Author: Niklaus Giger <niklaus.giger@netstal.com>
48083 Date: Tue Feb 5 10:26:42 2008 +0100
48084
48085 ppc4xx: HCU4/5. Fix make O=../xx
48086
48087 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48088
48089 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
48090 Author: Larry Johnson <lrj@acm.org>
48091 Date: Tue Jan 22 08:51:59 2008 -0500
48092
48093 ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
48094
48095 Signed-off-by: Larry Johnson <lrj@acm.org>
48096
48097 commit fe891ecf4d187e9d11dde869ed4623af52b54451
48098 Author: Hiroshi Ito <ito@mlb.co.jp>
48099 Date: Thu Jan 31 18:35:04 2008 +0900
48100
48101 NFS Timeout with large files.
48102
48103 Retry to send NFS packet before reaching timeout.
48104
48105 Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
48106
48107 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
48108 Author: Johannes Stezenbach <js@sig21.net>
48109 Date: Tue Jan 29 00:11:25 2008 +0100
48110
48111 Add dependencies to avoid race conditions with parallel make.
48112
48113 Signed-off-by: Johannes Stezenbach <js@sig21.net>
48114
48115 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
48116 Author: Mike Frysinger <vapier@gentoo.org>
48117 Date: Mon Jan 28 05:46:01 2008 -0500
48118
48119 Mark board_init_[fr] as noreturn
48120
48121 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48122
48123 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
48124 Author: Mike Frysinger <vapier@gentoo.org>
48125 Date: Mon Jan 28 05:28:50 2008 -0500
48126
48127 Only use TEXT_BASE if defined by the board
48128
48129 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48130
48131 commit 1b769881750030f10743808b9d6013e11f559350
48132 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48133 Date: Fri Jan 25 07:54:47 2008 +0100
48134
48135 Fix remaining CONFIG_COMMANDS
48136
48137 update comments
48138 Fix coding style
48139
48140 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48141
48142 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
48143 Author: Niklaus Giger <niklaus.giger@netstal.com>
48144 Date: Mon Jan 21 16:46:00 2008 +0100
48145
48146 Add *~ to .gitignore
48147
48148 One should never add a backup file ending in with ~ to the git repository.
48149
48150 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48151
48152 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
48153 Author: Kumar Gala <galak@kernel.crashing.org>
48154 Date: Thu Jan 17 00:02:10 2008 -0600
48155
48156 Remove duplicate defines for ARRAY_SIZE
48157
48158 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48159
48160 commit c77ce474b1c57b13e9d36d9830f147966c143694
48161 Author: Stelian Pop <stelian@popies.net>
48162 Date: Mon Jan 14 22:08:14 2008 +0100
48163
48164 Fix incorrect address test in AT91F_DataflashSelect().
48165
48166 Signed-off-by: Stelian Pop <stelian@popies.net>
48167
48168 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
48169 Author: Kumar Gala <galak@kernel.crashing.org>
48170 Date: Wed Feb 13 15:09:58 2008 -0600
48171
48172 Fix building of fdt_support.c if DEBUG set
48173
48174 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48175
48176 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
48177 Author: Jon Loeliger <jdl@freescale.com>
48178 Date: Tue Feb 12 14:53:28 2008 -0600
48179
48180 Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
48181
48182 These replace direct structure references for IMMR sections.
48183
48184 Signed-off-by: Jon Loeliger <jdl@freescale.com>
48185
48186 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
48187 Author: Wolfgang Denk <wd@denx.de>
48188 Date: Tue Feb 12 00:45:06 2008 +0100
48189
48190 Get rid of "#undef DEBUG" from board config files.
48191
48192 Signed-off-by: Wolfgang Denk <wd@denx.de>
48193
48194 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
48195 Author: Timur Tabi <timur@freescale.com>
48196 Date: Tue Jan 15 17:09:41 2008 -0600
48197
48198 Remove #undef DEBUG from MPC83xx board header files
48199
48200 Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
48201 The inclusion of this line makes it impossible to enable debug code in
48202 other source files, because "#define DEBUG" typically needs to be defined
48203 before any header files are included.
48204
48205 Signed-off-by: Timur Tabi <timur@freescale.com>
48206
48207 commit 69018ce2e086e9caf35b914d675b82bc4888f077
48208 Author: Kumar Gala <galak@kernel.crashing.org>
48209 Date: Thu Jan 17 08:25:45 2008 -0600
48210
48211 QE: Move FDT support into a common file
48212
48213 Move the flat device tree setup for QE related devices into
48214 a common file shared between 83xx & 85xx platforms that have QE's.
48215
48216 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48217
48218 commit 5cf746c303710329f8040d9c62ee354313e3e91f
48219 Author: Marian Balakowicz <m8@semihalf.com>
48220 Date: Thu Jan 31 13:59:09 2008 +0100
48221
48222 [new uImage] Move kernel data find code to get_kernel() routine
48223
48224 Verification of the kernel image (in old format) and finding kernel
48225 data is moved to a dedicated routine. The routine will also hold
48226 support for, to be added, new image format.
48227
48228 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48229
48230 commit 7b325454fd231d4273de3fe373850f777fb086bf
48231 Author: Marian Balakowicz <m8@semihalf.com>
48232 Date: Thu Jan 31 13:58:20 2008 +0100
48233
48234 [new uImage] Cleanup FDT handling in PPC do_boot_linux()
48235
48236 Move FDT blob finding and relocation to a dedicated
48237 get_fdt() routine. It increases code readability and
48238 will make adding support for new uImage format easier.
48239
48240 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48241
48242 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
48243 Author: Marian Balakowicz <m8@semihalf.com>
48244 Date: Thu Jan 31 13:58:13 2008 +0100
48245
48246 [new uImage] Cleanup do_botm_linux() boot allocations
48247
48248 This patch moves common pre-boot allocation steps shared between PPC
48249 and M68K to a helper routines:
48250
48251 common:
48252 - get_boot_sp_limit()
48253 - get_boot_cmline()
48254 - get_boot_kbd()
48255
48256 platform:
48257 - set_clocks_in_mhz()
48258
48259 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48260
48261 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
48262 Author: Marian Balakowicz <m8@semihalf.com>
48263 Date: Thu Jan 31 13:57:17 2008 +0100
48264
48265 [new uImage] Move ramdisk loading to a common routine
48266
48267 Ramdisk loading code, including initrd_high variable handling,
48268 was duplicated for PPC and M68K platforms. This patch creates
48269 common helper routine that is being called from both platform
48270 do_bootm_linux() routines.
48271
48272 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48273
48274 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
48275 Author: Marian Balakowicz <m8@semihalf.com>
48276 Date: Thu Jan 31 13:55:53 2008 +0100
48277
48278 [new uImage] Removed dead ramdisk code on microblaze architectures
48279
48280 Microblaze do_bootm_linux() includes ramdisk processing code but
48281 the ramdisk does not get used anywhere later on.
48282
48283 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48284
48285 commit 5ad03eb3854c162684222a718b44c0716ea0db03
48286 Author: Marian Balakowicz <m8@semihalf.com>
48287 Date: Thu Jan 31 13:55:39 2008 +0100
48288
48289 [new uImage] Factor out common image_get_ramdisk() routine
48290
48291 Architecture specific do_bootm_linux() routines share common
48292 ramdisk image processing code. Move this code to a common
48293 helper routine.
48294
48295 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48296
48297 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
48298 Author: Marian Balakowicz <m8@semihalf.com>
48299 Date: Thu Jan 31 13:20:08 2008 +0100
48300
48301 [new uImage] Move FDT error printing to common fdt_error() routine
48302
48303 FDT error handling in PPC do_bootm_linux() shares the same message format.
48304 This patch moves error message printing to a helper fdt_error() routine.
48305
48306 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48307 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
48308
48309 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
48310 Author: Marian Balakowicz <m8@semihalf.com>
48311 Date: Thu Jan 31 13:20:07 2008 +0100
48312
48313 [new uImage] Factor out common routines for getting os/arch/type/comp names
48314
48315 Move numeric-id to name translation for image os/arch/type/comp header
48316 fields to a helper routines: image_get_os_name(), image_get_arch_name(),
48317 image_get_type_name(), image_get_comp_name().
48318
48319 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48320
48321 commit e99c26694a384221d336f6448c06a57479c0baa4
48322 Author: Marian Balakowicz <m8@semihalf.com>
48323 Date: Thu Jan 31 13:20:07 2008 +0100
48324
48325 [new uImage] Remove standalone applications handling from boootm
48326
48327 Standalone applications are supposed to be run using the "go" command.
48328 This patch removes standalone images handling from the do_bootm().
48329
48330 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48331
48332 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
48333 Author: Marian Balakowicz <m8@semihalf.com>
48334 Date: Thu Jan 31 13:20:07 2008 +0100
48335
48336 [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
48337
48338 Support for OF_FLAT_TREE is to be obsoleted in the near future,
48339 remove related code from the bootm routines.
48340
48341 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48342
48343 commit 82850f3d32a2661868ec6876bed7a22c55cef718
48344 Author: Marian Balakowicz <m8@semihalf.com>
48345 Date: Thu Jan 31 13:20:06 2008 +0100
48346
48347 [new uImage] Use image API in SH do_bootm_linux() routine
48348
48349 Introduce image handling API for lately added Hitachi SH architecture.
48350
48351 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48352
48353 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
48354 Author: Marian Balakowicz <m8@semihalf.com>
48355 Date: Thu Jan 31 13:20:06 2008 +0100
48356
48357 [new uImage] Rename architecture specific bootm code files
48358
48359 Implementation of the do_bootm_linux() and other bootm helper routines is
48360 architecture specific code. As such it resides in lib_<arch> directories
48361 in files named <arch>_linux.c
48362
48363 This patch renames those files to a more clear and accurate
48364 lib_<arch>/bootm.c form.
48365
48366 List of the renamed files:
48367 lib_arm/armlinux.c -> lib_arm/bootm.c
48368 lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
48369 lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
48370 lib_i386/i386_linux.c -> lib_i386/bootm.c
48371 lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
48372 lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
48373 lib_mips/mips_linux.c -> lib_mips/bootm.c
48374 lib_nios/nios_linux.c -> lib_nios/bootm.c
48375 lib_nios2/nios_linux.c -> lib_nios2/bootm.c
48376 lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
48377 lib_sh/sh_linux.c -> lib_sh/bootm.c
48378
48379 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48380
48381 commit 7582438c285bf0cef82909d0f232de64ec567a8a
48382 Author: Marian Balakowicz <m8@semihalf.com>
48383 Date: Thu Jan 31 13:20:06 2008 +0100
48384
48385 [new uImage] Return error on image move/uncompress overwrites
48386
48387 Check for overwrites during image move/uncompress, return with error
48388 when the original image gets corrupted. Report clear message to the user
48389 and prevent further troubles when pointer to the corrupted images is passed
48390 to do_bootm_linux routine.
48391
48392 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48393
48394 commit f13e7b2e993c61fed1f607962501e051940d6e80
48395 Author: Marian Balakowicz <m8@semihalf.com>
48396 Date: Tue Jan 8 18:12:17 2008 +0100
48397
48398 [new uImage] Cleanup image header pointer use in bootm code
48399
48400 - use single image header pointer instead of a set of auxilliary variables.
48401 - add multi component image helper routines: get component size/data address
48402
48403 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48404
48405 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
48406 Author: Marian Balakowicz <m8@semihalf.com>
48407 Date: Tue Jan 8 18:17:10 2008 +0100
48408
48409 [new uImage] Cleanup cmd_bootm.c
48410
48411 - sort and cleanup headers, declarations, etc.
48412 - group related routines
48413 - cleanup indentation, white spaces
48414
48415 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48416
48417 commit af13cdbc01eaf88880978bfb4f603e012818ba24
48418 Author: Marian Balakowicz <m8@semihalf.com>
48419 Date: Tue Jan 8 18:11:45 2008 +0100
48420
48421 [new uImage] Add memmove_wd() common routine
48422
48423 Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
48424
48425 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48426
48427 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
48428 Author: Marian Balakowicz <m8@semihalf.com>
48429 Date: Tue Jan 8 18:11:44 2008 +0100
48430
48431 [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
48432
48433 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48434
48435 commit 15158971f49255ccef54f0979a942cfd3de2ae52
48436 Author: Marian Balakowicz <m8@semihalf.com>
48437 Date: Tue Jan 8 18:11:44 2008 +0100
48438
48439 [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
48440
48441 Use image header copy instead of a (possibly corrupted) pointer to
48442 a initial image location.
48443
48444 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48445
48446 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
48447 Author: Marian Balakowicz <m8@semihalf.com>
48448 Date: Tue Jan 8 18:11:44 2008 +0100
48449
48450 [new uImage] Remove I386 uImage fake_header() routine
48451
48452 I386 targets are not using a uImage format, instead fake header
48453 is added to ram image before it is further processed by bootm.
48454
48455 Remove this fixup and force proper uImage use for I386.
48456
48457 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48458
48459 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
48460 Author: Marian Balakowicz <m8@semihalf.com>
48461 Date: Tue Jan 8 18:11:44 2008 +0100
48462
48463 [new uImage] Move CHUNKSZ definition to image.h
48464
48465 CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
48466 move this definition to a common header.
48467
48468 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48469
48470 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
48471 Author: Marian Balakowicz <m8@semihalf.com>
48472 Date: Tue Jan 8 18:11:43 2008 +0100
48473
48474 [new uImage] Move gunzip() common code to common/gunzip.c
48475
48476 Move gunzip(), zalloc() and zfree() to a separate file.
48477 Share zalloc() and zfree() with cramfs uncompress routine.
48478
48479 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48480
48481 commit d45d5a18b6b36688f2365623f9d550566c664b5b
48482 Author: Marian Balakowicz <m8@semihalf.com>
48483 Date: Tue Jan 8 18:11:43 2008 +0100
48484
48485 [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
48486
48487 Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
48488 readable in PPC variant of do_bootm_linux() routine.
48489
48490 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48491
48492 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
48493 Author: Marian Balakowicz <m8@semihalf.com>
48494 Date: Tue Jan 8 18:11:43 2008 +0100
48495
48496 [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
48497
48498 PPC implementation of do_bootm_linux() routine is moved to
48499 a dedicated file lib_ppc/ppc_linux.c
48500
48501 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48502
48503 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
48504 Author: Marian Balakowicz <m8@semihalf.com>
48505 Date: Tue Jan 8 18:14:09 2008 +0100
48506
48507 [new uImage] Define a API for image handling operations
48508
48509 - Add inline helper macros for basic header processing
48510 - Move common non inline code common/image.c
48511 - Replace direct header access with the API routines
48512 - Rename IH_CPU_* to IH_ARCH_*
48513
48514 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48515
48516 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
48517 Author: Marian Balakowicz <m8@semihalf.com>
48518 Date: Thu Jan 31 13:19:58 2008 +0100
48519
48520 Add missing cmd_ximg.o to common/Makefile
48521
48522 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48523
48524 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
48525 Author: Grzegorz Bernacki <gjb@semihalf.com>
48526 Date: Mon Jan 28 10:15:02 2008 +0100
48527
48528 ADS5121e: DDR2 init/timing update.
48529
48530 Signed-off-by: John Rigby <jrigby@freescale.com>
48531 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48532
48533 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
48534 Author: John Rigby <jrigby@freescale.com>
48535 Date: Wed Jan 30 13:36:57 2008 -0700
48536
48537 Device tree updates
48538
48539 Changes to match 5121 device tree going mainline in 2.6.25.
48540
48541 Change OF_SOC from "soc5121" to plain "soc".
48542 Remove unneeded "ref-frequency" fixups.
48543 Remove "address" enetaddr fixup.
48544
48545 Add bus-frequency fixup for old OF_SOC so old
48546 kernels with old device trees will work with new
48547 u-boot with 66MHz IPS clock
48548
48549 Signed-off-by: John Rigby <jrigby@freescale.com>
48550
48551 commit de55d18df3ff2ea614624e74793de7c43520e0e7
48552 Author: John Rigby <jrigby@freescale.com>
48553 Date: Wed Jan 30 13:36:56 2008 -0700
48554
48555 Change IPS freq to 66MHz
48556
48557 Recommended frequency is 66MHz
48558 Change divider from 4 to 3.
48559
48560 Signed-off-by: John Rigby <jrigby@freescale.com>
48561
48562 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
48563 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48564 Date: Mon Jan 14 22:38:55 2008 +0100
48565
48566 xsengine: rename board_post_init to board_late_init
48567
48568 missing migration from "Cleanup of some init functions"
48569 in c837dcb1a316745092567bfe4fb266d0941884ff
48570
48571 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48572
48573 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
48574 Author: Larry Johnson <lrj@acm.org>
48575 Date: Sat Jan 12 23:35:33 2008 -0500
48576
48577 Add attribute POST_PREREL to ECC memory POST
48578
48579 Signed-off-by: Larry Johnson <lrj@acm.org>
48580
48581 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
48582 Author: Kumar Gala <galak@kernel.crashing.org>
48583 Date: Thu Jan 17 08:25:45 2008 -0600
48584
48585 QE: Move FDT support into a common file
48586
48587 Move the flat device tree setup for QE related devices into
48588 a common file shared between 83xx & 85xx platforms that have QE's.
48589
48590 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48591
48592 commit d38da537943cd36356b9d3d9d9b60533554b81d8
48593 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
48594 Date: Wed Jan 23 17:20:14 2008 +0100
48595
48596 AVR32: Make SDRAM refresh rate configurable
48597
48598 The existing code assumes the SDRAM row refresh period should always
48599 be 15.6 us. This is not always true, and indeed on the ATNGW100, the
48600 refresh rate should really be 7.81 us.
48601
48602 Add a refresh_period member to struct sdram_info and initialize it
48603 properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
48604 panic() until the refresh_period member is updated properly.
48605
48606 Big thanks to Gerhard Berghofer for pointing out this issue.
48607
48608 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
48609
48610 commit 61151cccb660cdb06a07fb283de6089913d7bde0
48611 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
48612 Date: Thu Apr 19 10:10:11 2007 +0200
48613
48614 ATSTK1000: Fix potential flash programming bug
48615
48616 The (now obsolete) atngw100 flash programming code was having problems
48617 programming the onboard at49bv642 chip. The atstk1000 flash
48618 programming code may have the same bug, so import fix for this problem
48619 from the AVR32 Linux BSP.
48620
48621 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
48622
48623 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
48624 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
48625 Date: Thu Nov 22 17:04:13 2007 +0100
48626
48627 ATSTK1004: Fix comment about default load address
48628
48629 The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
48630 wouldn't have worked anyway since the board can only access 4MB of
48631 SDRAM.
48632
48633 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
48634
48635 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
48636 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
48637 Date: Thu Nov 22 17:01:24 2007 +0100
48638
48639 ATSTK1002: Use SDRAM + 4MB as default load address
48640
48641 Many people run into problems when they compile a big kernel and load
48642 the uImage at the default SDRAM + 2MB address as the kernel will
48643 overwrite the uImage as it is being unpacked. Increase the default
48644 load address so that we can load a 4MB kernel image without any
48645 problems.
48646
48647 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
48648
48649 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
48650 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
48651 Date: Thu Nov 22 16:51:39 2007 +0100
48652
48653 ATNGW100: Fix default mtest range
48654
48655 Let mtest cover the whole SDRAM except the last megabyte, which is
48656 where u-boot lives.
48657
48658 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
48659
48660 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
48661 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48662 Date: Tue Jan 22 15:31:56 2008 +0900
48663
48664 sh: Fix register address of SH7722.
48665
48666 The address of SH7722 is wrong by old document.
48667 This patch fixes this problem.
48668
48669 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48670
48671 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
48672 Author: Mike Frysinger <vapier@gentoo.org>
48673 Date: Mon Feb 4 19:26:57 2008 -0500
48674
48675 new command for displaying strings at specified memory locations
48676
48677 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48678
48679 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
48680 Author: Mike Frysinger <vapier@gentoo.org>
48681 Date: Mon Feb 4 19:26:57 2008 -0500
48682
48683 rewrite/cleanup Blackfin RTC driver
48684
48685 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48686
48687 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
48688 Author: Mike Frysinger <vapier@gentoo.org>
48689 Date: Mon Feb 4 19:26:57 2008 -0500
48690
48691 generate u-boot.ldr for Blackfin targets
48692
48693 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48694
48695 commit b779f7a59530436040f157f7841db7ab796542df
48696 Author: Mike Frysinger <vapier@gentoo.org>
48697 Date: Mon Feb 4 19:26:57 2008 -0500
48698
48699 scrub unused symbols
48700
48701 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48702
48703 commit cc2977acc3bbbb7850f16645dd1081f95335868d
48704 Author: Mike Frysinger <vapier@gentoo.org>
48705 Date: Mon Feb 4 19:26:57 2008 -0500
48706
48707 move Blackfin cpu object list to respective cpu directories
48708
48709 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48710
48711 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
48712 Author: Mike Frysinger <vapier@gentoo.org>
48713 Date: Mon Feb 4 19:26:57 2008 -0500
48714
48715 interface to Blackfin on-chip One-Time-Programmable memory
48716
48717 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48718
48719 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
48720 Author: Mike Frysinger <vapier@gentoo.org>
48721 Date: Mon Feb 4 19:26:56 2008 -0500
48722
48723 add support for memory commands with Blackfin L1 instruction memory
48724
48725 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48726
48727 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
48728 Author: Mike Frysinger <vapier@gentoo.org>
48729 Date: Mon Feb 4 19:26:56 2008 -0500
48730
48731 use C code rather than inline assembly
48732
48733 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48734
48735 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
48736 Author: Mike Frysinger <vapier@gentoo.org>
48737 Date: Mon Feb 4 19:26:56 2008 -0500
48738
48739 add Blackfin-specific reginfo command
48740
48741 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48742
48743 commit 0858b835e7ea501ea084d34cef75932f098342bb
48744 Author: Mike Frysinger <vapier@gentoo.org>
48745 Date: Mon Feb 4 19:26:55 2008 -0500
48746
48747 add support for Blackfin symbol prefixes to examples
48748
48749 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48750
48751 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
48752 Author: Mike Frysinger <vapier@gentoo.org>
48753 Date: Mon Feb 4 19:26:55 2008 -0500
48754
48755 add Blackfin-specific bdinfo command
48756
48757 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48758
48759 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
48760 Author: Mike Frysinger <vapier@gentoo.org>
48761 Date: Mon Feb 4 19:26:55 2008 -0500
48762
48763 move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
48764
48765 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48766
48767 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
48768 Author: Mike Frysinger <vapier@gentoo.org>
48769 Date: Mon Feb 4 19:26:55 2008 -0500
48770
48771 unify the Blackfin board targets
48772
48773 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48774
48775 commit d4d7730853e5d675f76ec666807da3028c91d592
48776 Author: Mike Frysinger <vapier@gentoo.org>
48777 Date: Mon Feb 4 19:26:55 2008 -0500
48778
48779 punt Blackfin VDSP headers and import sanitized/auto-generated ones
48780
48781 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48782
48783 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
48784 Author: Mike Frysinger <vapier@gentoo.org>
48785 Date: Mon Feb 4 19:26:54 2008 -0500
48786
48787 always pull in asm/blackfin.h for Blackfin ports
48788
48789 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48790
48791 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
48792 Author: Mike Frysinger <vapier@gentoo.org>
48793 Date: Mon Feb 4 19:26:54 2008 -0500
48794
48795 add missing __raw versions of Blackfin read/write io functions
48796
48797 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48798
48799 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
48800 Author: Mike Frysinger <vapier@gentoo.org>
48801 Date: Mon Feb 4 19:26:54 2008 -0500
48802
48803 add the default Blackfin logo used by Blackfin boards with splash screens
48804
48805 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48806
48807 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
48808 Author: Mike Frysinger <vapier@gentoo.org>
48809 Date: Mon Feb 4 19:26:54 2008 -0500
48810
48811 add some more Blackfin docs
48812
48813 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48814
48815 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
48816 Author: Mike Frysinger <vapier@gentoo.org>
48817 Date: Mon Feb 4 19:26:54 2008 -0500
48818
48819 make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
48820
48821 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48822
48823 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
48824 Author: Mike Frysinger <vapier@gentoo.org>
48825 Date: Mon Feb 4 19:26:54 2008 -0500
48826
48827 fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
48828
48829 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48830
48831 commit b45264ee85cbd92020640a32e02fb434fd557108
48832 Author: Mike Frysinger <vapier@gentoo.org>
48833 Date: Mon Feb 4 19:26:53 2008 -0500
48834
48835 add gitignores for Blackfin pieces
48836
48837 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48838
48839 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
48840 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48841 Date: Fri Jan 18 01:14:03 2008 +0100
48842
48843 TFTP: add host ip addr support
48844
48845 allow to use a different server as set in serverip
48846 add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
48847 if not defined the max length will be at 128
48848
48849 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48850
48851 commit e56b4b494cd92def577969f9678395aa22d34c9f
48852 Author: Timur Tabi <timur@freescale.com>
48853 Date: Wed Jan 9 14:35:26 2008 -0600
48854
48855 85xx,86xx: Determine I2C clock frequencies and store in global_data
48856
48857 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
48858
48859 Update the get_clocks() function in 85xx and 86xx to determine the I2C
48860 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
48861
48862 Signed-off-by: Timur Tabi <timur@freescale.com>
48863
48864 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
48865 Author: Wolfgang Denk <wd@denx.de>
48866 Date: Thu Dec 27 10:56:54 2007 +0100
48867
48868 OMAP5912: fix FIFO handling in UART driver
48869
48870 According to the OMAP5912 Serial Interfaces Reference Guide (see
48871 http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
48872 FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
48873 changed when the baud clock is not running, i. e. when both DLL and
48874 DLH are set to 0.
48875
48876 Thus make sure that DLL and DLH are 0 when writing the FCR.
48877
48878 Signed-off-by: Wolfgang Denk <wd@denx.de>
48879
48880 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
48881 Author: Harald Welte <laforge@openmoko.org>
48882 Date: Wed Dec 19 15:10:52 2007 +0100
48883
48884 ARM: S3C24x0 SoC NAND controller support
48885
48886 This patch adds NAND support to the S3C24x0 SoC code in u-boot
48887
48888 Signed-off-by: Harald Welte <laforge@openmoko.org>
48889
48890 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
48891 Author: Harald Welte <laforge@openmoko.org>
48892 Date: Wed Dec 19 14:24:40 2007 +0100
48893
48894 ARM: s3c24xx: Multiple serial port support
48895
48896 This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
48897
48898 Signed-off-by: Harald Welte <laforge@openmoko.org>
48899
48900 commit a25f72f1f73a11de68251fb88c89991e202e68fa
48901 Author: Harald Welte <laforge@openmoko.org>
48902 Date: Wed Dec 19 14:16:57 2007 +0100
48903
48904 ARM: arm920t: Allow use of 'gd' pointer from IRQ
48905
48906 This patch allows us to use the 'gd' pointer (and thus environment
48907 and everything else associated with it) from interrupt context on
48908 arm920t.
48909
48910 Signed-off-by: Harald Welte <laforge@openmoko.org>
48911
48912 commit be19bd5cd0f454b63298844a0b5377e029b2caad
48913 Author: Harald Welte <laforge@openmoko.org>
48914 Date: Wed Dec 19 14:19:38 2007 +0100
48915
48916 ARM: arm920/s3c24xx: IRQ demulitplexer callback
48917
48918 This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
48919 plus a stub implementation of it for the S3C2410.
48920
48921 The purpose is to allow arm920t implementations such as the s3c24x0 to
48922 implement interrupt handlers in u-boot without having to touch core
48923 arm920t code.
48924
48925 Signed-off-by: Harald Welte <laforge@openmoko.org>
48926
48927 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
48928 Author: Hebbar <gururajakr@sanyo.co.in>
48929 Date: Tue Dec 18 16:03:07 2007 -0800
48930
48931 ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
48932
48933 Add ifdef to bdinfo command to display ethernet information
48934 only if CONFIG_CMD_NET is defined for arm modules.
48935
48936 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
48937
48938 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
48939 Author: Hebbar <gururajakr@sanyo.co.in>
48940 Date: Tue Dec 18 16:00:54 2007 -0800
48941
48942 ARM: add I2C init function call in lib_arm/board.c
48943
48944 Adds I2C init func call to init sequence for ARM boards. This is
48945 present in ppc,blackfin and other processor init sequence.
48946
48947 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
48948
48949 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
48950 Author: Stefan Roese <sr@denx.de>
48951 Date: Fri Feb 1 09:38:29 2008 +0100
48952
48953 ppc4xx: Fix ndfc HW ECC byte order
48954
48955 The current ndfc HW ECC implementation swaps the first two ECC bytes.
48956 But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
48957 so this swapping in the HW ECC driver is bogus. This patch fixes this
48958 problem and now really uses the SMC ECC byte order.
48959
48960 Thanks to Sean MacLennan for pointing this out.
48961
48962 Signed-off-by: Stefan Roese <sr@denx.de>
48963
48964 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
48965 Author: Stefan Roese <sr@denx.de>
48966 Date: Wed Jan 30 15:35:50 2008 +0100
48967
48968 ppc4xx: Fix GPIO configuration for pcs440ep
48969
48970 The SRD0_PFC0 register was not configured correctly to enable the GPIO's
48971 49-63 for GPIO. They have been configured as trace signals. This patch
48972 fixes this by clearing the corresponding bit.
48973
48974 Signed-off-by: Stefan Roese <sr@denx.de>
48975
48976 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
48977 Author: Stefan Roese <sr@denx.de>
48978 Date: Wed Jan 30 14:48:28 2008 +0100
48979
48980 ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
48981
48982 Signed-off-by: Stefan Roese <sr@denx.de>
48983
48984 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
48985 Author: Ladislav Michl <ladis@linux-mips.org>
48986 Date: Fri Dec 7 00:42:32 2007 +0100
48987
48988 ARM: Board voiceblue update
48989
48990 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
48991
48992 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
48993 Author: Ladislav Michl <ladis@linux-mips.org>
48994 Date: Thu Dec 6 23:24:57 2007 +0100
48995
48996 ARM: AT91RM9200 based boards config cleanup
48997
48998 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
48999
49000 Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
49001 indentation.
49002
49003 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
49004 Author: Ladislav Michl <ladis@linux-mips.org>
49005 Date: Thu Dec 6 22:59:16 2007 +0100
49006
49007 ARM: Fix at91rm9200dk base address
49008
49009 Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
49010 renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
49011 with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
49012 However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
49013 CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
49014 I'm sending this patch 4th (!) time in hope it produces at least some
49015 reaction.
49016
49017 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
49018
49019 Fix at91rm9200dk base and environment address.
49020
49021 commit c95219fae2a7add7daa2f91aedca65b1698465c7
49022 Author: stefano babic <sbabic@denx.de>
49023 Date: Tue Nov 20 10:40:24 2007 +0100
49024
49025 MMC for PXA 27X (resubmit)
49026
49027 MMC support for X_Scale PXA is broken and does not work.
49028 Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
49029 There were already some patches around the world but none of them was
49030 merged into the official u-boot tree.
49031
49032 This patch makes order fixing this issue. Resubmit after code cleanup.
49033
49034 Applied and tested on PXA 270 (TrizepsIV module).
49035
49036 Signed-off-by: Stefano Babic <sbabic@denx.de>
49037
49038 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
49039 Author: stefano babic <sbabic@denx.de>
49040 Date: Tue Nov 20 10:37:04 2007 +0100
49041
49042 Fix gcc issues in pxa-regs.h
49043
49044 Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
49045 issues generates wrong code.
49046 (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
49047 This patch fixes the problem and solves the gcc-4 issues as the linux
49048 kernel does.
49049
49050 Signed-off-by: Stefano Babic <sbabic@denx.de>
49051 Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
49052
49053 commit 7047b388876e7b905b2ec4edb8010543e3641b85
49054 Author: Jens Gehrlein <sew_s@tqs.de>
49055 Date: Tue Jan 29 08:45:03 2008 +0100
49056
49057 TQM834x: enable DHCP
49058
49059 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
49060 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49061
49062 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
49063 Author: Jens Gehrlein <sew_s@tqs.de>
49064 Date: Tue Jan 29 08:45:02 2008 +0100
49065
49066 TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
49067
49068 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
49069 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49070
49071 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
49072 Author: Ben Warren <biggerbadderben@gmail.com>
49073 Date: Sat Jan 26 23:41:19 2008 -0500
49074
49075 Fix conditional compilation of mpx8xxx_spi driver
49076
49077 This driver should only compile if CONFIG_MPC8XXX_SPI is set
49078
49079 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49080 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49081
49082 commit 63f732d3d3880feb531f48af247c025bf01462b0
49083 Author: Rafal Jaworowski <raj@semihalf.com>
49084 Date: Tue Jan 29 17:00:34 2008 +0100
49085
49086 API: Provide dummy halt() in the glue layer.
49087
49088 This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
49089
49090 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
49091
49092 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
49093 Author: Rafal Jaworowski <raj@semihalf.com>
49094 Date: Tue Jan 29 16:57:38 2008 +0100
49095
49096 API: Convert conditional building to the new scheme.
49097
49098 This fixes a build breakage with CONFIG_API enabled, which appeared after
49099 the recent changes in the U-Boot build system.
49100
49101 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
49102
49103 commit 98b742489c09780be6a832eeaa4e5eff824792bb
49104 Author: Wolfgang Denk <wd@denx.de>
49105 Date: Fri Jan 25 09:56:17 2008 +0100
49106
49107 inka4x0: remove dead code
49108
49109 Signed-off-by: Wolfgang Denk <wd@denx.de>
49110
49111 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
49112 Author: Becky Bruce <becky.bruce@freescale.com>
49113 Date: Wed Jan 23 16:31:06 2008 -0600
49114
49115 86xx: Add reginfo command
49116
49117 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49118
49119 commit ddcebcb638715a6278da93b553d5016f99823816
49120 Author: Becky Bruce <becky.bruce@freescale.com>
49121 Date: Wed Jan 23 16:31:05 2008 -0600
49122
49123 86xx: Add print_laws function to fsl_law.c
49124
49125 This can be used for debug, and will be used by board code
49126 to help implement reginfo.
49127
49128 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49129
49130 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
49131 Author: Becky Bruce <becky.bruce@freescale.com>
49132 Date: Wed Jan 23 16:31:04 2008 -0600
49133
49134 86xx: Remove old-style law setup code
49135
49136 This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
49137
49138 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49139
49140 commit 713d8186649dae874613d495b0cecaa039a98b30
49141 Author: Becky Bruce <becky.bruce@freescale.com>
49142 Date: Wed Jan 23 16:31:03 2008 -0600
49143
49144 86xx: Convert sbc8641d to use new law setup code.
49145
49146 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49147
49148 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
49149 Author: Becky Bruce <becky.bruce@freescale.com>
49150 Date: Wed Jan 23 16:31:02 2008 -0600
49151
49152 86xx: Convert mpc8610hpcd to new law setup method.
49153
49154 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49155
49156 commit 4933b91f8a49e436681f163df3173beb91cac44a
49157 Author: Becky Bruce <becky.bruce@freescale.com>
49158 Date: Wed Jan 23 16:31:01 2008 -0600
49159
49160 86xx: Support new law setup method and convert mpc8641
49161
49162 Adds the support code in cpu/mpc86xx for the new law setup code
49163 recently created fsl_law.c, and changes the MPC8641HPCN config
49164 to use this code.
49165
49166 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49167
49168 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
49169 Author: Becky Bruce <becky.bruce@freescale.com>
49170 Date: Wed Jan 23 16:31:00 2008 -0600
49171
49172 86xx: Rearrange the sequence in start.S
49173
49174 * split the BAT initialization so that only 2 BATs (for the boot page
49175 and stack) are programmed very early on. The rest are initialized later.
49176 * Move other BAT setup, ccsrbar setup, and law setup later in the code
49177 after translation has been enabled.
49178
49179 These changes will facilitate the moving of law and BAT initialization
49180 to C code, and will aid with 36-bit physical addressing support.
49181
49182 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49183
49184 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
49185 Author: Wolfgang Denk <wd@denx.de>
49186 Date: Wed Jan 23 14:41:37 2008 +0100
49187
49188 Coding Style Cleanup; update CHANGELOG
49189
49190 Signed-off-by: Wolfgang Denk <wd@denx.de>
49191
49192 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
49193 Author: Wolfgang Denk <wd@denx.de>
49194 Date: Wed Jan 23 14:31:17 2008 +0100
49195
49196 Coding Style Cleanup; update CHANGELOG
49197
49198 Signed-off-by: Wolfgang Denk <wd@denx.de>
49199
49200 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
49201 Author: Dave Liu <r63238@freescale.com>
49202 Date: Fri Jan 18 10:07:04 2008 +0800
49203
49204 mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
49205
49206 The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
49207 cause the 83xx immap broken, so the DMA and PCI will
49208 be failed.
49209
49210 The patch fix the struct spi8xxx and rm struct spi83xx.
49211
49212 Signed-off-by: Dave Liu <daveliu@freescale.com>
49213 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49214
49215 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
49216 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49217 Date: Sat Apr 14 17:11:49 2007 +0200
49218
49219 AVR32: ATNGW100 board support
49220
49221 Add support for the ATNGW100 Network Gateway reference design,
49222 including flash, ethernet and MMC support.
49223
49224 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49225
49226 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
49227 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49228 Date: Sat Nov 24 18:15:31 2007 +0100
49229
49230 AVR32: Initialize ipaddr, loadaddr and bootfile at startup
49231
49232 I don't know why the relevant layers can't do this by itself, but this
49233 is what ppc does.
49234
49235 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49236
49237 commit 799891ef7b1b3432032ec23466df6b665a797fa4
49238 Author: Michael Schwingen <michael@schwingen.org>
49239 Date: Fri Jan 18 00:04:28 2008 +0100
49240
49241 Add AcTux board support
49242
49243 Hi,
49244
49245 The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
49246 files that
49247 contain changes for multiple boards, the board-specific files follow as
49248 separate patches.
49249
49250 Signed-off-by: Michael Schwingen <michael@schwingen.org>
49251
49252 commit 66a4344a4d910a11125df7768899ad529719855e
49253 Author: Michael Schwingen <michael@schwingen.org>
49254 Date: Wed Jan 16 19:53:23 2008 +0100
49255
49256 add AcTux-4 board support
49257
49258 Signed-off-by: Michael Schwingen <michael@schwingen.org>
49259
49260 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
49261 Author: Michael Schwingen <michael@schwingen.org>
49262 Date: Wed Jan 16 19:51:55 2008 +0100
49263
49264 add AcTux-3 board support
49265
49266 Signed-off-by: Michael Schwingen <michael@schwingen.org>
49267
49268 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
49269 Author: Michael Schwingen <michael@schwingen.org>
49270 Date: Wed Jan 16 19:51:14 2008 +0100
49271
49272 add AcTux-2 board support
49273
49274 Signed-off-by: Michael Schwingen <michael@schwingen.org>
49275
49276 commit ea99e8f05b7240fd657739e286664664ae160abe
49277 Author: Michael Schwingen <michael@schwingen.org>
49278 Date: Wed Jan 16 19:50:37 2008 +0100
49279
49280 add AcTux-1 board support
49281
49282 Signed-off-by: Michael Schwingen <michael@schwingen.org>
49283
49284 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
49285 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49286 Date: Mon Jan 14 19:20:08 2008 +0100
49287
49288 ARM: remove useless function board_post_init
49289
49290 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49291
49292 commit 96bd462942022e4569b582c072a0ed26de1cd19b
49293 Author: Michael Schwingen <michael@schwingen.org>
49294 Date: Thu Jan 10 14:59:46 2008 +0100
49295
49296 IXP: enable RTS
49297
49298 enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
49299 No handshaking is done, but the active RTS signal allows to
49300 connect to the target using a PC which is using RTS/CTS
49301 handshake, and does no harm if the PC is set to ignore RTS.
49302
49303 Signed-off-by: Michael Schwingen <michael@schwingen.org>
49304
49305 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
49306 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49307 Date: Mon Jan 7 08:41:34 2008 +0100
49308
49309 IXP: add dynamic microcode addr
49310
49311 allow to load the microde from flash or ram by download it through
49312 the serial or other.
49313
49314 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49315 Acked-by: Stefan Roese <sr@denx.de>
49316
49317 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
49318 Author: Michael Schwingen <michael@schwingen.org>
49319 Date: Sat Nov 10 15:44:12 2007 +0100
49320
49321 load ixp42x NPE firmware from separate flash block, remove dead code
49322
49323 Hi,
49324
49325 the following patch adds support to move the IXP42X NPE firmware to a
49326 separate flash block, whose start address is defined in
49327 CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
49328 NPE-enabled u-boot without copyright problems due to the NPE firmware.
49329
49330 I hope the patch applies, I get whitespace-related differences in the NPE
49331 files due to trailing whitespace in the original versions.
49332
49333 Signed-off-by: Michael Schwingen <michael@schwingen.org>
49334 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49335
49336 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
49337 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49338 Date: Tue Jan 15 14:15:46 2008 -0600
49339
49340 ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
49341
49342 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49343 Signed-off by: John Rigby <jrigby@freescale.com>
49344
49345 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
49346 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49347 Date: Tue Jan 15 14:02:49 2008 -0600
49348
49349 ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
49350
49351 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49352 Signed-off by: John Rigby <jrigby@freescale.com>
49353
49354 commit 777d1abd9796f1c2e148417cc10657e847d318ce
49355 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49356 Date: Tue Jan 15 14:00:25 2008 -0600
49357
49358 ColdFire: Add MCF547x_8x FEC driver
49359
49360 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49361 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49362 Signed-off by: John Rigby <jrigby@freescale.com>
49363
49364 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
49365 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49366 Date: Tue Jan 15 13:54:09 2008 -0600
49367
49368 ColdFire: Add MCF547x_8x dma code and header files
49369
49370 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49371 Signed-off by: John Rigby <jrigby@freescale.com>
49372
49373 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
49374 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49375 Date: Tue Jan 15 13:52:03 2008 -0600
49376
49377 ColdFire: Add MCF547x_8x dma code - 2
49378
49379 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49380 Signed-off by: John Rigby <jrigby@freescale.com>
49381
49382 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
49383 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49384 Date: Tue Jan 15 13:48:52 2008 -0600
49385
49386 ColdFire: Add MCF547x_8x dma code - 1
49387
49388 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49389 Signed-off by: John Rigby <jrigby@freescale.com>
49390
49391 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
49392 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49393 Date: Tue Jan 15 13:39:44 2008 -0600
49394
49395 ColdFire: Add MCF547x_8x related header files
49396
49397 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49398 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49399 Signed-off by: John Rigby <jrigby@freescale.com>
49400
49401 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
49402 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49403 Date: Tue Jan 15 13:37:34 2008 -0600
49404
49405 ColdFire: Add MCF547x_8x cpu arch
49406
49407 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49408 Signed-off by: John Rigby <jrigby@freescale.com>
49409
49410 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
49411 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49412 Date: Mon Jan 14 17:47:23 2008 -0600
49413
49414 ColdFire: Add MCF5227x cpu and M52277EVB support-3
49415
49416 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49417 Signed-off by: John Rigby <jrigby@freescale.com>
49418
49419 commit c87581027994c148131b2f11aa75501f782ec19a
49420 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49421 Date: Mon Jan 14 17:46:19 2008 -0600
49422
49423 ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
49424
49425 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49426 Signed-off by: John Rigby <jrigby@freescale.com>
49427
49428 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
49429 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49430 Date: Mon Jan 14 17:43:33 2008 -0600
49431
49432 ColdFire: Add MCF5227x cpu and M52277EVB support-1
49433
49434 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49435 Signed-off by: John Rigby <jrigby@freescale.com>
49436
49437 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
49438 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49439 Date: Mon Jan 14 17:35:44 2008 -0600
49440
49441 ColdFire: Fix CFI Flash low level Read/Write macro
49442
49443 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49444 Signed-off by: John Rigby <jrigby@freescale.com>
49445
49446 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
49447 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49448 Date: Mon Jan 14 17:23:08 2008 -0600
49449
49450 ColdFire: Add M5373EVB platform support - 2
49451
49452 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49453 Signed-off by: John Rigby <jrigby@freescale.com>
49454
49455 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
49456 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49457 Date: Mon Jan 14 17:19:54 2008 -0600
49458
49459 ColdFire: Add M5373EVB platform support - 1
49460
49461 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49462 Signed-off by: John Rigby <jrigby@freescale.com>
49463
49464 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
49465 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49466 Date: Mon Jan 14 17:17:03 2008 -0600
49467
49468 ColdFire: Update FlexBus CS for MCF532x
49469
49470 Definition update and change from 16bit to 32bit
49471
49472 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49473 Signed-off by: John Rigby <jrigby@freescale.com>
49474
49475 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
49476 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49477 Date: Mon Jan 14 17:11:47 2008 -0600
49478
49479 ColdFire: PCI and misc updates for MCF5445x
49480
49481 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49482 Signed-off by: John Rigby <jrigby@freescale.com>
49483
49484 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
49485 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49486 Date: Mon Jan 14 17:06:55 2008 -0600
49487
49488 ColdFire: MCF5445x header files cleanup
49489
49490 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49491 Signed-off by: John Rigby <jrigby@freescale.com>
49492
49493 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
49494 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49495 Date: Mon Jan 14 16:59:42 2008 -0600
49496
49497 ColdFire: MCF532x header files cleanup
49498
49499 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49500 Signed-off by: John Rigby <jrigby@freescale.com>
49501
49502 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
49503 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49504 Date: Mon Jan 14 15:30:15 2008 -0600
49505
49506 ColdFire: Add modules header files
49507
49508 Add CF specific modules header files
49509
49510 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49511 Signed-off-by: John Rigby <jrigby@freescale.com>
49512
49513 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
49514 Author: Kim Phillips <kim.phillips@freescale.com>
49515 Date: Thu Jan 17 12:48:00 2008 -0600
49516
49517 codingstyle cleanup for spi driver
49518
49519 ..and rm unused CONFIG_FSL_SPI define
49520
49521 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49522
49523 commit d59feffb42c9f174116db7a82a311df98983dfce
49524 Author: Haiying Wang <Haiying.Wang@freescale.com>
49525 Date: Wed Jan 16 17:12:12 2008 -0500
49526
49527 FSL: Fix common EEPROM_data structure definition
49528
49529 - Fix EEPROM_data structure definition according to System EEPROM Data Format.
49530 - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
49531 bd->bi_ethaddr.
49532
49533 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
49534
49535 commit 6bee764bd6da510a4aad614880300c968bc7318d
49536 Author: Timur Tabi <timur@freescale.com>
49537 Date: Wed Jan 16 15:48:12 2008 -0600
49538
49539 86xx: enable command-line editing
49540
49541 Enable command-line editing for all MPC86xx boards.
49542
49543 Signed-off-by: Timur Tabi <timur@freescale.com>
49544
49545 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
49546 Author: Ben Warren <biggerbadderben@gmail.com>
49547 Date: Wed Jan 16 22:37:42 2008 -0500
49548
49549 Implement hard SPI driver on MPC8349EMDS
49550
49551 This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
49552 This board has an ST M25P40 4Mbit EEPROM on its SPI bus
49553
49554 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49555 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49556
49557 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
49558 Author: Ben Warren <biggerbadderben@gmail.com>
49559 Date: Wed Jan 16 22:37:35 2008 -0500
49560
49561 Add support for a Freescale non-CPM SPI controller
49562
49563 This patch adds support for the SPI controller found on Freescale PowerPC
49564 processors such as the MCP834x family. Additionally, a new config option,
49565 CONFIG_HARD_SPI, is added for general purpose SPI controller use.
49566
49567 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49568 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49569
49570 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
49571 Author: Dave Liu <r63238@freescale.com>
49572 Date: Thu Jan 17 18:23:19 2008 +0800
49573
49574 mpc83xx: Fix the fatal conflict of merge
49575
49576 The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
49577 will cause the mpc8315erdb board can't boot up.
49578
49579 The patch fix that bug, and remove the duplicated #ifdef
49580 CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
49581 MPC8313E processor.
49582
49583 Signed-off-by: Dave Liu <daveliu@freescale.com>
49584 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49585
49586 commit 3259eeaa4148125a81417477f62c05bd67f60587
49587 Author: Larry Johnson <lrj@acm.org>
49588 Date: Thu Jan 17 08:50:09 2008 -0500
49589
49590 Merge Sequoia beautification into Korat code
49591
49592 Signed-off-by: Larry Johnson <lrj@acm.org>
49593
49594 commit e16925773211291b562e77187061e9dd1d757217
49595 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49596 Date: Thu Jan 17 07:45:05 2008 +0100
49597
49598 net: add 'ethrotate' environment variable
49599
49600 [PATCH] net: add 'ethrotate' environment variable
49601
49602 This patch replaces the buildtime configuration option
49603 CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
49604 configuration veriable. See README.
49605
49606 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49607 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49608
49609 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
49610 Author: Stefan Roese <sr@denx.de>
49611 Date: Thu Jan 17 14:29:04 2008 +0100
49612
49613 ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
49614
49615 Signed-off-by: Stefan Roese <sr@denx.de>
49616
49617 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
49618 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49619 Date: Thu Jan 17 18:07:32 2008 +0900
49620
49621 sh: Remove CONFIG_COMMANDS from MS7720SE config file
49622
49623 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49624
49625 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
49626 Author: Niklaus Giger <niklaus.giger@netstal.com>
49627 Date: Wed Jan 16 18:39:20 2008 +0100
49628
49629 ppc4xx: Netstal HCU4 board: added various fixes and POST
49630
49631 - Moved some common code to netstal/common/nm_bsp.c.
49632 - sdram initialisation goes go netstal/common/fixed_sdram.c.
49633 - Added support for POST.
49634 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
49635
49636 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49637
49638 commit 69b0634a4ee98c9791815600d43b99f626a952f3
49639 Author: Niklaus Giger <niklaus.giger@netstal.com>
49640 Date: Thu Jan 17 12:53:56 2008 +0100
49641
49642 ppc4xx: netstal/common define routines used by all boards
49643
49644 Added some routines used by all Netstal boards:
49645 - nm_bsp.c: - nm_show_print and
49646 - common_misc_init_r
49647 - set_params_for_sw_install. Very specific code to handle our SW
49648 installation procedure
49649 - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
49650 to handle sdram initialization.
49651 - nm.h: Common header
49652
49653 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49654
49655 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
49656 Author: Niklaus Giger <niklaus.giger@netstal.com>
49657 Date: Wed Jan 16 18:39:18 2008 +0100
49658
49659 ppc4xx: Netstal HCU5 board: added various fixes and POST
49660
49661 - Moved some common code to nestal/common/nm_bsp.c.
49662 - Added support for the vxWorks EDR.
49663 - Enable trace for Lauterbach, if present.
49664 - Added support for POST.
49665 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
49666
49667 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49668
49669 commit 4371090e5da77edc7bf9f296364db4801639d9c4
49670 Author: Niklaus Giger <niklaus.giger@netstal.com>
49671 Date: Wed Jan 16 18:39:08 2008 +0100
49672
49673 ppc4xx: Netstal HCU5 board. Added POST. Various fixes
49674
49675 - Various fixes
49676 - Reduced rom_size from 384 to 320 kB
49677 - Environment is now in flash
49678 - Added POST
49679 - Support for OF
49680
49681 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49682
49683 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
49684 Author: Niklaus Giger <niklaus.giger@netstal.com>
49685 Date: Wed Jan 16 18:37:50 2008 +0100
49686
49687 ppc4xx: Netstal HCU4 board. Added POST. Various fixes
49688
49689 - Various fixes
49690 - Reduced rom_size from 384 to 320 kB
49691 - Environment is now in flash
49692 - Added POST
49693 - Support for OF
49694
49695 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49696
49697 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
49698 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49699 Date: Thu Jan 17 10:53:08 2008 +0100
49700
49701 ppc4xx: Complete DU440 board support
49702
49703 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49704
49705 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
49706 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49707 Date: Thu Jan 17 10:52:30 2008 +0100
49708
49709 ppc4xx: Add DU440 board support
49710
49711 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49712
49713 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
49714 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49715 Date: Thu Jan 17 15:53:52 2008 +0900
49716
49717 sh: Update SuperH SCIF driver
49718
49719 This patch fixed wrong SH7720 CPU macro and changed macro that
49720 calculated value of SCBRR register.
49721
49722 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49723
49724 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
49725 Author: Grzegorz Bernacki <gjb@semihalf.com>
49726 Date: Wed Jan 16 15:12:47 2008 +0100
49727
49728 Set ips dividor to 1/4 of csb clock.
49729
49730 Previous setting cause ips clock to be out of spec. This bug was found by John
49731 Rigby from Freescale.
49732
49733 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
49734
49735 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
49736 Author: Kumar Gala <galak@kernel.crashing.org>
49737 Date: Thu Jan 17 02:19:18 2008 -0600
49738
49739 85xx: Get ride of old TLB setup code
49740
49741 Now that all boards have been converted, remove old config code and the
49742 config option for the new style.
49743
49744 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49745
49746 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
49747 Author: Kumar Gala <galak@kernel.crashing.org>
49748 Date: Thu Jan 17 02:02:10 2008 -0600
49749
49750 85xx: Convert TQM85xx to new TLB setup
49751
49752 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49753
49754 commit 74121b470c14f7eaf284ee838bffca6f9521069e
49755 Author: Kumar Gala <galak@kernel.crashing.org>
49756 Date: Thu Jan 17 01:56:32 2008 -0600
49757
49758 85xx: Convert STXGP3 & STXSSA to new TLB setup
49759
49760 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49761
49762 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
49763 Author: Kumar Gala <galak@kernel.crashing.org>
49764 Date: Thu Jan 17 01:44:34 2008 -0600
49765
49766 85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
49767
49768 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49769
49770 commit 818218bac6a11591e2542c344d2330e0f4e1968b
49771 Author: Kumar Gala <galak@kernel.crashing.org>
49772 Date: Thu Jan 17 01:31:34 2008 -0600
49773
49774 85xx: Convert PM854/PM856 to new TLB setup
49775
49776 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49777
49778 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
49779 Author: Kumar Gala <galak@kernel.crashing.org>
49780 Date: Thu Jan 17 01:25:33 2008 -0600
49781
49782 85xx: Convert MPC8540EVAL to new TLB setup
49783
49784 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49785
49786 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
49787 Author: Kumar Gala <galak@kernel.crashing.org>
49788 Date: Thu Jan 17 01:12:22 2008 -0600
49789
49790 85xx: Convert MPC8568 MDS to new TLB setup
49791
49792 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49793
49794 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
49795 Author: Kumar Gala <galak@kernel.crashing.org>
49796 Date: Thu Jan 17 01:01:09 2008 -0600
49797
49798 85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
49799
49800 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49801
49802 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
49803 Author: Kumar Gala <galak@kernel.crashing.org>
49804 Date: Thu Jan 17 00:52:29 2008 -0600
49805
49806 85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
49807
49808 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49809
49810 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
49811 Author: Kumar Gala <galak@kernel.crashing.org>
49812 Date: Thu Jan 17 00:32:17 2008 -0600
49813
49814 85xx: Convert ATUM8548 to new TLB setup
49815
49816 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49817
49818 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
49819 Author: Kumar Gala <galak@kernel.crashing.org>
49820 Date: Wed Jan 16 23:11:57 2008 -0600
49821
49822 85xx: Convert MPC8544 DS to new TLB setup
49823
49824 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49825
49826 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
49827 Author: Kumar Gala <galak@kernel.crashing.org>
49828 Date: Wed Jan 16 22:38:34 2008 -0600
49829
49830 85xx: Reworked initial processor init
49831
49832 Reworked the initial processor initialzation sequence:
49833 * introduced cpu_early_init_f that is run in address space 1 (AS=1)
49834 * Moved TLB/LAW and CCSR init into cpu_early_init_f()
49835 * Reworked initial asm code to do most of the core init before TLBs
49836
49837 The main reasons for these changes are to allow handling of 36-bit phys
49838 addresses in the future and some of the issues that will exist when we
49839 do that.
49840
49841 There are a few caveats on what can be initialized via the LAW and TLB
49842 static tables:
49843 * TLB entry 14/15 can't be initialized via the TLB table
49844 * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
49845 the code that is currently executing.
49846
49847 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49848
49849 commit 44a23cfd6360a68eaa41f945190618a55519eac3
49850 Author: Kumar Gala <galak@kernel.crashing.org>
49851 Date: Wed Jan 16 22:33:22 2008 -0600
49852
49853 85xx: Introduce new tlb API
49854
49855 Add a set of functions to manipulate TLB entries:
49856 * set_tlb() - write a tlb entry
49857 * invalidate_tlb() - invalidate a tlb array
49858 * disable_tlb() - disable a variable size tlb entry
49859 * init_tlbs() - setup initial tlbs based on static table
49860
49861 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49862
49863 commit be88b1699863c262818f3af7f60173b4d48df8fc
49864 Author: Stefan Roese <sr@denx.de>
49865 Date: Thu Jan 17 07:50:17 2008 +0100
49866
49867 ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
49868
49869 Signed-off-by: Stefan Roese <sr@denx.de>
49870
49871 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
49872 Author: Kumar Gala <galak@kernel.crashing.org>
49873 Date: Wed Jan 16 10:04:42 2008 -0600
49874
49875 85xx: Use proper defines for PCI addresses
49876
49877 We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
49878 While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
49879 be used for configuring the PCI ATMU.
49880
49881 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49882
49883 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
49884 Author: Kumar Gala <galak@kernel.crashing.org>
49885 Date: Wed Jan 16 09:22:29 2008 -0600
49886
49887 85xx: Remove old style of LAW init
49888
49889 All boards are now using the new fsl_law code so we can drop the old version.
49890
49891 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49892
49893 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
49894 Author: Kumar Gala <galak@kernel.crashing.org>
49895 Date: Wed Jan 16 09:15:29 2008 -0600
49896
49897 85xx: convert remaining 85xx boards over to use new LAW init code
49898
49899 Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
49900 to use new LAW init code.
49901
49902 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49903
49904 commit 572b13afc42710f2957c382a710360429c0e099b
49905 Author: Kumar Gala <galak@kernel.crashing.org>
49906 Date: Wed Jan 16 09:11:53 2008 -0600
49907
49908 85xx: convert STXGP3/STXSSA over to use new LAW init code
49909
49910 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49911
49912 commit 45f2166ac0233a9263058378f39612bd11f61196
49913 Author: Kumar Gala <galak@kernel.crashing.org>
49914 Date: Wed Jan 16 09:06:48 2008 -0600
49915
49916 85xx: convert PM854/PM856 over to use new LAW init code
49917
49918 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49919
49920 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
49921 Author: Kumar Gala <galak@kernel.crashing.org>
49922 Date: Wed Jan 16 09:05:27 2008 -0600
49923
49924 85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
49925
49926 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49927
49928 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
49929 Author: Kumar Gala <galak@kernel.crashing.org>
49930 Date: Wed Jan 16 01:45:10 2008 -0600
49931
49932 85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
49933
49934 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49935
49936 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
49937 Author: Kumar Gala <galak@kernel.crashing.org>
49938 Date: Wed Jan 16 01:32:06 2008 -0600
49939
49940 85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
49941
49942 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49943
49944 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
49945 Author: Kumar Gala <galak@kernel.crashing.org>
49946 Date: Wed Jan 16 01:16:16 2008 -0600
49947
49948 85xx: convert MPC8544 DS over to use new LAW init code
49949
49950 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49951
49952 commit 83d40dfd79fe868796275802f60116d84b9e4395
49953 Author: Kumar Gala <galak@kernel.crashing.org>
49954 Date: Wed Jan 16 01:13:58 2008 -0600
49955
49956 85xx: Move LAW init code into C
49957
49958 Move the initialization of the LAWs into C code and provide an API
49959 to allow modification of LAWs after init.
49960
49961 Board code is responsible to provide a law_table and num_law_entries.
49962
49963 We should be able to use the same code on 86xx as well.
49964
49965 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49966
49967 commit bed8ce838a609aaab136d43b25e6df2a520bc854
49968 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49969 Date: Sat Dec 22 15:03:12 2007 +0100
49970
49971 qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
49972
49973 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49974
49975 commit 0764c164fed6277d359cf132d55187ea34290114
49976 Author: Vlad Lungu <vlad@comsys.ro>
49977 Date: Wed Jan 16 19:27:51 2008 +0200
49978
49979 MIPS:Target support for qemu -M mips
49980
49981 With serial, NE2000, IDE support. Tested in big-endian mode.
49982 Memory size hard-coded to 128M for now, so don't play with
49983 the -m option.
49984
49985 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
49986
49987 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
49988 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49989 Date: Fri Jan 11 00:01:37 2008 +0100
49990
49991 Fix nfs command help to reflect that the serverip is optional
49992
49993 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49994 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49995
49996 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
49997 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49998 Date: Mon Dec 10 22:32:14 2007 +0100
49999
50000 bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
50001
50002 and move is_valid_ether_addr board file
50003
50004 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50005 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50006
50007 commit c2f896b8fc4722e36915903e1942e138e68ce804
50008 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50009 Date: Wed Jan 16 16:13:31 2008 +0900
50010
50011 drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
50012
50013 rx_status on the memory is basically in LE, but needs to be handled in CPU
50014 endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
50015 it'll work fine.
50016
50017 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50018 Cc: Masami Komiya <mkomiya@sonare.it>
50019 Cc: Lucas Jin <lucasjin@gmail.com>
50020 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50021
50022 commit 96a236746fe6a7b84802afb4ed31536696d34812
50023 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50024 Date: Wed Jan 16 16:12:26 2008 +0900
50025
50026 drivers/net/rtl8139.c: Fix cache coherency issues
50027
50028 Current driver is meant for cache coherent systems. This patch adds
50029 flush_cache() routines to support cache non-coherent systems.
50030
50031 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50032 Cc: Masami Komiya <mkomiya@sonare.it>
50033 Cc: Lucas Jin <lucasjin@gmail.com>
50034 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50035
50036 commit d1276c76c1e2b5035296689280ba1acb2c425104
50037 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50038 Date: Wed Jan 16 16:11:14 2008 +0900
50039
50040 drivers/net/rtl8139.c: Fix tx timeout
50041
50042 "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
50043 does, the condition "(currticks() < to)" becomes invalid and immediately
50044 leads to tx timeout error. This patch introduces the fine-graded udely(10)
50045 loops to ease the impact of wrapping around.
50046
50047 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50048 Cc: Masami Komiya <mkomiya@sonare.it>
50049 Cc: Lucas Jin <lucasjin@gmail.com>
50050 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50051
50052 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
50053 Author: Dave Liu <r63238@freescale.com>
50054 Date: Fri Jan 11 18:45:28 2008 +0800
50055
50056 TSEC: Add the support for RealTek RTL8211B PHY
50057
50058 Add the support of RealTek RTL8211B PHY, the RTL8211B
50059 PHY only supports RGMII and MII mode.
50060
50061 Signed-off-by: Dave Liu <daveliu@freescale.com>
50062 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50063
50064 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
50065 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
50066 Date: Wed Jan 16 09:40:41 2008 +0100
50067
50068 Remove annoying debug printout for PHY less boards.
50069
50070 PHY less board prints out lots of "read wrong ...":
50071 read wrong value : mii_id 3,mii_reg 2, base e0102320
50072 read wrong value : mii_id 3,mii_reg 3, base e0102320
50073 UEC: PHY is Generic MII (ffffffff)
50074 read wrong value : mii_id 3,mii_reg 4, base e0102320
50075 read wrong value : mii_id 3,mii_reg 0, base e0102320
50076 read wrong value : mii_id 3,mii_reg 1, base e0102320
50077 read wrong value : mii_id 3,mii_reg 1, base e0102320
50078 read wrong value : mii_id 3,mii_reg 5, base e0102320
50079 read wrong value : mii_id 3,mii_reg 1, base e0102320
50080 read wrong value : mii_id 3,mii_reg 1, base e0102320
50081 read wrong value : mii_id 3,mii_reg 5, base e0102320
50082 FSL UEC0: Full Duplex
50083 FSL UEC0: Speed 100BT
50084 FSL UEC0: Link is up
50085 Using FSL UEC0 device
50086
50087 Make this printout depend on UEC_VERBOSE_DEBUG and
50088 remove its definition in uec_phy.c
50089
50090 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
50091 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50092
50093 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
50094 Author: Kim Phillips <kim.phillips@freescale.com>
50095 Date: Tue Jan 15 14:11:00 2008 -0600
50096
50097 net: reduce boot latency on QE UEC based boards
50098
50099 actually polling for PHY autonegotiation to finish enables us to remove the
50100 5 second boot prompt latency present on QE based boards.
50101
50102 call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
50103 uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
50104 code shamelessly stolen from tsec driver.
50105
50106 also rm unused CONFIG_RMII_MODE code.
50107
50108 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50109 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
50110 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50111
50112 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
50113 Author: michael.firth@bt.com <michael.firth@bt.com>
50114 Date: Wed Jan 16 11:40:51 2008 +0000
50115
50116 TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
50117
50118 The current TSEC driver limits MDIO access to the devices that have been configured as attached
50119 to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
50120
50121 Signed-off-by: Michael Firth <michael.firth@bt.com>
50122 Acked-by: Andy Fleming <afleming@freescale.com>
50123 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50124
50125 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
50126 Author: Kim Phillips <kim.phillips@freescale.com>
50127 Date: Wed Jan 16 00:38:05 2008 -0600
50128
50129 Add support for the MPC837xERDB
50130
50131 MPC837xERDB board support includes:
50132 * DDR2 330MHz hardcoded (soldered on the board)
50133 * Local Bus NOR Flash
50134 * I2C, UART and RTC
50135 * eTSEC RGMII (TSEC0 - RTL8211B with MII;
50136 * TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
50137 * load)
50138
50139 Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
50140 Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
50141 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50142
50143 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
50144 Author: Kim Phillips <kim.phillips@freescale.com>
50145 Date: Wed Jan 16 12:06:16 2008 -0600
50146
50147 mpc83xx: add support for more system clock performance controls
50148
50149 System registers that are modified are the Arbiter Configuration
50150 Register (ACR), the System Priority Control Register (SPCR), and the
50151 System Clock Configuration Register (SCCR).
50152
50153 Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
50154 Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
50155 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50156
50157 commit 16c3cde050e2d243e62b37486f1558570787beb8
50158 Author: James Yang <james.yang@freescale.com>
50159 Date: Wed Jan 16 11:58:08 2008 -0600
50160
50161 FSL: Generalize PIXIS reset command parsing.
50162
50163 Before, the order of arguments to the pixis_reset
50164 command needed to be supplied in a hard-coded order.
50165 Generalize the command parsing to allow any order.
50166
50167 Signed-off-by: James Yang <james.yang@freescale.com>
50168 Acked-by: Jon Loeliger <jdl@freescale.com>
50169
50170 commit ad8f8687b78c3e917b173f038926695383c55555
50171 Author: Jon Loeliger <jdl@freescale.com>
50172 Date: Tue Jan 15 13:42:41 2008 -0600
50173
50174 FSL: Convert board/freescale/common/Makefile to use CONFIG_
50175
50176 Convert the board/freescale/common/Makefile to use
50177 CONFIG_* options to select which files to conditionally
50178 compile into the board/freescale/common library rather
50179 than conditionally compiling entire files.
50180
50181 Now handles::
50182 CONFIG_FSL_PIXIS
50183 CONFIG_FSL_DIU_FB
50184 CONFIG_PQ_MDS_PIB
50185
50186 CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
50187
50188 Signed-off-by: Jon Loeliger <jdl@freescale.com>
50189
50190 commit 7c2221eb230372a9e537c4f6636b147b0909325f
50191 Author: Roy Zang <tie-fei.zang@freescale.com>
50192 Date: Tue Jan 15 16:38:38 2008 +0800
50193
50194 Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
50195
50196 Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
50197 Remove unused ethernet CONFIG_ options.
50198
50199 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
50200 Acked-by: Jon Loeliger <jdl@freescale.com>
50201
50202 commit 711a7946277d2e29af481011e8635e9975c54e45
50203 Author: Kim Phillips <kim.phillips@freescale.com>
50204 Date: Tue Jan 15 14:05:14 2008 -0600
50205
50206 mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
50207
50208 continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
50209
50210 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50211
50212 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
50213 Author: Kim Phillips <kim.phillips@freescale.com>
50214 Date: Tue Jan 15 09:51:12 2008 -0600
50215
50216 mpc83xx: clean up mpc8360emds.c warnings
50217
50218 mpc8360emds.c: In function 'ft_board_setup':
50219 mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
50220 mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
50221 mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
50222 mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
50223 mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
50224 mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
50225
50226 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50227
50228 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
50229 Author: Kim Phillips <kim.phillips@freescale.com>
50230 Date: Mon Jan 14 16:14:46 2008 -0600
50231
50232 mpc83xx: fix phy-connection-type fixup code
50233
50234 use tree passed to us in local blob, not global fdt.
50235
50236 Also use fdt_path_offset to convert to relative offset, since absolute
50237 reference is needed to check for rgmii-id mode string value.
50238
50239 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50240
50241 commit 2b4c952be7c4357a13e839d48df80853820c33eb
50242 Author: Kumar Gala <galak@kernel.crashing.org>
50243 Date: Mon Jan 14 09:01:40 2008 -0600
50244
50245 mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
50246
50247 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50248 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50249
50250 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
50251 Author: Poonam Aggrwal <b10812@freescale.com>
50252 Date: Mon Jan 14 09:41:14 2008 +0530
50253
50254 Changes in uboot DDR configuration for MPC8313eRDB
50255
50256 These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
50257 DDR configuration in u-boot code. Some are related to performance, some
50258 affect stability and some correct few basic errors in the current
50259 configuration.
50260
50261 The changes have been tested and found to give better memory latency
50262 figures on MPC8313eRDB.LMBench figures prove it.
50263
50264 The changes are:
50265
50266 - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
50267 (this may improve performance for application with many read
50268 or write to open pages).
50269 - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
50270 001 (activating all the CS when only one is used may cause
50271 unwanted noise on the system)
50272
50273 - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
50274 Tras=45ns)
50275 - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
50276
50277 - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
50278 comply with the 3 ODT clk requirements)
50279 - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
50280 - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
50281
50282 - DDR_SDRAM_MODE[AL]changed from 0 to 1.
50283 - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
50284
50285 - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
50286 - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
50287
50288 The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
50289 The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
50290
50291 Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
50292 Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
50293 Cc: Razzaz Mazyar <MRazzaz@freescale.com>
50294 Cc: Josep P J <PJ.Joseph@freescale.com>
50295 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50296
50297 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
50298 Author: Jerry Van Baren <gvb.uboot@gmail.com>
50299 Date: Sat Jan 12 13:24:14 2008 -0500
50300
50301 Enable the isdram command on the MPC8360EMDS board
50302
50303 The isdram command prints out decoded information the "serial presence
50304 detect" (SPD) chip on the SDRAM SIMMs. This can be very helpful when
50305 debugging memory configuration problems.
50306
50307 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50308 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50309
50310 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
50311 Author: Dave Liu <r63238@freescale.com>
50312 Date: Fri Jan 11 18:48:24 2008 +0800
50313
50314 mpc83xx: Add the support for MPC8315ERDB board
50315
50316 The features list:
50317 - Boot from NOR Flash
50318 - DDR2 266MHz hardcoded configuration
50319 - Local bus NOR Flash R/W operation
50320 - I2C, UART, MII and RTC
50321 - eTSEC0/1 support
50322 - PCI host
50323
50324 Signed-off-by: Dave Liu <daveliu@freescale.com>
50325 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50326
50327 commit b05884efa614e4d8a9413158fc228e0dc02ab704
50328 Author: Dave Liu <r63238@freescale.com>
50329 Date: Fri Jan 11 18:46:50 2008 +0800
50330
50331 mpc83xx: Add config of eTSEC emergency priority in SPCR
50332
50333 The TSEC emergency priority definition of 831x/837x
50334 is different than the definition of 834x in SPCR register.
50335
50336 Add the other config of TSEC emergency priority into
50337 cpu_init.c
50338
50339 Signed-off-by: Dave Liu <daveliu@freescale.com>
50340 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50341
50342 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
50343 Author: Dave Liu <r63238@freescale.com>
50344 Date: Fri Jan 11 18:42:19 2008 +0800
50345
50346 mpc83xx: Remove cache config from MPC8360ERDK.h
50347
50348 The MPC8360ERDK board support patch is added before
50349 the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
50350 so, miss clean up it.
50351
50352 The patch clean up the miss cache config.
50353
50354 Signed-off-by: Dave Liu <daveliu@freescale.com>
50355 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50356
50357 commit cd9d23053d435c08fc8695017b5cb9003fcda786
50358 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50359 Date: Mon Jan 14 23:09:32 2008 +0300
50360
50361 nand: FSL UPM NAND driver
50362
50363 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50364
50365 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
50366 Author: Kyungmin Park <kmpark@infradead.org>
50367 Date: Tue Jan 15 08:59:44 2008 +0900
50368
50369 OneNAND: Separate U-Boot dependent code from OneNAND
50370
50371 OneNAND: Separate U-Boot dependent code from OneNAND
50372
50373 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
50374
50375 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
50376 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50377 Date: Wed Jan 16 10:33:46 2008 +0100
50378
50379 ppc4xx: Sequoia coding style cleanup and beautification
50380
50381 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50382
50383 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
50384 Author: Larry Johnson <lrj@acm.org>
50385 Date: Tue Jan 15 14:35:58 2008 -0500
50386
50387 ppc4xx: Refactor ECC POST for AMCC Denali core
50388
50389 The ECC POST reported intermittent failures running after power-up on
50390 the Korat PPC440EPx board. Even when the test passed, the debugging
50391 output occasionally reported additional unexpected ECC errors.
50392
50393 This refactoring has three main objectives: (1) minimize the code
50394 executed with ECC enabled during the tests, (2) add more checking of the
50395 results so any unexpected ECC errors would cause the test to fail, and
50396 (3) use synchronization (only) where required by the processor.
50397
50398 Signed-off-by: Larry Johnson <lrj@acm.org>
50399
50400 commit 2465665b73ac2f688af945b1ed510752afa816a4
50401 Author: David Saada <David.Saada@ecitele.com>
50402 Date: Tue Jan 15 10:40:24 2008 +0200
50403
50404 QE UEC: Extend number of supported UECs to 4
50405
50406 This patch extends the number of supported UECs to 4. Note that the
50407 problem of QE thread resources exhaustion is resolved by setting the
50408 correct number of QE threads according to Ethernet type (GBE or FE).
50409
50410 Signed-off-by: David Saada <david.saada@ecitele.com>
50411 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50412
50413 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
50414 Author: Wolfgang Denk <wd@denx.de>
50415 Date: Wed Jan 16 00:01:01 2008 +0100
50416
50417 LWMON5: enable hush shell as command line parser
50418
50419 Signed-off-by: Wolfgang Denk <wd@denx.de>
50420
50421 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
50422 Author: Wolfgang Denk <wd@denx.de>
50423 Date: Tue Jan 15 17:22:28 2008 +0100
50424
50425 ADS5121: disable watchdog; enable image timestamps
50426
50427 Signed-off-by: Wolfgang Denk <wd@denx.de>
50428
50429 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
50430 Author: Wolfgang Denk <wd@denx.de>
50431 Date: Tue Jan 15 17:21:28 2008 +0100
50432
50433 TK885D: fixes for bigger flash sector sizes on new modules;
50434 adjust default environment;
50435 disable SCC ethernet (not used on this board).
50436
50437 Signed-off-by: Wolfgang Denk <wd@denx.de>
50438
50439 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
50440 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50441 Date: Tue Jan 15 17:48:13 2008 +0900
50442
50443 pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
50444
50445 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50446
50447 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
50448 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50449 Date: Tue Jan 15 23:25:25 2008 +0900
50450
50451 sh: Add support SH7710/SH7712
50452
50453 SH7710/SH7712 of SH3 CPU are supported.
50454 SH771X is called SH-Ether, and has the Ether controller in CPU.
50455 The driver of Ether is not included in this patch.
50456
50457 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50458
50459 commit 63a11be68306870e04d3851ed9fa41955cdf4894
50460 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50461 Date: Tue Jan 15 23:06:17 2008 +0900
50462
50463 sh: Add support of map_physmem() and unmap_physmem() to SuperH
50464
50465 This patch add the support of map_physmem() and unmap_physmem()
50466 used with Common Flash Interface(CFI) driver.
50467
50468 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50469
50470 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
50471 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50472 Date: Wed Jan 9 14:42:27 2008 +0900
50473
50474 sh: Add maintainer of MS7720SE to the MAINTAINER file
50475
50476 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50477
50478 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
50479 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50480 Date: Wed Jan 9 14:39:58 2008 +0900
50481
50482 sh: Fix board name in MS7720SE's config.mk
50483
50484 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50485
50486 commit c0a04d93734d768b39dbb72fb501b65614c8615d
50487 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50488 Date: Wed Jan 9 14:37:36 2008 +0900
50489
50490 sh: Add MS7720SE to MAKEALL
50491
50492 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50493
50494 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
50495 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
50496 Date: Mon Dec 3 22:58:50 2007 +0900
50497
50498 sh: Add support for MS7720RP02 board
50499
50500 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
50501 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50502 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50503
50504 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
50505 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
50506 Date: Wed Jan 9 14:30:02 2008 +0900
50507
50508 sh: Add support for SH7720 in serial_sh driver.
50509
50510 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
50511 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50512 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50513
50514 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
50515 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
50516 Date: Mon Dec 3 22:58:45 2007 +0900
50517
50518 sh: Add support SH3 and SH7720
50519
50520 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
50521 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50522 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50523
50524 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
50525 Author: Stefan Roese <sr@denx.de>
50526 Date: Tue Jan 15 10:11:02 2008 +0100
50527
50528 ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
50529
50530 Signed-off-by: Stefan Roese <sr@denx.de>
50531
50532 commit 17bef68097ab3692500a36fb31115bff7910aa99
50533 Author: Niklaus Giger <niklausgiger@gmx.ch>
50534 Date: Mon Jan 14 14:04:42 2008 +0100
50535
50536 ppc_4xx: Fix post spr.c for PPC405
50537
50538 post/cpu/ppc4xx/spr.c contained a few checks for registers only present
50539 for PPC440 and derivates processor.
50540
50541 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50542
50543 commit 06c428bcd4413014b43236e77765022071424fa6
50544 Author: Dave Liu <r63238@freescale.com>
50545 Date: Mon Jan 14 11:12:01 2008 +0800
50546
50547 QE: fix compile warning
50548
50549 qe.c: In function 'qe_upload_firmware':
50550 qe.c:390: warning: pointer targets in passing argument 2
50551 uec.c: In function 'uec_initialize':
50552 uec.c:1236: warning: 'uec_info' may be used uninitialized
50553
50554 Signed-off-by: Dave Liu <daveliu@freescale.com>
50555
50556 commit a0dd99d51efa55fe023e19c97ead92683725eb11
50557 Author: Stefan Roese <sr@denx.de>
50558 Date: Mon Jan 14 10:05:05 2008 +0100
50559
50560 ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
50561
50562 Now that bit 29 is the USB PHY reset bit, update the Kilauea port
50563 to remove the USB PHY reset after powerup. The CPLD will keep the
50564 USB PHY in reset (active low) until the bit is set to 1 in
50565 board_early_init_f().
50566
50567 Signed-off-by: Stefan Roese <sr@denx.de>
50568
50569 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
50570 Author: Wolfgang Denk <wd@denx.de>
50571 Date: Sun Jan 13 23:26:45 2008 +0100
50572
50573 ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
50574
50575 Signed-off-by: Wolfgang Denk <wd@denx.de>
50576
50577 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
50578 Author: Wolfgang Denk <wd@denx.de>
50579 Date: Sun Jan 13 23:37:50 2008 +0100
50580
50581 ADS5121: Fix typo in ads5121.c, adjust default environment
50582
50583 Signed-off-by: Wolfgang Denk <wd@denx.de>
50584
50585 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
50586 Author: John Rigby <jrigby@freescale.com>
50587 Date: Fri Aug 24 18:18:43 2007 -0600
50588
50589 ADS5121: MAX slew rate for PATA pins
50590
50591 Signed-off-by: John Rigby <jrigby@freescale.com>
50592
50593 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
50594 Author: Wolfgang Denk <wd@denx.de>
50595 Date: Sun Jan 13 21:05:52 2008 +0100
50596
50597 Fix Makefile dependency problem with parallel builds.
50598
50599 Signed-off-by: Wolfgang Denk <wd@denx.de>
50600
50601 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
50602 Author: Wolfgang Denk <wd@denx.de>
50603 Date: Sun Jan 13 19:51:39 2008 +0100
50604
50605 MPC8544DS: fix board Makefile for silent build (with -s)
50606
50607 Signed-off-by: Wolfgang Denk <wd@denx.de>
50608
50609 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
50610 Author: Wolfgang Denk <wd@denx.de>
50611 Date: Sun Jan 13 16:44:08 2008 +0100
50612
50613 PMC440 board: fix board Makefile for out-of-tree building
50614
50615 Signed-off-by: Wolfgang Denk <wd@denx.de>
50616
50617 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
50618 Author: Wolfgang Denk <wd@denx.de>
50619 Date: Sun Jan 13 16:07:44 2008 +0100
50620
50621 Makalu: fix compile warning
50622
50623 Signed-off-by: Wolfgang Denk <wd@denx.de>
50624
50625 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
50626 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50627 Date: Sun Jan 13 12:36:12 2008 +0100
50628
50629 cmd_nand : fix compiler warning.
50630
50631 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50632
50633 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
50634 Author: Michael Schwingen <rincewind@discworld.dascon.de>
50635 Date: Sat Jan 12 20:29:47 2008 +0100
50636
50637 CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
50638
50639 Signed-off-by: Michael Schwingen <michael@schwingen.org>
50640 Acked-by: Stefan Roese <sr@denx.de>
50641
50642 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
50643 Author: Wolfgang Denk <wd@denx.de>
50644 Date: Sun Jan 13 02:19:44 2008 +0100
50645
50646 MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
50647
50648 Signed-off-by: Wolfgang Denk <wd@denx.de>
50649
50650 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
50651 Author: Wolfgang Denk <wd@denx.de>
50652 Date: Sun Jan 13 02:19:13 2008 +0100
50653
50654 MPC8xx FEC driver: fix compiler warning.
50655
50656 Signed-off-by: Wolfgang Denk <wd@denx.de>
50657
50658 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
50659 Author: Wolfgang Denk <wd@denx.de>
50660 Date: Sun Jan 13 00:59:21 2008 +0100
50661
50662 Fix Makefile dependencies issues; allow silent build
50663
50664 - get rid of "version" target whichdidn't really work
50665 - make autoconf.mk depend on version_autogenerated.h to make sure
50666 to rebuild files as needed
50667 - add XECHO macro to allow for silent build using "make -s"
50668
50669 Signed-off-by: Wolfgang Denk <wd@denx.de>
50670
50671 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
50672 Author: Wolfgang Denk <wd@denx.de>
50673 Date: Sun Jan 13 00:55:47 2008 +0100
50674
50675 ADS5121e: fix compile warning
50676
50677 Signed-off-by: Wolfgang Denk <wd@denx.de>
50678
50679 commit f2b6f4610627fe3d607620e25082916a01538875
50680 Author: Wolfgang Denk <wd@denx.de>
50681 Date: Sun Jan 13 00:55:18 2008 +0100
50682
50683 MUNICes: fix board Makefile for remote build directory
50684
50685 Signed-off-by: Wolfgang Denk <wd@denx.de>
50686
50687 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
50688 Author: Oliver Weber <almoeli@gmx.de>
50689 Date: Wed Jan 9 17:04:38 2008 +0100
50690
50691 MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
50692
50693 Signed-off-by: Oliver Weber <almoeli@gmx.de>
50694
50695 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
50696 Author: Andreas Engel <andreas.engel@ericsson.com>
50697 Date: Wed Jan 9 17:10:56 2008 +0100
50698
50699 Make bootretry work when command line editing is enabled
50700
50701 Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
50702 This patch fixes the problem.
50703
50704 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
50705
50706 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
50707 Author: Larry Johnson <lrj@acm.org>
50708 Date: Fri Jan 11 23:26:18 2008 -0500
50709
50710 Refactor code for "i2c sdram" command
50711
50712 Signed-off-by: Larry Johnson <lrj@acm.org>
50713
50714 commit 0df6b8446c4721b91ce311548114891130371083
50715 Author: Larry Johnson <lrj@acm.org>
50716 Date: Thu Jan 10 22:23:39 2008 -0500
50717
50718 Fix "i2c sdram" command for DDR2 DIMMs
50719
50720 Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
50721 "i2c sdram" command. This patch provides correct alternative
50722 interpretations when DDR2 memory is detected.
50723
50724 Signed-off-by: Larry Johnson <lrj@acm.org>
50725
50726 commit 64134f011254123618798ff77c42ba196b2ec485
50727 Author: Wolfgang Denk <wd@denx.de>
50728 Date: Sat Jan 12 20:31:39 2008 +0100
50729
50730 Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
50731
50732 With recent toolchain versions, some boards would not build because
50733 or errors like this one (here for ocotea board when building with
50734 ELDK 4.2 beta):
50735 ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
50736
50737 For many boards, the .bss section is big enough that it wraps around
50738 at the end of the address space (0xFFFFFFFF), so the problem will not
50739 be visible unless you use a 64 bit tool chain for development. On
50740 some boards however, changes to the code size (due to different
50741 optimizations) we bail out with section overlaps like above.
50742
50743 The fix is to add the NOLOAD attribute to the .bss and .sbss
50744 sections, telling the linker that .bss does not consume any space in
50745 the image.
50746
50747 Signed-off-by: Wolfgang Denk <wd@denx.de>
50748
50749 commit 3afac79ec27b91df185f090b31dad9620779f440
50750 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50751 Date: Fri Jan 11 20:42:58 2008 -0600
50752
50753 USB: Add Philips 1561 PCI-OHCI ids
50754 (needed for M5475EVB)
50755
50756 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50757
50758 commit 5e8def6731cd7bec74bff42a16b139de04010353
50759 Author: Wolfgang Denk <wd@denx.de>
50760 Date: Sat Jan 12 15:51:34 2008 +0100
50761
50762 Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
50763 boards.
50764
50765 Signed-off-by: Heiko Schocher <hs@denx.de>
50766 Signed-off-by: Wolfgang Denk <wd@denx.de>
50767
50768 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
50769 Author: Grzegorz Bernacki <gjb@semihalf.com>
50770 Date: Fri Jan 11 12:03:43 2008 +0100
50771
50772 MPC512X: Cleanup bus clock names.
50773
50774 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
50775
50776 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
50777 Author: Grzegorz Bernacki <gjb@semihalf.com>
50778 Date: Tue Jan 8 17:16:59 2008 +0100
50779
50780 MPC512X: Fixed typo in macro name.
50781
50782 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
50783
50784 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
50785 Author: Grzegorz Bernacki <gjb@semihalf.com>
50786 Date: Tue Jan 8 17:16:15 2008 +0100
50787
50788 ads5121: Added support for FDT.
50789
50790 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
50791
50792 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
50793 Author: Wolfgang Denk <wd@denx.de>
50794 Date: Sat Jan 12 01:05:50 2008 +0100
50795
50796 Coding Style cleanup; update CHANGELOG.
50797
50798 Signed-off-by: Wolfgang Denk <wd@denx.de>
50799
50800 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
50801 Author: Heiko Schocher <hs@denx.de>
50802 Date: Fri Jan 11 15:15:17 2008 +0100
50803
50804 Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
50805
50806 Signed-off-by: Timur Tabi <timur@freescale.com>
50807 Signed-off-by: Heiko Schocher <hs@denx.de>
50808
50809 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
50810 Author: Heiko Schocher <hs@denx.de>
50811 Date: Fri Jan 11 15:15:16 2008 +0100
50812
50813 MUNICes: Set the right CFG_DEFAULT_MBAR value.
50814
50815 Signed-off-by: Heiko Schocher <hs@denx.de>
50816
50817 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
50818 Author: Heiko Schocher <hs@denx.de>
50819 Date: Fri Jan 11 15:15:15 2008 +0100
50820
50821 added the config File for the MUNICes board.
50822
50823 Signed-off-by: Heiko Schocher <hs@denx.de>
50824
50825 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
50826 Author: Heiko Schocher <hs@denx.de>
50827 Date: Fri Jan 11 15:15:14 2008 +0100
50828
50829 added basic support for the MUNICes board.
50830
50831 Signed-off-by: Heiko Schocher <hs@denx.de>
50832
50833 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
50834 Author: Wolfgang Denk <wd@denx.de>
50835 Date: Sat Jan 12 00:39:37 2008 +0100
50836
50837 Update CHANGELOG and MAINTAINERS files.
50838
50839 Signed-off-by: Wolfgang Denk <wd@denx.de>
50840
50841 commit 5ba7390c3cb579172be66888a371707b47b5be4e
50842 Author: Anatolij Gustschin <agust@denx.de>
50843 Date: Fri Jan 11 02:15:02 2008 +0100
50844
50845 Fix compilation problem in common/cmd_bmp.c
50846
50847 common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
50848 isn't defined. This patch fix this.
50849
50850 Signed-off-by: Anatolij Gustschin <agust@denx.de>
50851
50852 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
50853 Author: Heiko Schocher <hs@denx.de>
50854 Date: Fri Jan 11 01:12:09 2008 +0100
50855
50856 Fix defaultconfig for the mgcoge board.
50857
50858 Signed-off-by: Heiko Schocher <hs@denx.de>
50859
50860 commit ac9db066b26935f31bff15c98168b19faeb603f3
50861 Author: Heiko Schocher <hs@denx.de>
50862 Date: Fri Jan 11 01:12:08 2008 +0100
50863
50864 Added support for the mgcoge board from keymile.
50865
50866 Signed-off-by: Heiko Schocher <hs@denx.de>
50867
50868 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
50869 Author: Heiko Schocher <hs@denx.de>
50870 Date: Fri Jan 11 01:12:07 2008 +0100
50871
50872 Enable SMC microcode relocation patch for SMC1.
50873
50874 Signed-off-by: Heiko Schocher <hs@denx.de>
50875
50876 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
50877 Author: Heiko Schocher <hs@denx.de>
50878 Date: Fri Jan 11 01:12:06 2008 +0100
50879
50880 Added support for the mgsuvd board from keymile.
50881
50882 Signed-off-by: Heiko Schocher <hs@denx.de>
50883
50884 commit bf05293973b348f6946c9df92cd3c65ece42d0be
50885 Author: James Yang <james.yang@freescale.com>
50886 Date: Thu Jan 10 16:02:07 2008 -0600
50887
50888 Fix 64-bit vsprintf.
50889
50890 There were some size and unsigned problems.
50891 Also add support for "ll" size modifier in format string like glibc
50892
50893 Signed-off-by: James Yang <James.Yang@freescale.com>
50894 Acked-by: Jon Loeliger <jdl@freescale.com>
50895
50896 commit 92fa37eac530860643afa26ae347af3d23d67309
50897 Author: Larry Johnson <lrj@acm.org>
50898 Date: Wed Jan 9 12:42:35 2008 -0500
50899
50900 Remove superfluous preprocessor conditionals from LM73 driver
50901
50902 (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
50903
50904 (2) Use conditional Makefile.o.
50905
50906 Signed-off-by: Larry Johnson <lrj@acm.org>
50907
50908 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
50909 Author: Guennadi Liakhovetski <lg@denx.de>
50910 Date: Thu Jan 10 17:59:07 2008 +0100
50911
50912 Add support for the TK885D baseboard from TELE-DATA
50913
50914 The TK885D board uses a TQM885D module from TQ, this port adds an
50915 own configuration file and adds a last_stage_init() method to
50916 configure the two PHYs, depending on the phy_auto_nego environment
50917 variable.
50918
50919 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50920
50921 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
50922 Author: Kumar Gala <galak@kernel.crashing.org>
50923 Date: Thu Jan 10 02:22:05 2008 -0600
50924
50925 Fix compiler warning
50926
50927 main.c: In function 'readline_into_buffer':
50928 main.c:927: warning: unused variable 'p_buf'
50929
50930 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50931
50932 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
50933 Author: Anatolij Gustschin <agust@denx.de>
50934 Date: Fri Jan 11 14:30:01 2008 +0100
50935
50936 Add Fujitsu CoralP/Lime video driver
50937
50938 Signed-off-by: Anatolij Gustschin <agust@denx.de>
50939 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
50940
50941 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
50942 Author: Anatolij Gustschin <agust@denx.de>
50943 Date: Fri Jan 11 02:39:47 2008 +0100
50944
50945 Fix video console newline and carriage return handling
50946
50947 Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
50948 are not displayed correctly. This is an attempt to fix
50949 this issue. Also add carriage return handling.
50950
50951 Signed-off-by: Anatolij Gustschin <agust@denx.de>
50952 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
50953
50954 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
50955 Author: Stefan Roese <sr@denx.de>
50956 Date: Fri Jan 11 15:53:58 2008 +0100
50957
50958 ppc4xx: Fix sdram init on Sequoia boards
50959
50960 Clear possible errors in MCSR resulting from data-eye-search.
50961 If not done, then we could get an interrupt later on when
50962 exceptions are enabled.
50963
50964 Signed-off-by: Stefan Roese <sr@denx.de>
50965
50966 commit d610a60730b7464f6f659db49d264d89a7c71061
50967 Author: Anatolij Gustschin <agust@denx.de>
50968 Date: Fri Jan 11 15:31:09 2008 +0100
50969
50970 ppc4xx: Rework Lime support for lwmon5
50971
50972 Rework Lime support for lwmon5 using new video driver
50973
50974 Signed-off-by: Anatolij Gustschin <agust@denx.de>
50975
50976 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
50977 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50978 Date: Fri Jan 11 14:55:16 2008 +0100
50979
50980 ppc4xx: Update PMC440 config file
50981
50982 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50983
50984 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
50985 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50986 Date: Fri Jan 11 14:55:08 2008 +0100
50987
50988 ppx4xx: Fix sdram init on PMC440 boards
50989
50990 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50991
50992 commit 061aad4d320dddce26247699dcf2875ee2ea1366
50993 Author: Dave Liu <r63238@freescale.com>
50994 Date: Thu Jan 10 23:09:33 2008 +0800
50995
50996 mpc83xx: Fix the bug of 266MHz data rate DDR
50997
50998 The DDR doesn't work on the 266MHz data rate,
50999 the patch fix the bug.
51000
51001 Signed-off-by: Dave Liu <daveliu@freescale.com>
51002 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51003
51004 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
51005 Author: Dave Liu <r63238@freescale.com>
51006 Date: Thu Jan 10 23:08:26 2008 +0800
51007
51008 mpc83xx: Make the code more readable
51009
51010 Format the code, make it more readable
51011
51012 Signed-off-by: Dave Liu <daveliu@freescale.com>
51013 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51014
51015 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
51016 Author: Dave Liu <r63238@freescale.com>
51017 Date: Thu Jan 10 23:07:23 2008 +0800
51018
51019 mpc83xx: Reduce the latency of DDR
51020
51021 Reduce the AL from 2 to 1 clock to improve the performance.
51022
51023 Signed-off-by: Dave Liu <daveliu@freescale.com>
51024 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51025
51026 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
51027 Author: Dave Liu <r63238@freescale.com>
51028 Date: Thu Jan 10 23:06:05 2008 +0800
51029
51030 mpc83xx: Fix the wrong definition of MPC8315E
51031
51032 According to the latest user manual of MPC8315E,
51033 1) The SVCOD of HRCWL is different than 837x
51034 2) The SCCR has changes
51035
51036 Signed-off-by: Dave Liu <daveliu@freescale.com>
51037 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51038
51039 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
51040 Author: Dave Liu <r63238@freescale.com>
51041 Date: Thu Jan 10 23:05:00 2008 +0800
51042
51043 mpc83xx: Fix the typo in mpc83xx.h
51044
51045 The SPCR about TSEC priority is wrong.
51046
51047 Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
51048 Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
51049 Signed-off-by: Dave Liu <daveliu@freescale.com>
51050 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51051
51052 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
51053 Author: Dave Liu <r63238@freescale.com>
51054 Date: Thu Jan 10 23:04:13 2008 +0800
51055
51056 mpc83xx: Fix the typo in global data struct
51057
51058 Fix the typo in global_data.h
51059
51060 Signed-off-by: Dave Liu <daveliu@freescale.com>
51061 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51062
51063 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
51064 Author: Dave Liu <r63238@freescale.com>
51065 Date: Thu Jan 10 23:03:03 2008 +0800
51066
51067 mpc83xx: Remove cache config from config.h
51068
51069 clean up the cache config from configs.h of board
51070
51071 Signed-off-by: Dave Liu <daveliu@freescale.com>
51072 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51073
51074 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
51075 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51076 Date: Wed Jan 9 20:57:47 2008 +0300
51077
51078 mpc83xx: add support for the MPC8360E-RDK
51079
51080 This is MPC8360E based board with:
51081 - 256MB fixed SDRAM;
51082 - 8MB Intel Strata NOR flash;
51083 - StMICRO 64MiB NAND flash;
51084 - two 10/100/1000 ethernet ports connected via Broadcom
51085 BCM5481 PHYs;
51086 - two 10/100 ethernet ports connected via National
51087 DP83848 PHYs;
51088 - one PCI and one miniPCI slots;
51089 - four serial ports (two NS16550-compatible, two UCCs);
51090 - four USB ports working through MPC8360E "FHCI" USB controller;
51091 - Fujitsu MB86277 graphics controller;
51092 - Analog to Digital Converter/Touchscreen controller, AD7843
51093 connected to SPI.
51094
51095 Features not supported in this patch are:
51096 - StMICRO 64MiB NAND flash (patch sent);
51097 - MINT framebuffer initialization (patch is pending);
51098 - Fetching production information from the EEPROM via I2C;
51099 - FHCI USB;
51100 - Two slow UCCs used as RS-485 UARTs.
51101
51102 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51103 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51104
51105 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
51106 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51107 Date: Wed Jan 9 20:57:40 2008 +0300
51108
51109 mpc83xx: add "fsl, qe" compatible fixups
51110
51111 New device trees will use "fsl,qe" compatible properties.
51112
51113 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51114 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51115
51116 commit 977b57583a7c34010e566a09a679ec3c1836f996
51117 Author: Kim Phillips <kim.phillips@freescale.com>
51118 Date: Wed Jan 9 15:24:06 2008 -0600
51119
51120 mpc83xx: add missing CONFIG_HAS_ETH0 defines
51121
51122 the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
51123 is defined; add the define to the missing board configs.
51124
51125 Thanks to Emilian Medve for finding this.
51126
51127 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51128
51129 commit b830b7f1635984ba607219fcbd78597c28eeb529
51130 Author: Becky Bruce <bgill@freescale.com>
51131 Date: Thu Jan 10 14:00:28 2008 -0600
51132
51133 86xx: Support 2GB DIMMs
51134
51135 Configure the number of bits used to address the banks inside the SDRAM
51136 device. The default register value of 0 means 2 bits to address 4 banks.
51137 Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
51138
51139 Signed-off-by: Becky Bruce <bgill@freescale.com>
51140
51141 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
51142 Author: Niklaus Giger <niklausgiger@gmx.ch>
51143 Date: Thu Jan 10 18:50:33 2008 +0100
51144
51145 ppc4xx: Make Sequoia boot vxWorks
51146
51147 vxWorks expects in
51148 TLB 0 a entry for the Machine Check interrupt
51149 TLB 1 a entry for the RAM
51150 TLB 2 a entry for the EBC
51151 TLB 3 a entry for the boot flash
51152
51153 After changing the baudrate to 9600 I had no problems to boot the
51154 vxWorks image as distributed by WindRiver (Revision 2.0/1 from
51155 June 18, 2007)
51156
51157 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
51158
51159 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
51160 Author: Larry Johnson <lrj@arlinx.com>
51161 Date: Wed Jan 9 23:10:27 2008 -0500
51162
51163 ppc4xx: Fix dflush() to restore DVLIM register
51164
51165 Signed-off-by: Larry Johnson <lrj@acm.org>
51166
51167 commit 252f60b068d1f94190b5bcfda169db582387e15e
51168 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51169 Date: Thu Jan 10 03:52:44 2008 -0500
51170
51171 Nios2: remove common/cmd_bdinfo.c unused variable.
51172
51173 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51174 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
51175
51176 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
51177 Author: Ben Warren <biggerbadderben@gmail.com>
51178 Date: Wed Jan 9 18:15:53 2008 -0500
51179
51180 Fix Ethernet init() return codes
51181
51182 Change return values of init() functions in all Ethernet drivers to conform
51183 to the following:
51184
51185 >=0: Success
51186 <0: Failure
51187
51188 All drivers going forward should return 0 on success. Current drivers that
51189 return 1 on success were left as-is to minimize changes.
51190
51191 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51192 Acked-by: Stefan Roese <sr@denx.de>
51193 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51194 Acked-by: Kim Phillips <kim.phillips@freescale.com>
51195 Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51196 Acked-By: Timur Tabi <timur@freescale.com>
51197
51198 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
51199 Author: Wolfgang Denk <wd@denx.de>
51200 Date: Thu Jan 10 00:55:14 2008 +0100
51201
51202 Coding Style cleanup; update CHANGELOG
51203
51204 Signed-off-by: Wolfgang Denk <wd@denx.de>
51205
51206 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
51207 Author: Kim Phillips <kim.phillips@freescale.com>
51208 Date: Wed Jan 9 16:56:54 2008 -0600
51209
51210 Add QE brg freq and correct qe bus freq fdt update code
51211
51212 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51213 Signed-off-by: Andy Fleming <afleming@freescale.com>
51214
51215 commit 890dfef06c2d169a3356359596890754dfb8ee1c
51216 Author: Andy Fleming <afleming@freescale.com>
51217 Date: Wed Jan 9 16:34:51 2008 -0600
51218
51219 Remove cache config from ATUM8548 and sbc8548 configs
51220
51221 These boards weren't updated by Kumar's config patch because they
51222 weren't in the tree, yet.
51223
51224 Signed-off-by: Andy Fleming <afleming@freescale.com>
51225
51226 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
51227 Author: Timur Tabi <timur@freescale.com>
51228 Date: Mon Jan 7 13:31:19 2008 -0600
51229
51230 85xx: add ability to upload QE firmware
51231
51232 Define the layout of a binary blob that contains a QE firmware and instructions
51233 on how to upload it. Add function qe_upload_firmware() to parse the blob and
51234 perform the actual upload. Add command-line command "qe fw" to take a firmware
51235 blob in memory and upload it. Update ft_cpu_setup() on 85xx to create the
51236 'firmware' device tree node if U-Boot has uploaded a firmware. Fully define
51237 'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
51238
51239 Signed-off-by: Timur Tabi <timur@freescale.com>
51240
51241 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
51242 Author: Kumar Gala <galak@kernel.crashing.org>
51243 Date: Tue Jan 8 01:22:21 2008 -0600
51244
51245 85xx: Remove cache config from configs.h
51246
51247 Either use the standard defines in asm/cache.h or grab the information
51248 at runtime from the L1CFG SPR.
51249
51250 Also, minor cleanup in cache.h to make the code a bit more readable.
51251
51252 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51253
51254 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
51255 Author: robert lazarski <robertlazarski@gmail.com>
51256 Date: Fri Dec 21 10:39:27 2007 -0500
51257
51258 mpc85xx: Add support for ATUM8548 (updated)
51259
51260 Add support for Instituto Atlantico's ATUM8548 board
51261
51262 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
51263 Signed-off-by: Andy Fleming <afleming@freescale.com>
51264
51265 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
51266 Author: robert lazarski <robertlazarski@gmail.com>
51267 Date: Fri Dec 21 10:36:37 2007 -0500
51268
51269 mpc85xx: Add support for ATUM8548 (updated)
51270
51271 Add support for Instituto Atlantico's ATUM8548 board
51272
51273 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
51274
51275 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
51276 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
51277 Date: Thu Dec 13 06:45:14 2007 -0600
51278
51279 mpc85xx: Add support for SBC8548 (updated)
51280
51281 Add support for Wind River's SBC8548 reference board.
51282
51283 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
51284
51285 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
51286 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
51287 Date: Thu Dec 13 06:45:08 2007 -0600
51288
51289 mpc85xx: Add support for SBC8548 (updated)
51290
51291 Add support for Wind River's SBC8548 reference board.
51292
51293 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
51294 Signed-off by: Andy Fleming <afleming@freescale.com>
51295
51296 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
51297 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51298 Date: Mon Oct 22 19:58:19 2007 +0400
51299
51300 MPC8568E-MDS: set up QE pario for UART1
51301
51302 To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
51303 be set up appropriately.
51304
51305 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51306
51307 commit ad162249cb371e9e38971676f09be791e5f3cf4a
51308 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51309 Date: Mon Oct 22 18:12:46 2007 +0400
51310
51311 MPC8568E-MDS: reset UCCs to use them reliably
51312
51313 In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
51314 UCCs.
51315
51316 p.s Similar code exists in the Linux kernel board file (for capability
51317 reasons with older U-Boots), but should be removed some day.
51318
51319 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51320
51321 commit 2146cf56821c3364786ca94a7306008c5824b238
51322 Author: Kumar Gala <galak@kernel.crashing.org>
51323 Date: Wed Dec 19 01:18:15 2007 -0600
51324
51325 Reworked FSL Book-E TLB macros to be more readable
51326
51327 The old macros made it difficult to know what WIMGE and perm bits
51328 were set for a TLB entry. Actually use the bit masks for these items
51329 since they are only a single bit.
51330
51331 Also moved the macros into mmu.h out of e500.h since they aren't specific
51332 to e500.
51333
51334 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51335
51336 commit 1d47273d46925929f8f2c1913cd96d7257aade88
51337 Author: Kumar Gala <galak@kernel.crashing.org>
51338 Date: Tue Dec 18 23:21:51 2007 -0600
51339
51340 Use FSL Book-E MMU macros from Linux Kernel
51341
51342 Grab the FSL Book-E MAS register macros from Linux. Also added
51343 defines for page sizes up to 4TB and removed SHAREN since it doesnt
51344 really exist.
51345
51346 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51347
51348 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
51349 Author: Andy Fleming <afleming@freescale.com>
51350 Date: Wed Jan 9 13:51:32 2008 -0600
51351
51352 Fix my own merge stupidity
51353
51354 Way back in August I merged Heiko's patch:
51355 566a494f592: [PCS440EP] upgrade the PCS440EP board
51356
51357 with Jon's CONFIG_COMMANDS patches.
51358
51359 This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
51360
51361 However, in the process, I left out some of Heiko's good changes.
51362
51363 Now Heiko's and Jon's patches are properly merged in fat_register_device()
51364
51365 Signed-off-by: Andy Fleming <afleming@freescale.com>
51366
51367 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
51368 Author: James Yang <James.Yang@freescale.com>
51369 Date: Wed Jan 9 11:17:49 2008 -0600
51370
51371 Expose parse_line() globally.
51372
51373 Add new function readline_into_buffer() that allows the
51374 output of readline to be put into a pointer to char buffer.
51375
51376 This refactoring allows other functions besides the
51377 main command loop to also use the same input mechanism.
51378
51379 Signed-off-by: James Yang <James.Yang@freescale.com>
51380 Acked-by: Jon Loeliger <jdl@freescale.com>
51381
51382 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
51383 Author: Guennadi Liakhovetski <lg@denx.de>
51384 Date: Wed Jan 9 01:15:25 2008 +0100
51385
51386 trivial: fix consequences of a bad merge
51387
51388 Fix what looks like a merge artifact.
51389
51390 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
51391
51392 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
51393 Author: Zhang Wei <wei.zhang@freescale.com>
51394 Date: Thu Jan 3 10:51:15 2008 +0800
51395
51396 Add Ctrl combo key support to usb keyboard driver.
51397
51398 Ctrl combo key support is added, which is very useful to input Ctrl-C
51399 for interrupt current job.
51400 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
51401 key input when tstc() is called.
51402
51403 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
51404
51405 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
51406 Author: Marcel Ziswiler <marcel@ziswiler.com>
51407 Date: Sun Dec 30 03:30:56 2007 +0100
51408
51409 fix various comments
51410
51411 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
51412
51413 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
51414 Author: Marcel Ziswiler <marcel@ziswiler.com>
51415 Date: Sun Dec 30 03:30:46 2007 +0100
51416
51417 fix comments with new drivers organization
51418
51419 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
51420
51421 commit a9b410dc7d2a4721c408b13abfc037988150f145
51422 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
51423 Date: Fri Dec 28 12:50:59 2007 +0900
51424
51425 Remove the obsolete terse version of do_mii()
51426
51427 We now have more useful version of do_mii() and everybody use it.
51428 Gerald Van Baren says:
51429
51430 > When I originally wrote the mii command 6(!) years ago, I wrote a
51431 > verbose version that printed human readable decomposition of the flags,
51432 > etc., and a terse one that didn't print as much stuff and thus had a
51433 > smaller memory footprint.
51434 >
51435 > It sounds like the terse version has withered and died, apparently
51436 > people are only using the verbose version (which is very understandable,
51437 > I do myself).
51438
51439 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
51440 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
51441
51442 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
51443 Author: Mike Frysinger <vapier@gentoo.org>
51444 Date: Thu Dec 27 13:42:56 2007 -0500
51445
51446 Do not reference sha1.c when building mkimage.
51447
51448 remove sha1.o from mkimage linking since it isn't actually used.
51449
51450 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
51451
51452 commit b9173af73e524d37c812f210173cf83385c5171a
51453 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
51454 Date: Thu Dec 27 15:39:54 2007 +0900
51455
51456 common/cmd_mii.c: Add sanity argc check
51457
51458 If type mii command without arguments, we suffer from uninitialized argv[]
51459 entries; for example we MIPS get stuck by TLB error.
51460
51461 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
51462
51463 commit 500856eb1707ed17d9204baa61dd59948d3b2899
51464 Author: Rafal Jaworowski <raj@semihalf.com>
51465 Date: Wed Jan 9 19:39:36 2008 +0100
51466
51467 API for external applications.
51468
51469 This is an API for external (standalone) applications running on top of
51470 U-Boot, and is meant to be more extensible and robust than the existing
51471 jumptable mechanism. It is similar to UNIX syscall approach. See api/README
51472 for more details.
51473
51474 Included is the demo application using this new framework (api_examples).
51475
51476 Please note this is still an experimental feature, and is turned off by
51477 default.
51478
51479 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
51480
51481 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
51482 Author: Jon Loeliger <jdl@freescale.com>
51483 Date: Wed Jan 9 12:14:55 2008 -0600
51484
51485 86xx: Remove cache config from configs.h
51486
51487 Just use the standard defines in asm/cache.h.
51488
51489 Signed-off-by: Jon Loeliger <jdl@freescale.com>
51490
51491 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
51492 Author: Rafal Jaworowski <raj@semihalf.com>
51493 Date: Wed Jan 9 18:05:27 2008 +0100
51494
51495 Globalize envmatch()
51496
51497 The newly introduced API (routines related to env vars) will need to call
51498 it.
51499
51500 Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
51501
51502 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
51503 Author: Jon Loeliger <jdl@freescale.com>
51504 Date: Fri Jan 4 12:07:27 2008 -0600
51505
51506 Convert MPC8610HPCD to use libfdt.
51507
51508 Assumes the presence of the aliases node in the DTS to
51509 locate the pci and serial nodes for fixups.
51510
51511 Use consistent fdtaddr and fdtfile in environment variables.
51512
51513 Signed-off-by: Jon Loeliger <jdl@freescale.com>
51514
51515 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
51516 Author: Jon Loeliger <jdl@freescale.com>
51517 Date: Fri Jan 4 11:58:23 2008 -0600
51518
51519 8610: Fix lingering compile warnings.
51520
51521 Turn off DEBUG.
51522
51523 Signed-off-by: Jon Loeliger <jdl@freescale.com>
51524
51525 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
51526 Author: Wolfgang Denk <wd@denx.de>
51527 Date: Wed Jan 9 15:14:46 2008 +0100
51528
51529 Coding Style cleanup, update CHANGELOG
51530
51531 Signed-off-by: Wolfgang Denk <wd@denx.de>
51532
51533 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
51534 Author: Mike Frysinger <vapier@gentoo.org>
51535 Date: Tue Dec 18 04:29:55 2007 -0500
51536
51537 fix easylogo on big endian dev systems
51538
51539 didnt realize how out of shape easylogo actually was until i tried using it.
51540 this patch does byte swapping as need be on the input tga header since the tga
51541 is in little endian but the host could just as well be big endian. i didnt
51542 bother using bswap macros or such stuff from system headers as nothing in
51543 POSIX dictates byte swapping functionality.
51544
51545 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
51546
51547 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
51548 Author: Mike Frysinger <vapier@gentoo.org>
51549 Date: Tue Dec 18 03:23:25 2007 -0500
51550
51551 cleanup easylogo
51552
51553 - make the Makefile not suck
51554 - include proper headers for prototypes
51555 - fix obvious broken handling of strchr() when handling '.' in filenames
51556
51557 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
51558
51559 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
51560 Author: raptorbrino@aim.com <raptorbrino@aim.com>
51561 Date: Thu Dec 13 21:23:28 2007 -0500
51562
51563 Fix build problems under Cygwin
51564
51565 This patch allows u-boot to build without error in a cygwin
51566 environment. Cygwin does not define __u64 in it's
51567 include/asm/types.h file. The -idirafter flag in the u-boot
51568 build causes the inclusion of the cygwin types.h file as opposed
51569 to u-bot/include/asm/types.h file which does define __u64.
51570 Subsequently, sha1.c compile fails due to unknown symbol.
51571
51572 Signed-off-by: Brian Miller <raptorbrino@netscape.net>
51573
51574 commit 43ef1c381f9195504a2488f5cb909227eb97d475
51575 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
51576 Date: Fri Nov 30 17:29:59 2007 +0100
51577
51578 cmd_bmp: Add support for displaying gzip compressed bmps
51579
51580 The existing code can show information about a gzip compressed BMP
51581 image, but can't actually display it.
51582
51583 Therefore, move the decompression code out of bmp_info() and use it in
51584 bmp_display() as well in order to display a compressed BMP image.
51585
51586 Also, clean things up a bit and fix a memory leak while we're at it.
51587
51588 [hskinnemoen@atmel.com: a bit of refactoring]
51589 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51590
51591 commit d197ffd8172c6fdef38733424640a9a47295d6e9
51592 Author: Guennadi Liakhovetski <lg@denx.de>
51593 Date: Thu Nov 29 21:15:56 2007 +0100
51594
51595 Fix and optimize MII operations on FEC (MPC8xx) controllers
51596
51597 This patch fixes several issues at least on a MPC885 based system with two
51598 FEC interfaces used in MII mode.
51599
51600 1. PHY discovery should first read PHY_PHYIDR2 register and only then
51601 PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
51602 otherwise the values read are wrong. Also notice, that PHY discovery
51603 cannot work on MPC88x / MPC87x in setups with both FECs active at all
51604 in its present form, because for both interfaces the registers from FEC
51605 1 are used to communicate over MII.
51606
51607 2. Remove code duplication for resetting the FEC by isolating it into a
51608 separate function.
51609
51610 3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
51611
51612 4. Optimize mii_init() to only reset the FEC 1 controller once.
51613
51614 5. Fix a typo in mii_init() using index i instead of j thus potentially
51615 leading to unpredictable results.
51616
51617 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
51618
51619 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
51620 Author: Guennadi Liakhovetski <lg@denx.de>
51621 Date: Tue Nov 20 13:14:20 2007 +0100
51622
51623 Fix endianness conversions in rtl8169 driver
51624
51625 It is unclear on what platforms this driver has been tested, since
51626 noone up to now defines CONFIG_RTL8169 in the board configuration
51627 header. Now it has been fixed for a big-endian mpc8241 based
51628 linkstation platform. This patch presents the necessary endianness
51629 conversion fixes.
51630
51631 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
51632
51633 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
51634 Author: Zhang Wei <wei.zhang@freescale.com>
51635 Date: Thu Jan 3 10:51:15 2008 +0800
51636
51637 Add Ctrl combo key support to usb keyboard driver.
51638
51639 Ctrl combo key support is added, which is very useful to input Ctrl-C
51640 for interrupt current job.
51641 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
51642 key input when tstc() is called.
51643
51644 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
51645 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51646
51647 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
51648 Author: Wolfgang Denk <wd@denx.de>
51649 Date: Wed Jan 9 13:43:38 2008 +0100
51650
51651 Coding Style clenaup; update CHANGELOG
51652
51653 Signed-off-by: Wolfgang Denk <wd@denx.de>
51654
51655 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
51656 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51657 Date: Thu Dec 27 17:13:11 2007 +0100
51658
51659 Remove bit swapping in Xilinx Spartan bitfile loading
51660
51661 This patch removes the unnecessary bit swapping when
51662 booting .bit files with the 'fpga loadb' command.
51663
51664 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51665
51666 commit 437fc7327f0611f82937858f2d80e4cd61b40984
51667 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51668 Date: Thu Dec 27 17:13:05 2007 +0100
51669
51670 Fix MSB check in Xilinx Spartan slave serial mode
51671
51672 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51673
51674 commit 3bff4ffa33729a42645e328a21e8d16488872958
51675 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51676 Date: Thu Dec 27 17:12:56 2007 +0100
51677
51678 Add new Xilinx Spartan FPGA types
51679
51680 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51681
51682 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
51683 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51684 Date: Thu Dec 27 17:12:43 2007 +0100
51685
51686 Add pre and post configuration callbacks for Spartan FPGAs
51687
51688 This patch adds a post configuration callback for Spartan2/3 FPGAs.
51689 pre and post configuration callback are now optional and
51690 not called when the function pointer is set to NULL.
51691
51692 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51693
51694 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
51695 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51696 Date: Thu Dec 27 17:12:34 2007 +0100
51697
51698 Improve configuration of FPGA subsystem
51699
51700 This patch removes the FPGA subsystem configuration through
51701 the CONFIG_FPGA bitmask configuration option.
51702
51703 See README for the new options:
51704
51705 CONFIG_FPGA,
51706 CONFIG_FPGA_<vendor>,
51707 CONFIG_FPGA_<family>
51708
51709 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51710
51711 commit 95c6bc7d4a3588b452baca610f8c795a83630477
51712 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51713 Date: Thu Dec 27 16:55:17 2007 +0100
51714
51715 Add Epson RX8025 RTC support
51716
51717 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51718
51719 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
51720 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51721 Date: Thu Dec 27 16:57:23 2007 +0100
51722
51723 serial: Make default_serial_console() a weak function
51724
51725 With this patch it is possible to reimplement default_serial_console()
51726 in board specific code. This will be done in the upcomming PMC440
51727 U-Boot port. This also allows the lwmon board maintainer to
51728 remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
51729
51730 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51731
51732 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
51733 Author: Harald Welte <laforge@openmoko.org>
51734 Date: Wed Dec 19 14:14:47 2007 +0100
51735
51736 add 'terminal program' functionality
51737
51738 This patch adds a 'cu' like serial terminal command to u-boot
51739 using which you can access other serial ports from the system console.
51740
51741 OpenMoko uses this in their Neo1973 phones to get access to the GSM
51742 Modem and GPS chip from the bootloader.
51743
51744 Signed-off-by: Harald Welte <laforge@openmoko.org>
51745
51746 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
51747 Author: Harald Welte <laforge@openmoko.org>
51748 Date: Wed Dec 19 14:12:53 2007 +0100
51749
51750 Re-introduce the 'nand read.oob' and 'nand write.oob' commands
51751 that used to exist with the legacy NAND code
51752
51753 Signed-off-by: Harald Welte <laforge@openmoko.org>
51754
51755 commit f540c42d9564854b19ce9bbb70affe172529fe70
51756 Author: Harald Welte <laforge@openmoko.org>
51757 Date: Wed Dec 19 14:09:58 2007 +0100
51758
51759 Fix building with CRAMFS but not JFFS2 support
51760
51761 Signed-off-by: Harald Welte <laforge@openmoko.org>
51762
51763 commit 23d0baf967fecdaf1804f045f6339337c5607eec
51764 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51765 Date: Sat Dec 22 15:52:58 2007 +0100
51766
51767 Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
51768
51769 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
51770 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51771
51772 commit 23776ff292966a85d811126933830bed48211826
51773 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51774 Date: Tue Dec 11 10:53:12 2007 +0100
51775
51776 ARM: support board-specific ethernet PHY init
51777
51778 Add until the new phylib will be arrived
51779
51780 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51781
51782 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
51783 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51784 Date: Sat Dec 8 16:34:08 2007 +0100
51785
51786 IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
51787
51788 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51789
51790 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
51791 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51792 Date: Sun Dec 9 11:01:10 2007 +0100
51793
51794 Add missing file in gitignore and comments
51795
51796 based on Linux source tree's .gitignore files
51797
51798 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
51799
51800 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
51801 Author: Wolfgang Denk <wd@denx.de>
51802 Date: Wed Jan 9 11:36:21 2008 +0100
51803
51804 Coding Style cleanup, update CHANGELOG
51805
51806 Signed-off-by: Wolfgang Denk <wd@denx.de>
51807
51808 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
51809 Author: Stefan Roese <sr@denx.de>
51810 Date: Wed Jan 9 10:38:58 2008 +0100
51811
51812 POST: Execute SPR test after relocation
51813
51814 On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
51815 self modifying code and this doesn't work with stack in d-cache, since
51816 I can't move the code from d-cache to i-cache. We move the SPR test to
51817 be executed a little later, after relocation. Then stack is located in
51818 SDRAM and this self-modifying code is no problem anymore.
51819
51820 Signed-off-by: Stefan Roese <sr@denx.de>
51821
51822 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
51823 Author: Stefan Roese <sr@denx.de>
51824 Date: Wed Jan 9 10:28:20 2008 +0100
51825
51826 ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
51827
51828 This patch configures the LWMON5 port to use d-cache as init-ram and
51829 the unused GPT0_COMP6 as POST WORD storage.
51830
51831 Signed-off-by: Stefan Roese <sr@denx.de>
51832
51833 commit 1754f50b710194f886b6f2831803d8960171a14d
51834 Author: Stefan Roese <sr@denx.de>
51835 Date: Wed Jan 9 10:25:46 2008 +0100
51836
51837 ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
51838
51839 The privious 4xx POST implementation only supported storing the POST
51840 WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
51841 we need to store the POST WORD in some other non volatile location.
51842 This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
51843 a location.
51844
51845 Signed-off-by: Stefan Roese <sr@denx.de>
51846
51847 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
51848 Author: Stefan Roese <sr@denx.de>
51849 Date: Wed Jan 9 10:23:16 2008 +0100
51850
51851 ppc4xx: Add 44x cache locking to better support init-ram in d-cache
51852
51853 This patch adds support for locking the init-ram/stack in d-cache,
51854 so that other regions may use d-cache as well
51855
51856 Note, that this current implementation locks exactly 4k of d-cache,
51857 so please make sure that you don't define a bigger init-ram area. Take
51858 a look at the lwmon5 440EPx implementation as a reference.
51859
51860 Signed-off-by: Stefan Roese <sr@denx.de>
51861
51862 commit 0ddb89601a8d29e808db450366752ffdc6267c53
51863 Author: Wolfgang Denk <wd@denx.de>
51864 Date: Wed Jan 9 10:16:33 2008 +0100
51865
51866 Fix memset bug in ext2fs_read_file()
51867
51868 ext2fs_read_file() had the function arguments swapped.
51869
51870 Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
51871
51872 Signed-off-by: Wolfgang Denk <wd@denx.de>
51873
51874 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
51875 Author: Markus Klotzbücher <mk@denx.de>
51876 Date: Tue Jan 5 08:17:15 1988 +0100
51877
51878 Fix problems with usb storage devices on MPC5200 /TQM5200
51879
51880 The MPC5200 OHCI controller operates in big endian, so
51881 CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
51882
51883 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51884
51885 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
51886 Author: Wolfgang Denk <wd@denx.de>
51887 Date: Tue Jan 8 22:58:27 2008 +0100
51888
51889 Fix compile problem with new env code.
51890
51891 Signed-off-by: Wolfgang Denk <wd@denx.de>
51892
51893 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
51894 Author: Markus Klotzbücher <mk@denx.de>
51895 Date: Tue Nov 27 10:23:20 2007 +0100
51896
51897 tools: fix fw_printenv tool to compile again
51898
51899 This patch updates the fw_printenv/fw_setenv userspace tool to include
51900 the correct MTD header in order to compile against current kernel
51901 headers. Backward compatibility is preserved by introducing an option
51902 MTD_VERSION which can be set to "old" for compilation using the old MTD
51903 headers. Along with this a number of warnings are fixed.
51904
51905 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51906
51907 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
51908 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51909 Date: Tue Jan 8 15:40:09 2008 +0100
51910
51911 ppc4xx: assign PCI interrupts on seuqoia boards
51912
51913 Some operating systems rely on assigned PCI interrupts.
51914
51915 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51916
51917 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
51918 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51919 Date: Tue Jan 8 15:50:49 2008 +0100
51920
51921 ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
51922
51923 This patch allows the use of 4xx interrupt vector number defines
51924 in board specific code outside cpu/ppc4xx.
51925
51926 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51927
51928 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
51929 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51930 Date: Tue Jan 8 15:39:01 2008 +0100
51931
51932 ppc4xx: Fix UIC2 vector number base
51933
51934 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51935
51936 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
51937 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51938 Date: Tue Jan 8 12:49:58 2008 +0100
51939
51940 ppc4xx: Update PLB/PCI divider for PMC440 board
51941
51942 This patch updates the PLB/PCI divider when running at
51943 400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
51944
51945 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51946
51947 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
51948 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51949 Date: Tue Jan 8 11:13:09 2008 +0100
51950
51951 ppc4xx: Disable error message when no NAND chip is installed on PMC440
51952
51953 Add CFG_NAND_QUIET_TEST option to disable error message when
51954 no NAND chip is installed on PMC440 boards.
51955
51956 Disable a couple of config defines that are only used for NAND_U_BOOT.
51957
51958 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51959
51960 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
51961 Author: Wolfgang Denk <wd@denx.de>
51962 Date: Tue Jan 8 22:58:27 2008 +0100
51963
51964 Fix compile problem with new env code.
51965
51966 Signed-off-by: Wolfgang Denk <wd@denx.de>
51967
51968 commit 6de66b35426312a21174a9bf0576a094e2904bea
51969 Author: Markus Klotzbücher <mk@denx.de>
51970 Date: Tue Nov 27 10:23:20 2007 +0100
51971
51972 tools: fix fw_printenv tool to compile again
51973
51974 This patch updates the fw_printenv/fw_setenv userspace tool to include
51975 the correct MTD header in order to compile against current kernel
51976 headers. Backward compatibility is preserved by introducing an option
51977 MTD_VERSION which can be set to "old" for compilation using the old MTD
51978 headers. Along with this a number of warnings are fixed.
51979
51980 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51981
51982 commit ad3006fe7e84667021753b74247b0bafd97ba35f
51983 Author: Gerald Van Baren <vanbaren@cideas.com>
51984 Date: Mon Jan 7 23:47:32 2008 -0500
51985
51986 LIBFDT: use memmove() instead of memcpy()
51987
51988 This is partial patch from the DTC/libfdt
51989 commit 67b6b33b9b413a450a72135b5dc59c0a1e33e647
51990 Author: David Gibson <david@gibson.dropbear.id.au>
51991 Date: Wed Nov 21 11:56:14 2007 +1100
51992
51993 The patch also fixes one genuine bug caught by valgrind -
51994 _packblocks() in fdt_rw.c was using memcpy() where it should have been
51995 using memmove().
51996
51997 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
51998
51999 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
52000 Author: David Gibson <david@gibson.dropbear.id.au>
52001 Date: Mon Dec 17 14:42:07 2007 +1100
52002
52003 libfdt: Add more documentation (patch the seventh)
52004
52005 This patch adds more documenting comments to libfdt.h. Specifically,
52006 these document the read/write functions (not including fdt_open_into()
52007 and fdt_pack(), for now).
52008
52009 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52010
52011 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
52012 Author: David Gibson <david@gibson.dropbear.id.au>
52013 Date: Mon Dec 17 14:41:52 2007 +1100
52014
52015 libfdt: Add more documentation (patch the sixth)
52016
52017 This patch adds some more documenting comments to libfdt.h.
52018 Specifically this documents all the write-in-place functions.
52019
52020 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52021
52022 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
52023 Author: Gerald Van Baren <vanbaren@cideas.com>
52024 Date: Sat Dec 29 22:45:27 2007 -0500
52025
52026 Fine grained per property /chosen updating.
52027
52028 Implement a suggestion by Scott Wood to make the /chosen handling fine
52029 grained. Don't overwrite pre-existing properties on a per-property basis,
52030 so if /chosen exists but a necessary /chosen/property doesn't, it gets
52031 created. If a /chosen property exists, it is NOT overwritten unless the
52032 "force" flag is true.
52033
52034 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52035
52036 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
52037 Author: Gerald Van Baren <vanbaren@cideas.com>
52038 Date: Sat Jan 5 15:33:29 2008 -0500
52039
52040 Improve the FDT help message.
52041
52042 Add a note that "fdt copy" makes the new address active.
52043 Remove most of the extra hints at the end of the fdt help.
52044
52045 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52046
52047 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
52048 Author: Gerald Van Baren <vanbaren@cideas.com>
52049 Date: Sat Jan 5 14:52:04 2008 -0500
52050
52051 Support setting FDT properties with optional values.
52052
52053 Fix a bug found and documented by Bartlomiej Sieka where the optional
52054 value on "fdt set <path> <prop> [<val>]" wasn't optional.
52055
52056 => fdt mknode / testnode
52057 => fdt print /testnode
52058 testnode {
52059 };
52060 => fdt set /testnode testprop
52061 => fdt print /testnode
52062 testnode {
52063 testprop;
52064 };
52065
52066 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52067
52068 commit 22fb2246df91bfc840d87f0c5910818bad55577a
52069 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52070 Date: Fri Dec 28 11:56:30 2007 +0100
52071
52072 Add fdt_find_and_setprop() to fdt_support.h
52073
52074 fdt_find_and_setprop() is used by several 4xx boards and it's
52075 missing in the appropriate header. This patch eliminates a
52076 warning when building U-Boot for such boards.
52077
52078 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52079 Acked-by: Stefan Roese <sr@denx.de>
52080
52081 commit 802b769bac17b0560d3535a42c502469ee190cd1
52082 Author: Stefan Roese <sr@denx.de>
52083 Date: Tue Jan 8 18:39:30 2008 +0100
52084
52085 ppc4xx: Return 0 on success in 4xx ethernet driver
52086
52087 Signed-off-by: Stefan Roese <sr@denx.de>
52088
52089 commit 6775c68683a53c7abc778774641aac6f833a2cbf
52090 Author: Kim Phillips <kim.phillips@freescale.com>
52091 Date: Tue Jan 8 09:59:49 2008 -0600
52092
52093 mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
52094
52095 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52096
52097 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
52098 Author: Kim Phillips <kim.phillips@freescale.com>
52099 Date: Thu Dec 20 16:28:34 2007 -0600
52100
52101 mpc83xx: rm remaining FLAT_TREE code
52102
52103 ..in board pci.c files
52104
52105 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52106
52107 commit b3458d2cd55d01732e30a76d898afd99e871cd67
52108 Author: Kim Phillips <kim.phillips@freescale.com>
52109 Date: Thu Dec 20 15:57:28 2007 -0600
52110
52111 mpc83xx: remove FLAT_TREE code
52112
52113 need to rm it from pci code, too!
52114
52115 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52116
52117 commit 5b8bc606c61456566af6912f818a153b6b06f242
52118 Author: Kim Phillips <kim.phillips@freescale.com>
52119 Date: Thu Dec 20 14:09:22 2007 -0600
52120
52121 mpc83xx: convert to using do_fixup_*()
52122
52123 convert to using simpler mpc85xx style fdt update code; streamline by
52124 eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
52125 the old school FLAT_TREE code from 83xx (since the sbc8349 was just
52126 converted over to using libfdt).
52127
52128 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52129
52130 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
52131 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
52132 Date: Thu Dec 20 12:58:51 2007 -0500
52133
52134 sbc8349: enable libfdt by default on WRS SBC8349 board.
52135
52136 Make libfdt the default for the WRS SBC8349 board.
52137 Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
52138 done for the other 83xx based boards. Also fix a typo in CONFIG_PCI.
52139
52140 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
52141
52142 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
52143 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
52144 Date: Thu Dec 20 12:58:16 2007 -0500
52145
52146 sbc8349: migrate board to libfdt
52147
52148 This adds libfdt support code for the Wind River sbc8349 board.
52149
52150 Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
52151 the other Freescale 83xx boards.
52152
52153 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
52154
52155 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
52156 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
52157 Date: Thu Dec 20 12:56:19 2007 -0500
52158
52159 sbc8349: Remove board specific ECC code
52160
52161 ECC code is now shared for all 83xx boards, so remove board specific one.
52162 See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
52163
52164 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
52165
52166 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
52167 Author: Kim Phillips <kim.phillips@freescale.com>
52168 Date: Thu Dec 20 01:30:48 2007 -0600
52169
52170 mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
52171
52172 continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
52173
52174 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52175
52176 commit ccf21c311e68d48399eff1e72936052885f6e3f7
52177 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
52178 Date: Thu Dec 6 16:43:40 2007 +0100
52179
52180 Add support CONFIG_UEC_ETH3 in MPC83xx
52181
52182 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
52183
52184 commit e6af9932d31171e35db880e7b2f29f903b1b7660
52185 Author: Kumar Gala <galak@kernel.crashing.org>
52186 Date: Mon Nov 26 11:00:54 2007 -0600
52187
52188 Remove CONFIG options related to OF that we dont use
52189
52190 The MPC8360E MDS config defined:
52191 CONFIG_OF_HAS_BD_T
52192 CONFIG_OF_HAS_UBOOT_ENV
52193
52194 Which we don't use or ever needed. This seems like copy-paste feature creep.
52195
52196 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52197
52198 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
52199 Author: Kim Phillips <kim.phillips@freescale.com>
52200 Date: Mon Dec 10 14:16:22 2007 -0600
52201
52202 mpc83xx: supress compiler warning
52203
52204 mpc8360emds.c: In function ‘ft_board_setup’:
52205 mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
52206 mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
52207
52208 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52209
52210 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
52211 Author: Kim Phillips <kim.phillips@freescale.com>
52212 Date: Tue Nov 27 14:17:29 2007 -0600
52213
52214 mpc83xx: fix remaining fdt_find_node_by_path references
52215
52216 rename to fdt_path_offset
52217
52218 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52219
52220 commit 921d4b19ad1be704df58725485d9292dc0414adf
52221 Author: Kim Phillips <kim.phillips@freescale.com>
52222 Date: Mon Nov 19 12:30:09 2007 -0600
52223
52224 mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
52225
52226 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
52227 This change guarantees that the environment will be located on the
52228 first flash sector after the U-Boot image.
52229
52230 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52231
52232 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
52233 Author: Kim Phillips <kim.phillips@freescale.com>
52234 Date: Fri Nov 9 14:28:08 2007 -0600
52235
52236 mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
52237
52238 u-boot itself uses GMII mode on the 8360. Fix up UCC phy-connection-type
52239 properties in the device tree so the PHY gets configured for internal delay on
52240 RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
52241
52242 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52243
52244 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
52245 Author: Dave Liu <r63238@freescale.com>
52246 Date: Tue Sep 18 12:41:15 2007 +0800
52247
52248 mpc83xx: update the CREDITS and MAINTAINERS
52249
52250 update the CREDITS and MAINTAINERS.
52251
52252 Signed-off-by: Dave Liu <daveliu@freescale.com>
52253
52254 commit b21add4b42af7b767448251b599b91066a160e0d
52255 Author: Dave Liu <r63238@freescale.com>
52256 Date: Tue Sep 18 12:40:21 2007 +0800
52257
52258 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
52259
52260 Add the MAINTAINER and MAKEALL entries for mpc837xemds
52261
52262 Signed-off-by: Dave Liu <daveliu@freescale.com>
52263
52264 commit f8900ce9094c462355eb792eea264ff16ac8fd16
52265 Author: Dave Liu <r63238@freescale.com>
52266 Date: Tue Sep 18 12:38:53 2007 +0800
52267
52268 mpc83xx: Add the MPC837xEMDS board readme
52269
52270 Add the README.mpc837xemds to /doc
52271
52272 Signed-off-by: Dave Liu <daveliu@freescale.com>
52273
52274 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
52275 Author: Dave Liu <r63238@freescale.com>
52276 Date: Tue Sep 18 12:37:57 2007 +0800
52277
52278 mpc83xx: Add the support of MPC837xEMDS board
52279
52280 The MPC837xEMDS board support:
52281 * DDR2 400MHz hardcoded and SPD init
52282 * Local bus NOR Flash
52283 * I2C, UART, MII and RTC
52284 * eTSEC RGMII
52285 * PCI host
52286
52287 Signed-off-by: Dave Liu <daveliu@freescale.com>
52288
52289 commit 555da61702771fe0f76f3de23b4e7590f3704161
52290 Author: Dave Liu <r63238@freescale.com>
52291 Date: Tue Sep 18 12:36:58 2007 +0800
52292
52293 mpc83xx: Add the support of MPC8315E SoC
52294
52295 The MPC8315E SoC including e300c3 core and new IP blocks,
52296 such as TDM, PCI Express and SATA controller.
52297
52298 Signed-off-by: Dave Liu <daveliu@freescale.com>
52299
52300 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
52301 Author: Dave Liu <r63238@freescale.com>
52302 Date: Tue Sep 18 12:36:11 2007 +0800
52303
52304 mpc83xx: Add the support of MPC837x SoC
52305
52306 The MPC837x SoC including e300c4 core and new IP blocks,
52307 such as SDHC, PCI Express and SATA controller.
52308
52309 Signed-off-by: Dave Liu <daveliu@freescale.com>
52310
52311 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
52312 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52313 Date: Wed Nov 14 18:54:53 2007 +0300
52314
52315 MPC8360E-MDS: configure and enable second UART
52316
52317 Despite user manual, BCSR9.7 is negated (high) on HRST, so
52318 UART2 is disabled. Fix that and configure QE pins properly.
52319
52320 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52321
52322 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
52323 Author: Timur Tabi <timur@freescale.com>
52324 Date: Mon Nov 5 09:34:06 2007 -0600
52325
52326 83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
52327
52328 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
52329 currently-defined 83xx boards. This change guarantees that the environment
52330 will be located on the first flash sector after the U-Boot image.
52331
52332 Signed-off-by: Timur Tabi <timur@freescale.com>
52333 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52334
52335 commit e05329516a13616b53240cd85b739217c2bf87f1
52336 Author: Larry Johnson <lrj@acm.org>
52337 Date: Fri Jan 4 13:27:02 2008 -0500
52338
52339 ppc4xx: Remove weak binding from common Denali data-eye search code
52340
52341 Now that there are no board-specific versions of
52342 "denali_core_search_data_eye()", the weak binding on the common version
52343 can be removed.
52344
52345 Signed-off-by: Larry Johnson <lrj@acm.org>
52346
52347 commit 5ba576c01602fd328800a427964c36a0a05c5dce
52348 Author: Stefan Roese <sr@denx.de>
52349 Date: Sat Jan 5 09:13:46 2008 +0100
52350
52351 ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
52352
52353 Signed-off-by: Stefan Roese <sr@denx.de>
52354
52355 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
52356 Author: Stefan Roese <sr@denx.de>
52357 Date: Sat Jan 5 09:12:41 2008 +0100
52358
52359 ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
52360
52361 On Katmai the complete auto-calibration somehow doesn't seem to
52362 produce the best results, meaning optimal values for RQFD/RFFD.
52363 This was discovered by GDA using a high bandwidth scope,
52364 analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
52365 so now on Katmai "only" RFFD is auto-calibrated.
52366
52367 This patch also adds RDCC calibration as mentioned on page 7 of
52368 the AMCC PowerPC440SP/SPe DDR2 application note:
52369 "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
52370
52371 Signed-off-by: Stefan Roese <sr@denx.de>
52372
52373 commit 49db47b8ae6afff2b898be312948ff501357dc80
52374 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52375 Date: Wed Jan 2 16:48:42 2008 +0100
52376
52377 ppc4xx: Remove sdram.h from PMC440 board
52378
52379 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52380
52381 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
52382 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52383 Date: Wed Jan 2 16:48:34 2008 +0100
52384
52385 ppc4xx: use common denali core defines and data eye search code for PMC440
52386
52387 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52388
52389 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
52390 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52391 Date: Wed Jan 2 12:05:14 2008 +0100
52392
52393 ppc4xx: More cleanup for esd's LCD code
52394
52395 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52396
52397 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
52398 Author: Stefan Roese <sr@denx.de>
52399 Date: Fri Jan 4 12:00:01 2008 +0100
52400
52401 ppc4xx: Fix Sequoia NAND booting target
52402
52403 The Sequoia NAND booting target now uses the recently extracted
52404 cpu/ppc4xx/denali_data_eye.c file too.
52405
52406 Signed-off-by: Stefan Roese <sr@denx.de>
52407
52408 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
52409 Author: Lawrence R. Johnson <lrj@acm.org>
52410 Date: Thu Jan 3 15:02:02 2008 -0500
52411
52412 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
52413
52414 Signed-off-by: Larry Johnson <lrj@acm.org>
52415
52416 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
52417 Author: Lawrence R. Johnson <lrj@acm.org>
52418 Date: Fri Jan 4 02:11:56 2008 -0500
52419
52420 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
52421
52422 Note: this patch changes the configuration of some GPIO registers:
52423
52424 Register Old Value New Value
52425 --------------- ---------- ----------
52426 DCR GPIO0_TCR 0x0000000F 0x0000F0CF
52427 DCR GPIO0_TSRH 0x55005000 0x00000000
52428 DCR GPIO1_TCR 0xC2000000 0xE2000000
52429 DCR GPIO1_TSRL 0x0C000000 0x00200000
52430 DCR GPIO1_ISR2L 0x00050000 0x00110000
52431
52432 Signed-off-by: Larry Johnson <lrj@acm.org>
52433
52434 commit 5ab884b254ca2e707ab50545cd705f30108cf491
52435 Author: Lawrence R. Johnson <lrj@acm.org>
52436 Date: Thu Jan 3 18:54:00 2008 -0500
52437
52438 ppc4xx: Add functionality to GPIO support
52439
52440 This patch makes two additions to GPIO support:
52441
52442 First, it adds function gpio_read_in_bit() to read the a bit from the
52443 GPIO Input Register (GPIOx_IR) in the same way that function
52444 gpio_read_out_bit() reads a bit from the GPIO Output Register
52445 (GPIOx_OR).
52446
52447 Second, it modifies function gpio_set_chip_configuration() to provide
52448 an additional option for configuring the GPIO from the
52449 "CFG_4xx_GPIO_TABLE".
52450
52451 According to the 440EPx User's Manual, when an alternate output is used,
52452 the three-state control is configured in one of two ways, depending on
52453 the particular output. The first option is to select the corresponding
52454 alternate three-state control in the GPIOx_TRSH/L registers. The second
52455 option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
52456 the GPIOx_TRSH/L registers, and set the corresponding bit in the
52457 GPIOx_TCR register to enable the output. For example, the Manual
52458 specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
52459 the alternate three-state control (first option), and specifies
52460 configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
52461 enabled in the GPIOx_TCR register (second option).
52462
52463 Currently, gpio_set_chip_configuration() configures all alternate signal
52464 outputs to use the first option. This patch allow the second option to
52465 be selected by setting the "out_val" element in the table entry to
52466 "GPIO_OUT_1". The first option is used when the "out_val" element is
52467 set to "GPIO_OUT_0". Because "out_val" is not currently used when an
52468 alternate signal is selected, and because all current GPIO tables set
52469 "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
52470 not change any existing configurations.
52471
52472 Signed-off-by: Larry Johnson <lrj@acm.org>
52473
52474 commit 196404cdc1de495d6182e84731c200fc5748df15
52475 Author: Larry Johnson <lrj@arlinx.com>
52476 Date: Sun Dec 30 01:01:54 2007 -0500
52477
52478 PPC4xx: Remove sdram.h from board/lwmon5
52479
52480 These definitions are now in "include/ppc440.h".
52481
52482 Signed-off-by: Larry Johnson <lrj@acm.org>
52483
52484 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
52485 Author: Larry Johnson <lrj@arlinx.com>
52486 Date: Sun Dec 30 01:01:32 2007 -0500
52487
52488 PPC4xx: Use common code for LWMON5 board SDRAM support
52489
52490 This patch also modifies the functionality of the code so that the data-eye
52491 search is now done with with the cache disabled.
52492
52493 Signed-off-by: Larry Johnson <lrj@acm.org>
52494
52495 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
52496 Author: Larry Johnson <lrj@arlinx.com>
52497 Date: Sun Dec 30 01:01:14 2007 -0500
52498
52499 PPC4xx: Remove sdram.h from board/amcc/sequoia
52500
52501 These definitions are now in "include/ppc440.h".
52502
52503 Signed-off-by: Larry Johnson <lrj@acm.org>
52504
52505 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
52506 Author: Larry Johnson <lrj@arlinx.com>
52507 Date: Sun Dec 30 01:00:50 2007 -0500
52508
52509 PPC4xx: Use common code for Sequoia board SDRAM support
52510
52511 Signed-off-by: Larry Johnson <lrj@acm.org>
52512
52513 commit 8b0c5c127690335758100c25eaec2b84db97c101
52514 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52515 Date: Thu Dec 27 16:58:41 2007 +0100
52516
52517 net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
52518
52519 When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
52520 networking stack does not automatically switch to
52521 another interface. This patch does not touch the default
52522 behavior.
52523
52524 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52525 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
52526
52527 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
52528 Author: Upakul Barkakaty <upakul@gmail.com>
52529 Date: Thu Nov 29 12:16:13 2007 +0530
52530
52531 NET: Proper return code handling in eth_init() function in file eth.c
52532
52533 This patch modifies the return code handling in the eth_init()
52534 function, to be compatible with the handling of the return codes in
52535 the other network stack files. It now returns a 0 on Success and -1 on
52536 error.
52537
52538 Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
52539 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
52540
52541 commit 5ca2d0953e4579a80810966cca2077e20d912c97
52542 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
52543 Date: Mon Nov 19 20:27:04 2007 +0900
52544
52545 net/eth.c: Fix env_enetaddr signed overflow
52546
52547 Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
52548 warned as below:
52549
52550 U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
52551
52552 DRAM: 256 MB
52553 Flash: 32 MB
52554 In: serial
52555 Out: serial
52556 Err: serial
52557 Net: NEC-Candy
52558 Warning: NEC-Candy MAC addresses don't match:
52559 Address in SROM is 00:00:4C:80:92:A2
52560 Address in environment is FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
52561
52562 This patch changes env_enetaddr type from `char' to `unsigned char'.
52563
52564 Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
52565 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
52566 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
52567
52568 commit f85b60710571b37293d2233933b76e2aa3db5635
52569 Author: Rafal Jaworowski <raj@semihalf.com>
52570 Date: Thu Dec 27 18:19:02 2007 +0100
52571
52572 Introduce new eth_receive routine
52573
52574 The purpose of this routine is receiving a single network frame, outside of
52575 U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
52576 U-Boot will let them utilise networking facilities. For sending a raw frame
52577 the already existing eth_send() can be used.
52578
52579 The direct consumer of this routine is the newly introduced API layer for
52580 external applications (enabled with CONFIG_API).
52581
52582 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
52583 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
52584 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
52585
52586 commit 5c740711f0ea5b51414b341b71597c4a0751be74
52587 Author: Jon Loeliger <jdl@freescale.com>
52588 Date: Thu Jan 3 10:41:04 2008 -0600
52589
52590 8610: Move include of config.h earlier.
52591
52592 Include config.h earlier in the set of #includes
52593 so as to avoid a incidental and duplicate definition
52594 of CFG_CACHELINE_SIZE.
52595
52596 Signed-off-by: Jon Loeliger
52597
52598 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
52599 Author: Jon Loeliger <jdl@freescale.com>
52600 Date: Tue Dec 4 10:53:34 2007 -0600
52601
52602 Don't slam #undef DEBUG in the 8641HPCN config file.
52603
52604 Doing so prevents it from being individually set
52605 and useful in other files.
52606
52607 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52608
52609 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
52610 Author: Jon Loeliger <jdl@freescale.com>
52611 Date: Wed Nov 28 14:47:18 2007 -0600
52612
52613 Convert MPC8641HPCN to use libfdt.
52614
52615 Assumes the presence of the aliases node in the DTS to
52616 locate the ethernet, pci and serial nodes for fixups.
52617
52618 Use consistent fdtaddr and fdtfile in environment variables.
52619
52620 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52621
52622 commit ce37422d0002e10490e268392e0c4e3028e52cec
52623 Author: Stefan Roese <sr@denx.de>
52624 Date: Wed Jan 2 14:06:26 2008 +0100
52625
52626 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
52627
52628 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
52629 flash chips connected to a 32bit wide port.
52630
52631 Signed-off-by: Stefan Roese <sr@denx.de>
52632
52633 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
52634 Author: Wolfgang Denk <wd@denx.de>
52635 Date: Wed Jan 2 15:58:44 2008 +0100
52636
52637 Fix compile problem introduced by "cleanup" commit 3dfd708c
52638
52639 Signed-off-by: Wolfgang Denk <wd@denx.de>
52640
52641 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
52642 Author: Wolfgang Denk <wd@denx.de>
52643 Date: Wed Jan 2 15:54:45 2008 +0100
52644
52645 Make scripts and Makefiles POSIX compliant
52646
52647 The bash builtin versions of the "test" (resp. "[") command allow
52648 using "==" for string comparisons, but POSIX compatible implemen-
52649 tations (like /usr/bin/test) insist on using "=" only. On such systems
52650 you will see:
52651
52652 $ /usr/bin/test a == a && echo OK
52653 /usr/bin/test: ==: binary operator expected
52654
52655 This patch fixes Makefiles and scripts to use POSIX style.
52656
52657 Signed-off-by: Wolfgang Denk <wd@denx.de>
52658
52659 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
52660 Author: Stefan Roese <sr@denx.de>
52661 Date: Wed Jan 2 14:05:37 2008 +0100
52662
52663 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
52664
52665 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
52666 flash chips connected to a 32bit wide port.
52667
52668 Signed-off-by: Stefan Roese <sr@denx.de>
52669
52670 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
52671 Author: Wolfgang Denk <wd@denx.de>
52672 Date: Wed Jan 2 12:38:43 2008 +0100
52673
52674 Minor coding style cleanup.
52675
52676 Signed-off-by: Wolfgang Denk <wd@denx.de>
52677
52678 commit e174ac34adf5d5653df12bc3cf19c52063a71269
52679 Author: Stefan Roese <sr@denx.de>
52680 Date: Fri Dec 28 17:29:56 2007 +0100
52681
52682 ppc4xx: Coding style cleanup
52683
52684 Signed-off-by: Stefan Roese <sr@denx.de>
52685
52686 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
52687 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52688 Date: Fri Dec 28 17:07:24 2007 +0100
52689
52690 ppc4xx: Complete PMC440 board support
52691
52692 This patch brings the PMC440 board configuration file.
52693 Finally it enables the PMC440 board support.
52694
52695 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52696
52697 commit 407843a582560fc5231299561ab3c2b6b6cd3397
52698 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52699 Date: Fri Dec 28 17:07:18 2007 +0100
52700
52701 ppc4xx: Add FPGA support and BSP commands for PMC440 boards
52702
52703 This patch adds some BSP commands and FPGA booting support
52704 for esd's PMC440 boards.
52705
52706 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52707
52708 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
52709 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52710 Date: Fri Dec 28 17:07:14 2007 +0100
52711
52712 ppc4xx: Add initial esd PMC440 board files
52713
52714 This patch adds the first files for the new esd PMC440 boards.
52715 The next two patches will complete the PMC440 board support.
52716
52717 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52718
52719 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
52720 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52721 Date: Fri Dec 28 17:10:36 2007 +0100
52722
52723 ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
52724
52725 - add EEPROM write protection for esd PLU405 boards.
52726 - initialize NAND GPIOs
52727 - use correct io accessors
52728 - cleanup
52729
52730 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52731
52732 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
52733 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52734 Date: Fri Dec 28 17:10:44 2007 +0100
52735
52736 ppc4xx: use correct io accessors for esd's LCD code
52737
52738 This patch fixes esd's LCD dectection code to work correctly with
52739 newer gcc versions.
52740
52741 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52742
52743 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
52744 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52745 Date: Fri Dec 28 17:10:42 2007 +0100
52746
52747 ppc4xx: Maintenance patch for VOH405 boards
52748
52749 - add EEPROM write protection
52750 - initialize NAND GPIOs
52751 - use correct io accessors
52752 - slow down I2C clock to 100kHz
52753 - enable ext. I2C bus
52754 - cleanup
52755
52756 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52757
52758 commit c05569066dbcba3fdf36d4d1943df265dc316a86
52759 Author: Stefan Roese <sr@denx.de>
52760 Date: Fri Dec 28 16:08:08 2007 +0100
52761
52762 ppc4xx: Enable 405EP PCI arbiter per default on all boards
52763
52764 In an attmemt to clean up the 4xx start.S file, I removed the enabling
52765 of the internal 405EP PCI arbiter. This is needed for multiple other
52766 405EP platforms, like most of the esd 405EP. Now the internal PCI
52767 arbiter is enabled again per default as it has been before.
52768
52769 Signed-off-by: Stefan Roese <sr@denx.de>
52770 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52771
52772 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
52773 Author: Stefan Roese <sr@denx.de>
52774 Date: Fri Dec 28 15:53:46 2007 +0100
52775
52776 ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
52777
52778 Signed-off-by: Stefan Roese <sr@denx.de>
52779 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52780
52781 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
52782 Author: Stefan Roese <sr@denx.de>
52783 Date: Fri Dec 28 06:06:04 2007 +0100
52784
52785 ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
52786
52787 Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
52788 platforms mentioned above.
52789
52790 Signed-off-by: Stefan Roese <sr@denx.de>
52791
52792 commit b568fd25574181a3b12ae3d66b2913903442cb83
52793 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52794 Date: Thu Dec 27 17:03:46 2007 +0100
52795
52796 Remove CPCI440 board
52797
52798 This board never left prototyping state and it
52799 became a millstone round my neck. So remove it.
52800
52801 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52802
52803 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
52804 Author: Larry Johnson <lrj@arlinx.com>
52805 Date: Thu Dec 27 11:28:51 2007 -0500
52806
52807 Add support for Korat PPC440EPx board
52808
52809 These patches add support for the PPC440EPx-based "Korat" board to
52810 U-Boot. They are based primarily on support for the Sequoia board.
52811
52812 Signed-off-by: Larry Johnson <lrj@acm.org>
52813
52814 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
52815 Author: Larry Johnson <lrj@arlinx.com>
52816 Date: Sat Dec 22 15:16:25 2007 -0500
52817
52818 Add configuration file for Korat board
52819
52820 This patch supplies the configuration file for the Korat PPC440EPx-
52821 processor board.
52822
52823 Signed-off-by: Larry Johnson <lrj@acm.org>
52824
52825 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
52826 Author: Larry Johnson <lrj@arlinx.com>
52827 Date: Sat Dec 22 15:16:11 2007 -0500
52828
52829 Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
52830
52831 Signed-off-by: Larry Johnson <lrj@acm.org>
52832
52833 commit aba19604d848b2838cfb9ebe818909e6a216058e
52834 Author: Larry Johnson <lrj@arlinx.com>
52835 Date: Thu Dec 27 10:54:48 2007 -0500
52836
52837 Add 440EPx DDR2 SPD DIMM support
52838
52839 This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
52840 controller. It should also work on the 440GRx. It is based on the DDR2
52841 SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
52842
52843 This code has been tested on prototype Korat boards with three Kingston
52844 DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
52845 (two ranks). The Korat board has a single DIMM socket, but support has
52846 been provided (though not tested) for boards with two DIMM sockets.
52847
52848 Signed-off-by: Larry Johnson <lrj@acm.org>
52849
52850 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
52851 Author: Larry Johnson <lrj@arlinx.com>
52852 Date: Sat Dec 22 15:15:30 2007 -0500
52853
52854 Copy 440EPx/GRx SDRAM data-eye search to common directory
52855
52856 This patch creates a non-board-specific file for performing the SDRAM
52857 data-eye search. It also adds ECC error checking to the test of valid
52858 data on readback when ECC is enabled.
52859
52860 Signed-off-by: Larry Johnson <lrj@acm.org>
52861
52862 commit c46f53333b22b1f9098676bea8884fc7db820cf3
52863 Author: Larry Johnson <lrj@arlinx.com>
52864 Date: Sat Dec 22 15:15:13 2007 -0500
52865
52866 Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
52867
52868 This patch adds the Denali SDRAM controller definitions to "ppc440.h".
52869 It also fixes two typos in the definitions, so the board-specific
52870 "sdram.h" files containing these definitions are also fixed to avoid
52871 compiler warnings.
52872
52873 Signed-off-by: Larry Johnson <lrj@acm.org>
52874
52875 commit c348578bf612d0c56d8d376d23cae16defbd86af
52876 Author: Larry Johnson <lrj@arlinx.com>
52877 Date: Thu Dec 27 10:50:55 2007 -0500
52878
52879 Add Ethernet 1000BASE-X support for PPC4xx
52880
52881 This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG". When this symbol
52882 is defined, the PHY will advertise it's capabilities for autonegotiation
52883 based on the capabilities shown in the PHY's status registers, including
52884 1000BASE-X. When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
52885 advertise hard-coded capabilities, as before.
52886
52887 Signed-off-by: Larry Johnson <lrj@acm.org>
52888
52889 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
52890 Author: Larry Johnson <lrj@arlinx.com>
52891 Date: Thu Dec 27 09:52:17 2007 -0500
52892
52893 Add driver for National Semiconductor LM73 temperature sensor
52894
52895 This driver is based on the driver for the LM75.
52896
52897 Signed-off-by: Larry Johnson <lrj@acm.org>
52898
52899 commit 12618278688ea9b3d76536960a5ad2e3790fac40
52900 Author: Larry Johnson <lrj@arlinx.com>
52901 Date: Sat Dec 22 15:14:00 2007 -0500
52902
52903 Add driver for STMicroelectronics M41T60 RTC
52904
52905 This driver is based on the driver for the M41T11. In the intended
52906 application, the RTC will be powered by a large capacitor, rather than a
52907 battery. The driver therefore checks to see whether the RTC has lost
52908 power. The chip's OUT bit is normally reset from its power-up state. If
52909 the OUT bit is read as set, or if the date and time are not valid, then the
52910 RTC is assumed to have lost power, and its date and time are reset to
52911 1900-01-01 00:00:00.
52912
52913 Support for adjusting the speed of the clock to improve accuracy is
52914 provided through an environment variable.
52915
52916 Signed-off-by: Larry Johnson <lrj@acm.org>
52917
52918 commit d3471173e14b7544bb60339eda8d3d3906694b0a
52919 Author: Larry Johnson <lrj@arlinx.com>
52920 Date: Sat Dec 22 15:34:39 2007 -0500
52921
52922 Use out_be32() and friends to access memory-mapped registers in sequoia.c
52923
52924 Signed-off-by: Larry Johnson <lrj@acm.org>
52925
52926 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
52927 Author: Larry Johnson <lrj@arlinx.com>
52928 Date: Sat Dec 22 15:34:20 2007 -0500
52929
52930 Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
52931
52932 Signed-off-by: Larry Johnson <lrj@acm.org>
52933
52934 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
52935 Author: Larry Johnson <lrj@arlinx.com>
52936 Date: Sat Dec 22 15:23:50 2007 -0500
52937
52938 Cosmetic changes to ECC POST for AMCC Denali core
52939
52940 Signed-off-by: Larry Johnson <lrj@acm.org>
52941
52942 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
52943 Author: Stefan Roese <sr@denx.de>
52944 Date: Wed Dec 26 20:20:19 2007 +0100
52945
52946 ppc4xx: Fix compilation problem in 405 cache POST test
52947
52948 Signed-off-by: Stefan Roese <sr@denx.de>
52949
52950 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
52951 Author: Stefan Roese <sr@denx.de>
52952 Date: Sat Dec 22 12:20:09 2007 +0100
52953
52954 ppc4xx: Move virtual address of POST cache test to bigger address
52955
52956 On Sequoia & LWMON5 the virtual address of the POST cache test is now
52957 moved to a bigger address. This enables usage of more memory on those
52958 boards.
52959
52960 Signed-off-by: Stefan Roese <sr@denx.de>
52961
52962 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
52963 Author: Stefan Roese <sr@denx.de>
52964 Date: Sat Dec 22 12:18:26 2007 +0100
52965
52966 ppc4xx: Fix problem in 44x cache POST routine
52967
52968 As repoted by Larry Johnson, running "diag run cache" caused a crash
52969 in U-Boot. This problem was introduced by a patch that removed the
52970 TLB entry for the cache test after the test has completed. Since this
52971 TLB was only setup once, a 2nd attempt to run this cache test
52972 failed with a crash. Now this TLB entry is created every time the
52973 routine is called.
52974
52975 Signed-off-by: Stefan Roese <sr@denx.de>
52976
52977 commit b0265b576bb8fa9465f99e99c323768b562fadc2
52978 Author: Stefan Roese <sr@denx.de>
52979 Date: Fri Dec 21 07:51:29 2007 +0100
52980
52981 ppc4xx: Update Makalu fdt support
52982
52983 Signed-off-by: Stefan Roese <sr@denx.de>
52984
52985 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
52986 Author: Stefan Roese <sr@denx.de>
52987 Date: Wed Dec 19 09:05:40 2007 +0100
52988
52989 ppc4xx: Add fdt support to AMCC Katmai eval board
52990
52991 Signed-off-by: Stefan Roese <sr@denx.de>
52992
52993 commit 328a340392a5df9aaf00792be989df73e750859e
52994 Author: Stefan Roese <sr@denx.de>
52995 Date: Tue Dec 18 08:44:51 2007 +0100
52996
52997 ppc4xx: fdt: Cleanup setup of cpu node setup
52998
52999 Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
53000 without using the absolute path to the cpu node. This makes it possible
53001 to use this U-Boot version with both versions of cpu-node naming
53002 "cpu@0" and the former "PowerPC,440EPx@0".
53003
53004 Signed-off-by: Stefan Roese <sr@denx.de>
53005
53006 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
53007 Author: Stefan Roese <sr@denx.de>
53008 Date: Mon Dec 17 17:26:21 2007 +0100
53009
53010 ppc4xx: Fix lwmon5 compilation problem
53011
53012 Now that the 440EPx ECC test is not board specific anymore
53013 remove this Makefile.
53014
53015 Signed-off-by: Stefan Roese <sr@denx.de>
53016
53017 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
53018 Author: Anatolij Gustschin <agustschin@t-online.de>
53019 Date: Wed Dec 5 17:43:20 2007 +0100
53020
53021 Fix ppc4xx clear_bss() code
53022
53023 ppc4xx clear_bss() fails if BSS segment size is not
53024 divisible by 4 without remainder. This patch provides
53025 fix for this problem.
53026
53027 Signed-off-by: Anatolij Gustschin <agust@denx.de>
53028
53029 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
53030 Author: Niklaus Giger <niklausgiger@gmx.ch>
53031 Date: Fri Nov 30 18:35:11 2007 +0100
53032
53033 PPC4xx: Minimal changes to add vxWorks support
53034
53035 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53036
53037 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
53038 Author: Markus Klotzbücher <mk@denx.de>
53039 Date: Fri Nov 23 13:09:18 2007 +0100
53040
53041 ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
53042
53043 When using dhcp/bootp the "netmask" environment variable is not
53044 set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
53045 desireable, so the following patch adds this this option to the board
53046 config.
53047
53048 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
53049 Signed-off-by: Stefan Roese <sr@denx.de>
53050
53051 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
53052 Author: Larry Johnson <lrj@arlinx.com>
53053 Date: Sat Oct 27 12:48:15 2007 -0400
53054
53055 Fix/enhance ECC POST for 440EPx/GRx
53056
53057 This patch allows the ECC POST to be used for different boards with the
53058 PPC440 Denali SDRAM controller. Modifications include skipping the test
53059 if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
53060 to prevent timing errors.
53061
53062 Signed-off-by: Larry Johnson <lrj@acm.org>
53063
53064 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
53065 Author: Larry Johnson <lrj@arlinx.com>
53066 Date: Sat Oct 27 12:48:05 2007 -0400
53067
53068 PPC4xx: Move/rename ECC POST for 440EPx/GRx
53069
53070 Signed-off-by: Larry Johnson <lrj@acm.org>
53071
53072 commit c29d2d3680046d430022c55e50fcb27f5866517e
53073 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53074 Date: Fri Dec 14 11:20:33 2007 +0100
53075
53076 ppc4xx: use correct io accessors for 4xx ethernet POST
53077
53078 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53079
53080 commit ba79fde58a48c0a6ff8e2a96caba951594142203
53081 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53082 Date: Fri Dec 14 11:19:56 2007 +0100
53083
53084 ppc4xx: fix flush + invalidate_dcache_range arguments
53085
53086 flush + invalidate_dcache_range() expect the start and stop+1 address.
53087 So the stop address is the first address behind (!) the range.
53088
53089 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53090
53091 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
53092 Author: Stefan Roese <sr@denx.de>
53093 Date: Fri Dec 14 08:41:29 2007 +0100
53094
53095 ppc4xx: fdt: use fdt_fixup_ethernet()
53096
53097 By using aliases in the dts file, the ethernet node fixup is
53098 much easier with the recently added functions.
53099
53100 Please note that the dts file needs the aliases for this to work.
53101
53102 Signed-off-by: Stefan Roese <sr@denx.de>
53103
53104 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
53105 Author: Stefan Roese <sr@denx.de>
53106 Date: Thu Dec 13 14:52:53 2007 +0100
53107
53108 ppc4xx: Bring 4xx fdt support up-to-date
53109
53110 This patch update the 4xx fdt support. It enabled fdt booting
53111 on the AMCC Kilauea and Sequoia for now. More can follow later
53112 quite easily.
53113
53114 Signed-off-by: Stefan Roese <sr@denx.de>
53115
53116 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
53117 Author: Stefan Roese <sr@denx.de>
53118 Date: Thu Dec 27 07:50:54 2007 +0100
53119
53120 cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
53121
53122 The check for an sufficiently erased destination was missing in the
53123 buffered write function of the cfi flash driver (when
53124 CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
53125 writing to such a region will fail with the currect error message.
53126
53127 Signed-off-by: Stefan Roese <sr@denx.de>
53128
53129 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
53130 Author: Martin Krause <martin.krause@tqs.de>
53131 Date: Mon Nov 12 10:56:17 2007 +0100
53132
53133 Some configuration updates for the TQM5200 based TB5200 board:
53134
53135 - enable command line history
53136 - increase malloc space (because of bigger flash sectors)
53137
53138 Signed-off-by: Martin Krause <martin.krause@tqs.de>
53139
53140 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
53141 Author: Martin Krause <martin.krause@tqs.de>
53142 Date: Thu Sep 27 11:10:08 2007 +0200
53143
53144 TQM8xx: use the CFI flash driver on all TQM8xx boards
53145
53146 Signed-off-by: Martin Krause <martin.krause@tqs.de>
53147
53148 commit 11d9eec479b470eab9242ab937fca70a876d9376
53149 Author: Martin Krause <martin.krause@tqs.de>
53150 Date: Wed Sep 26 17:55:56 2007 +0200
53151
53152 TQM885D: adjust for doubled flash sector size + some minor fixes
53153
53154 Signed-off-by: Martin Krause <martin.krause@tqs.de>
53155
53156 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
53157 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
53158 Date: Wed Sep 26 17:55:54 2007 +0200
53159
53160 TQM885D: Exchanged SDRAM timing by a more relaxed timing.
53161
53162 CAS-Latency=2, Write Recovery Time tWR=2
53163 The max. supported bus frequency is 66 MHz. Therefore, changed
53164 threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
53165
53166 Signed-off-by: Martin Krause <martin.krause@tqs.de>
53167
53168 commit b988b8cd443989be65161888eea0127ad03f846f
53169 Author: Martin Krause <martin.krause@tqs.de>
53170 Date: Wed Sep 26 17:55:56 2007 +0200
53171
53172 TQM885D: use calculated cpuclk instead of measuring it
53173
53174 On the TQM885D the measurement of cpuclk with the PIT reference
53175 timer ist not necessary. Since all module variants use the same
53176 external 10 MHz oscillator, the cpuclk only depends on the PLL
53177 configuration - which is readable by software.
53178
53179 Signed-off-by: Martin Krause <martin.krause@tqs.de>
53180
53181 commit 492c7049869348d31168de8dad89651315e468e0
53182 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
53183 Date: Thu Sep 27 14:54:46 2007 +0200
53184
53185 TQM885D: fix SDRAM refresh
53186
53187 At 133 MHz the current SDRAM refresh rate is too fast
53188 (measured 4 * 1.17 us).
53189 CFG_MAMR_PTA changes from 39 to 128. This result
53190 in a refresh rate of 4 * 7.8 us at the default clock
53191 66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
53192 This is a compromise until a new method is found to
53193 adjust the refresh rate.
53194
53195 Signed-off-by: Martin Krause <martin.krause@tqs.de>
53196
53197 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
53198 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
53199 Date: Thu Sep 27 14:54:46 2007 +0200
53200
53201 TQM860M: Support for 10col SDRAMs, max. 128 MiB
53202
53203 Signed-off-by: Martin Krause <martin.krause@tqs.de>
53204
53205 commit 61fb15c516fef5631e305f1976d7b3a679725856
53206 Author: Wolfgang Denk <wd@denx.de>
53207 Date: Thu Dec 27 01:52:50 2007 +0100
53208
53209 Fix coding style issues; update CHANGELOG.
53210
53211 Signed-off-by: Wolfgang Denk <wd@denx.de>
53212
53213 commit 467bcee11fe26ad422f2de971aa70866079870f2
53214 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53215 Date: Fri Dec 14 15:36:18 2007 +0100
53216
53217 cfi_flash: Add manufacturer-specific fixups
53218
53219 Run fixups based on the JEDEC manufacturer ID independent of the
53220 command set ID.
53221
53222 This changes current behaviour: Previously, geometry reversal for AMD
53223 chips were done based on the command set ID, while they are now done
53224 based on the JEDEC manufacturer and device ID.
53225
53226 Also add fixup for top-boot Atmel chips. A fixup is needed for
53227 AT49BV6416(T) too, but since u-boot currently only reads the low byte
53228 of the device ID, there's no way to tell it apart from AT49BV642D,
53229 which should not have this fixup. Since AT49BV642D support is
53230 necessary to get ATNGW100 board support into mainline, I've commented
53231 out the fixup for now.
53232
53233 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53234
53235 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
53236 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53237 Date: Fri Dec 14 15:36:17 2007 +0100
53238
53239 cfi_flash: Add cmdset-specific init functions
53240
53241 Move things like reading JEDEC IDs and fixing up geometry reversal
53242 into separate functions. The geometry reversal fixup is now performed
53243 by altering the qry structure directly, which makes the sector init
53244 code slightly cleaner.
53245
53246 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53247
53248 commit e23741f4a6d8047520ef0d4971762749b3587d32
53249 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53250 Date: Fri Dec 14 15:36:16 2007 +0100
53251
53252 cfi_flash: Read whole QRY structure in one go
53253
53254 Read out the whole CFI Standard Query structure after successful cfi
53255 identification. This allows subsequent code to access this information
53256 directly without having to go through flash_read_uchar() and friends.
53257
53258 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53259
53260 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
53261 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53262 Date: Mon Dec 17 11:02:44 2007 +0100
53263
53264 AVR32: Fix logic inversion in disable_interrupts()
53265
53266 disable_interrupts() should return nonzero if interrupts were
53267 _enabled_ before, not disabled.
53268
53269 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53270
53271 commit acac475212cbedb17b321a363a1c878e2b47b37f
53272 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53273 Date: Fri Dec 14 16:51:22 2007 +0100
53274
53275 AVR32: Enable interrupts at bootup
53276
53277 The timer code depends on the timer interrupt to keep track of the
53278 upper 32 bits of the cycle counter. This obviously doesn't work when
53279 interrupts are disabled the whole time.
53280
53281 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53282
53283 commit 9570bcd87f4db255514f43b6701746c412f8fef0
53284 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53285 Date: Thu Nov 15 10:03:45 2007 +0100
53286
53287 AVR32: Fix wrong pin setup for USART3
53288
53289 As reported by Gerhard Berghofer:
53290
53291 in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
53292 instead of PB18 and PB19.
53293
53294 which is obviously correct. There's currently no code that uses
53295 USART3, but custom boards may run into problems.
53296
53297 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53298
53299 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
53300 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53301 Date: Thu Nov 1 12:44:20 2007 +0100
53302
53303 README: Remove ATSTK1000 daughterboard list
53304
53305 As noted by Kim Phillips, these lists tend to become out of date.
53306
53307 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53308
53309 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
53310 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53311 Date: Tue Oct 30 14:56:36 2007 +0100
53312
53313 Add ATSTK100[234] to MAINTAINERS
53314
53315 Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
53316 "mother". Also update the entry for ATSTK1000 to be not only about the
53317 AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
53318
53319 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53320
53321 commit 64ff2357b1727213803591813dbc779c924bf772
53322 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53323 Date: Mon Oct 29 13:02:54 2007 +0100
53324
53325 AVR32: Add support for the ATSTK1004 board
53326
53327 ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
53328 which is a derivative of AT32AP7000.
53329
53330 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53331
53332 commit 667568db157f374b85abd7e03596ddd1f0b25681
53333 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53334 Date: Mon Oct 29 13:02:54 2007 +0100
53335
53336 AVR32: Add support for the ATSTK1003 board
53337
53338 ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
53339 which is a derivative of AT32AP7000.
53340
53341 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53342
53343 commit 5fee84a794a51ec830548cda485a770efb018b92
53344 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53345 Date: Mon Oct 29 13:23:33 2007 +0100
53346
53347 AVR32: Make some AT32AP700x peripherals optional
53348
53349 Add a chip-features file providing definitions of the form
53350
53351 AT32AP700x_CHIP_HAS_<peripheral>
53352
53353 to indicate the availability of the given peripheral on the currently
53354 selected chip.
53355
53356 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53357
53358 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
53359 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53360 Date: Mon Oct 29 13:09:56 2007 +0100
53361
53362 AVR32: Rename at32ap7000 -> at32ap700x
53363
53364 The SoC-specific code for all the AT32AP700x CPUs is practically
53365 identical; the only difference is that some chips have less features
53366 than others. By doing this rename, we can add support for the AP7000
53367 derivatives simply by making some features conditional.
53368
53369 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53370
53371 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
53372 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53373 Date: Fri Jun 29 18:22:34 2007 +0200
53374
53375 atmel_mci: Show SR when block read fails
53376
53377 Show controller status as well as card status when an error occurs
53378 during block read.
53379
53380 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53381
53382 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
53383 Author: Stefan Roese <sr@denx.de>
53384 Date: Thu Dec 13 14:52:53 2007 +0100
53385
53386 ppc4xx: Bring 4xx fdt support up-to-date
53387
53388 This patch update the 4xx fdt support. It enabled fdt booting
53389 on the AMCC Kilauea and Sequoia for now. More can follow later
53390 quite easily.
53391
53392 Signed-off-by: Stefan Roese <sr@denx.de>
53393
53394 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
53395 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53396 Date: Thu Dec 13 12:56:34 2007 +0100
53397
53398 cfi_flash: Use map_physmem() and unmap_physmem()
53399
53400 Use map_physmem() and unmap_physmem() to convert from physical to
53401 virtual addresses. This gives the arch a chance to provide an uncached
53402 mapping for flash accesses.
53403
53404 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53405
53406 commit 4d7d6936eb29af7cca330937808312aa5f61454d
53407 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53408 Date: Thu Dec 13 12:56:33 2007 +0100
53409
53410 Introduce map_physmem() and unmap_physmem()
53411
53412 map_physmem() returns a virtual address which can be used to access a
53413 given physical address without involving the cache. unmap_physmem()
53414 should be called when the virtual address returned by map_physmem() is
53415 no longer needed.
53416
53417 This patch adds a stub implementation which simply returns the
53418 physical address cast to a uchar * for all architectures except AVR32,
53419 which converts the physical address to an uncached virtual mapping.
53420 unmap_physmem() is a no-op on all architectures, but if any
53421 architecture needs to do such mappings through the TLB, this is the
53422 hook where those TLB entries can be invalidated.
53423
53424 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53425
53426 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
53427 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53428 Date: Thu Dec 13 12:56:32 2007 +0100
53429
53430 cfi_flash: Introduce read and write accessors
53431
53432 Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
53433 them to access the flash memory. This makes it clearer when the flash
53434 is actually being accessed; merely dereferencing a volatile pointer
53435 looks just like any other kind of access.
53436
53437 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53438
53439 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
53440 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53441 Date: Thu Dec 13 12:56:31 2007 +0100
53442
53443 Implement __raw_{read,write}[bwl] on all architectures
53444
53445 This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
53446 m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
53447 from Linux.
53448
53449 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53450
53451 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
53452 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53453 Date: Sat Oct 6 18:55:36 2007 +0200
53454
53455 cfi_flash: Reorder functions and eliminate extra prototypes
53456
53457 Reorder the functions in cfi_flash.c so that each function only uses
53458 functions that have been defined before it. This allows the static
53459 prototype declarations near the top to be eliminated and might allow
53460 gcc to do a better job inlining functions.
53461
53462 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53463
53464 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
53465 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53466 Date: Thu Dec 13 12:56:29 2007 +0100
53467
53468 cfi_flash: Make some needlessly global functions static
53469
53470 Make functions not declared in any header file static.
53471
53472 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53473
53474 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
53475 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53476 Date: Thu Dec 13 12:56:28 2007 +0100
53477
53478 cfi_flash: Break long lines
53479
53480 This patch tries to keep all lines in the cfi_flash driver below 80
53481 columns. There are a few lines left which don't fit this requirement
53482 because I couldn't find any trivial way to break them (i.e. it would
53483 take some restructuring, which I intend to do in a later patch.)
53484
53485 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53486
53487 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
53488 Author: Bartlomiej Sieka <tur@semihalf.com>
53489 Date: Tue Dec 11 13:59:57 2007 +0100
53490
53491 CFI: synchronize command offsets with Linux CFI driver
53492
53493 Fixes non-working CFI Flash on the Inka4x0 board.
53494
53495 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53496
53497 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
53498 Author: Kumar Gala <galak@kernel.crashing.org>
53499 Date: Fri Dec 7 12:17:34 2007 -0600
53500
53501 Handle MPC85xx PCIe reset errata (PCI-Ex 38)
53502
53503 On the MPC85xx boards that have PCIe enable the PCIe errata fix.
53504 (MPC8544DS, MPC8548CDS, MPC8568MDS).
53505
53506 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53507
53508 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
53509 Author: Kumar Gala <galak@kernel.crashing.org>
53510 Date: Fri Dec 7 12:04:30 2007 -0600
53511
53512 Update Freescale MPC85xx ADS/CDS/MDS board config
53513
53514 * Enabled CONFIG_CMD_ELF
53515
53516 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53517
53518 commit d435793229ce29a42797c1edc39f5b34f987f91a
53519 Author: Kumar Gala <galak@kernel.crashing.org>
53520 Date: Fri Dec 7 04:59:26 2007 -0600
53521
53522 Handle Asynchronous DDR clock on 85xx
53523
53524 The MPC8572 introduces the concept of an asynchronous DDR clock with
53525 regards to the platform clock.
53526
53527 Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
53528 mode.
53529
53530 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53531
53532 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
53533 Author: Kumar Gala <galak@kernel.crashing.org>
53534 Date: Thu Nov 29 10:34:28 2007 -0600
53535
53536 Update Freescale MPC85xx ADS/CDS/MDS board config
53537
53538 * Removed some misc environment setup
53539 * Enabled CONFIG_CMDLINE_EDITING
53540
53541 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53542
53543 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
53544 Author: Kumar Gala <galak@kernel.crashing.org>
53545 Date: Thu Nov 29 10:47:44 2007 -0600
53546
53547 Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
53548
53549 Minor path corrections needed to ensure buildability.
53550
53551 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53552
53553 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
53554 Author: Kumar Gala <galak@kernel.crashing.org>
53555 Date: Thu Nov 29 10:16:18 2007 -0600
53556
53557 Move the MPC8540 ADS board under board/freescale.
53558
53559 Minor path corrections needed to ensure buildability.
53560
53561 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53562
53563 commit 870ceac5b3a3486c109396e005af81ae762b5710
53564 Author: Kumar Gala <galak@kernel.crashing.org>
53565 Date: Thu Nov 29 10:14:50 2007 -0600
53566
53567 Move the MPC8560 ADS board under board/freescale.
53568
53569 Minor path corrections needed to ensure buildability.
53570
53571 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53572
53573 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
53574 Author: Kumar Gala <galak@kernel.crashing.org>
53575 Date: Thu Nov 29 10:13:47 2007 -0600
53576
53577 Move the MPC8568 MDS board under board/freescale.
53578
53579 Minor path corrections needed to ensure buildability.
53580
53581 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53582
53583 commit a853d56c59b33415304531443633808736acfc6e
53584 Author: Kumar Gala <galak@kernel.crashing.org>
53585 Date: Thu Nov 29 02:18:59 2007 -0600
53586
53587 Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
53588
53589 We already had defines for LAWAR_TRGT_IF_* that we should use
53590 rather than creating new ones. Also, added some missing defines for
53591 PCIE targets.
53592
53593 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53594
53595 commit 04db400892da37b76a585e332a0c137954ad2015
53596 Author: Kumar Gala <galak@kernel.crashing.org>
53597 Date: Thu Nov 29 02:10:09 2007 -0600
53598
53599 Stop using immap_t on 85xx
53600
53601 In the future the offsets to various blocks may not be in same location.
53602 Move to using CFG_MPC85xx_*_ADDR as the base of the registers
53603 instead of getting it via &immap.
53604
53605 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53606
53607 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
53608 Author: Kumar Gala <galak@kernel.crashing.org>
53609 Date: Thu Nov 29 01:23:09 2007 -0600
53610
53611 Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
53612
53613 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53614
53615 commit c480861bf000156e6a3e932c258db59ff2212dd3
53616 Author: Kumar Gala <galak@kernel.crashing.org>
53617 Date: Thu Nov 29 01:06:19 2007 -0600
53618
53619 Update MPC8568 MDS to use libfdt
53620
53621 Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
53622 ethernet, pci, and serial for the various fixups that are done.
53623
53624 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53625
53626 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
53627 Author: Haiying Wang <Haiying.Wang@freescale.com>
53628 Date: Wed Nov 14 15:52:06 2007 -0500
53629
53630 Add PCI Express support on MPC8568MDS
53631
53632 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
53633 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53634
53635 commit b90d25497625b90ffa3f2911a0895ca237556ff5
53636 Author: Kumar Gala <galak@kernel.crashing.org>
53637 Date: Thu Nov 29 00:11:44 2007 -0600
53638
53639 Update MPC85xx CDS to use libfdt
53640
53641 Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
53642 ethernet, pci, and serial for the various fixups that are done.
53643
53644 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53645
53646 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
53647 Author: Kumar Gala <galak@kernel.crashing.org>
53648 Date: Wed Nov 28 22:54:27 2007 -0600
53649
53650 Update MPC8540 ADS to use libfdt
53651
53652 Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
53653 ethernet, pci, and serial for the various fixups that are done.
53654
53655 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53656
53657 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
53658 Author: Kumar Gala <galak@kernel.crashing.org>
53659 Date: Wed Nov 28 22:40:31 2007 -0600
53660
53661 Update MPC8560 ADS to use libfdt
53662
53663 Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
53664 ethernet, pci, and serial for the various fixups that are done.
53665
53666 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53667
53668 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
53669 Author: Kumar Gala <galak@kernel.crashing.org>
53670 Date: Wed Nov 28 00:36:33 2007 -0600
53671
53672 Stop using immap_t for cpm offset on 85xx
53673
53674 In the future the offsets to various blocks may not be in same location.
53675 Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
53676 instead of getting it via &immap->im_cpm.
53677
53678 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53679
53680 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
53681 Author: Kumar Gala <galak@kernel.crashing.org>
53682 Date: Tue Nov 27 23:25:02 2007 -0600
53683
53684 Stop using immap_t for guts offset on 85xx
53685
53686 In the future the offsets to various blocks may not be in same location.
53687 Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
53688 instead of getting it via &immap->im_gur.
53689
53690 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53691
53692 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
53693 Author: Kumar Gala <galak@kernel.crashing.org>
53694 Date: Tue Nov 27 22:42:34 2007 -0600
53695
53696 Update MPC8544 DS config
53697
53698 * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
53699 * Removed some misc environment setup
53700 * Moved to using fdtfile & fdtaddr as fdt env var names
53701 * Enabled CONFIG_CMDLINE_EDITING
53702
53703 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53704
53705 commit addce57e2e4c49e77ffb2020a84690713bb18b47
53706 Author: Kumar Gala <galak@kernel.crashing.org>
53707 Date: Mon Nov 26 17:12:24 2007 -0600
53708
53709 Update MPC8544DS to use libfdt
53710
53711 Updated the MPC8544DS config to use libfdt and assume use of aliases for
53712 ethernet, pci, and serial for the various fixups that are done.
53713
53714 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53715
53716 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
53717 Author: Kumar Gala <galak@kernel.crashing.org>
53718 Date: Thu Nov 29 00:15:30 2007 -0600
53719
53720 Add libfdt based ft_cpu_setup for mpc85xx
53721
53722 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53723
53724 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
53725 Author: Stefan Roese <sr@denx.de>
53726 Date: Tue Dec 11 13:38:19 2007 +0100
53727
53728 ppc4xx: Correct GPIO offset in gpio_config()
53729
53730 Thanks to Gary Jennejohn for pointing this out.
53731
53732 Signed-off-by: Stefan Roese <sr@denx.de>
53733
53734 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
53735 Author: Stefan Roese <sr@denx.de>
53736 Date: Tue Dec 11 11:46:01 2007 +0100
53737
53738 rtc: Fix merging problem
53739
53740 Signed-off-by: Stefan Roese <sr@denx.de>
53741
53742 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
53743 Author: Stefan Roese <sr@denx.de>
53744 Date: Sat Dec 8 14:47:34 2007 +0100
53745
53746 ppc4xx: 405EX: Correctly enable USB pins
53747
53748 This patch selects the USB data pins in the 405EX GPIO and MFC (multi
53749 function control) registers. This is done for the AMCC Kilauea and
53750 Makalu eval boards.
53751
53752 Signed-off-by: Stefan Roese <sr@denx.de>
53753
53754 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
53755 Author: Stefan Roese <sr@denx.de>
53756 Date: Sat Dec 8 08:25:09 2007 +0100
53757
53758 CFI: Coding style cleanup
53759
53760 Signed-off-by: Stefan Roese <sr@denx.de>
53761
53762 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
53763 Author: Michael Schwingen <michael@schwingen.org>
53764 Date: Fri Dec 7 23:35:02 2007 +0100
53765
53766 CFI: support JEDEC flash roms in CFI-flash framework
53767
53768 The following patch adds support for non-CFI flash ROMS, by hooking into the
53769 CFI flash code and using most of its code, as recently discussed here in the
53770 thread "Mixing CFI and non-CFI flashs".
53771
53772 Signed-off-by: Michael Schwingen <michael@schwingen.org>
53773 Signed-off-by: Stefan Roese <sr@denx.de>
53774
53775 commit c01b17dd856fa120b2970f50d9598546a4927ec3
53776 Author: Gerald Van Baren <vanbaren@cideas.com>
53777 Date: Wed Nov 28 21:24:50 2007 -0500
53778
53779 Conditionally compile fdt_fixup_ethernet()
53780
53781 Fix compiler warnings: On boards that don't have ethernets defined,
53782 don't compile fdt_fixup_ethernet().
53783
53784 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
53785 Author: Kumar Gala <galak@kernel.crashing.org>
53786 Date: Tue Nov 27 21:59:46 2007 -0600
53787
53788 Convert boards that set memory node to use fdt_fixup_memory()
53789
53790 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53791
53792 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
53793 Author: Kumar Gala <galak@kernel.crashing.org>
53794 Date: Mon Nov 26 17:06:15 2007 -0600
53795
53796 Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
53797
53798 We use a combination of the serialN alias and CONFIG_CONS_INDEX to
53799 determine which serial alias we should set linux,stdout-path to.
53800
53801 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53802
53803 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
53804 Author: Kumar Gala <galak@kernel.crashing.org>
53805 Date: Mon Nov 26 14:57:45 2007 -0600
53806
53807 Add common memory fixup function
53808
53809 Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
53810
53811 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53812
53813 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
53814 Author: Kumar Gala <galak@kernel.crashing.org>
53815 Date: Mon Nov 26 11:19:12 2007 -0600
53816
53817 Conditionally compile fdt_support.c
53818
53819 Modify common/Makefile to conditionally compile fdt_support.c based
53820 on CONFIG_OF_LIBFDT.
53821
53822 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53823
53824 commit d88e7ba0980773479e1a64badb293116071b7ef0
53825 Author: Kumar Gala <galak@kernel.crashing.org>
53826 Date: Mon Nov 26 10:41:40 2007 -0600
53827
53828 Fix build breakage due to libfdt import
53829
53830 The IDS8247 got lost in the update and need an API update
53831 do to rename of functions in libfdt.
53832
53833 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53834
53835 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
53836 Author: Gerald Van Baren <vanbaren@cideas.com>
53837 Date: Fri Nov 23 19:43:20 2007 -0500
53838
53839 Add spaces around the = in the fdt print format.
53840
53841 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
53842
53843 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
53844 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53845 Date: Fri Dec 7 01:25:38 2007 +0900
53846
53847 sh: Moved driver of the SuperH dependence
53848
53849 The composition of the directory in the drivers/ changed.
53850 I moved SuperH serial driver and marubun PCMCIA driver.
53851
53852 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53853
53854 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
53855 Author: Wolfgang Denk <wd@denx.de>
53856 Date: Thu Dec 6 10:21:19 2007 +0100
53857
53858 Release v1.3.1
53859
53860 Signed-off-by: Wolfgang Denk <wd@denx.de>
53861
53862 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
53863 Author: Wolfgang Denk <wd@denx.de>
53864 Date: Thu Dec 6 10:21:03 2007 +0100
53865
53866 ADS5121 Board: fix compile problem.
53867
53868 Signed-off-by: Wolfgang Denk <wd@denx.de>
53869
53870 commit a27044b14a9e93678a82d7b35f202b93e7687abc
53871 Author: Stefan Roese <sr@denx.de>
53872 Date: Thu Dec 6 05:58:43 2007 +0100
53873
53874 ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
53875
53876 This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
53877 setting the FIXD bit in the SDR0_MFR register. Here a description of the
53878 symptoms:
53879
53880 Problem Description
53881 ------------------------------
53882 If a DMA is performed between memory and PCI with the DMA 1 Controller
53883 using prefetch, and as a result uses a special purpose buffer selected by
53884 the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
53885 the first part of the transfer sequence is performed twice. The
53886 PPC440SPe PCI Controller requests more data than was needed such that in
53887 the case of enforce memory protection, a host CPU exception can occur.
53888 No data is corrupted, because data transfer is stopped in the PCI
53889 Controller. Prefetch enable is specified by setting DMA Configuration
53890 Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
53891
53892 Behavior that may be observed in a running system
53893 ---------------------------------------------------------------------------
53894
53895 1. DMA performance is decreased because of the double access on the PCI bus
53896 interface.
53897 2. If an illegal access to some address on the PCI bus is detected at the
53898 system level, a machine check or similar system error may occur.
53899
53900 Workarounds Available
53901 ----------------------------------
53902
53903 1. Do not program prefetch. Note that a prefetch command cannot be programmed
53904 without selecting a special purpose buffer.
53905 2. To avoid crossing a physical boundary of the PCI slave device, add 512
53906 bytes of address to the PCI address range.
53907
53908 This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
53909 from AMCC and slighly changed.
53910
53911 Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
53912 Signed-off-by: Stefan Roese <sr@denx.de>
53913
53914 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
53915 Author: Stefan Roese <sr@denx.de>
53916 Date: Tue Dec 4 16:29:48 2007 +0100
53917
53918 ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
53919
53920 Signed-off-by: Stefan Roese <sr@denx.de>
53921
53922 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
53923 Author: Wolfgang Denk <wd@denx.de>
53924 Date: Mon Dec 3 00:15:28 2007 +0100
53925
53926 Prepare for 1.3.1-rc1
53927
53928 Signed-off-by: Wolfgang Denk <wd@denx.de>
53929
53930 commit e15e33433e7c05111968dc9b434a52fd42cbd221
53931 Author: Stefan Roese <sr@denx.de>
53932 Date: Fri Nov 30 07:15:41 2007 +0100
53933
53934 ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
53935
53936 This manual PCIe reset triggering solves the problem seen with the
53937 Intel EPRO/1000 card, which was not detected (link not established)
53938 upon power-up reset.
53939
53940 Signed-off-by: Stefan Roese <sr@denx.de>
53941
53942 commit 260eea5676ca46903a335686cc020b29c4ca46fe
53943 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53944 Date: Thu Nov 29 01:21:54 2007 +0900
53945
53946 sh: Add SuperH boards maintainer to MAINTAINERS file
53947
53948 Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
53949
53950 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53951
53952 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
53953 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53954 Date: Thu Nov 29 00:13:04 2007 +0900
53955
53956 sh: Add ms7750se support in MAKEALL
53957
53958 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53959
53960 commit c7144373427a178332bf9754131c8c34c52c200a
53961 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53962 Date: Tue Nov 27 09:44:53 2007 +0100
53963
53964 sh: Add sh3 and sh4 support in MAKEALL
53965
53966 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53967 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53968
53969 commit 130080874a3d28450098481a262c5f7c855e908d
53970 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53971 Date: Sun Nov 25 02:51:17 2007 +0900
53972
53973 sh: Add document for SuperH.
53974
53975 This document is a summary of information concerning SuperH of U-Boot.
53976
53977 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53978
53979 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
53980 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53981 Date: Sun Nov 25 02:39:31 2007 +0900
53982
53983 sh: Add marubun's pcmcia driver
53984
53985 Marubun pcmcia is a chip for PCMCIA used with SuperH.
53986 Of course, this can be used even by other architectures.
53987 When use this driver, came to be able to use CompactFlash
53988 and Ethernet.
53989
53990 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53991
53992 commit febd86b969b975289ed948f1ac0eb9722da41ced
53993 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53994 Date: Sun Nov 25 02:32:13 2007 +0900
53995
53996 sh: Update SuperH SCIF driver
53997
53998 - Changed volatile unsigned to vu_.
53999 - Changed Makefile for kconfig.
54000
54001 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54002
54003 commit 8be760903645af09871be50ad0a6f9ebb62b311d
54004 Author: Stefan Roese <sr@denx.de>
54005 Date: Tue Nov 27 11:57:35 2007 +0100
54006
54007 ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
54008
54009 After an error in the AMCC 405EX users manual now correctly configure
54010 IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
54011 usage.
54012
54013 Signed-off-by: Stefan Roese <sr@denx.de>
54014
54015 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
54016 Author: Wolfgang Denk <wd@denx.de>
54017 Date: Mon Nov 26 19:18:21 2007 +0100
54018
54019 Cleanup coding style; update CHANGELOG
54020
54021 Signed-off-by: Wolfgang Denk <wd@denx.de>
54022
54023 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
54024 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54025 Date: Sun Nov 25 22:39:25 2007 +0100
54026
54027 MAKEALL: add missing 512x boards in ppc
54028
54029 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54030
54031 commit a340c325e668ca7386c2276387681720be9c3757
54032 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54033 Date: Sun Nov 25 18:45:47 2007 +0100
54034
54035 Makefile : fix tags ctags etags with new drivers organization
54036
54037 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54038
54039 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
54040 Author: Stefan Roese <sr@denx.de>
54041 Date: Mon Nov 26 15:06:14 2007 +0100
54042
54043 ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
54044
54045 As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
54046 operation.
54047
54048 Signed-off-by: Stefan Roese <sr@denx.de>
54049
54050 commit ca1ce226287270bb01e25b8e3674c701f12edf19
54051 Author: Stefan Roese <sr@denx.de>
54052 Date: Mon Nov 26 15:01:45 2007 +0100
54053
54054 ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
54055
54056 Signed-off-by: Stefan Roese <sr@denx.de>
54057
54058 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
54059 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54060 Date: Sun Nov 25 18:45:47 2007 +0100
54061
54062 Makefile : fix tags ctags etags with new drivers organization
54063
54064 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54065
54066 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
54067 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54068 Date: Sat Nov 24 21:26:56 2007 +0100
54069
54070 drivers/mtd : move mtd drivers to drivers/mtd
54071
54072 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54073
54074 commit 318c0b90431f2648552e5ade78833f42652ce859
54075 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54076 Date: Sat Nov 24 21:17:55 2007 +0100
54077
54078 drivers/misc : move misc drivers to drivers/misc
54079
54080 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54081
54082 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
54083 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54084 Date: Sat Nov 24 21:13:59 2007 +0100
54085
54086 drivers/block : move block drivers to drivers/block
54087
54088 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54089
54090 commit 0c698dcaa70275eb8814f665b545547cee013892
54091 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54092 Date: Sat Nov 24 20:59:50 2007 +0100
54093
54094 drivers/rtc : move rtc drivers to drivers/rtc
54095
54096 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54097
54098 commit f868cc5a50757d94f36c312395481cb0f187d9e6
54099 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54100 Date: Sat Nov 24 20:14:44 2007 +0100
54101
54102 drivers/hwmon : move hardware monitor drviers to drivers/hwmon
54103
54104 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54105
54106 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
54107 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54108 Date: Sat Nov 24 19:46:45 2007 +0100
54109
54110 drivers/input : move input drivers to drivers/input
54111
54112 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54113
54114 commit e4558666293364fc3af1c1d9381ca933fa0f1275
54115 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54116 Date: Sat Nov 24 19:40:11 2007 +0100
54117
54118 drivers/usb : move usb drivers to drivers/usb
54119
54120 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54121
54122 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
54123 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54124 Date: Sat Nov 24 19:33:38 2007 +0100
54125
54126 drivers/serial : move serial drivers to drivers/serial
54127
54128 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54129
54130 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
54131 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54132 Date: Wed Nov 21 21:19:24 2007 +0100
54133
54134 drivers/net : move net drivers to drivers/net
54135
54136 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54137
54138 commit 352d259130b349fe9593b8dada641bd78a9659e5
54139 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54140 Date: Tue Nov 20 20:41:48 2007 +0100
54141
54142 drivers/video : move video drivers to drivers/video
54143
54144 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54145
54146 commit 73646217186aa17afc8e305c5f06f06dd335eaad
54147 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54148 Date: Tue Nov 20 20:33:09 2007 +0100
54149
54150 drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
54151
54152 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54153
54154 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
54155 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54156 Date: Tue Nov 20 20:28:09 2007 +0100
54157
54158 drivers/pci : move pci drivers to drivers/pci
54159
54160 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54161
54162 commit 9162352817579840d7802da6d85872b3ca003c97
54163 Author: Gerald Van Baren <vanbaren@cideas.com>
54164 Date: Thu Nov 22 17:23:23 2007 -0500
54165
54166 Fix fdt printing for updated libfdt
54167
54168 Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
54169
54170 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
54171
54172 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
54173 Author: Kumar Gala <galak@kernel.crashing.org>
54174 Date: Wed Nov 21 13:30:15 2007 -0600
54175
54176 Add additional fdt fixup helper functions
54177
54178 Added the following fdt fixup helpers:
54179 * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
54180 * do_fixup_by_compat{_u32} - Find matching nodes by compat
54181
54182 The _u32 variants work the same only the property they are setting
54183 is know to be a 32-bit integer instead of a byte buffer.
54184
54185 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54186
54187 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
54188 Author: Kumar Gala <galak@kernel.crashing.org>
54189 Date: Wed Nov 21 11:11:03 2007 -0600
54190
54191 Add fdt_fixup_ethernet helper to set mac addresses
54192
54193 Added a fixup helper that uses aliases to set mac addresses
54194 in the device tree based on the bd_t
54195
54196 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54197
54198 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
54199 Author: Kumar Gala <galak@kernel.crashing.org>
54200 Date: Wed Nov 21 14:07:46 2007 -0600
54201
54202 Fix warnings from import of libfdt
54203
54204 cmd_fdt.c: In function fdt_print:
54205 cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
54206 cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
54207 cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
54208 cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
54209
54210 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54211
54212 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
54213 Author: Kumar Gala <galak@kernel.crashing.org>
54214 Date: Wed Oct 24 11:04:22 2007 -0500
54215
54216 Update libfdt from device tree compiler (dtc)
54217
54218 Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
54219 the device tree compiler (dtc) project.
54220
54221 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54222
54223 commit e93becf80d732b64aef81b23e8b6ece02c40533d
54224 Author: Kumar Gala <galak@kernel.crashing.org>
54225 Date: Sat Nov 3 19:46:28 2007 -0500
54226
54227 Move do_fixup* for libfdt into common code
54228
54229 Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
54230 into common/fdt_support.c and renamed:
54231
54232 do_fixup() -> do_fixup_by_path()
54233 do_fixup_u32() -> do_fixup_by_path_u32()
54234
54235 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54236
54237 commit f738b4a75998f42a7408defadc9baac7a31c92db
54238 Author: Kumar Gala <galak@kernel.crashing.org>
54239 Date: Thu Oct 25 16:15:07 2007 -0500
54240
54241 Make no options to fdt print default to '/'
54242
54243 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54244
54245 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
54246 Author: Kumar Gala <galak@kernel.crashing.org>
54247 Date: Wed Oct 24 10:21:57 2007 -0500
54248
54249 Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
54250
54251 Removed:
54252 fdt_node_is_compatible
54253 fdt_find_node_by_type
54254 fdt_find_compatible_node
54255
54256 To ease merge of newer libfdt as we aren't using them anywhere at this time.
54257
54258 Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
54259 reason.
54260
54261 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54262
54263 commit 98e2867cc85409b919f862e6c16026461ec955df
54264 Author: Grant Likely <grant.likely@secretlab.ca>
54265 Date: Wed Nov 21 09:19:37 2007 -0700
54266
54267 [BUILD] Remove libraries when updating autoconf.mk
54268
54269 Fix library problems caused by conditional compilation. Using
54270 autoconf.mk to decide which files to compile has caused a problem when
54271 changing configuration from one board to another without clearing out
54272 the library (*.a) files.
54273
54274 It used to be that the linker was always passed the same list of .o
54275 files when building the .a files. However, that is not longer true
54276 with conditional compilation. Now, a different board config will have
54277 a different file list passed to the linker. The problem occurs when
54278 a library has already been built and the board config is changed.
54279
54280 Since the linker will update instead of replace a preexisting library,
54281 then if the file list changes to remove some object files the old
54282 objects will still exist in the library.
54283
54284 The solution is to remove all old library files when autoconf.mk is
54285 made.
54286
54287 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54288
54289 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
54290 Author: Kumar Gala <galak@kernel.crashing.org>
54291 Date: Wed Nov 21 08:49:50 2007 -0600
54292
54293 [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
54294
54295 Modify libfdt/Makefile to conditionally compile the *.c files based
54296 on the board config.
54297
54298 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54299
54300 commit 4a43719a7738712811d822ca8125427b27a55cdc
54301 Author: Grant Likely <grant.likely@secretlab.ca>
54302 Date: Mon Sep 24 09:05:31 2007 -0600
54303
54304 [BUILD] conditionally compile common/cmd_*.c in common/Makefile
54305
54306 Modify common/Makefile to conditionally compile the cmd_*.c files based
54307 on the board config.
54308
54309 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54310
54311 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
54312 Author: Grant Likely <grant.likely@secretlab.ca>
54313 Date: Mon Sep 24 09:05:31 2007 -0600
54314
54315 [BUILD] Generate include/autoconf.mk from board config files
54316
54317 Use cpp and sed to postprocess config.h and import the defined values
54318 into include/autoconf.mk. autoconf.mk is then included by config.mk to
54319 give 'make' access to the board configuration.
54320
54321 Doing this enables conditional compilation at the Makefile level instead
54322 of by wrapping every .c file with #ifdef/#endif wrappers.
54323
54324 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54325
54326 commit 68b88999da87ab88e71e1306192905be3450198e
54327 Author: Jon Loeliger <jdl@freescale.com>
54328 Date: Tue Nov 20 15:02:26 2007 -0600
54329
54330 8610HPCD: Enable the 8610 Display Interface Unit
54331
54332 Signed-off-by: Jon Loeliger <jdl@freescale.com>
54333
54334 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
54335 Author: Jon Loeliger <jdl@freescale.com>
54336 Date: Tue Nov 20 15:00:53 2007 -0600
54337
54338 Move 8610 DIU interface structure definitions to header file.
54339
54340 These two structures are still needed during the
54341 initialization and setup of the DIU hardware.
54342 So move them to the fsl_diu_fb.h file for now.
54343 Official "blah".
54344
54345 Noticed-by: York Sun <yorksun@freescale.com>
54346 Signed-off-by: Jon Loeliger <jdl@freescale.com>
54347
54348 commit 080c646dbf474a109c3f85718fb01ce042a38c45
54349 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54350 Date: Tue Nov 20 20:14:18 2007 +0100
54351
54352 drivers/i2c : move i2c drivers to drivers/i2c
54353
54354 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54355
54356 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
54357 Author: Wolfgang Denk <wd@denx.de>
54358 Date: Mon Nov 19 22:20:24 2007 +0100
54359
54360 Prepare for 1.3.0 release.
54361
54362 Signed-off-by: Wolfgang Denk <wd@denx.de>
54363
54364 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
54365 Author: Haiying Wang <Haiying.Wang@freescale.com>
54366 Date: Mon Nov 19 10:02:13 2007 -0500
54367
54368 Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
54369
54370 CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
54371
54372 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
54373
54374 commit f8c320609366176b31104d9bf5e295232e1c7f1d
54375 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54376 Date: Mon Nov 19 11:14:16 2007 +0900
54377
54378 [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
54379
54380 lowlevel_init.S: Assembler messages:
54381 lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
54382
54383 Looking at codes, the `memtest' and `clearmem' are intentional mixed
54384 use of `global symbols' and `label' for debugging purpose. To make it
54385 build, just disable global-symbols-use for now. As a result `memtest'
54386 still remains as unused, but leave it be...
54387
54388 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54389
54390 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
54391 Author: Wolfgang Denk <wd@denx.de>
54392 Date: Mon Nov 19 12:59:14 2007 +0100
54393
54394 Fix build problems with mp2usb board
54395
54396 Signed-off-by: Wolfgang Denk <wd@denx.de>
54397
54398 commit 6bf4c686afca1e86e1c384d59218f914605713bf
54399 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54400 Date: Sun Nov 18 18:36:11 2007 +0100
54401
54402 s3c24x0: Fix usb_ohci.c missing in Makefile
54403 and usb_ohci.c warning differ in signedness
54404
54405 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54406
54407 commit 6073f61e078da5ddb521b56256bcc36508589883
54408 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54409 Date: Sun Nov 18 12:55:02 2007 +0100
54410
54411 pb1x00 board: Fix u16 status declaration when PCMCIA is defined
54412
54413 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54414
54415 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
54416 Author: Wolfgang Denk <wd@denx.de>
54417 Date: Sun Nov 18 17:11:09 2007 +0100
54418
54419 Fix compiler warnings for ARM systems.
54420
54421 Signed-off-by: Wolfgang Denk <wd@denx.de>
54422
54423 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
54424 Author: Wolfgang Denk <wd@denx.de>
54425 Date: Sun Nov 18 16:36:27 2007 +0100
54426
54427 Fix compiler warnings for PPC systems. Update CHANGELOG.
54428
54429 Signed-off-by: Wolfgang Denk <wd@denx.de>
54430
54431 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
54432 Author: Stefan Roese <sr@denx.de>
54433 Date: Sun Nov 18 14:44:44 2007 +0100
54434
54435 ppc4xx: Correct 405EX PCIe UTL register mapping
54436
54437 Map 4k mem space for UTL registers for each port.
54438
54439 Signed-off-by: Stefan Roese <sr@denx.de>
54440
54441 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
54442 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54443 Date: Sat Nov 17 11:31:10 2007 +0100
54444
54445 Fix warning differ in signedness in net/net.c and net/nfs.c
54446
54447 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
54448 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54449 Date: Sat Nov 17 20:42:45 2007 +0900
54450
54451 gth2.c: Fix a warning on gth2 build.
54452
54453 gth2.c: In function 'misc_init_r':
54454 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
54455
54456 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54457
54458 commit 2309c130aa4c84b91bd874a41269c923eb61b555
54459 Author: Stefan Roese <sr@denx.de>
54460 Date: Sat Nov 17 07:58:25 2007 +0100
54461
54462 Fix warning differ in signedness in common/cmd_scsi.c
54463
54464 Signed-off-by: Stefan Roese <sr@denx.de>
54465
54466 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
54467 Author: Stefan Roese <sr@denx.de>
54468 Date: Sat Nov 17 14:52:29 2007 +0100
54469
54470 ppc4xx: Update AMCC Kilauea config file
54471
54472 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
54473
54474 Signed-off-by: Stefan Roese <sr@denx.de>
54475
54476 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
54477 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54478 Date: Sat Nov 17 20:05:26 2007 +0900
54479
54480 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
54481
54482 Current trick to pick up GNU assembler minor version does not work with the
54483 latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
54484 "(GNU Binutils) ".
54485
54486 $ sde-as --version |grep "GNU assembler"
54487 GNU assembler 2.15.94 mipssde-6.02.02-20050602
54488 $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
54489 2.15.94
54490 $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
54491 15
54492 $
54493
54494 $ mips-linux-as --version |grep "GNU assembler"
54495 GNU assembler (GNU Binutils) 2.18
54496 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
54497 (GNU
54498 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
54499 (no output)
54500 $
54501
54502 As a result of above, you'll see many noises with such binutils:
54503
54504 make -C cpu/mips/
54505 /bin/sh: line 0: [: : integer expression expected
54506 /bin/sh: line 0: [: : integer expression expected
54507 make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
54508 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
54509 /bin/sh: line 0: [: : integer expression expected
54510 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
54511 /bin/sh: line 0: [: : integer expression expected
54512 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
54513 /bin/sh: line 0: [: : integer expression expected
54514
54515 This patch simplifies the trick and makes it work with both versions of gas.
54516 I also replace an expensive `awk (or gawk)' with `cut'.
54517
54518 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54519
54520 commit 16664f72850846e645616da1c0fa5afcd6d15f15
54521 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54522 Date: Sat Nov 17 20:05:26 2007 +0900
54523
54524 [MIPS] Remove useless instructions for initializing $gp.
54525
54526 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54527
54528 commit 03c031d5660ea946c39af6e2e16267da857c609f
54529 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54530 Date: Sat Oct 27 15:27:06 2007 +0900
54531
54532 [MIPS] MIPS 4K core: Coding style cleanups
54533
54534 No logical changes.
54535
54536 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54537
54538 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
54539 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54540 Date: Sat Nov 17 20:05:20 2007 +0900
54541
54542 [MIPS] gth2.c: Fix a warning on gth2 build.
54543
54544 gth2.c: In function 'misc_init_r':
54545 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
54546
54547 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54548
54549 commit 4fbd0741b2b6441da10be93e10267122581b7079
54550 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54551 Date: Sat Oct 27 15:22:33 2007 +0900
54552
54553 [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
54554
54555 au1x00_eth.c: In function 'au1x00_miiphy_write':
54556 au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
54557
54558 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54559
54560 commit f01320459736f156707425cf8112f98606301aa4
54561 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54562 Date: Sat Oct 27 15:00:25 2007 +0900
54563
54564 [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
54565
54566 au1x00_eth.c: In function 'au1x00_enet_initialize':
54567 au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
54568 au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
54569 au1x00_eth.c:246: error: for each function it appears in.)
54570 au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
54571 au1x00_eth.c: In function 'au1x00_miiphy_write':
54572 au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
54573 make[1]: *** [au1x00_eth.o] Error 1
54574
54575 Fixed by moving these two functions forward.
54576
54577 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54578
54579 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
54580 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54581 Date: Sat Oct 27 15:00:25 2007 +0900
54582
54583 MAKEALL: Added missing pb1000 board
54584
54585 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54586
54587 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
54588 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54589 Date: Sat Oct 27 15:00:24 2007 +0900
54590
54591 [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
54592
54593 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54594
54595 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
54596 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54597 Date: Sat Oct 27 15:00:24 2007 +0900
54598
54599 [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
54600
54601 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54602
54603 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
54604 Author: Wolfgang Denk <wd@denx.de>
54605 Date: Sat Nov 17 02:34:38 2007 +0100
54606
54607 Update CHANGELOIG, prepare for -rc4
54608
54609 Signed-off-by: Wolfgang Denk <wd@denx.de>
54610
54611 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
54612 Author: Luotao Fu <l.fu@pengutronix.de>
54613 Date: Wed Nov 14 18:58:33 2007 +0100
54614
54615 Fix the i2c frequency and default address in rsdproto board
54616
54617 rsdproto board support has wrong I2C frequency and wrong return value
54618 handling.
54619
54620 Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
54621
54622 commit 429c180edad038f91c989cb14b478228092e7054
54623 Author: Wolfgang Denk <wd@denx.de>
54624 Date: Sat Nov 17 01:45:38 2007 +0100
54625
54626 powerpc: Backout relocation changes for MPC5121, too.
54627
54628 Apply Grant Likely's backout to MPC5121 code, too.
54629
54630 Pointed out by Rafal Jaworowski <raj@semihalf.com>
54631
54632 Signed-off-by: Wolfgang Denk <wd@denx.de>
54633
54634 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
54635 Author: Grant Likely <grant.likely@secretlab.ca>
54636 Date: Tue Nov 13 22:18:33 2007 -0700
54637
54638 powerpc: Backout relocation changes.
54639
54640 Ugh. I *hate* to back this change out, but these compiler flags don't
54641 work for relocation on all versions of GCC. I've not been able to
54642 reproduce the environment in my setup (and hence, not been able to
54643 find a combination that *does* work), so I've got no choice but to go
54644 back to the old gcc flags and linker script.
54645
54646 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54647
54648 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
54649 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54650 Date: Tue Nov 13 09:11:05 2007 +0100
54651
54652 Fixed mips_io_port_base build errors.
54653
54654 This patch has been sent on:
54655 - 29 Sep 2007
54656
54657 Although mips_io_port_base is currently a part of IDE command, it is quite
54658 fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
54659 it to MIPS general part, and introduce `set_io_port_base()' from Linux.
54660
54661 This patch is triggered by multiple definition of `mips_io_port_base' build
54662 error on gth2 (and tb0229 also needs this fix.)
54663
54664 board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
54665 /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
54666 common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
54667 make: *** [u-boot] Error 1
54668
54669 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54670 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54671
54672 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
54673 Author: Wolfgang Denk <wd@denx.de>
54674 Date: Sat Nov 17 01:30:40 2007 +0100
54675
54676 Fix a bug in the slave serial programming mode for the Xilinx
54677 Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
54678 the most significant bit was set, which did not work on any
54679 architecture where "char" defaulted to be an unsigned type.
54680
54681 Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
54682
54683 Signed-off-by: Wolfgang Denk <wd@denx.de>
54684
54685 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
54686 Author: Jon Loeliger <jdl@freescale.com>
54687 Date: Thu Nov 1 12:23:29 2007 -0500
54688
54689 86xx: Fix broken variable reference when #def DEBUGing.
54690
54691 Sometimes you can't reference the DDR2 controller variables.
54692
54693 Signed-off-by: Jon Loeliger <jdl@freescale.com>
54694
54695 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
54696 Author: Jason Jin <Jason.jin@freescale.com>
54697 Date: Fri Oct 26 18:32:00 2007 +0800
54698
54699 make 8610 board use pixis reset
54700
54701 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
54702
54703 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
54704 Author: Jason Jin <Jason.jin@freescale.com>
54705 Date: Mon Oct 29 19:26:21 2007 +0800
54706
54707 Unify pixis_reset altbank across board families
54708
54709 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
54710 into the separate board config files.
54711
54712 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
54713 Signed-off-by: Jon Loeliger <jdl@freescale.com>
54714
54715 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
54716 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54717 Date: Wed Nov 7 08:19:21 2007 +0100
54718
54719 Fix warning: pointer targets in assignment differ in signedness
54720
54721 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54722
54723 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
54724 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54725 Date: Wed Nov 7 08:19:19 2007 +0100
54726
54727 Fix warning differ in signedness in common/cmd_ide.c
54728
54729 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54730
54731 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
54732 Author: Stefan Roese <sr@denx.de>
54733 Date: Fri Nov 16 14:16:54 2007 +0100
54734
54735 ppc4xx: Enable 405EX PCIe UTL register configuration
54736
54737 Till now the UTL registers on 405EX were not initialized but left with
54738 their default values. This patch new initializes some of the UTL
54739 registers on 405EX.
54740
54741 Signed-off-by: Stefan Roese <sr@denx.de>
54742
54743 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
54744 Author: Stefan Roese <sr@denx.de>
54745 Date: Fri Nov 16 14:00:59 2007 +0100
54746
54747 ppc4xx: Update AMCC Makalu for board rev 1.1
54748
54749 This patch adds changes needed for Makalu rev 1.1:
54750
54751 - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
54752 - Enable 2nd ethernet port EMAC1
54753 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
54754 - Reset PCIe ports via GPIO upon bootup
54755
54756 Signed-off-by: Stefan Roese <sr@denx.de>
54757
54758 commit 4d4faae65e115e327425cd514c1a35146a85166b
54759 Author: Grant Likely <grant.likely@secretlab.ca>
54760 Date: Mon Sep 24 09:05:31 2007 -0600
54761
54762 Group PCI and PCMCIA drivers in drivers/Makefile
54763
54764 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54765
54766 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
54767 Author: Grant Likely <grant.likely@secretlab.ca>
54768 Date: Mon Sep 24 09:05:31 2007 -0600
54769
54770 Group block/flash drivers in drivers/Makefile
54771
54772 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54773
54774 commit df58c81551700f058b44cacf55a7997fa63bfe0a
54775 Author: Grant Likely <grant.likely@secretlab.ca>
54776 Date: Mon Sep 24 09:05:31 2007 -0600
54777
54778 Group USB drivers in drivers/Makefile
54779
54780 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54781
54782 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
54783 Author: Grant Likely <grant.likely@secretlab.ca>
54784 Date: Mon Sep 24 09:05:30 2007 -0600
54785
54786 Group i2c drivers in drivers/Makefile
54787
54788 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54789
54790 commit ec00c76de0e5971273905998d62d6bb119324218
54791 Author: Grant Likely <grant.likely@secretlab.ca>
54792 Date: Mon Sep 24 09:05:30 2007 -0600
54793
54794 Group console drivers in drivers/Makefile
54795
54796 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54797
54798 commit 754f230aa01b8c789fc31f8013c2487954073300
54799 Author: Grant Likely <grant.likely@secretlab.ca>
54800 Date: Mon Sep 24 09:05:30 2007 -0600
54801
54802 Group network drivers in drivers/Makefile
54803
54804 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54805
54806 commit f0037c56b0d12cd46215124667b9f83d60ef9391
54807 Author: Grant Likely <grant.likely@secretlab.ca>
54808 Date: Mon Sep 24 09:05:30 2007 -0600
54809
54810 Build: split COBJS value into multiple lines
54811
54812 This change is in preparation for condtitionial compile support in the
54813 build system. By spliting them all into seperate lines now, subsequent
54814 patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
54815 be less invasive and easier to review
54816
54817 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54818
54819 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
54820 Author: Grant Likely <grant.likely@secretlab.ca>
54821 Date: Mon Sep 24 09:05:30 2007 -0600
54822
54823 Add .gitignore files
54824
54825 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54826 Acked-by: Kim Phillips <kim.phillips@freescale.com>
54827
54828 commit 955413f35f054a82e40042f1dbcf501c6a05719b
54829 Author: Grant Likely <grant.likely@secretlab.ca>
54830 Date: Thu Nov 15 08:27:52 2007 -0700
54831
54832 Revert "Correct relocation fixup for mpc5xx"
54833
54834 This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
54835 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54836
54837 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
54838 Author: Grant Likely <grant.likely@secretlab.ca>
54839 Date: Thu Nov 15 08:24:32 2007 -0700
54840
54841 Revert "Correct fixup relocation for MPC5xxx"
54842
54843 This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
54844 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54845
54846 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
54847 Author: Grant Likely <grant.likely@secretlab.ca>
54848 Date: Thu Nov 15 08:21:04 2007 -0700
54849
54850 Revert "Correct fixup relocation for mpc8220"
54851
54852 This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
54853 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54854
54855 commit 70922342369e5e39b286fe21e768a239ca07a514
54856 Author: Grant Likely <grant.likely@secretlab.ca>
54857 Date: Thu Nov 15 08:20:57 2007 -0700
54858
54859 Revert "Correct fixup relocation for mpc824x"
54860
54861 This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
54862 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54863
54864 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
54865 Author: Grant Likely <grant.likely@secretlab.ca>
54866 Date: Thu Nov 15 08:20:50 2007 -0700
54867
54868 Revert "Correct fixup relocation for mpc8260"
54869
54870 This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
54871 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54872
54873 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
54874 Author: Grant Likely <grant.likely@secretlab.ca>
54875 Date: Thu Nov 15 08:20:43 2007 -0700
54876
54877 Revert "Correct fixup relocation for mpc83xx"
54878
54879 This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
54880 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54881
54882 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
54883 Author: Grant Likely <grant.likely@secretlab.ca>
54884 Date: Thu Nov 15 08:20:25 2007 -0700
54885
54886 Revert "[MPC512x] Correct fixup relocation"
54887
54888 This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
54889 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54890
54891 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
54892 Author: Stefan Roese <sr@denx.de>
54893 Date: Thu Nov 15 14:25:09 2007 +0100
54894
54895 ppc4xx: Small AMCC Kilauea cleanup
54896
54897 Remove not needed pci_target_init() function.
54898
54899 Signed-off-by: Stefan Roese <sr@denx.de>
54900
54901 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
54902 Author: Stefan Roese <sr@denx.de>
54903 Date: Thu Nov 15 14:23:55 2007 +0100
54904
54905 ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
54906
54907 - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
54908 - Cleanup of the 4xx GPIO functions
54909 - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
54910
54911 Signed-off-by: Stefan Roese <sr@denx.de>
54912
54913 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
54914 Author: Stefan Roese <sr@denx.de>
54915 Date: Thu Nov 15 14:20:08 2007 +0100
54916
54917 ppc4xx: AMCC Taihu board config file cleanup
54918
54919 This patch makes the AMCC Taihu a little more compatible to the other
54920 AMCC eval boards.
54921
54922 Signed-off-by: Stefan Roese <sr@denx.de>
54923
54924 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
54925 Author: Marian Balakowicz <m8@semihalf.com>
54926 Date: Thu Nov 15 13:37:28 2007 +0100
54927
54928 [INKA4x0] NG hardware: flash support
54929
54930 Disabled and remove inka4x0 custom flash driver, use CFI flash
54931 driver instead.
54932
54933 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54934
54935 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
54936 Author: Marian Balakowicz <m8@semihalf.com>
54937 Date: Thu Nov 15 13:29:55 2007 +0100
54938
54939 [INKA4x0] NG hardware: SDRAM support
54940
54941 Add support for three new DDR chips that may be present on a NG
54942 INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
54943
54944 Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
54945
54946 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54947
54948 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
54949 Author: Marian Balakowicz <m8@semihalf.com>
54950 Date: Thu Nov 15 13:24:43 2007 +0100
54951
54952 [INKA4x0] NG hardware: platform code update
54953
54954 - Cleanup compile warnings.
54955 - Add missing '\0' in default environment.
54956 - Increase CFG_MONITOR_LEN to 256 KiB.
54957 - Add required CFG_USE_PPCENV.
54958
54959 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54960
54961 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
54962 Author: Peter Pearse <peter.pearse@arm.com>
54963 Date: Thu Nov 15 08:58:00 2007 +0000
54964
54965 Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
54966 Remove warnings re onenand_read() & write()
54967
54968 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
54969 Author: Peter Pearse <peter.pearse@arm.com>
54970 Date: Thu Nov 15 08:45:13 2007 +0000
54971
54972 Correction patch
54973
54974 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
54975 Author: Roy Zang <tie-fei.zang@freescale.com>
54976 Date: Thu Sep 13 18:52:28 2007 +0800
54977
54978 Enable ULi1575 Ethernet support in 8610HPCD config
54979
54980 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
54981 Acked-by: Jon Loeliger <jdl@freescale.com>
54982
54983 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
54984 Author: Stefan Roese <sr@denx.de>
54985 Date: Tue Nov 13 08:18:20 2007 +0100
54986
54987 ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
54988
54989 Signed-off-by: Stefan Roese <sr@denx.de>
54990
54991 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
54992 Author: Stefan Roese <sr@denx.de>
54993 Date: Tue Nov 13 08:06:11 2007 +0100
54994
54995 ppc4xx: Fix 405EX PCIe UTLSET register setup
54996
54997 Signed-off-by: Stefan Roese <sr@denx.de>
54998
54999 commit 1ce55151c85d068f70317a8d65c61058b891afb4
55000 Author: Heiko Schocher <hs@denx.de>
55001 Date: Tue Nov 13 07:50:29 2007 +0100
55002
55003 [UC101] SRAM now with 2 MB working.
55004
55005 Signed-off-by: Heiko Schocher <hs@denx.de>
55006
55007 commit 2d14684341109a69616e4d6016cd61402d55086f
55008 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55009 Date: Fri Nov 9 15:37:53 2007 +0100
55010
55011 ppc4xx: Use generic usb-ohci driver for sequoia board
55012
55013 This patch makes the sequoia board use the generic usb-ohci driver
55014 instead of cpu/ppc4xx/usb_ohci.c.
55015
55016 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55017 Signed-off-by: Stefan Roese <sr@denx.de>
55018
55019 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
55020 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55021 Date: Fri Nov 9 15:37:23 2007 +0100
55022
55023 ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
55024
55025 This patch disables the 44x d-cache on 'usb start' and
55026 reenables it on 'usb stop'. This should be seen as a
55027 temporary fix until the generic usb-ohci driver can
55028 life with d-cache enabled.
55029
55030 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55031 Signed-off-by: Stefan Roese <sr@denx.de>
55032
55033 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
55034 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55035 Date: Fri Nov 9 15:36:44 2007 +0100
55036
55037 ppc4xx: Remove redundant code from 4xx network driver
55038
55039 This patch removes some redundant code and decrements the end
55040 address of cache flush and invalidate by 1.
55041
55042 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55043 Signed-off-by: Stefan Roese <sr@denx.de>
55044
55045 commit 5ca9881aad8c413ac2a82868a5e3719178254502
55046 Author: Peter Pearse <peter.pearse@arm.com>
55047 Date: Fri Nov 9 15:24:26 2007 +0000
55048
55049 Add apollon board support
55050 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55051
55052 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
55053 Author: Stefan Roese <sr@denx.de>
55054 Date: Fri Nov 9 12:19:58 2007 +0100
55055
55056 ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
55057
55058 Signed-off-by: Stefan Roese <sr@denx.de>
55059
55060 commit c7f69c340277935a6c19a956421852da944a365f
55061 Author: Stefan Roese <sr@denx.de>
55062 Date: Fri Nov 9 12:18:54 2007 +0100
55063
55064 ppc4xx: Make output a little shorter on I2C bootrom detection
55065
55066 Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
55067 already print a line with the information which I2C bootrom is
55068 used for bootstrap configuration. So we don't need this extra line
55069 with "I2C boot EEPROM en-/dis-abled".
55070
55071 This patch also has a little code cleanup integrated.
55072
55073 Signed-off-by: Stefan Roese <sr@denx.de>
55074
55075 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
55076 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55077 Date: Thu Nov 8 12:50:18 2007 -0600
55078
55079 ColdFire: MCF5329 - Remove reset registers from CCM
55080
55081 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55082
55083 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
55084 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55085 Date: Thu Nov 8 12:31:11 2007 -0600
55086
55087 ColdFire: MCF5329 - Add Reset structure to immap_5329.h
55088
55089 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55090
55091 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
55092 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55093 Date: Thu Nov 8 12:19:01 2007 -0600
55094
55095 ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
55096
55097 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55098
55099 commit 225a24b5e062ad94627424508ae814f51dbe1a34
55100 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55101 Date: Wed Nov 7 18:00:54 2007 -0600
55102
55103 ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
55104
55105 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55106
55107 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
55108 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55109 Date: Wed Nov 7 17:56:15 2007 -0600
55110
55111 ColdFire: MCF532x - Update do_reset() using core reset
55112
55113 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55114
55115 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
55116 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55117 Date: Wed Nov 7 17:51:00 2007 -0600
55118
55119 ColdFire: Update cpu flag for 4.2-xx compiler
55120
55121 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55122
55123 commit 070ba56115b4da63b46e974287fa4550d4023386
55124 Author: York Sun <yorksun@freescale.com>
55125 Date: Wed Oct 31 14:59:04 2007 -0500
55126
55127 8610: Add console frame buffer support to FSL 8610 DIU driver.
55128
55129 Add cfb console support to FSL 8610 DIU driver.
55130 Inspect board version from PIXIS to obtain correct pixel format.
55131
55132 Use #define CONFIG_VIDEO in config file to enable fb console.
55133
55134 To switch monitor, set monitor variable to
55135 0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
55136 followed by "diufb init".
55137
55138 Preserve logo bitmap at the top of the fb console.
55139
55140 Signed-off-by: York Sun <yorksun@freescale.com>
55141 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55142
55143 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
55144 Author: York Sun <yorksun@freescale.com>
55145 Date: Mon Oct 29 13:58:39 2007 -0500
55146
55147 8610: Add 8610 DIU display driver
55148
55149 1280x1024 and 1024x768 @ 32 bpp are supported now.
55150 DVI, Single-link LVDS, Double-link LVDS are all supported.
55151
55152 Environmental variable "monitor" is used to specify monitor port.
55153
55154 A new command "diufb" is introduced to reinitialize monitor
55155 and display a BMP file in the memory. So far, 1-bit, 4-bit,
55156 8-bit and 24-bit BMP formats are supported.
55157
55158 diufb init
55159 - initialize the diu driver
55160 Enable the port specified in the environmental variable "monitor"
55161
55162 diufb addr
55163 - display bmp file in memory.
55164 The bmp image should be no bigger than the resolution, 1280x1024
55165 for DVI and double-link LVDS, 1024x768 for single-link LVDS.
55166
55167 Note, this driver allocate memory but doesn't free it after use
55168 It is written on purpose -- to avoid a failure of reallocation
55169 due to memory fragement.
55170
55171 ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
55172
55173 Signed-off-by: York Sun <yorksun@freescale.com>
55174 Signed-off-by: Jon loeliger <jdl@freescale.com>
55175
55176 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
55177 Author: York Sun <yorksun@freescale.com>
55178 Date: Wed Oct 31 10:43:59 2007 -0500
55179
55180 FSL: Add a freescale bitmap logo.
55181
55182 This Freescale logo is a 340 x 128 x 4bpp BMP file
55183 that can be displayed by the DIU Framebuffer driver.
55184
55185 Signed-off-by: York Sun <yorksun@freescale.com>
55186 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55187
55188 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
55189 Author: York Sun <yorksun@freescale.com>
55190 Date: Mon Oct 29 13:57:53 2007 -0500
55191
55192 8610: Make some extra debug environment variables conditional.
55193
55194 One may #define ENV_DEBUG to get them back again.
55195
55196 Signed-off-by: York Sun <yorksun@freescale.com>
55197
55198 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
55199 Author: Jason Jin <Jason.jin@freescale.com>
55200 Date: Mon Oct 29 19:26:21 2007 +0800
55201
55202 8610: Actually enable pixis_reset CONFIGs
55203
55204 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
55205
55206 commit f3bceaab230b4748d0afc4109b6837308f018b40
55207 Author: Jason Jin <Jason.jin@freescale.com>
55208 Date: Fri Oct 26 18:31:59 2007 +0800
55209
55210 Fix the BAT definition of PCI IO on 8610 board
55211
55212 The address in the BAT register is aligned with the BAT size.
55213 The original definition actually did not define BAT for PCIE2 IO.
55214 This patch fix this.
55215
55216 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
55217
55218 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
55219 Author: Jason Jin <Jason.jin@freescale.com>
55220 Date: Mon Oct 29 19:26:21 2007 +0800
55221
55222 Unify pixis_reset altbank across board families
55223
55224 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
55225 into the separate board config files.
55226
55227 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
55228 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55229
55230 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
55231 Author: Jason Jin <Jason.jin@freescale.com>
55232 Date: Fri Oct 26 18:32:00 2007 +0800
55233
55234 make 8610 board use pixis reset
55235
55236 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
55237
55238 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
55239 Author: Jon Loeliger <jdl@freescale.com>
55240 Date: Thu Nov 1 12:23:29 2007 -0500
55241
55242 86xx: Fix broken variable reference when #def DEBUGing.
55243
55244 Sometimes you can't reference the DDR2 controller variables.
55245
55246 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55247
55248 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
55249 Author: Roy Zang <tie-fei.zang@freescale.com>
55250 Date: Mon Nov 5 17:39:24 2007 +0800
55251
55252 Implement general ULi 526x Ethernet driver support in U-boot
55253
55254 This patch implements general ULi 526x Ethernet driver.
55255 Until now, it is the only native Ethernet port on
55256 MPC8610HPCD board, but it could be used on other boards
55257 with ULi 526x Ethernet port as well.
55258
55259 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
55260 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
55261 Acked-by: Jon Loeliger <jdl@freescale.com>
55262 Signed-off-by: Ben Warren <bwarren@qstreams.com>
55263
55264 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
55265 Author: Larry Johnson <lrj@arlinx.com>
55266 Date: Thu Nov 1 08:46:50 2007 -0500
55267
55268 NET: Add Ethernet 1000BASE-X support for PPC4xx
55269
55270 This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
55271 "miiphy_duplex()". It also adds function "miiphy_is_1000base_x ()", which
55272 returns non-zero iff the PHY registers are configured for 1000BASE-X. The
55273 "mii info" command is modified to distinguish between 1000BASE-T and -X.
55274
55275 Signed-off-by: Larry Johnson <lrj@acm.org>
55276 Signed-off-by: Ben Warren <bwarren@qstreams.com>
55277
55278 commit 298035df4948b113d29ac0e694717d34b95bc5dc
55279 Author: Larry Johnson <lrj@arlinx.com>
55280 Date: Wed Oct 31 11:21:29 2007 -0500
55281
55282 NET: Cosmetic changes
55283
55284 Signed-off-by: Larry Johnson <lrj@acm.org>
55285 Signed-off-by: Ben Warren <bwarren@qstreams.com>
55286
55287 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
55288 Author: Stefan Roese <sr@denx.de>
55289 Date: Mon Nov 5 07:43:05 2007 +0100
55290
55291 ppc4xx: Make output a little shorter on PCIe detection
55292
55293 Now not max 3 lines but 2 lines are printed per PCIe port.
55294
55295 Signed-off-by: Stefan Roese <sr@denx.de>
55296
55297 commit 992742a5b09d9040adbd156fb90756af66ade310
55298 Author: Wolfgang Denk <wd@denx.de>
55299 Date: Sat Nov 3 23:09:27 2007 +0100
55300
55301 Cleanup coding style; update CHANGELOG
55302
55303 Signed-off-by: Wolfgang Denk <wd@denx.de>
55304
55305 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
55306 Author: Bruce Adler <bruce.adler@ccpu.com>
55307 Date: Fri Nov 2 13:15:42 2007 -0700
55308
55309 fix wording in README
55310
55311 Changed the wording to properly describe the shadowing
55312 of the environment from ROM to RAM
55313
55314 Signed-off-by: Bruce Adler <bruce.adler@acm.org>
55315
55316 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
55317 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55318 Date: Wed Oct 31 02:18:15 2007 +0900
55319
55320 blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
55321
55322 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55323
55324 commit ec22755799466c8a103664bb3a5e647bf9c238f4
55325 Author: Vlad Lungu <vlad@comsys.ro>
55326 Date: Thu Oct 25 16:08:14 2007 +0300
55327
55328 Trimmed some variables in ne2000.c
55329
55330 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
55331
55332 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
55333 Author: Zhang Wei <wei.zhang@freescale.com>
55334 Date: Thu Oct 25 17:51:27 2007 +0800
55335
55336 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
55337
55338 The scan code of the key 'z' is 0x1d, which should be handled.
55339
55340 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
55341 controller.
55342
55343 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
55344
55345 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
55346 Author: Zhang Wei <wei.zhang@freescale.com>
55347 Date: Thu Oct 25 17:30:04 2007 +0800
55348
55349 Fix USB support issue for MPC8641HPCN board.
55350
55351 The configuration file has already enabled USB, but it
55352 missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
55353 on MPC8641HPCN can not work because of the wrong USB
55354 register endian.
55355
55356 And add the USB command to U-Boot commands list.
55357
55358 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
55359
55360 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
55361 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55362 Date: Wed Oct 24 18:16:01 2007 +0200
55363
55364 Use config_cmd_default.h instead of config_cmd_all.h
55365
55366 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55367
55368 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
55369 Author: Marian Balakowicz <m8@semihalf.com>
55370 Date: Wed Oct 24 01:37:36 2007 +0200
55371
55372 TQM5200: Call usb_cpu_init() during board init
55373
55374 usb_cpu_init() configures GPS USB pins, clocks, etc. and
55375 is required for proper operation of kernel USB subsystem.
55376 This setup was previously done in the kernel by the fixup
55377 code which is being removed, thus low level init must be
55378 done by U-boot now.
55379
55380 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55381
55382 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
55383 Author: Guennadi Liakhovetski <lg@denx.de>
55384 Date: Tue Oct 23 16:25:50 2007 +0200
55385
55386 Fix typo in nfs.c
55387
55388 An obvious typo. Originally fixed in linkstation u-boot port.
55389
55390 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55391
55392 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
55393 Author: Guennadi Liakhovetski <lg@denx.de>
55394 Date: Tue Oct 23 14:35:05 2007 +0200
55395
55396 Fix a typo in cpu/mpc824x/interrupts.c
55397
55398 Since December 2003 the timer_interrupt_cpu() function in
55399 cpu/mpc824x/interrupts.c contains what seems to be a superfluous
55400 parameter. Remove it.
55401
55402 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55403
55404 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
55405 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
55406 Date: Wed Oct 17 11:13:51 2007 +0200
55407
55408 add ft_cpu_setup(..) on mpc8260
55409
55410 Add ft_cpu_setup(..)-function to adapt it for use with libfdt
55411 based on code from mpc5xxx
55412
55413 Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
55414 --
55415
55416 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
55417 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
55418 Date: Wed Oct 17 11:18:42 2007 +0200
55419
55420 changes for IDS8247 board support
55421
55422 To get the IDS8247 board working following are done:
55423 - FCC2 is deactivated
55424 - FCC1 is activated
55425 - I2C is activated
55426 - CFI driver is activated
55427 - Adapted for use with LIBFDT
55428
55429 Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
55430 --
55431
55432 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
55433 Author: Stefan Roese <sr@denx.de>
55434 Date: Sat Nov 3 12:08:28 2007 +0100
55435
55436 ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
55437
55438 This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
55439 Again, only one image supports both targets.
55440
55441 Signed-off-by: Stefan Roese <sr@denx.de>
55442
55443 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
55444 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55445 Date: Wed Oct 24 15:48:37 2007 +0200
55446
55447 ATSTK1002: Remove default ethernet addresses
55448
55449 Wolfgang is right: It's not a good idea to set up default initial
55450 ethernet addresses for a board, even though they belong to the local
55451 range.
55452
55453 This will change the failure mode from "IT manager screams at you for
55454 using duplicate ethernet addresses" to a nice error message explaining
55455 that the ethernet address hasn't been set properly.
55456
55457 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55458
55459 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
55460 Author: Justin Flammia <jflammia@savantav.com>
55461 Date: Mon Oct 29 17:40:35 2007 -0400
55462
55463 DHCP Client Fix
55464
55465 This is a multi-part message in MIME format.
55466
55467 commit e6e505eae94ed721e123e177489291fc4544b7b8
55468 Author: Justin Flammia <jflammia@savantav.com>
55469 Date: Mon Oct 29 17:19:03 2007 -0400
55470
55471 Found a bug in the way the DHCP Request packet is built, where the IP address
55472 that is offered by the server is bound to prematurely. This patch is a fix of
55473 that bug where the IP address offered by the DHCP server is not used until
55474 after the DHCP ACK from the server is received.
55475
55476 Signed-off-by: Justin Flammia <jflammia@savantav.com>
55477 Signed-off-by: Ben Warren <bwarren@qstreams.com>
55478
55479 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
55480 Author: Stefan Roese <sr@denx.de>
55481 Date: Wed Oct 31 20:58:34 2007 +0100
55482
55483 ppc4xx: Fix acadia_nand build problem
55484
55485 Since the cache handling functions were moved from start.S into cache.S
55486 the acadia NAND booting Makfile needs to be adapted accordingly.
55487
55488 Signed-off-by: Stefan Roese <sr@denx.de>
55489
55490 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
55491 Author: Stefan Roese <sr@denx.de>
55492 Date: Wed Oct 31 20:57:11 2007 +0100
55493
55494 ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
55495
55496 This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
55497 and to the Sequoia TLB init code. Now the cache can be enabled on 44x
55498 boards by defining CONFIG_4xx_DCACHE in the board config file. This
55499 option will disappear, when more boards use is successfully and no
55500 more known problems exist.
55501
55502 This is tested successfully on Sequoia and Katmai. The only problem that
55503 needs to be fixed is, that USB is not working on Sequoia right now, since
55504 it will need some cache handling code too, similar to the 4xx EMAC driver.
55505
55506 Signed-off-by: Stefan Roese <sr@denx.de>
55507
55508 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
55509 Author: Stefan Roese <sr@denx.de>
55510 Date: Wed Oct 31 20:51:10 2007 +0100
55511
55512 ppc4xx: Enable CPU POST test for 4xx with dcache enabled
55513
55514 Now with caches enabled (i- and d-cache) on 44x, we need a chance to
55515 disable the cache for the CPU POST tests, since these tests consist
55516 of self modifying code. This is done via the new change_tlb() function.
55517
55518 Signed-off-by: Stefan Roese <sr@denx.de>
55519
55520 commit f71b2888b4b3c870909a0341427b2a914246f81f
55521 Author: Stefan Roese <sr@denx.de>
55522 Date: Wed Oct 31 20:47:26 2007 +0100
55523
55524 ppc4xx: Change 4xx POST ethernet test to handle cached memory too
55525
55526 This patch enables the 4xx EMAC POST driver to work too, when dcache is
55527 enabled.
55528
55529 Signed-off-by: Stefan Roese <sr@denx.de>
55530
55531 commit a2685904061b35a17583d65fe47cdc2686a69eaa
55532 Author: Stefan Roese <sr@denx.de>
55533 Date: Wed Oct 31 20:45:53 2007 +0100
55534
55535 ppc4xx: Remove temporary TLB entry in POST cache test only for 440
55536
55537 Signed-off-by: Stefan Roese <sr@denx.de>
55538
55539 commit ff768cb168d8157c24a25016dbfbeb465e47f420
55540 Author: Stefan Roese <sr@denx.de>
55541 Date: Wed Oct 31 18:01:24 2007 +0100
55542
55543 ppc4xx: Change 4xx ethernet driver to handle cached memory too
55544
55545 This patch enables the 4xx EMAC driver to work too, when dcache is
55546 enabled.
55547
55548 Signed-off-by: Stefan Roese <sr@denx.de>
55549
55550 commit 483e09a223c666269ef81d3573a6591b1046b0ef
55551 Author: Stefan Roese <sr@denx.de>
55552 Date: Wed Oct 31 17:59:22 2007 +0100
55553
55554 ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
55555
55556 This function is used to either turn cache on or off in a specific
55557 memory area.
55558
55559 Signed-off-by: Stefan Roese <sr@denx.de>
55560
55561 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
55562 Author: Stefan Roese <sr@denx.de>
55563 Date: Wed Oct 31 17:57:52 2007 +0100
55564
55565 ppc4xx: Remove cache definition from 4xx board config files
55566
55567 All 4xx board config files don't need the cache definitions anymore.
55568 These are now defined in common headers.
55569
55570 Signed-off-by: Stefan Roese <sr@denx.de>
55571
55572 commit 9b94ac61d2176185c30adf0793e079ec30e68687
55573 Author: Stefan Roese <sr@denx.de>
55574 Date: Wed Oct 31 17:55:58 2007 +0100
55575
55576 ppc4xx: Rework 4xx cache support
55577
55578 New cache handling functions added and all existing functions
55579 moved from start.S into seperate cache.S.
55580
55581 Signed-off-by: Stefan Roese <sr@denx.de>
55582
55583 commit 06713773da4ac3d390c63d82641eb553224b27c2
55584 Author: Stefan Roese <sr@denx.de>
55585 Date: Tue Oct 23 18:03:12 2007 +0200
55586
55587 ppc4xx: Remove compiler warning from previous commit
55588
55589 Signed-off-by: Stefan Roese <sr@denx.de>
55590
55591 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
55592 Author: Stefan Roese <sr@denx.de>
55593 Date: Tue Oct 23 14:40:30 2007 +0200
55594
55595 ppc4xx: Remove temporary TLB entry in POST cache test
55596
55597 Signed-off-by: Stefan Roese <sr@denx.de>
55598
55599 commit 1338e6a81834099ba19733b69aafd8ef5f098094
55600 Author: Stefan Roese <sr@denx.de>
55601 Date: Tue Oct 23 14:05:08 2007 +0200
55602
55603 ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
55604
55605 I lately noticed, that newer 4xx board with GBit support sometimes don't
55606 finish link autonegotiation in 4 seconds. Changing this timeout to 5
55607 seconds seems fine here.
55608
55609 Signed-off-by: Stefan Roese <sr@denx.de>
55610
55611 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
55612 Author: Stefan Roese <sr@denx.de>
55613 Date: Tue Oct 23 14:03:17 2007 +0200
55614
55615 ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
55616
55617 This patch changes all in32/out32 calls to use the recommended in_be32/
55618 out_be32 macros instead.
55619
55620 Signed-off-by: Stefan Roese <sr@denx.de>
55621
55622 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
55623 Author: Stefan Roese <sr@denx.de>
55624 Date: Thu Oct 25 12:24:59 2007 +0200
55625
55626 ppc4xx: Fix POST ethernet test for Haleakala
55627
55628 The POST ethernet test needed to be changed to dynamically determine
55629 the count of ethernet devices. This code is cloned from the 4xx
55630 ethernet driver.
55631
55632 Signed-off-by: Stefan Roese <sr@denx.de>
55633
55634 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
55635 Author: Stefan Roese <sr@denx.de>
55636 Date: Tue Oct 23 11:31:05 2007 +0200
55637
55638 ppc4xx: Correct UART input clock calculation and passing to fdt
55639
55640 We now use a value in the gd (global data) structure for the UART input
55641 frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
55642 in get_sys_info().
55643
55644 Signed-off-by: Stefan Roese <sr@denx.de>
55645
55646 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
55647 Author: Stefan Roese <sr@denx.de>
55648 Date: Tue Oct 23 10:10:08 2007 +0200
55649
55650 ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
55651
55652 The Haleakala is nearly identical with the Kilauea eval board. The only
55653 difference is that the 405EXr only supports one EMAC and one PCIe
55654 interface. This patch adds support for the Haleakala board by using
55655 the identical image for Kilauea and Haleakala. The distinction is done
55656 by comparing the PVR.
55657
55658 Signed-off-by: Stefan Roese <sr@denx.de>
55659
55660 commit 9f798766aa85e62eb8fa8c721e148df609b78137
55661 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
55662 Date: Tue Oct 23 08:29:10 2007 +0200
55663
55664 ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
55665
55666 This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
55667
55668 Note:
55669 As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
55670 DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
55671 modules are still plugged in. So it is recommended to remove the DIMM
55672 modules while using the NAND booting code with the fixed SDRAM setup!
55673
55674 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
55675 Signed-off-by: Stefan Roese <sr@denx.de>
55676
55677 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
55678 Author: Stefan Roese <sr@denx.de>
55679 Date: Mon Oct 22 16:24:44 2007 +0200
55680
55681 ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
55682
55683 Signed-off-by: Stefan Roese <sr@denx.de>
55684
55685 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
55686 Author: Stefan Roese <sr@denx.de>
55687 Date: Mon Oct 22 16:22:40 2007 +0200
55688
55689 ppc4xx: Rework of 4xx serial driver (4)
55690
55691 Change 4xx_uart.c:
55692
55693 - Use in_8/out_8 macros instead of in8/out8
55694 - No need for UART_BASE marco anymore, now really handled via function
55695 parameter
55696 - serial_init_common() introduced
55697 - Further coding style cleanup
55698
55699 Signed-off-by: Stefan Roese <sr@denx.de>
55700
55701 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
55702 Author: Stefan Roese <sr@denx.de>
55703 Date: Mon Oct 22 15:45:49 2007 +0200
55704
55705 ppc4xx: Rework of 4xx serial driver (3)
55706
55707 Change all linker scripts to reference the changed driver name iop480_uart.o.
55708
55709 Signed-off-by: Stefan Roese <sr@denx.de>
55710
55711 commit 882ae41274921f9016131806bdeb27e19606f47a
55712 Author: Stefan Roese <sr@denx.de>
55713 Date: Mon Oct 22 15:44:39 2007 +0200
55714
55715 ppc4xx: Rework of 4xx serial driver (2)
55716
55717 Change all linker scripts to reference the changed driver name 4xx_uart.o.
55718
55719 Note: In most cased all these explicit referencing of these object files
55720 in the linker scripts is not neccessary. Only for manually embedded
55721 environment into the U-Boot image, which is not done is most cases.
55722
55723 Signed-off-by: Stefan Roese <sr@denx.de>
55724
55725 commit ad31e40bed042cb670d0036fea96435007afb838
55726 Author: Stefan Roese <sr@denx.de>
55727 Date: Mon Oct 22 15:09:59 2007 +0200
55728
55729 ppc4xx: Rework of 4xx serial driver (1)
55730
55731 This patch starts the rework of the PPC4xx serial driver. First we split
55732 the file into two seperate files, one 4xx_uart.c with the 405/440 UART
55733 handling code and the other one iop480_uart.c with the UART code for the
55734 PLX-Tech IOP480 PPC (PPC403 based).
55735
55736 Signed-off-by: Stefan Roese <sr@denx.de>
55737
55738 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
55739 Author: Stefan Roese <sr@denx.de>
55740 Date: Mon Oct 22 10:30:38 2007 +0200
55741
55742 ppc4xx: Correct UART input clock calculation and passing to fdt
55743
55744 Signed-off-by: Stefan Roese <sr@denx.de>
55745
55746 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
55747 Author: Stefan Roese <sr@denx.de>
55748 Date: Mon Oct 22 07:34:34 2007 +0200
55749
55750 ppc4xx: Add initial AMCC Makalu 405EX support
55751
55752 Signed-off-by: Stefan Roese <sr@denx.de>
55753
55754 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
55755 Author: Stefan Roese <sr@denx.de>
55756 Date: Mon Oct 22 07:33:52 2007 +0200
55757
55758 ppc4xx: Add freqUART to CPU speed detection
55759
55760 This value is needed later for the device tree configuration of
55761 the uart clock.
55762
55763 Signed-off-by: Stefan Roese <sr@denx.de>
55764
55765 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
55766 Author: Stefan Roese <sr@denx.de>
55767 Date: Sun Oct 21 14:26:29 2007 +0200
55768
55769 ppc: Small Kilauea cleanup of config file
55770
55771 Signed-off-by: Stefan Roese <sr@denx.de>
55772
55773 commit 758c037aeead34b49631b8da3a90b1bba14c0410
55774 Author: Stefan Roese <sr@denx.de>
55775 Date: Sun Oct 21 08:16:12 2007 +0200
55776
55777 rtc: Add Xicor/Intersil X1205 RTC support
55778
55779 This patch adds support for the Xicor/Intersil X1205 RTC used on the
55780 AMCC Makalu eval board. This driver is basically cloned from the Linux
55781 driver version (2.6.23).
55782
55783 This patch also introduces the Linux bcd.h header for the BCD2BIN/
55784 BIN2BCD conversions. In the future some of the other U-Boot RTC driver
55785 should be converted to also use this header instead of implementing
55786 their own local copy of these functions/macros.
55787
55788 Signed-off-by: Stefan Roese <sr@denx.de>
55789
55790 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
55791 Author: Stefan Roese <sr@denx.de>
55792 Date: Sun Oct 21 08:12:41 2007 +0200
55793
55794 ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
55795
55796 This patch moves some common 4xx macros and the PPC405_SYS_INFO/
55797 PPC440_SYS_INFO structure into the common ppc4xx.h header.
55798
55799 Lot's of other macros are good candidates to be consolidated this way
55800 in the future.
55801
55802 Signed-off-by: Stefan Roese <sr@denx.de>
55803
55804 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
55805 Author: Stefan Roese <sr@denx.de>
55806 Date: Sun Oct 21 08:05:18 2007 +0200
55807
55808 ppc4xx: Fix size setup in Kilauea DDR2 init routine
55809
55810 The size was initilized wrong. Instead of 256MB, the DDR2 controller
55811 was setup to 512MB. Now the correct values is used.
55812
55813 This patch also does a little cleanup and adds a comment here.
55814
55815 Signed-off-by: Stefan Roese <sr@denx.de>
55816
55817 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
55818 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
55819 Date: Thu Oct 18 17:29:04 2007 +0200
55820
55821 ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
55822
55823 CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
55824 number is used to access system registers.
55825
55826 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
55827 Signed-off-by: Stefan Roese <sr@denx.de>
55828
55829 commit c36c68160333ac5fe41ec3db12a728b7075b3912
55830 Author: Stefan Roese <sr@denx.de>
55831 Date: Thu Oct 18 07:42:27 2007 +0200
55832
55833 ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
55834
55835 On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
55836 is the internal SRAM. Since I now ported and tested this endpoint mode
55837 on Kilauea successfully to map to 0 (SDRAM), I also changed this for
55838 Katmai.
55839
55840 Yucca will stay at internal SRAM for now. Not sure if somebody relies on
55841 this setup.
55842
55843 Signed-off-by: Stefan Roese <sr@denx.de>
55844
55845 commit 5cb4af4791f61843432155142b6cfac901f66c10
55846 Author: Stefan Roese <sr@denx.de>
55847 Date: Thu Oct 18 07:39:38 2007 +0200
55848
55849 ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
55850
55851 This patch adds endpoint support for the AMCC Kilauea eval board. It can
55852 be tested by connecting a reworked PCIe cable (only 1x lane singles
55853 connected) to another root-complex.
55854
55855 In this test setup, a 64MB inbound window is configured at BAR0 which maps
55856 to 0 on the PLB side. So accessing this BAR0 from the root-complex will
55857 access the first 64MB of the SDRAM on the PPC side.
55858
55859 Signed-off-by: Stefan Roese <sr@denx.de>
55860
55861 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
55862 Author: Stefan Roese <sr@denx.de>
55863 Date: Sat Oct 13 16:43:23 2007 +0200
55864
55865 ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
55866
55867 This patch adds support for dynamic configuration of PCIe ports for the
55868 AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
55869 boards Yucca & Katmai and the 405EX board Kilauea.
55870
55871 This dynamic configuration is done via the "pcie_mode" environement
55872 variable. This variable can be set to "EP" or "RP" for endpoint or
55873 rootpoint mode. Multiple values can be joined via the ":" delimiter.
55874 Here an example:
55875
55876 pcie_mode=RP:EP:EP
55877
55878 This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
55879 as endpoint.
55880
55881 Per default Yucca will be configured as:
55882 pcie_mode=RP:EP:EP
55883
55884 Per default Katmai will be configured as:
55885 pcie_mode=RP:RP:REP
55886
55887 Per default Kilauea will be configured as:
55888 pcie_mode=RP:RP
55889
55890 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
55891 Signed-off-by: Stefan Roese <sr@denx.de>
55892
55893 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
55894 Author: Stefan Roese <sr@denx.de>
55895 Date: Thu Oct 11 11:15:59 2007 +0200
55896
55897 ppc4xx: Enable device tree support (fdt) on Kilauea per default
55898
55899 This patch enables the fdt support on the AMCC Kilauea eval board.
55900 Additionally now EBC ranges fdt fixup is included to support NOR
55901 FLASH mapping via the Linux physmap_of driver.
55902
55903 This Kilauea port now support booting arch/ppc and arch/powerpc
55904 Linux kernels. The default environment "net_nfs" is for arch/ppc
55905 and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
55906 support will be removed.
55907
55908 Signed-off-by: Stefan Roese <sr@denx.de>
55909
55910 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
55911 Author: Stefan Roese <sr@denx.de>
55912 Date: Thu Oct 11 11:11:45 2007 +0200
55913
55914 ppc4xx: Add additional debug info to 4xx fdt support
55915
55916 Signed-off-by: Stefan Roese <sr@denx.de>
55917
55918 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
55919 Author: Stefan Roese <sr@denx.de>
55920 Date: Fri Oct 5 21:28:58 2007 +0200
55921
55922 ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
55923
55924 Signed-off-by: Stefan Roese <sr@denx.de>
55925
55926 commit 1941cce71b1ae975602854045061e82f94ecd012
55927 Author: Stefan Roese <sr@denx.de>
55928 Date: Fri Oct 5 17:35:10 2007 +0200
55929
55930 ppc4xx: Fix small merge problem in 4xx_enet.c
55931
55932 Signed-off-by: Stefan Roese <sr@denx.de>
55933
55934 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
55935 Author: Stefan Roese <sr@denx.de>
55936 Date: Fri Oct 5 17:11:30 2007 +0200
55937
55938 ppc4xx: Add initial AMCC Kilauea 405EX support
55939
55940 Signed-off-by: Stefan Roese <sr@denx.de>
55941
55942 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
55943 Author: Stefan Roese <sr@denx.de>
55944 Date: Fri Oct 5 17:10:59 2007 +0200
55945
55946 ppc4xx: Add PPC405EX support
55947
55948 Signed-off-by: Stefan Roese <sr@denx.de>
55949
55950 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
55951 Author: Stefan Roese <sr@denx.de>
55952 Date: Fri Oct 5 17:09:36 2007 +0200
55953
55954 ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
55955
55956 Signed-off-by: Stefan Roese <sr@denx.de>
55957
55958 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
55959 Author: Stefan Roese <sr@denx.de>
55960 Date: Fri Oct 5 17:07:50 2007 +0200
55961
55962 ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
55963
55964 Signed-off-by: Stefan Roese <sr@denx.de>
55965
55966 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
55967 Author: Stefan Roese <sr@denx.de>
55968 Date: Fri Oct 5 17:04:57 2007 +0200
55969
55970 POST: Add 405EX support to 4xx UART POST test
55971
55972 Signed-off-by: Stefan Roese <sr@denx.de>
55973
55974 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
55975 Author: Stefan Roese <sr@denx.de>
55976 Date: Fri Oct 5 15:10:02 2007 +0200
55977
55978 DTT: Prepare DS1775 driver for use of different I2C addresses
55979
55980 Signed-off-by: Stefan Roese <sr@denx.de>
55981
55982 commit 19e93b1e16d267220440d827b920fbad8abfa70f
55983 Author: Stefan Roese <sr@denx.de>
55984 Date: Fri Oct 5 14:23:43 2007 +0200
55985
55986 ppc4xx: 4xx_pcie: Change PCIe status output to match common style
55987
55988 Signed-off-by: Stefan Roese <sr@denx.de>
55989
55990 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
55991 Author: Stefan Roese <sr@denx.de>
55992 Date: Fri Oct 5 09:22:33 2007 +0200
55993
55994 ppc4xx: 4xx_pcie: Disable debug output as default
55995
55996 Signed-off-by: Stefan Roese <sr@denx.de>
55997
55998 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
55999 Author: Stefan Roese <sr@denx.de>
56000 Date: Fri Oct 5 09:18:23 2007 +0200
56001
56002 ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
56003
56004 Signed-off-by: Stefan Roese <sr@denx.de>
56005
56006 commit 4dbee8a90df613eb517aadbecebd70f168913d30
56007 Author: Stefan Roese <sr@denx.de>
56008 Date: Fri Oct 5 07:57:20 2007 +0200
56009
56010 ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
56011
56012 128MB seems to be the smallest possible value for the memory size
56013 for on PCIe port. With this change now the BAR's of the PCIe cards
56014 are accessible under U-Boot.
56015
56016 One big note: This only works for PCIe port 0 & 1. For port 2 this
56017 currently doesn't work, since the base address is now 0xc0000000
56018 (0xb0000000 + 2 * 0x08000000), and this is already occupied by
56019 CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
56020 to change the base addresses completely and this change would have
56021 too much impact right now.
56022
56023 This patch adds debug output to the 4xx pcie driver too.
56024
56025 Signed-off-by: Stefan Roese <sr@denx.de>
56026
56027 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
56028 Author: Stefan Roese <sr@denx.de>
56029 Date: Wed Oct 3 21:16:32 2007 +0200
56030
56031 ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
56032
56033 Signed-off-by: Stefan Roese <sr@denx.de>
56034
56035 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
56036 Author: Stefan Roese <sr@denx.de>
56037 Date: Wed Oct 3 15:01:02 2007 +0200
56038
56039 ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
56040
56041 These files were introduced with the IBM 405GP but are currently used on all
56042 4xx PPC platforms. So the name doesn't match the content anymore. This patch
56043 renames the files to 4xx_pci.c/h.
56044
56045 Signed-off-by: Stefan Roese <sr@denx.de>
56046
56047 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
56048 Author: Stefan Roese <sr@denx.de>
56049 Date: Wed Oct 3 14:14:58 2007 +0200
56050
56051 ppc4xx: Add a comment for 405EX PCIe endpoint configuration
56052
56053 Signed-off-by: Stefan Roese <sr@denx.de>
56054
56055 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
56056 Author: Stefan Roese <sr@denx.de>
56057 Date: Wed Oct 3 10:38:09 2007 +0200
56058
56059 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
56060
56061 (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
56062 the SDR registers of the PCIe ports. This makes the overall design
56063 clearer, since it removed a lot of switch statements which are not
56064 needed anymore.
56065
56066 Also, the functions ppc4xx_init_pcie_rootport() and
56067 ppc4xx_init_pcie_entport() are merged into a single function
56068 ppc4xx_init_pcie_port(), since most of the code was duplicated.
56069 This makes maintainance and porting to other 4xx platforms
56070 easier.
56071
56072 Signed-off-by: Stefan Roese <sr@denx.de>
56073
56074 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
56075 Author: Stefan Roese <sr@denx.de>
56076 Date: Wed Oct 3 07:48:09 2007 +0200
56077
56078 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
56079
56080 This patch is the first patch of a series to make the 440SPe PCIe code
56081 usable on different 4xx PPC platforms. In preperation for the new 405EX
56082 which is also equipped with PCIe interfaces.
56083
56084 (2) This patch renames the functions from 440spe_ to 4xx_ with a
56085 little additional cleanup
56086
56087 Signed-off-by: Stefan Roese <sr@denx.de>
56088
56089 commit c7c6da23028f146d912514b95aefa3da7cf37699
56090 Author: Stefan Roese <sr@denx.de>
56091 Date: Wed Oct 3 07:34:10 2007 +0200
56092
56093 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
56094
56095 This patch is the first patch of a series to make the 440SPe PCIe code
56096 usable on different 4xx PPC platforms. In preperation for the new 405EX
56097 which is also equipped with PCIe interfaces.
56098
56099 (1) This patch renames the files from 440spe_pcie to 4xx_pcie
56100
56101 Signed-off-by: Stefan Roese <sr@denx.de>
56102
56103 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
56104 Author: Marian Balakowicz <m8@semihalf.com>
56105 Date: Wed Oct 24 01:37:36 2007 +0200
56106
56107 TQM5200: Call usb_cpu_init() during board init
56108
56109 usb_cpu_init() configures GPS USB pins, clocks, etc. and
56110 is required for proper operation of kernel USB subsystem.
56111 This setup was previously done in the kernel by the fixup
56112 code which is being removed, thus low level init must be
56113 done by U-boot now.
56114
56115 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56116 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
56117
56118 commit b5af773f8d92677e06f3295b45557c9d0a487c24
56119 Author: Zhang Wei <wei.zhang@freescale.com>
56120 Date: Thu Oct 25 17:51:27 2007 +0800
56121
56122 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
56123
56124 The scan code of the key 'z' is 0x1d, which should be handled.
56125
56126 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
56127 controller.
56128
56129 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
56130 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
56131
56132 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
56133 Author: Rodolfo Giometti <giometti@enneenne.com>
56134 Date: Mon Oct 15 11:59:17 2007 +0200
56135
56136 PXA USB OHCI: "usb stop" implementation.
56137
56138 Some USB keys need to be switched off before loading the kernel
56139 otherwise they can remain in an undefined status which prevents them
56140 to be correctly recognized by the kernel.
56141
56142 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
56143 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
56144
56145 commit 31548249decf18a6b877a18436b6139dd483fe4a
56146 Author: Justin Flammia <jflammia@savantav.com>
56147 Date: Mon Oct 29 17:40:35 2007 -0400
56148
56149 DHCP Client Fix
56150
56151 This is a multi-part message in MIME format.
56152
56153 commit e6e505eae94ed721e123e177489291fc4544b7b8
56154 Author: Justin Flammia <jflammia@savantav.com>
56155 Date: Mon Oct 29 17:19:03 2007 -0400
56156
56157 Found a bug in the way the DHCP Request packet is built, where the IP address
56158 that is offered by the server is bound to prematurely. This patch is a fix of
56159 that bug where the IP address offered by the DHCP server is not used until
56160 after the DHCP ACK from the server is received.
56161
56162 Signed-off-by: Justin Flammia <jflammia@savantav.com>
56163 Signed-off-by: Ben Warren <bwarren@qstreams.com>
56164
56165 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
56166 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56167 Date: Thu Oct 25 17:16:22 2007 -0500
56168
56169 ColdFire 54455: Fix correct boot location for atmel and intel
56170
56171 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56172
56173 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
56174 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56175 Date: Thu Oct 25 17:14:00 2007 -0500
56176
56177 ColdFire: Fix build error when CONFIG_WATCHDOG is defined
56178
56179 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56180
56181 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
56182 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56183 Date: Thu Oct 25 17:12:36 2007 -0500
56184
56185 ColdFire 5329: Assign correct SDRAM size and fix cache
56186
56187 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56188
56189 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
56190 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56191 Date: Thu Oct 25 17:10:23 2007 -0500
56192
56193 ColdFire 5253: Assign correct SDRAM size
56194
56195 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56196
56197 commit 2acefa72ee0026f862ab65597ca687428f63a973
56198 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56199 Date: Thu Oct 25 17:09:17 2007 -0500
56200
56201 ColdFire 5282: Fix external flash boot and return dramsize
56202
56203 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56204
56205 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
56206 Author: Bartlomiej Sieka <tur@semihalf.com>
56207 Date: Thu Oct 25 17:20:01 2007 +0200
56208
56209 TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
56210
56211 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
56212
56213 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
56214 Author: Martin Krause <martin.krause@tqs.de>
56215 Date: Wed Oct 24 08:42:25 2007 +0200
56216
56217 TQM5200: fix spurious characters on second serial interface
56218
56219 With this patch PSC3 is configured as UART. This is done, because if
56220 the pins of PSC3 are not configured at all (-> all pins are GPI),
56221 due to crosstalk, spurious characters may be send over the RX232_2_TXD
56222 signal line.
56223
56224 Signed-off-by: Martin Krause <martin.krause@tqs.de>
56225 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56226
56227 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
56228 Author: Martin Krause <martin.krause@tqs.de>
56229 Date: Wed Oct 24 08:41:27 2007 +0200
56230
56231 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
56232
56233 Some commands for the STK52xx base board try to access the SM501 grafic
56234 controller. But the TQM5200S has no grafic controller (only the TQM5200
56235 and the TQM5200B have). This patch deactivates the commands accessing
56236 the SM501 for the TQM5200S.
56237
56238 Signed-off-by: Martin Krause <martin.krause@tqs.de>
56239 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56240
56241 commit b31f64343ead9482cd439b1adbe4c34026a641b1
56242 Author: Martin Krause <martin.krause@tqs.de>
56243 Date: Mon Oct 22 16:45:53 2007 +0200
56244
56245 TQM5200: fix spurious characters on second serial interface
56246
56247 With this patch PSC3 is configured as UART. This is done, because if
56248 the pins of PSC3 are not configured at all (-> all pins are GPI),
56249 due to crosstalk, spurious characters may be send over the RX232_2_TXD
56250 signal line.
56251
56252 Signed-off-by: Martin Krause <martin.krause@tqs.de>
56253
56254 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
56255 Author: Martin Krause <martin.krause@tqs.de>
56256 Date: Mon Oct 22 16:40:06 2007 +0200
56257
56258 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
56259
56260 Some commands for the STK52xx base board try to access the SM501 grafic
56261 controller. But the TQM5200S has no grafic controller (only the TQM5200
56262 and the TQM5200B have). This patch deactivates the commands accessing
56263 the SM501 for the TQM5200S.
56264
56265 Signed-off-by: Martin Krause <martin.krause@tqs.de>
56266
56267 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
56268 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56269 Date: Sun Oct 21 09:14:28 2007 +0200
56270
56271 Mips: Fix string functions differ prototype declaration
56272
56273 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56274
56275 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
56276 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56277 Date: Fri Oct 19 17:51:40 2007 -0500
56278
56279 fsl_pci_init enable COMMAND_MEMORY if inbound window
56280
56281 Patch 16e23c3f removed PCSRBAR allocation. But passing zero windows
56282 to pciauto_setup_device has the side effect of not getting
56283 COMMAND_MEMORY set.
56284
56285 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56286
56287 commit e9d0d527992566ebef9826962ff1745b2f082b92
56288 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56289 Date: Fri Oct 19 10:55:24 2007 +0200
56290
56291 delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
56292
56293 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56294
56295 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
56296 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56297 Date: Fri Oct 19 08:10:15 2007 +0200
56298
56299 fix warning: no return statement in function returning non-void
56300
56301 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56302
56303 commit e78220f6e514206757acfe247297fc9a328a881f
56304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56305 Date: Fri Oct 19 06:33:45 2007 +0200
56306
56307 xsengine: Fix no partition type specified, use DOS as default
56308
56309 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56310
56311 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
56312 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56313 Date: Fri Oct 19 00:24:59 2007 +0200
56314
56315 lubbock: Fix no partition type specified, use DOS as default
56316
56317 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56318
56319 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
56320 Author: Wolfgang Denk <wd@denx.de>
56321 Date: Tue Oct 23 16:50:03 2007 +0200
56322
56323 Coding style: keep lists sorted; update CHANGELOG
56324
56325 Signed-off-by: Wolfgang Denk <wd@denx.de>
56326
56327 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
56328 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56329 Date: Fri Oct 19 00:09:05 2007 +0200
56330
56331 Fix missing drivers makefile entries ds1722.c mw_eeprom.c
56332
56333 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56334
56335 commit 96455bfebc9887837095c9051d216f53c61b5f10
56336 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56337 Date: Fri Oct 19 00:07:39 2007 +0200
56338
56339 Fix warning differ in signedness in board/innokom/innokom.c
56340
56341 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56342
56343 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
56344 Author: Marcel Ziswiler <marcel@ziswiler.com>
56345 Date: Fri Oct 19 00:25:33 2007 +0200
56346
56347 fix pxa255_idp board
56348
56349 The pxa255_idp being an old unmaintained board showed several issues:
56350 1. CONFIG_INIT_CRITICAL was still defined.
56351 2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
56352 3. Symbol flash_addr was undeclared.
56353 4. The boards lowlevel_init function was still called memsetup.
56354 5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
56355 6. Using -march=armv5 instead of -march=armv5te resulted in lots of
56356 'target CPU does not support interworking' warnings on recent compilers.
56357 7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
56358 indexes rather than the register definitions from the pxa-regs header
56359 file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
56360 avoid any ambiguities.
56361 8. There were several redefinition warnings concerning ICMR, OSMR3,
56362 OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
56363 9. The board configuration file was rather outdated.
56364 10. The part header file defined the vendor, product and revision arrays
56365 as unsigned chars instead of just chars in the block_dev_desc_t
56366 structure.
56367
56368 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
56369
56370 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
56371 Author: Rune Torgersen <runet@innovsys.com>
56372 Date: Wed Oct 17 11:56:31 2007 -0500
56373
56374 Make MPC8266ADS command selection more robust
56375
56376 Fix MPC8266 command line definition so it won't break when new commands
56377 are added to u-boot.
56378 Signed-off-by Rune Torgersen <runet@innovsys.com>
56379
56380 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
56381 Author: Bartlomiej Sieka <tur@semihalf.com>
56382 Date: Tue Oct 23 13:14:10 2007 +0200
56383
56384 Motion-PRO: Update configuration to accomodate next generation board.
56385
56386 New board has faster oscillator and a different Flash chip. This affects:
56387 - CFG_MPC5XXX_CLKIN
56388 - SDRAM timings
56389 - Flash CS configuration (timings)
56390 - Flash sector size, and thus MTD partition layout
56391 - malloc() arena size (due to bigger Flash sectors)
56392 - smaller memory test range (due to bigger malloc() arena)
56393
56394 This patch also enables more extensive memory testing via "mtest".
56395
56396 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
56397
56398 commit eff501904df2bf1724a750062628ba2c51dbb1f8
56399 Author: Bartlomiej Sieka <tur@semihalf.com>
56400 Date: Tue Oct 23 11:36:07 2007 +0200
56401
56402 Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
56403
56404 Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
56405 register must be written a value of 0x00000004 as the first step of the
56406 SDRAM contorller configuration.
56407
56408 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
56409
56410 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
56411 Author: Peter Pearse <peter.pearse@arm.com>
56412 Date: Tue Oct 23 10:22:16 2007 +0100
56413
56414 Move PL01* serial drivers to drivers/serial and adjust Makefiles.
56415
56416 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
56417 Author: Stefan Roese <sr@denx.de>
56418 Date: Tue Oct 23 10:17:42 2007 +0200
56419
56420 ppc4xx: lwmon5: Some further GPIO config changes
56421
56422 Signed-off-by: Stefan Roese <sr@denx.de>
56423
56424 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
56425 Author: Vlad Lungu <vlad@comsys.ro>
56426 Date: Sun Oct 21 22:10:10 2007 +0900
56427
56428 [MIPS] Fix UNCACHED_SDRAM
56429
56430 PHYSADDR is for physical address, KSEG1ADDR is for uncached.
56431
56432 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
56433 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56434
56435 commit 00101dd7a32d12f698150123e47e4b3420279f86
56436 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56437 Date: Sun Oct 21 21:30:42 2007 +0900
56438
56439 [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
56440
56441 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56442
56443 commit eb700636db017d310edaeb559b13d82588560674
56444 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56445 Date: Sun Oct 21 10:55:37 2007 +0900
56446
56447 [MIPS] u-boot.lds: Define _gp in a standard manner
56448
56449 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56450
56451 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
56452 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56453 Date: Sun Oct 21 10:55:36 2007 +0900
56454
56455 [MIPS] Fix $gp usage
56456
56457 Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
56458 As a general principle, we should use _gp for $gp.
56459
56460 Thanks to linker script's help we fortunately have _gp which equals to
56461 _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
56462 be able to access to GOT entires, global variables and procedure entry
56463 points. The right thing to do is to use _gp.
56464
56465 This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
56466 which holds the offset from _gp. When updating GOT entries, we use this
56467 offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
56468
56469 This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
56470 I made some change to leave over num_got_entries.
56471
56472 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56473 Cc: Vlad Lungu <vlad@comsys.ro>
56474
56475 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
56476 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56477 Date: Sun Oct 21 10:55:36 2007 +0900
56478
56479 [MIPS] u-boot.lds: Fix __got_start and __got_end
56480
56481 Ensure that __got_start points to top of the `.got', and __got_end points
56482 to bottom as well, so that we never fail to count num_got_entries.
56483
56484 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56485
56486 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
56487 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56488 Date: Sun Oct 21 10:55:36 2007 +0900
56489
56490 [MIPS] u-boot.lds: Remove duplicated .sdata section
56491
56492 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56493
56494 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
56495 Author: Wolfgang Denk <wd@denx.de>
56496 Date: Sun Oct 21 01:01:17 2007 +0200
56497
56498 Minor coding style cleanup; update CHANGELOG
56499
56500 Signed-off-by: Wolfgang Denk <wd@denx.de>
56501
56502 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
56503 Author: Vlad Lungu <vlad@comsys.ro>
56504 Date: Thu Oct 4 20:47:10 2007 +0300
56505
56506 Fix NE2000 driver:
56507
56508 Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
56509 to do anything in eth_stop() if eth_init() was not called.
56510 Simplified RX path in order to avoid timeouts on really really
56511 fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
56512 clever enough to cope with 1 packet per eth_rx().
56513
56514 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
56515
56516 commit df90968b48fb34fa9072fab150db2ac89678f537
56517 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
56518 Date: Mon Sep 24 13:32:13 2007 -0400
56519
56520 Setting MSR[DE] in do_reset
56521
56522 Hello,
56523 This patch ensures the soft reset of the board for the 85xx boards
56524 by setting the MSR[DE] in the do_reset function.
56525
56526 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
56527
56528 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
56529 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
56530 Date: Mon Sep 24 13:36:01 2007 -0400
56531
56532 MSR overwrite fix
56533
56534 Hello,
56535 This patch fixes the MSR overwrite in the start.S when moving out of
56536 the last 4K page.
56537
56538 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
56539
56540 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
56541 Author: Dan Wilson <dwilson@fulcrummicro.com>
56542 Date: Fri Oct 19 11:33:48 2007 -0500
56543
56544 tsec driver should clear RHALT on startup
56545
56546 This was causing problems for some people.
56547
56548 Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
56549 Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
56550 Signed-off-by: Andy Fleming <afleming@freescale.com>
56551
56552 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
56553 Author: Kumar Gala <galak@kernel.crashing.org>
56554 Date: Thu Oct 11 00:29:18 2007 -0500
56555
56556 Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
56557
56558 On the MPC85xx CDS we have two issues:
56559
56560 1. The device tree fixup code did not check to see if the property we are
56561 trying to update is actually found. Its possible that it would update
56562 random memory starting at 0.
56563
56564 2. Newer Linux kernel's have moved the location of the PCI nodes to be
56565 sibilings of the soc node and not children. The explicit PATH to the PCI
56566 node would not be found for these device trees. Add the ability to handle
56567 both paths. In the future we shouldn't handle such fixups by explicit path.
56568
56569 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56570
56571 commit a3063eec775719b7e91023bbec3f64b3118791df
56572 Author: Kumar Gala <galak@kernel.crashing.org>
56573 Date: Thu Oct 11 00:18:48 2007 -0500
56574
56575 Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
56576
56577 On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
56578 console. Make it so we match that config what we tell Linux as the early
56579 STDOUT console.
56580
56581 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56582
56583 commit e1ce3cb617bb06f91f82f98915391175addf3e82
56584 Author: Kumar Gala <galak@kernel.crashing.org>
56585 Date: Tue Oct 2 11:12:27 2007 -0500
56586
56587 Remove magic numbers from cache related operations for mpc85xx
56588
56589 The mpc85xx start code uses some magic numbers that we actually
56590 have #defines for in <config.h> so use those instead.
56591
56592 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56593
56594 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
56595 Author: Detlev Zundel <dzu@denx.de>
56596 Date: Fri Oct 19 16:47:26 2007 +0200
56597
56598 Fix two typos.
56599
56600 Signed-off-by: Detlev Zundel <dzu@denx.de>
56601
56602 commit 281df457c1aa50d2752165d0c5c3282d4027b974
56603 Author: Tony Li <tony.li@freescale.com>
56604 Date: Thu Oct 18 17:47:19 2007 +0800
56605
56606 mpc83xx: Add configure entry for MPC83xx ATM support
56607
56608 Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
56609 Makfile and MAKEALL
56610
56611 Signed-off-by: Tony Li <tony.li@freescale.com>
56612 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56613
56614 commit d2646554f529a9577515eceb0ec5eceee18244ba
56615 Author: Tony Li <tony.li@freescale.com>
56616 Date: Thu Oct 18 17:44:38 2007 +0800
56617
56618 mpc83xx: pq-mds-pib.c typo error
56619
56620 Correct to val8 from val.
56621
56622 Signed-off-by: Tony Li <tony.li@freescale.com>
56623 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56624
56625 commit 3e11ae80fec1ee12194940955431186abf6009c2
56626 Author: Stefan Roese <sr@denx.de>
56627 Date: Wed Oct 17 15:40:19 2007 +0200
56628
56629 ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
56630
56631 Signed-off-by: Stefan Roese <sr@denx.de>
56632
56633 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
56634 Author: Jon Loeliger <jdl@freescale.com>
56635 Date: Tue Oct 16 15:27:43 2007 -0500
56636
56637 Initial mpc8610hpcd Makefile files.
56638
56639 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56640 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
56641 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
56642 Signed-off-by: Jon Loeliger <jdl@freescale.com>
56643
56644 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
56645 Author: Jon Loeliger <jdl@freescale.com>
56646 Date: Tue Oct 16 15:26:51 2007 -0500
56647
56648 Initial mpc8610hpcd cpu/, README and include/ files.
56649
56650 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56651 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
56652 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
56653 Signed-off-by: Jon Loeliger <jdl@freescale.com>
56654
56655 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
56656 Author: Jon Loeliger <jdl@freescale.com>
56657 Date: Tue Oct 16 13:54:01 2007 -0500
56658
56659 Initial mpc8610hpcd board files.
56660
56661 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56662 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
56663 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
56664 Signed-off-by: Jon Loeliger <jdl@freescale.com>
56665
56666 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
56667 Author: runet@innovsys.com <runet@innovsys.com>
56668 Date: Tue Oct 16 14:50:40 2007 -0500
56669
56670 Make MPC8266ADS board compile again.
56671
56672 Signed-off-by: Runet Torgersen <runet@innovsys.com>
56673
56674 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
56675 Author: Jon Loeliger <jdl@freescale.com>
56676 Date: Mon Aug 27 12:41:03 2007 -0500
56677
56678 86xx: Allow for fewer DDR slots per memory controller.
56679
56680 As a direct correlation exists between DDR DIMM slots
56681 and SPD EEPROM addresses used to configure them, use
56682 the individually defined SPD_EEPROM_ADDRESS* values to
56683 determine if a DDR DIMM slot should have its SPD
56684 configuration read or not.
56685
56686 Effectively, this now allows for 1 or 2 DIMM slots
56687 per memory controller.
56688
56689 Signed-off-by: Jon Loeliger <jdl@freescale.com>
56690
56691 commit 4d4a945e189a2f384c66432316da2788a0ac1607
56692 Author: Rodolfo Giometti <giometti@enneenne.com>
56693 Date: Mon Oct 15 11:59:17 2007 +0200
56694
56695 PXA USB OHCI: "usb stop" implementation.
56696
56697 Some USB keys need to be switched off before loading the kernel
56698 otherwise they can remain in an undefined status which prevents them
56699 to be correctly recognized by the kernel.
56700
56701 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
56702
56703 commit e2e93442e558cf1500e92861f99713b2f045ea22
56704 Author: Stefan Roese <sr@denx.de>
56705 Date: Mon Oct 15 11:39:00 2007 +0200
56706
56707 ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
56708
56709 The I2C bootstrap values that can be setup via the "bootstrap" command,
56710 were setup incorrect regarding the generation of the internal sync PCI
56711 clock. The values for PLB clock == 133MHz were slighly incorrect and the
56712 values for PLB clock == 166MHz were totally incorrect. This could
56713 lead to a hangup upon booting while PCI configuration scan.
56714
56715 This patch fixes this issue and configures valid PCI divisor values
56716 for the sync PCI clock, with respect to the provided external async
56717 PCI frequency.
56718
56719 Here the values of the formula in the chapter 14.2 "PCI clocking"
56720 from the 440EPx users manual:
56721
56722 AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
56723
56724 33MHz async PCI frequency:
56725 PLB = 133:
56726 => 32 <= 44.3 <= 65 (div = 3)
56727
56728 PLB = 166:
56729 => 32 <= 55.3 <= 65 (div = 3)
56730
56731 66MHz async PCI frequency:
56732 PLB = 133:
56733 => 65 <= 66.5 <= 132 (div = 2)
56734
56735 PLB = 166:
56736 => 65 <= 83 <= 132 (div = 2)
56737
56738 Signed-off-by: Stefan Roese <sr@denx.de>
56739
56740 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
56741 Author: Stefan Roese <sr@denx.de>
56742 Date: Mon Oct 15 11:29:33 2007 +0200
56743
56744 ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
56745
56746 The BCSR status bit for the 66MHz PCI operation was correctly
56747 addressed (MSB/LSB problem). Now the correct currently setup
56748 PCI frequency is displayed upon bootup.
56749
56750 This patch also fixes this problem on Rainier & Yellowstone, since these
56751 boards use the same souce code as Sequoia & Yosemite do.
56752
56753 Signed-off-by: Stefan Roese <sr@denx.de>
56754
56755 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
56756 Author: Martin Krause <martin.krause@tqs.de>
56757 Date: Wed Sep 26 17:55:56 2007 +0200
56758
56759 TQM860M: adjust for doubled flash sector size.
56760
56761 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
56762 doubled sector size.
56763
56764 Signed-off-by: Martin Krause <martin.krause@tqs.de>
56765
56766 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
56767 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
56768 Date: Wed Sep 26 17:55:54 2007 +0200
56769
56770 TQM8xx: Fix CAN timing.
56771
56772 Signed-off-by: Martin Krause <martin.krause@tqs.de>
56773
56774 commit d43e489baf02afae49077791fb22332d240d8656
56775 Author: Martin Krause <martin.krause@tqs.de>
56776 Date: Thu Sep 27 14:54:36 2007 +0200
56777
56778 TQM866M: fix SDRAM refresh
56779
56780 At 133 MHz the current SDRAM refresh rate is too fast
56781 (measured 4 * 1.17 us).
56782 CFG_MAMR_PTA changes from 39 to 97. This result
56783 in a refresh rate of 4 * 7.8 us at the default clock
56784 50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
56785 This is a compromise until a new method is found to
56786 adjust the refresh rate.
56787
56788 Signed-off-by: Martin Krause <martin.krause@tqs.de>
56789
56790 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
56791 Author: Martin Krause <martin.krause@tqs.de>
56792 Date: Wed Sep 26 17:55:55 2007 +0200
56793
56794 TQM866M: adjust for doubled flash sector size.
56795
56796 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
56797 doubled sector size.
56798
56799 Signed-off-by: Martin Krause <martin.krause@tqs.de>
56800
56801 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
56802 Author: Michal Simek <monstr@monstr.eu>
56803 Date: Sun Oct 14 16:12:29 2007 +0200
56804
56805 [FIX] XUPV2P change command handling
56806 and remove code violation
56807
56808 commit 636400198228d96983c06657b17f760f5989958e
56809 Author: Wolfgang Denk <wd@denx.de>
56810 Date: Sun Oct 14 00:13:19 2007 +0200
56811
56812 Prepare for 1.3.0-rc3 release
56813
56814 Signed-off-by: Wolfgang Denk <wd@denx.de>
56815
56816 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
56817 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56818 Date: Sat Sep 29 13:41:37 2007 +0200
56819
56820 Fix warning differ in signedness in cpu/pxa/mmc.c
56821
56822 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56823
56824 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
56825 Author: Wolfgang Denk <wd@denx.de>
56826 Date: Sat Oct 13 23:51:14 2007 +0200
56827
56828 Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
56829
56830 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56831 Signed-off-by: Wolfgang Denk <wd@denx.de>
56832
56833 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
56834 Author: Wolfgang Denk <wd@denx.de>
56835 Date: Sat Oct 13 21:15:39 2007 +0200
56836
56837 Coding Style cleanup.
56838
56839 Signed-off-by: Wolfgang Denk <wd@denx.de>
56840
56841 commit e1893815b0999410d7a327589611c7b38e95299e
56842 Author: Wolfgang Denk <wd@denx.de>
56843 Date: Fri Oct 12 15:49:39 2007 +0200
56844
56845 GP3 SSA: enable RTC
56846
56847 Signed-off-by: Wolfgang Denk <wd@denx.de>
56848
56849 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
56850 Author: Grzegorz Bernacki <gjb@semihalf.com>
56851 Date: Tue Oct 9 13:58:24 2007 +0200
56852
56853 [ads5121] EEPROM support added.
56854
56855 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
56856
56857 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
56858 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56859 Date: Sat Oct 6 18:55:35 2007 +0200
56860
56861 AVR32: Initialize bi_flash* in board_init_r
56862
56863 The ATSTK1000-specific flash driver intializes bi_flashstart,
56864 bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
56865 driver, don't.
56866
56867 Initialize these in board_init_r instead so that things will still be
56868 set up correctly when we switch to the CFI driver.
56869
56870 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56871
56872 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
56873 Author: Marian Balakowicz <m8@semihalf.com>
56874 Date: Fri Oct 5 10:40:54 2007 +0200
56875
56876 tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
56877
56878 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56879
56880 commit 92869195ef8210758d2176230c0a36897afd50ed
56881 Author: Bartlomiej Sieka <tur@semihalf.com>
56882 Date: Fri Oct 5 09:46:06 2007 +0200
56883
56884 CM5200: Fix missing null-termination in hostname manipulation code
56885
56886 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
56887
56888 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
56889 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56890 Date: Tue Oct 2 19:09:01 2007 +0200
56891
56892 Fix memtest breakage
56893
56894 CFG_MEMTEST_START uses weird magic involving gd, which fails to
56895 compile. Use hardcoded values instead (we actually know how much RAM
56896 we have on board.)
56897
56898 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56899
56900 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
56901 Author: Stefan Roese <sr@denx.de>
56902 Date: Tue Oct 2 11:44:46 2007 +0200
56903
56904 ppc4xx: Coding style cleanup
56905
56906 Signed-off-by: Stefan Roese <sr@denx.de>
56907
56908 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
56909 Author: Stefan Roese <sr@denx.de>
56910 Date: Tue Oct 2 11:44:19 2007 +0200
56911
56912 ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
56913
56914 Signed-off-by: Stefan Roese <sr@denx.de>
56915
56916 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
56917 Author: Grzegorz Bernacki <gjb@semihalf.com>
56918 Date: Mon Oct 1 09:51:50 2007 +0200
56919
56920 Program EPLD to force full duplex mode for PHY.
56921
56922 EPLD forces modes of PHY operation. By default full duplex is turned off.
56923 This fix turns it on.
56924
56925 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
56926
56927 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
56928 Author: Timo Ketola <timo.ketola@exertus.fi>
56929 Date: Mon Sep 24 14:50:32 2007 +0300
56930
56931 Bugfix: Use only one PTD for one endpoint
56932
56933 Original isp116x-hcd code prepared multiple PTDs for longer than 16
56934 byte transfers for one endpoint. That is unnecessary because the
56935 ISP116x is able to split long data from one PTD into multiple
56936 transactions based on the buffer size of the endpoint. It also caused
56937 serious problems if the endpoint NAKed some of the transactions. In
56938 that case ISP116x wouldn't notice that the other PTDs were for the same
56939 endpoint and would try the other PTDs possibly out of order. That would
56940 break the whole transfer.
56941
56942 This patch makes isp116x_submit_job to use one PTD for one transfer.
56943
56944 Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
56945 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
56946
56947 commit 86ec86c04326c3913178a7679aa910de071da75d
56948 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56949 Date: Thu Sep 27 23:27:47 2007 +0200
56950
56951 Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
56952
56953 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56954
56955 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
56956 Author: Stefan Roese <sr@denx.de>
56957 Date: Tue Sep 11 14:12:55 2007 +0200
56958
56959 ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
56960
56961 Signed-off-by: Stefan Roese <sr@denx.de>
56962
56963 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
56964 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56965 Date: Wed Sep 26 16:35:54 2007 -0500
56966
56967 85xx io out functions need sync after write.
56968
56969 This fixes the mc146818 rtc_read/write functions for 85xx.
56970
56971 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56972
56973 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
56974 Author: Grant Likely <grant.likely@secretlab.ca>
56975 Date: Tue Sep 25 15:48:05 2007 -0600
56976
56977 Fpga: fix incorrect test of CFG_FPGA_XILINX macro
56978
56979 CFG_FPGA_XILINX is a bit value used to test against the value in
56980 CONFIG_FPGA. Testing for a value will always return TRUE. I don't
56981 think that is the intention in this code.
56982
56983 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56984
56985 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
56986 Author: Michal Simek <monstr@monstr.eu>
56987 Date: Mon Sep 24 00:41:30 2007 +0200
56988
56989 [FIX] change command handling and removing code violation
56990
56991 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
56992 Author: Michal Simek <monstr@monstr.eu>
56993 Date: Mon Sep 24 00:36:06 2007 +0200
56994
56995 [FIX] change sets of commands
56996 because changing of command handling brings
56997 compilation problems
56998
56999 commit cb1bc63b75a232571eb69aa2c8aa919321655845
57000 Author: Michal Simek <monstr@monstr.eu>
57001 Date: Mon Sep 24 00:30:42 2007 +0200
57002
57003 [FIX] Email reparation & Copyright
57004 Both codes are written by myself without any
57005 support from CTU
57006
57007 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
57008 Author: Michal Simek <monstr@monstr.eu>
57009 Date: Mon Sep 24 00:25:11 2007 +0200
57010
57011 [PATCH] Change macro name for UartLite
57012 because PowerPC 405 can use UartLite as console
57013
57014 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
57015 Author: Michal Simek <monstr@monstr.eu>
57016 Date: Mon Sep 24 00:21:19 2007 +0200
57017
57018 [PATCH] Add support for design without interrupt controller
57019 Polling timer
57020
57021 commit 0731933ec8ec45d02ba89b52df673d526873cdde
57022 Author: Michal Simek <monstr@monstr.eu>
57023 Date: Mon Sep 24 00:19:48 2007 +0200
57024
57025 [FIX] resolve problem with cpu without barrel shifter
57026
57027 commit db14d77995ce515b728b178b63f82babe60e3d56
57028 Author: Michal Simek <monstr@monstr.eu>
57029 Date: Mon Sep 24 00:18:46 2007 +0200
57030
57031 [FIX] repair email address
57032
57033 commit 481d4328618804add1f818a6c96296121cd0528e
57034 Author: Michal Simek <monstr@monstr.eu>
57035 Date: Mon Sep 24 00:17:42 2007 +0200
57036
57037 [FIX] repair MFSL commands
57038
57039 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
57040 Author: Michal Simek <monstr@monstr.eu>
57041 Date: Mon Sep 24 00:08:37 2007 +0200
57042
57043 synchronizition with mainline
57044
57045 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
57046 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57047 Date: Sun Sep 23 02:42:38 2007 +0900
57048
57049 sh: Add support command of ide with sh
57050
57051 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57052
57053 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
57054 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57055 Date: Sun Sep 23 02:38:42 2007 +0900
57056
57057 sh: Update Makefile
57058
57059 Add support MS7722SE01 to Makefile.
57060
57061 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57062
57063 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
57064 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57065 Date: Sun Sep 23 02:31:13 2007 +0900
57066
57067 sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
57068
57069 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57070
57071 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
57072 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57073 Date: Sun Sep 23 02:19:24 2007 +0900
57074
57075 sh: Update MS7750SE01 platform
57076
57077 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57078
57079 commit 516ad760db3553766267ada01b7d5d727faa4bbd
57080 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57081 Date: Sun Sep 23 02:17:08 2007 +0900
57082
57083 sh: Remove comment out code from include/asm-sh/cpu_sh4.h
57084
57085 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57086
57087 commit b02bad128669e567fce87d8df823b06a0144b8db
57088 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57089 Date: Sun Sep 23 02:12:30 2007 +0900
57090
57091 sh: Update core code of SuperH.
57092
57093 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57094
57095 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
57096 Author: Wolfgang Denk <wd@denx.de>
57097 Date: Thu Sep 20 00:04:14 2007 +0200
57098
57099 v1.3.0-rc2
57100
57101 Signed-off-by: Wolfgang Denk <wd@denx.de>
57102
57103 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
57104 Author: Wolfgang Denk <wd@denx.de>
57105 Date: Tue Sep 18 21:36:35 2007 +0200
57106
57107 Avoid compiler warning.
57108
57109 Signed-off-by: Wolfgang Denk <wd@denx.de>
57110
57111 commit 8a783a65851bc7421ab69f442261215e21b8891a
57112 Author: Grant Likely <grant.likely@secretlab.ca>
57113 Date: Tue Sep 18 12:24:57 2007 -0600
57114
57115 Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
57116
57117 /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
57118 nulls in a string differently. For example, the following statement:
57119 echo "this is a string\0" > afile
57120 Will produce the following with /bin/bash:
57121 "this is a string\0"
57122 But with /bin/dash, will produce:
57123 "this is a string
57124
57125 Bug fixed by moving the embedded null out of the makefile and into the
57126 config header. Also renamed the macro to avoid usage colision with the same
57127 macro used by other board ports.
57128
57129 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57130
57131 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
57132 Author: Wolfgang Denk <wd@denx.de>
57133 Date: Tue Sep 18 17:40:27 2007 +0200
57134
57135 MCC200: fix build warning
57136
57137 The MCC200 board config file includes version.h for some customer-
57138 specific setting, which causes warnings with "make depend"; build
57139 version.h before depend.
57140
57141 Signed-off-by: Wolfgang Denk <wd@denx.de>
57142
57143 commit bd86220f58b99d6896198c385fda132f0c980915
57144 Author: Peter Pearse <peter.pearse@arm.com>
57145 Date: Tue Sep 18 13:07:54 2007 +0100
57146
57147 Move coloured led API to status_led.h
57148 Improve indentation in drivers/at45.c
57149
57150 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
57151 Author: Eirik Aanonsen <eaa@wprmedical.com>
57152 Date: Tue Sep 18 08:47:20 2007 +0200
57153
57154 Update atstk1002 bootargs.
57155
57156 Updates to atstk1002 U-Boot header file:
57157 - Changed bootargs:
57158 * Set the bootargs for at1002 to point to the SD-card partition instead
57159 * ... of the boot flash.
57160 * Removing the rootfstype since that argument are not needed.
57161
57162 Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
57163 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
57164
57165 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
57166 Author: Eirik Aanonsen <eaa@wprmedical.com>
57167 Date: Wed Sep 12 13:32:37 2007 +0200
57168
57169 Add some comments to clocks in atstk1002.h
57170
57171 This patch applies some clarifying comments to how the different
57172 clocks are setup according to atstk1002.h Some of the previous
57173 comments where stating wrongful information.
57174
57175 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
57176
57177 commit 97213f32416ead885deafea86774e912ffd60ad0
57178 Author: David Saada <David.Saada@ecitele.com>
57179 Date: Mon Sep 17 17:04:47 2007 +0200
57180
57181 Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
57182
57183 Signed-off-by: David Saada <david.saada@ecitele.com>
57184
57185 commit 30363e98fa470fbecea5e8bc0f1443352754f303
57186 Author: Stefan Roese <sr@denx.de>
57187 Date: Mon Sep 17 08:20:47 2007 +0200
57188
57189 Small whitespace cleanup of OneNAND patch
57190
57191 Signed-off-by: Stefan Roese <sr@denx.de>
57192
57193 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
57194 Author: Kyungmin Park <kmpark@infradead.org>
57195 Date: Mon Sep 10 17:15:14 2007 +0900
57196
57197 OneNAND support (take #2)
57198
57199 [PATCH 3/3] OneNAND support (take #2)
57200
57201 OneNAND support at U-Boot
57202
57203 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
57204
57205 commit 17aa2800457df0c06b41516f46f126712c196219
57206 Author: Kyungmin Park <kmpark@infradead.org>
57207 Date: Mon Sep 10 17:14:34 2007 +0900
57208
57209 OneNAND support (take #2)
57210
57211 [PATCH 2/3] OneNAND support (take #2)
57212
57213 OneNAND support at U-Boot
57214
57215 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
57216
57217 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
57218 Author: Kyungmin Park <kmpark@infradead.org>
57219 Date: Mon Sep 10 17:13:49 2007 +0900
57220
57221 OneNAND support (take #2)
57222
57223 [PATCH 1/3] OneNAND support (take #2)
57224
57225 OneNAND support at U-Boot
57226
57227 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
57228
57229 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
57230 Author: Michal Simek <monstr@monstr.eu>
57231 Date: Sun Sep 16 20:51:57 2007 +0200
57232
57233 [FIX] remove files form repository
57234
57235 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
57236 Author: Wolfgang Denk <wd@denx.de>
57237 Date: Sun Sep 16 17:10:04 2007 +0200
57238
57239 TQM8xx[LM]: Fix broken environment alignment.
57240
57241 With recent toolchains, the environment sectors were no longer aligned to
57242 sector boundaries. The reason was a combination of two bugs:
57243
57244 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
57245 for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
57246 this gets defined, is not included here (and cannot be included
57247 without causing lots of problems).
57248
57249 Added a new #define CFG_USE_PPCENV for all boards which really
57250 want to put the environment is a ".ppcenv" section.
57251
57252 2) The linker scripts just include environment.o, silently assuming
57253 that the objects in that file are really in the order in which
57254 they are coded in the C file, i. e. "environment" first, then
57255 "redundand_environment", and "env_size" last. However, current
57256 toolchains (GCC-4.x) reorder the objects, causing the environment
57257 data not to start on a flash sector boundary:
57258
57259 Instead of: we got:
57260
57261 40008000 T environment 40008000 T env_size
57262 4000c000 T redundand_environment 40008004 T redundand_environment
57263 40010000 T env_size 4000c004 T environment
57264
57265 Note: this patch fixes just the first part, and cures the alignment
57266 problem by making sure that "env_size" gets placed correctly. However,
57267 we still have a potential issue because primary and redundant
57268 environment sectors are actually swapped, i. e. we have now:
57269
57270 40008000 T redundand_environment
57271 4000c000 T environment
57272 40010000 T env_size
57273
57274 This shall be fixed in the next version.
57275
57276 Signed-off-by: Wolfgang Denk <wd@denx.de>
57277
57278 commit eb6da8050797c204c9d010548424186c7ce32fc1
57279 Author: Wolfgang Denk <wd@denx.de>
57280 Date: Sun Sep 16 02:39:35 2007 +0200
57281
57282 TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
57283
57284 Signed-off-by: Wolfgang Denk <wd@denx.de>
57285
57286 commit cd2d1602c54cc6957bdef3872272a4b264893960
57287 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
57288 Date: Mon Sep 10 14:54:56 2007 -0400
57289
57290 Typo fix in tsec.c
57291
57292 Fixup for the break statement in wrong place.
57293
57294 [Patch by urwithsughosh@gmail.com]
57295 Acked-by: Andy Fleming <afleming@freescale.com>
57296 Signed-off-by: Wolfgang Denk <wd@denx.de>
57297
57298 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
57299 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57300 Date: Tue Sep 11 17:04:00 2007 +0200
57301
57302 Fix do_div() usage in nand process output
57303
57304 Fix usage of do_div() in nand erase|read|write process output.
57305
57306 The last patch to nand_util.c introduced do_div() instead of libgcc's
57307 implementation. But do_div() returns the quotient in its first
57308 macro parameter and not as result.
57309
57310 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57311
57312 commit c750d2e6692a000a82f29de7bf24e3dc21239161
57313 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57314 Date: Wed Sep 12 12:36:53 2007 +0200
57315
57316 NAND: Add CFG_NAND_QUIET option
57317
57318 This config option sets the default for the progress information
57319 output behavior that can also be configured through the 'quiet'
57320 environment variable.
57321
57322 The legacy NAND code does not print the current progress info
57323 on the console. So this option is for backward compatibility for
57324 units that are in the field and where setting the quiet variable
57325 is not an option. With CFG_NAND_QUIET set to '1' the console
57326 progress info is turned off. This can still be overwritten
57327 through the environment variable.
57328
57329 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57330
57331 commit dcb88630290d2bcd803386dd4c2be73142994c4f
57332 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
57333 Date: Thu Sep 13 16:06:05 2007 -0700
57334
57335 ColdFire: fix build error becasue of bad type of mii_init()
57336
57337 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57338
57339 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
57340 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
57341 Date: Thu Sep 13 16:04:05 2007 -0700
57342
57343 ColdFire: Fix build error caused by pixis.c
57344
57345 Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
57346
57347 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57348
57349 commit e21659e30660a1377c42af135a6114efe39801d9
57350 Author: Sam Sparks <SSparks@twacs.com>
57351 Date: Fri Sep 14 11:14:42 2007 -0600
57352
57353 Update MPC8349ITX*_config to place config.tmp in right place.
57354
57355 MPC834ITX*_config does not store config.tmp at the correct locatation,
57356 causing MPC8349ITXGP to have the wrong TEXT_BASE.
57357
57358 Signed-off-by: Sam Sparks <SSparks@twacs.com>
57359 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57360
57361 commit 1218abf1b5817a39a82399b4b928b00750575bda
57362 Author: Wolfgang Denk <wd@denx.de>
57363 Date: Sat Sep 15 20:48:41 2007 +0200
57364
57365 Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
57366
57367 Signed-off-by: Wolfgang Denk <wd@denx.de>
57368
57369 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
57370 Author: Dirk Behme <dirk.behme@googlemail.com>
57371 Date: Sat Sep 15 11:55:42 2007 +0200
57372
57373 Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
57374
57375 As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
57376 function local.
57377
57378 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
57379
57380 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
57381
57382 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
57383 Author: Michal Simek <monstr@monstr.eu>
57384 Date: Sat Sep 15 00:03:35 2007 +0200
57385
57386 Synchronize with U-BOOT mainline
57387
57388 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
57389 Author: Sam Sparks <SSparks@twacs.com>
57390 Date: Fri Sep 14 11:14:42 2007 -0600
57391
57392 Update MPC8349ITX*_config to place config.tmp in right place.
57393
57394 MPC834ITX*_config does not store config.tmp at the correct locatation,
57395 causing MPC8349ITXGP to have the wrong TEXT_BASE.
57396
57397 Signed-off-by: Sam Sparks <SSparks@twacs.com>
57398 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57399 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57400
57401 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
57402 Author: Bartlomiej Sieka <tur@semihalf.com>
57403 Date: Thu Sep 13 18:21:48 2007 +0200
57404
57405 cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
57406
57407 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
57408
57409 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
57410 Author: Bartlomiej Sieka <tur@semihalf.com>
57411 Date: Thu Sep 13 16:33:59 2007 +0200
57412
57413 tqm5200: Restore customary env. variable boot commands for powerpc kernels
57414
57415 - update default definitions of kernel_addr and fdt_addr env. variables
57416 - make arch/powerpc booting the default scenario
57417 - update MTD partition layout to match the above
57418
57419 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
57420
57421 commit f34024d4a328e6edd906456da98d2c537155c4f7
57422 Author: Wolfgang Denk <wd@denx.de>
57423 Date: Wed Sep 12 00:48:57 2007 +0200
57424
57425 Fix memory corruption problem on STX GP3 SSA Board.
57426
57427 Signed-off-by: Wolfgang Denk <wd@denx.de>
57428
57429 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
57430 Author: Peter Pearse <peter.pearse@arm.com>
57431 Date: Tue Sep 11 15:35:01 2007 +0100
57432
57433 Final tidy
57434
57435 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
57436 Author: Grzegorz Bernacki <gjb@semihalf.com>
57437 Date: Tue Sep 11 15:42:11 2007 +0200
57438
57439 [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
57440 scan on second pci bus.
57441
57442 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
57443
57444 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
57445 Author: Grzegorz Bernacki <gjb@semihalf.com>
57446 Date: Tue Sep 11 12:57:52 2007 +0200
57447
57448 [ppc4xx] Individual handling of sdram.c for bamboo_nand build
57449
57450 Bamboo has a file sdram.c which needs special treatment when building in
57451 separate directory. It has to be linked to build directory otherwise it is
57452 not seen.
57453
57454 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
57455
57456 commit d45963854eff39d575124d859419bb4953ce2c87
57457 Author: Michal Simek <monstr@monstr.eu>
57458 Date: Tue Sep 11 00:37:04 2007 +0200
57459
57460 [FIX] Microblaze ML401 - repare FLASH handling
57461
57462 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
57463 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
57464 Date: Mon Sep 10 16:55:59 2007 +0100
57465
57466 Allocate CPU Architecture Code for STMicroelectronics' ST200.
57467
57468 Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
57469 ---------------------------------------------------
57470
57471 commit 754bac48156f8958d8f6a53a51eda88ab5758929
57472 Author: Wolfgang Denk <wd@denx.de>
57473 Date: Mon Sep 10 20:42:31 2007 +0200
57474
57475 Update version to match current state.
57476
57477 Signed-off-by: Wolfgang Denk <wd@denx.de>
57478
57479 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
57480 Author: Grzegorz Bernacki <gjb@semihalf.com>
57481 Date: Mon Sep 10 17:39:08 2007 +0200
57482
57483 [MPC512x] Streamline frame handling in the FEC driver
57484
57485 - convert frame size settings to be derived from a single base
57486 - set frame size to the recommended default value
57487
57488 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
57489
57490 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
57491 Author: Kyungmin Park <kmpark@infradead.org>
57492 Date: Mon Sep 10 11:34:00 2007 +0900
57493
57494 Remove compiler warning: target CPU does not support interworking
57495
57496 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
57497
57498 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
57499 Author: Wolfgang Denk <wd@denx.de>
57500 Date: Sun Sep 9 21:21:33 2007 +0200
57501
57502 Fix compile error in spc1920 config.
57503
57504 Signed-off-by: Markus Klotzbücher <mk@denx.de>
57505 Signed-off-by: Wolfgang Denk <wd@denx.de>
57506
57507 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
57508 Author: Grant Likely <grant.likely@secretlab.ca>
57509 Date: Fri Sep 7 09:25:07 2007 -0600
57510
57511 Bugfix: make bootm+libfdt compile on boards with no flash
57512
57513 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57514
57515 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
57516 Author: Grzegorz Bernacki <gjb@semihalf.com>
57517 Date: Fri Sep 7 18:35:37 2007 +0200
57518
57519 [PPC440SPe] PCIe environment settings for Katmai and Yucca
57520
57521 - 'pciconfighost' is set by default in order to be able to scan bridges
57522 behind the primary host/PCIe
57523
57524 - 'pciscandelay' env variable is recognized to allow for user-controlled
57525 delay before the PCIe bus enumeration; some peripheral devices require a
57526 significant delay before they can be scanned (e.g. LSI8408E); without the
57527 delay they are not detected
57528
57529 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
57530
57531 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
57532 Author: Grzegorz Bernacki <gjb@semihalf.com>
57533 Date: Fri Sep 7 18:20:23 2007 +0200
57534
57535 [PPC440SPe] Improve PCIe configuration space access
57536
57537 - correct configuration space mapping
57538 - correct bus numbering
57539 - better access to config space
57540
57541 Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
57542 first device on the first bus. We now allow to configure up to 16 buses;
57543 also, scanning for devices behind the PCIe-PCIe bridge is supported, so
57544 peripheral devices farther in hierarchy can be identified.
57545
57546 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
57547
57548 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
57549 Author: Grzegorz Bernacki <gjb@semihalf.com>
57550 Date: Fri Sep 7 17:46:18 2007 +0200
57551
57552 [PPC440SPe] Convert machine check exceptions handling
57553
57554 Convert using fixup mechanism to suppressing MCK for the duration of config
57555 read/write transaction: while fixups work fine with the case of a precise
57556 exception, we identified a major drawback with this approach when there's
57557 an imprecise case. In this scenario there is the following race condition:
57558 the fixup is (by design) set to catch the instruction following the one
57559 actually causing the exception; if an interrupt (e.g. decrementer) happens
57560 between those two instructions, the ISR code is executed before the fixup
57561 handler the machine check is no longer protected by the fixup handler as it
57562 appears as within the ISR code. In consequence the fixup approach is being
57563 phased out and replaced with explicit suppressing of MCK during a PCIe
57564 config read/write cycle.
57565
57566 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
57567
57568 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
57569 Author: Wolfgang Denk <wd@denx.de>
57570 Date: Fri Sep 7 17:43:36 2007 +0200
57571
57572 Fix typo in MAKEALL script.
57573
57574 Signed-off-by: Wolfgang Denk <wd@denx.de>
57575
57576 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
57577 Author: Grzegorz Bernacki <gjb@semihalf.com>
57578 Date: Fri Sep 7 17:09:21 2007 +0200
57579
57580 [MPC512x] Proper handling of larger frames in the FEC driver
57581
57582 When frame larger than local RX buffer is received, it is split and handled
57583 by two buffer descriptors. Prior to this patch the FEC driver discarded
57584 contents of a buffer descriptor without the 'LAST' bit set, so the first
57585 part of the frame was lost in case of larger frames. This fix allows to
57586 safely combine the two pieces into the whole frame.
57587
57588 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
57589
57590 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
57591 Author: Rafal Jaworowski <raj@semihalf.com>
57592 Date: Fri Sep 7 17:05:36 2007 +0200
57593
57594 [MPC512x] Correct fixup relocation
57595
57596 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
57597
57598 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
57599 Author: Wolfgang Denk <wd@denx.de>
57600 Date: Fri Sep 7 01:21:25 2007 +0200
57601
57602 Update CHANGELOG, minor coding style cleanup.
57603
57604 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
57605 Author: stefano babic <sbabic@denx.de>
57606 Date: Thu Aug 30 23:01:49 2007 +0200
57607
57608 PXA270: Added support for TrizepsIV board.
57609
57610 This patch add support for the Trizeps IV module (520Mhz).
57611
57612 Signed-off-by: Stefano Babic <sbabic@denx.de>
57613
57614 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
57615 Author: stefano babic <sbabic@denx.de>
57616 Date: Thu Aug 30 22:57:04 2007 +0200
57617
57618 PXA270: Add support for multiple serial ports.
57619
57620 This patch adds support for multiple serial ports to the PXA target.
57621 FFUART, BTUART and STUART are supported.
57622
57623 Signed-off-by: Stefano Babic <sbabic@denx.de>
57624
57625 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
57626 Author: stefano babic <sbabic@denx.de>
57627 Date: Thu Aug 30 22:48:47 2007 +0200
57628
57629 PXA270: fix compile issue (invalid lvalue)
57630
57631 Code is broken for PXA270 due to "invalid lvalue in assignment".
57632
57633 This patch fix it in pxa-regs.h
57634
57635 Signed-off-by: Stefano Babic <sbabic@denx.de>
57636
57637 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
57638 Author: Jason Jin <Jason.jin@freescale.com>
57639 Date: Thu Aug 30 18:19:05 2007 +0800
57640
57641 Add BUILD_DIR support for bios emulator.
57642
57643 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
57644
57645 commit b4d8a55145442f136982634862341a3e02002bda
57646 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57647 Date: Fri Aug 31 14:41:51 2007 +0900
57648
57649 [MIPS] Remove inline asm string functions
57650
57651 Stop using inline string functions on MIPS as other ARCHs do so,
57652 since the optimized inline asm versions are not small.
57653
57654 This change is triggered by a following MIPS build error:
57655 common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
57656 common/exports.c:32: undefined reference to `strcmp'
57657 make: *** [u-boot] Error 1
57658
57659 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57660
57661 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
57662 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57663 Date: Fri Aug 31 14:41:45 2007 +0900
57664
57665 [MIPS] Update asm string header
57666
57667 This patches contains several bugfixes and cleanups in the latest upstream:
57668
57669 - Don't include linux/config.h
57670 - Remove buggy inline version of memscan.
57671 - Merge with Linux 2.6.11-rc3.
57672 - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
57673 - Goodbye mips64. 31704 lines of code bite the dust.
57674 - Replace extern inline with static inline.
57675 - Fix return value of strncpy.
57676 - Remove a bunch more "$1" clobbers.
57677
57678 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57679
57680 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
57681 Author: Bartlomiej Sieka <tur@semihalf.com>
57682 Date: Tue Sep 4 17:31:22 2007 +0200
57683
57684 Fix do_bootm_linux() so that multi-file images with FDT blob boot.
57685
57686 Fix incorrect blob address calculation in do_bootm_linux() that prevents
57687 booting the kernel from a multi-file image (kernel + initrd + blob).
57688
57689 Also, make minor updates to the U-Boot's output and to the coding style.
57690
57691 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
57692
57693 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
57694 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
57695 Date: Fri Aug 31 14:29:04 2007 +0200
57696
57697 Add support for Sil680 IDE controller.
57698
57699 o add drivers/sil680.c to support the Sil680 IDE-controller.
57700 o drivers/Makefile: add sil680.o.
57701
57702 Signed-off-by: Gary Jennejohn <garyj@denx.de>
57703
57704 commit e79021223bc339df655e360645a52c457a74b067
57705 Author: Grant Likely <grant.likely@secretlab.ca>
57706 Date: Thu Sep 6 09:47:40 2007 -0600
57707
57708 bootm/fdt: Only process the fdt if an fdt address was provided
57709
57710 Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
57711 kernels using the board info structure (instead of passing a device tree)
57712 This change allows the old style booting to be used if the fdt argument
57713 was not passed to 'bootm'.
57714
57715 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57716 Acked-by: Kim Phillips <kim.phillips@freescale.com>
57717
57718 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
57719 Author: Grant Likely <grant.likely@secretlab.ca>
57720 Date: Thu Sep 6 09:46:23 2007 -0600
57721
57722 Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
57723
57724 Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
57725
57726 Tested on: lite5200b
57727
57728 Note: the fixup functions have not been moved to a common place. This
57729 patch is targeted for immediate merging as in solves a build issue, but
57730 the final name/location of the fixups is still subject to debate. I
57731 propose to merge this now, and move the fixups in the next merge window
57732 to be usable by all targets.
57733
57734 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57735
57736 commit 41bb76e941929f54a73206fb132f7a4c275543a3
57737 Author: Grant Likely <grant.likely@secretlab.ca>
57738 Date: Thu Sep 6 09:46:17 2007 -0600
57739
57740 libfdt: add convenience function fdt_find_and_setprop()
57741
57742 Given the path to a node, fdt_find_and_setprop() allows a property value
57743 to be set directly.
57744
57745 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57746
57747 commit 80767a6cead9990d9e77e62be947843c2c72f469
57748 Author: Peter Pearse <peter.pearse@arm.com>
57749 Date: Wed Sep 5 16:04:41 2007 +0100
57750
57751 Changed API name to coloured_led.h
57752 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
57753 Tidied other cpu/arm920t/start.S code
57754
57755 commit 56a9270521baaa00e12639a978302a67f61ef060
57756 Author: Kumar Gala <galak@kernel.crashing.org>
57757 Date: Thu Aug 30 16:18:18 2007 -0500
57758
57759 Fix ULI RTC support on MPC8544 DS
57760
57761 The RTC on the M1575 ULI chipset requires a dummy read before
57762 we are able to talk to the RTC. We accomplish this by adding a
57763 second memory region to the PHB the ULI is on and read from it.
57764
57765 The second region is added to maintain compatiabilty with Linux's
57766 view of the PCI memory map.
57767
57768 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57769
57770 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
57771 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57772 Date: Thu Aug 30 01:58:48 2007 -0500
57773
57774 ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
57775
57776 pcie is now differentiated from pci. Add 8641 bus-range updates.
57777
57778 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57779
57780 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
57781 Author: Peter Pearse <peter.pearse@arm.com>
57782 Date: Tue Sep 4 16:18:38 2007 +0100
57783
57784 Add coloured led interface for ARM boards.
57785 Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
57786
57787 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
57788 Author: Peter Pearse <peter.pearse@arm.com>
57789 Date: Tue Sep 4 14:49:28 2007 +0100
57790
57791 Move include/led.h to board/at91rm9200dk
57792
57793 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
57794 Author: Peter Pearse <peter.pearse@arm.com>
57795 Date: Tue Sep 4 14:25:51 2007 +0100
57796
57797 Ran Lindent on drivers/at45.c
57798
57799 commit 557ab89d294f08dd532f21d19861b40093200a33
57800 Author: Peter Pearse <peter.pearse@arm.com>
57801 Date: Tue Sep 4 14:23:50 2007 +0100
57802
57803 Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
57804
57805 commit 81b73dec16fd1227369a191e725e10044a9d56b8
57806 Author: Gary Jennejohn <garyj@denx.de>
57807 Date: Fri Aug 31 15:21:46 2007 +0200
57808
57809 ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
57810
57811 The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
57812 set to non-zero, because it doesn't support MRM (memory-read-
57813 multiple) correctly. We now added the possibility to configure
57814 this register in the board config file, so that the default value
57815 of 8 can be overridden.
57816
57817 Here the details of this patch:
57818
57819 o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
57820 board-specific settings. As an example the sequoia board requires 0.
57821 Idea from Stefan Roese <sr@denx.de>.
57822 o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
57823 PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
57824 o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
57825 CFG_PCI_CACHE_LINE_SIZE to 0.
57826
57827 Signed-off-by: Gary Jennejohn <garyj@denx.de>
57828 Signed-off-by: Stefan Roese <sr@denx.de>
57829
57830 commit 60174746c668b309378a91488dded898e9553eae
57831 Author: Wolfgang Denk <wd@denx.de>
57832 Date: Fri Aug 31 10:01:51 2007 +0200
57833
57834 Fix TFTP OACK code for short packets.
57835
57836 The old code had a loop limit overflow bug which caused a semi-
57837 infinite loop for small packets, because in "i<len-8", "i" was signed,
57838 but "len" was unsigned, and "len-8" became a huge number for small
57839 values of "len".
57840
57841 This is a workaround which replaces broken commit 8f1bc284.
57842
57843 Signed-off-by: Wolfgang Denk <wd@denx.de>
57844
57845 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
57846 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
57847 Date: Thu Aug 30 15:03:05 2007 +0200
57848
57849 Reduce BOOTDELAY variable to 1 second by default for STK1002
57850
57851 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
57852 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
57853
57854 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
57855 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
57856 Date: Thu Aug 30 15:03:04 2007 +0200
57857
57858 Remove double quotation marks around MAC address for STK1002
57859
57860 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
57861 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
57862
57863 commit ff13ac8c7bbebb238e339592de765c546dba1073
57864 Author: Wolfgang Denk <wd@denx.de>
57865 Date: Thu Aug 30 14:42:15 2007 +0200
57866
57867 Backout commit 8f1bc284 as it causes TFTP to fail.
57868
57869 Signed-off-by: Wolfgang Denk <wd@denx.de>
57870
57871 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
57872 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57873 Date: Thu Aug 30 02:26:17 2007 -0500
57874
57875 Revert "Fix MPC8544DS PCIe3 scsi."
57876
57877 This reverts commit 9468e680.
57878 Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
57879
57880 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57881
57882 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
57883 Author: Grant Likely <grant.likely@secretlab.ca>
57884 Date: Wed Aug 29 18:26:24 2007 -0600
57885
57886 tftp: don't implicity trust the format of recevied packets
57887
57888 The TFTP OACK code trusts that the incoming packet is formated as
57889 ASCII text and can be processed by string functions. It also has a
57890 loop limit overflow bug where if the packet length is less than 8, it
57891 ends up looping over *all* of memory to find the 'blksize' string.
57892
57893 This patch solves the problem by forcing the packet to be null
57894 terminated and using strstr() to search for the sub string.
57895
57896 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57897
57898 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
57899 Author: Stefan Roese <sr@denx.de>
57900 Date: Wed Aug 29 16:31:18 2007 +0200
57901
57902 ppc4xx: Change lwmon5 default environment to support Linux RTC
57903
57904 The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
57905 to supply the RTC I2C address as bootline parameter. This patch
57906 adds support for this rtc probing parameter to the bootargs:
57907
57908 "rtc-pcf8563.probe=0,0x51"
57909
57910 Signed-off-by: Stefan Roese <sr@denx.de>
57911
57912 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
57913 Author: Kim Phillips <kim.phillips@freescale.com>
57914 Date: Wed Aug 29 09:06:05 2007 -0500
57915
57916 sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
57917
57918 this had slipped through the cracks, since the sbc board was added
57919 after I wrote the original patch to remove all these symbols, and
57920 before it was merged.
57921
57922 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57923
57924 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
57925 Author: Wolfgang Denk <wd@denx.de>
57926 Date: Wed Aug 29 14:05:30 2007 +0200
57927
57928 Add mii_init() prototype
57929
57930 to get rid of a *lot* of compiler warnings.
57931
57932 Signed-off-by: Wolfgang Denk <wd@denx.de>
57933
57934 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
57935 Author: Wolfgang Denk <wd@denx.de>
57936 Date: Wed Aug 29 13:35:03 2007 +0200
57937
57938 Disable network support on cmi_mpc5xx board
57939
57940 ..because it caused compiler errors and there seems to be no
57941 board maintainer to take care of this.
57942
57943 Signed-off-by: Wolfgang Denk <wd@denx.de>
57944
57945 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
57946 Author: Kumar Gala <galak@kernel.crashing.org>
57947 Date: Mon Aug 20 09:44:00 2007 -0500
57948
57949 Fix MPC8544DS PCIe3 scsi.
57950
57951 <ed.swarthout@freescale.com>
57952
57953 The problem is pciauto_setup_device() getting called from fsl_pci_init.c
57954 is allocating memory space it doesn't need.
57955
57956 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
57957 Signed-off-by: Andy Fleming <afleming@freescale.com>
57958
57959 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
57960 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57961 Date: Tue Aug 21 09:38:59 2007 -0500
57962
57963 8548cds fixes
57964
57965 Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
57966 correct consoledev needed for linux boot.
57967 Standardize on fdt{file,addr} var to hold dtb file name.
57968
57969 Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
57970
57971 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57972
57973 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
57974 Author: Haiying Wang <Haiying.Wang@freescale.com>
57975 Date: Thu Aug 23 15:20:54 2007 -0400
57976
57977 Enable L2 cache for MPC8568MDS board
57978
57979 The L2 cache size is 512KB for 8568, print out the correct informaiton.
57980
57981 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
57982
57983 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
57984 Author: Jason Jin <Jason.jin@freescale.com>
57985 Date: Wed Aug 22 17:54:49 2007 +0800
57986
57987 Remove the bios emulator binary files from MAI board
57988
57989 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
57990
57991 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
57992 Author: Kim Phillips <kim.phillips@freescale.com>
57993 Date: Tue Aug 21 17:00:17 2007 -0500
57994
57995 support board vendor-common makefiles
57996
57997 if a board/$(VENDOR)/common/Makefile exists, build it.
57998
57999 also add the first such case, board/freescale/common/Makefile, to
58000 handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
58001 dictated by board configuration.
58002
58003 thusly get rid of alternate build dir errors such as:
58004
58005 FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
58006
58007 by putting the common/ mkdir command in its proper place (the common
58008 Makefile). Common bits from existing individual board Makefiles have
58009 been removed.
58010
58011 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58012
58013 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
58014 Author: stefano babic <sbabic@denx.de>
58015 Date: Tue Aug 21 15:52:33 2007 +0200
58016
58017 Fix: TFTP is not working on little endian systems
58018
58019 TFTP does not work anymore after multicast tftp
58020 patch was applied on little endian systems.
58021 This patch fix it.
58022
58023 Signed-off-by: Stefano Babic <sbabic@denx.de>
58024
58025 commit 5f470948570526e9186f053a3003da7719604e90
58026 Author: stefano babic <sbabic@denx.de>
58027 Date: Tue Aug 21 15:50:33 2007 +0200
58028
58029 Fix MAC address setting in DM9000 driver.
58030
58031 The logic to check if there is a correct MAC address in the DM9000
58032 EEPROM, added in the last patch, is wrong. Now the MAC address is
58033 always taken from the environment, even if a suitable MAC is present
58034 in the EEPROM.
58035
58036 Signed-off-by: Stefano Babic <sbabic@denx.de>
58037
58038 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
58039 Author: Martin Krause <martin.krause@tqs.de>
58040 Date: Tue Aug 21 12:40:34 2007 +0200
58041
58042 MPC5xxx: fix some compiler warnings in USB code
58043
58044 Fix the following warnings:
58045 - usb.c:xx: warning: function declaration isn't a prototype
58046 - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
58047 from pointer wihtout a cast
58048
58049 Signed-off-by: Martin Krause <martin.krase@tqs.de>
58050
58051 commit 16e23c3f5dab6937f5109365416808c7f15c122b
58052 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58053 Date: Mon Aug 20 23:55:33 2007 -0500
58054
58055 fsl_pci_init - Remove self PCSRBAR allocation
58056
58057 CPU physical address space was being wasted by allocating a
58058 PCSRBAR PCI inbound region to it's memory space.
58059
58060 As a rule, PCSRBAR should be left alone since it does not affect
58061 transactions from self and other masters may have changed it.
58062
58063 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
58064
58065 commit 0e700ce03a23bb1921149bc77008ace7103d5289
58066 Author: Martin Krause <martin.krause@tqs.de>
58067 Date: Mon Aug 20 13:56:47 2007 +0200
58068
58069 Fix compiler warning in include/s3c2410.h
58070
58071 This patch fixes the "type qualifiers ignored on fuction return tpye"
58072 warning for include/s3c2410.h
58073
58074 Signed-off-by: Martin Krause <martin.krause@tqs.de>
58075
58076 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
58077 Author: Dirk Behme <dirk.behme@googlemail.com>
58078 Date: Mon Aug 20 07:09:05 2007 +0200
58079
58080 Fix compilation error for omap2420h4_config.
58081
58082 omap2420h4 switched to cfi, so remove old (already disabled) flash.c
58083 and flash_probe() calls in env_flash.c.
58084
58085 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
58086
58087 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
58088 Author: Kim Phillips <kim.phillips@freescale.com>
58089 Date: Fri Aug 10 14:34:14 2007 -0500
58090
58091 fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
58092
58093 and make some minor corrections to the FDT part of the README.
58094
58095 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58096
58097 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
58098 Author: Wolfgang Denk <wd@denx.de>
58099 Date: Wed Aug 29 01:32:05 2007 +0200
58100
58101 Minor coding style cleanup.
58102
58103 Signed-off-by: Wolfgang Denk <wd@denx.de>
58104
58105 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
58106 Author: Heiko Schocher <hs@pollux.denx.de>
58107 Date: Tue Aug 28 17:40:33 2007 +0200
58108
58109 [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
58110
58111 Signed-off-by: Heiko Schocher <hs@denx.de>
58112
58113 commit f98984cb194bb34dbe1db9429d3b51133af30d07
58114 Author: Heiko Schocher <hs@pollux.denx.de>
58115 Date: Tue Aug 28 17:39:14 2007 +0200
58116
58117 IDE: - make ide_inb () and ide_outb () "weak", so boards can
58118 define there own I/O functions.
58119 (Needed for the pcs440ep board).
58120 - The default I/O Functions are again 8 Bit accesses.
58121 - Added CONFIG_CMD_IDE for the pcs440ep Board.
58122
58123 Signed-off-by: Heiko Schocher <hs@denx.de>
58124
58125 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
58126 Author: Semih Hazar <semih.hazar@indefia.com>
58127 Date: Mon Aug 20 19:00:01 2007 +0300
58128
58129 AVR32: Change prototype of memset
58130
58131 Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
58132 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
58133
58134 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
58135 Author: Yuri Tikhonov <yur@emcraft.com>
58136 Date: Sat Aug 25 05:07:16 2007 +0200
58137
58138 POST: limit memory test area to not touch global data anymore
58139
58140 As experienced on lwmon5, on some boards the POST memory test can
58141 corrupt the global data buffer (bd). This patch fixes this issue
58142 by checking and limiting this area.
58143
58144 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58145 Signed-off-by: Stefan Roese <sr@denx.de>
58146
58147 commit 75e1a84d483e36be10e206e539b028c4889e1158
58148 Author: Stefan Roese <sr@denx.de>
58149 Date: Fri Aug 24 15:41:42 2007 +0200
58150
58151 ppc4xx: Add RTC POST test to lwmon5 board configuration
58152
58153 Since this RTC POST test is taking quite a while to complete
58154 it's only initiated upon special keypress same as the complete
58155 memory POST.
58156
58157 Signed-off-by: Stefan Roese <sr@denx.de>
58158
58159 commit d7bfa620037a6d2210159387571bdf93aa32c162
58160 Author: Stefan Roese <sr@denx.de>
58161 Date: Fri Aug 24 15:19:10 2007 +0200
58162
58163 ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
58164
58165 Signed-off-by: Stefan Roese <sr@denx.de>
58166
58167 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
58168 Author: Stefan Roese <sr@denx.de>
58169 Date: Thu Aug 23 11:02:37 2007 +0200
58170
58171 ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
58172
58173 This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
58174 board. Now the "eeprom" command can be used to read/write from/to this
58175 device. Additionally a new command was added "eepromwp" to en-/disable
58176 the write-protect of this 2nd EEPROM.
58177
58178 The 1st EEPROM is not affected by this write-protect command.
58179
58180 Signed-off-by: Stefan Roese <sr@denx.de>
58181
58182 commit c64fb30e4c5976007d56fc1789c7a0666082b536
58183 Author: Stefan Roese <sr@denx.de>
58184 Date: Wed Aug 22 08:56:09 2007 +0200
58185
58186 ppc4xx: Remove unused option CFG_INIT_RAM_OCM
58187
58188 Signed-off-by: Stefan Roese <sr@denx.de>
58189
58190 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
58191 Author: Stefan Roese <sr@denx.de>
58192 Date: Tue Aug 21 16:27:57 2007 +0200
58193
58194 ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
58195
58196 This patch adds support for the matrix keyboard on the lwmon5 board.
58197 Since the implementation in the dsPCI is kind of compatible with the
58198 "old" lwmon board, most of the code is copied from the lwmon
58199 board directory.
58200
58201 Signed-off-by: Stefan Roese <sr@denx.de>
58202
58203 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
58204 Author: Wolfgang Denk <wd@denx.de>
58205 Date: Sun Aug 19 10:27:34 2007 +0200
58206
58207 Fix some build errors.
58208
58209 Signed-off-by: Wolfgang Denk <wd@denx.de>
58210
58211 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
58212 Author: Wolfgang Denk <wd@denx.de>
58213 Date: Sat Aug 18 22:00:38 2007 +0200
58214
58215 Update CHANGELOG.
58216
58217 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
58218 Author: Kim Phillips <kim.phillips@freescale.com>
58219 Date: Thu Aug 16 22:52:39 2007 -0500
58220
58221 lib_ppc: make board_add_ram_info weak
58222
58223 platforms wishing to display RAM diagnostics in addition to size,
58224 can do so, on one line, in their own board_add_ram_info()
58225 implementation.
58226
58227 this consequently eliminates CONFIG_ADD_RAM_INFO.
58228
58229 Thanks to Stefan for the hint.
58230
58231 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58232
58233 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
58234 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
58235 Date: Fri Aug 17 12:43:44 2007 +0900
58236
58237 PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
58238
58239 This patch has been sent on:
58240 - 6 Jun 2007
58241
58242 Many users of PCI config read routines tend to ignore the function
58243 ret value, and are only concerned about the contents of *val. Based
58244 on this, pci_hose_read_config_{byte,word}_via_dword should initialize
58245 the *val on dword read error.
58246
58247 Without this fix, for example, we'll go on scanning bus with vendor or
58248 header_type uninitialized. This brings many unnecessary config trials.
58249
58250 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
58251
58252 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
58253 Author: Stefan Roese <sr@denx.de>
58254 Date: Sat Aug 18 14:37:52 2007 +0200
58255
58256 ColdFire: Fix some remaining problems with CFG_CMD_
58257
58258 Signed-off-by: Stefan Roese <sr@denx.de>
58259
58260 commit 8280f6a1c43247616b68224675188e5ccd124650
58261 Author: Stefan Roese <sr@denx.de>
58262 Date: Sat Aug 18 14:33:02 2007 +0200
58263
58264 Coding style cleanup
58265
58266 Signed-off-by: Stefan Roese <sr@denx.de>
58267
58268 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
58269 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58270 Date: Thu Aug 16 19:23:50 2007 -0500
58271
58272 ColdFire: Add M5235EVB Platform for MCF523x
58273
58274 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58275
58276 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
58277 Author: Kim Phillips <kim.phillips@freescale.com>
58278 Date: Fri Aug 17 09:30:00 2007 -0500
58279
58280 mpc83xx: fix typo in DDR2 programming
58281
58282 introduced in the implement board_add_ram_info patch as I was cleaning out the
58283 magic numbers. sorry.
58284
58285 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58286
58287 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
58288 Author: Kim Phillips <kim.phillips@freescale.com>
58289 Date: Thu Aug 16 22:53:09 2007 -0500
58290
58291 mpc83xx: move freescale boards to boards/freescale
58292
58293 includes build fixes.
58294
58295 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58296
58297 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
58298 Author: Kim Phillips <kim.phillips@freescale.com>
58299 Date: Thu Aug 16 22:52:59 2007 -0500
58300
58301 mpc83xx: suppress unused variable 'val8' warning
58302
58303 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58304
58305 commit bbea46f76f767b919070b4829bf34c86bd223248
58306 Author: Kim Phillips <kim.phillips@freescale.com>
58307 Date: Thu Aug 16 22:52:48 2007 -0500
58308
58309 mpc83xx: implement board_add_ram_info
58310
58311 add board_add_ram_info, to make memory diagnostic output more
58312 consistent. u-boot banner output now looks like:
58313
58314 DRAM: 256 MB (DDR1, 64-bit, ECC on)
58315
58316 and for boards with SDRAM on the local bus, a line such as this is
58317 added:
58318
58319 SDRAM: 64 MB (local bus)
58320
58321 also replaced some magic numbers with their equivalent define names.
58322
58323 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58324
58325 commit 14778585d1389d86d5846efec29e5fce892680ce
58326 Author: Tony Li <tony.li@freescale.com>
58327 Date: Fri Aug 17 10:35:59 2007 +0800
58328
58329 mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
58330
58331 The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
58332 And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
58333
58334 Signed-off-by Tony Li <tony.li@freescale.com>
58335
58336 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
58337 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58338 Date: Thu Aug 16 15:05:11 2007 -0500
58339
58340 ColdFire: Add M54455EVB for MCF5445x
58341
58342 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58343
58344 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
58345 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58346 Date: Thu Aug 16 13:20:50 2007 -0500
58347
58348 ColdFire: Add M5253EVBE platform for MCF52x2
58349
58350 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58351
58352 commit a605aacd8324094199402816cc6d9124aba57b8d
58353 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58354 Date: Thu Aug 16 05:04:31 2007 -0500
58355
58356 ColdFire: Add M5249EVB platform for MCF52x2
58357
58358 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58359
58360 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
58361 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58362 Date: Wed Aug 15 20:32:06 2007 -0500
58363
58364 ColdFire: Update Freescale MCF52x2 platforms
58365
58366 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58367
58368 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
58369 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58370 Date: Wed Aug 15 19:55:10 2007 -0500
58371
58372 ColdFire: Update EB+MCF-EV123 platform
58373
58374 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58375
58376 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
58377 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58378 Date: Wed Aug 15 19:46:38 2007 -0500
58379
58380 ColdFire: update TASREG platform for MCF52x2
58381
58382 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58383
58384 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
58385 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58386 Date: Wed Aug 15 19:45:51 2007 -0500
58387
58388 ColdFire: update r5200 platform for MCF52x2
58389
58390 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58391
58392 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
58393 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58394 Date: Wed Aug 15 19:43:20 2007 -0500
58395
58396 ColdFire: idmr platform MCF52x2 update
58397
58398 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58399
58400 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
58401 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58402 Date: Wed Aug 15 19:41:06 2007 -0500
58403
58404 ColdFire: cobra5272 platform for MCF52x2 update
58405
58406 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58407
58408 commit 56115665b4a64c10c01440c57749b265e0908fa4
58409 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58410 Date: Wed Aug 15 19:38:15 2007 -0500
58411
58412 ColdFire: MCF52x2 Header files update
58413
58414 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58415
58416 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
58417 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58418 Date: Wed Aug 15 19:21:21 2007 -0500
58419
58420 ColdFire: MCF52x2 update
58421
58422 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58423
58424 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
58425 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58426 Date: Wed Aug 15 18:46:11 2007 -0500
58427
58428 ColdFire: MCF5329 update cache
58429
58430 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58431
58432 commit 7171977fb8fd77cfb6676953fa9a05789c450513
58433 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58434 Date: Wed Aug 15 15:40:20 2007 -0500
58435
58436 ColdFire: MCF5329 header file clean up
58437
58438 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58439
58440 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
58441 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58442 Date: Wed Aug 15 15:39:17 2007 -0500
58443
58444 ColdFire: MCF5329 Update and cleanup
58445
58446 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58447
58448 commit 10327dc5541f947c0cf7e31fef86c4706169607a
58449 Author: Andy Fleming <afleming@freescale.com>
58450 Date: Thu Aug 16 16:35:02 2007 -0500
58451
58452 Add CONFIG_HAS_ETH0 to all boards with TSEC
58453
58454 The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
58455 to update TSEC1's device-tree node, so we need to add it
58456 to all the boards with TSECs. Do this for 83xx and 86xx, too,
58457 since they will eventually do something similar.
58458
58459 Signed-off-by: Andy Fleming <afleming@freescale.com>
58460
58461 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
58462 Author: Kumar Gala <galak@kernel.crashing.org>
58463 Date: Thu Aug 16 15:05:04 2007 -0500
58464
58465 Update MPC8544 DS PCI memory map
58466
58467 The PCIe bus that the ULI M1575 is connected to has no possible way of
58468 needing more than the fixed amount of IO & Memory space needed by the ULI.
58469
58470 So make it use far less IO & memory space and have it use the shared LAW. This
58471 free's up a LAW for PCIe1 IO space. Also reduce the amount of IO space needed
58472 by each bus.
58473
58474 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58475
58476 commit ea5877e31ed63ade948fd1293895ec23fe01472e
58477 Author: Kumar Gala <galak@kernel.crashing.org>
58478 Date: Thu Aug 16 11:01:21 2007 -0500
58479
58480 Fix up some fdt issues on 8544DS
58481
58482 It looks like we had a merge issue that duplicated a bit of code
58483 in ft_board_setup. Also, we need to set CONFIG_HAS_ETH0 to get
58484 the MAC address properly set in the device tree on boot for TSEC1
58485
58486 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58487
58488 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
58489 Author: Niklaus Giger <niklaus.giger@netstal.com>
58490 Date: Thu Aug 16 15:16:03 2007 +0200
58491
58492 PPC4xx:HCU4/5 cleanup
58493
58494 Minor cleanups to confirm to the u-boot coding style.
58495 Some german expressions -> english.
58496 HCU5 enforces a unique IP adress for a given slot in the rack.
58497
58498 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58499
58500 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
58501 Author: Niklaus Giger <niklaus.giger@netstal.com>
58502 Date: Thu Aug 16 15:16:02 2007 +0200
58503
58504 PPC4xx:HCU4/5 cleanup ecc/sdram init
58505
58506 Make ecc initialisation robust, as DDR2-ECC errors may be generated
58507 while zeroing the RAM.
58508
58509 Return 16 bytes (a cacheline) less than the available memory, as the
58510 board and/or PPC440EPx might have problems accessing the last bytes.
58511
58512 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58513
58514 commit d35b508a55508535b6e8445b718585d27df733d3
58515 Author: Kim Phillips <kim.phillips@freescale.com>
58516 Date: Wed Aug 15 22:29:56 2007 -0500
58517
58518 fdt: suppress unused variable 'bd' warning
58519
58520 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58521
58522 commit 82bd9ee77490588d4da785d75829ca63d0176baf
58523 Author: Andy Fleming <afleming@freescale.com>
58524 Date: Wed Aug 15 20:06:50 2007 -0500
58525
58526 Fix warnings from of_data copy fix
58527
58528 Forgot to cast of_flat_tree to ulong.
58529
58530 Signed-off-by: Andy Fleming <afleming@freescale.com>
58531
58532 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
58533 Author: Andy Fleming <afleming@freescale.com>
58534 Date: Wed Aug 15 20:03:44 2007 -0500
58535
58536 Don't wait for disconnected TSECs
58537
58538 The TSEC driver's PHY code waits a long time for autonegotiation to
58539 complete, even if the link is down. The PHY knows the link is
58540 down or up before autonegotiation completes, so we can short-circuit
58541 the process if the link is down.
58542
58543 Signed-off-by: Andy Fleming <afleming@freescale.com>
58544
58545 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
58546 Author: Andy Fleming <afleming@freescale.com>
58547 Date: Wed Aug 15 20:03:34 2007 -0500
58548
58549 Fix numerous bugs in the 8568 UEC support
58550
58551 Actually, fixed a large bug in the UEC for *all* platforms.
58552 How did this ever work?
58553
58554 uec_init() did not follow the spec for eth_init(), and returned
58555 0 on success. Switch it to return the link like tsec_init()
58556 (and 0 on error)
58557
58558 The immap for the 8568 was defined based on MPC8568, rather than
58559 CONFIG_MPC8568
58560
58561 CONFIG_QE was off
58562
58563 CONFIG_ETHPRIME was set to "Freescale GETH". Now is "FSL UEC0"
58564
58565 Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
58566 enabled
58567
58568 Signed-off-by: Andy Fleming <afleming@freescale.com>
58569
58570 commit 3a79013e2adda53332dfd0b511066a805e929a9d
58571 Author: Andy Fleming <afleming@freescale.com>
58572 Date: Wed Aug 15 20:03:25 2007 -0500
58573
58574 Define tsec flag values in config files
58575
58576 The tsec_info structure and array has a "flags" field for each
58577 ethernet controller. This field is the only reason there are
58578 settings. Switch to defining TSECn_FLAGS for each controller
58579 in the config header, and we can greatly simplify the array, and
58580 also simplify the addition of future boards.
58581
58582 Signed-off-by: Andy Fleming <afleming@freescale.com>
58583
58584 commit ec7238229507e7f47533a611ea8c53319d234cf3
58585 Author: Andy Fleming <afleming@freescale.com>
58586 Date: Wed Aug 15 20:03:13 2007 -0500
58587
58588 Add support for building all boards with a TSEC
58589
58590 Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
58591 Now we can do a MAKEALL test on all of them!
58592
58593 Signed-off-by: Andy Fleming <afleming@freescale.com>
58594
58595 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
58596 Author: Andy Fleming <afleming@freescale.com>
58597 Date: Wed Aug 15 17:30:56 2007 -0500
58598
58599 Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
58600
58601 The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
58602 neglected to *also* put the code inside the similar #ifdef
58603 for CONFIG_OF_FLAT_TREE.
58604
58605 Signed-off-by: Andy Fleming <afleming@freescale.com>
58606
58607 commit 78f9fef7f406078c8bf7191e665a73f795157746
58608 Author: Scott Wood <scottwood@freescale.com>
58609 Date: Wed Aug 15 15:46:46 2007 -0500
58610
58611 mpc885ads: Don't define CONFIG_BZIP2.
58612
58613 bzip2 requires a significant chunk of malloc space, and there isn't
58614 enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
58615 and a downloaded image at 0x400000.
58616
58617 Signed-off-by: Scott Wood <scottwood@freescale.com>
58618
58619 commit 002275a3ed8b114885f6702d6d544d0780dfe689
58620 Author: Michal Simek <Monstr@seznam.cz>
58621 Date: Thu Aug 16 08:54:10 2007 +0200
58622
58623 Bios emulator - fix microblaze toolchain problem
58624
58625 microblaze CPU have problem with bios_emulator code.
58626 Microblaze toolchain doesn't support PRAGMA PACK.
58627
58628 Signed-off-by: Michal Simek <monstr@monstr.eu>
58629
58630 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
58631 Author: Wolfgang Denk <wd@denx.de>
58632 Date: Thu Aug 16 11:51:04 2007 +0200
58633
58634 Minor Coding Style fix; Update CHANGELOG file.
58635
58636 Signed-off-by: Wolfgang Denk <wd@denx.de>
58637
58638 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
58639 Author: Stefan Roese <sr@denx.de>
58640 Date: Thu Aug 16 11:21:49 2007 +0200
58641
58642 ppc4xx: Remove #warning in esd auto_update.c
58643
58644 Signed-off-by: Stefan Roese <sr@denx.de>
58645
58646 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
58647 Author: Stefan Roese <sr@denx.de>
58648 Date: Fri Jun 22 17:32:28 2007 +0200
58649
58650 ppc7xx: Update CPCI750 board
58651
58652 This small CPCI750 update extends the board specific command
58653 "show_config" to display the Marvell strapping registers and
58654 extends the PCI IDE controller.
58655
58656 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
58657 Signed-off-by: Stefan Roese <sr@denx.de>
58658
58659 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
58660 Author: Michal Simek <monstr@monstr.eu>
58661 Date: Thu Aug 16 10:46:28 2007 +0200
58662
58663 [FIX] Changes for bios_emulator code for others architecture
58664
58665 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
58666 Author: Michal Simek <monstr@monstr.eu>
58667 Date: Thu Aug 16 10:45:09 2007 +0200
58668
58669 [FIX] Remove unused include file
58670
58671 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
58672 Author: Stefan Roese <sr@denx.de>
58673 Date: Thu Aug 16 10:18:33 2007 +0200
58674
58675 ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
58676
58677 Signed-off-by: Stefan Roese <sr@denx.de>
58678
58679 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
58680 Author: Stefan Roese <sr@denx.de>
58681 Date: Thu Aug 16 09:54:51 2007 +0200
58682
58683 Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
58684
58685 Signed-off-by: Stefan Roese <sr@denx.de>
58686
58687 commit 02ba7022f62bb75908296c58c63866e1d294b69a
58688 Author: Stefan Roese <sr@denx.de>
58689 Date: Thu Aug 16 09:52:29 2007 +0200
58690
58691 ppc4xx: Update Sequoia/Rainier bootstrap command
58692
58693 As suggested by David Mitchell, here an update for the Sequoia/Rainier
58694 bootstrap command.
58695
58696 Signed-off-by: Stefan Roese <sr@denx.de>
58697
58698 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
58699 Author: Kim Phillips <kim.phillips@freescale.com>
58700 Date: Wed Aug 15 22:30:39 2007 -0500
58701
58702 mpc83xx: enable libfdt by default on freescale boards
58703
58704 this enables libfdt code by default for the
58705 freescale mpc8313erdb, mpc832xemds, mpc8349emds,
58706 mpc8349itx and gp boards.
58707
58708 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58709
58710 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
58711 Author: Kim Phillips <kim.phillips@freescale.com>
58712 Date: Wed Aug 15 22:30:33 2007 -0500
58713
58714 mpc83xx: migrate remaining freescale boards to libfdt
58715
58716 this adds libfdt support code for the freescale
58717 mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
58718 and gp boards.
58719
58720 Boards remain compatible with OF_FLAT_TREE.
58721
58722 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58723
58724 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
58725 Author: Kim Phillips <kim.phillips@freescale.com>
58726 Date: Wed Aug 15 22:30:26 2007 -0500
58727
58728 mpc83xx: move common /memory node update mechanism to cpu.c
58729
58730 also adds common prototypes to include/common.h.
58731
58732 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58733
58734 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
58735 Author: Kim Phillips <kim.phillips@freescale.com>
58736 Date: Wed Aug 15 22:30:19 2007 -0500
58737
58738 mpc83xx: remaining 8360 libfdt fixes
58739
58740 PCI clocks and QE frequencies weren't being updated, and the core clock
58741 was being updated incorrectly. This patch also adds a /memory node if
58742 it doesn't already exist prior to update.
58743
58744 plus some cosmetic trimming to single line comments.
58745
58746 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58747
58748 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
58749 Author: Kim Phillips <kim.phillips@freescale.com>
58750 Date: Wed Aug 15 22:30:12 2007 -0500
58751
58752 mpc83xx: fix UEC2->1 typo in libfdt setup code
58753
58754 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58755
58756 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
58757 Author: Kim Phillips <kim.phillips@freescale.com>
58758 Date: Wed Aug 15 22:30:05 2007 -0500
58759
58760 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
58761
58762 and reorder the existing 83xx maintainers alpha.
58763
58764 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58765
58766 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
58767 Author: Michal Simek <monstr@monstr.eu>
58768 Date: Wed Aug 15 21:15:05 2007 +0200
58769
58770 [FIX] Resolve problem with warnings
58771 microblaze toolchain don't support PRAGMA PACK.
58772
58773 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
58774 Author: Michal Simek <monstr@monstr.eu>
58775 Date: Wed Aug 15 21:05:07 2007 +0200
58776
58777 [FIX] Correction command setting for Microblaze boards
58778
58779 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
58780 Author: Michal Simek <monstr@monstr.eu>
58781 Date: Wed Aug 15 21:03:41 2007 +0200
58782
58783 [FIX] Correction command definition
58784
58785 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
58786 Author: Jon Loeliger <jdl@freescale.com>
58787 Date: Wed Aug 15 11:55:35 2007 -0500
58788
58789 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
58790
58791 Remove a leftover in net/tftp.c while we're at it.
58792
58793 Signed-off-by: Jon Loeliger <jdl@freescale.com>
58794
58795 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
58796 Author: Jon Loeliger <jdl@freescale.com>
58797 Date: Wed Aug 15 12:20:40 2007 -0500
58798
58799 Move the MPC8641HPCN board under board/freescale.
58800
58801 Minor path corrections needed to ensure buildability.
58802
58803 Signed-off-by: Jon Loeliger <jdl@freescale.com>
58804
58805 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
58806 Author: Jon Loeliger <jdl@freescale.com>
58807 Date: Wed Aug 15 11:46:22 2007 -0500
58808
58809 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
58810
58811 Remove a leftover in net/tftp.c while we're at it.
58812
58813 Signed-off-by: Jon Loeliger <jdl@freescale.com>
58814
58815 commit 210f463c71917b7a4495c2103c228b9c179ae64d
58816 Author: Jerry Van Baren <gvb.uboot@gmail.com>
58817 Date: Wed Aug 15 11:13:15 2007 -0400
58818
58819 Fix where the #ifdef CFG_BOOTMAPSZ is placed.
58820
58821 Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
58822 interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
58823 when it should have gone inside of the conditional. As a result, it
58824 broke non-LIBFDT board builds.
58825
58826 Also added a missing "not." to the comment.
58827
58828 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
58829
58830 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
58831 Author: Niklaus Giger <niklaus.giger@netstal.com>
58832 Date: Wed Aug 15 12:14:23 2007 +0200
58833
58834 PPC4xx:HCU4/5-Board fix compile warning
58835
58836 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58837
58838 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
58839 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58840 Date: Tue Aug 14 14:06:45 2007 -0500
58841
58842 Fix malloc size error in ahci_init_one.
58843
58844 Typically this causes scsi init to corrupt the
58845 devlist and break the coninfo command.
58846 Fix a compiler size warning.
58847
58848 Signed-off-by: Jason Jin <jason.jin@freescale.com>
58849 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58850 Acked-by: Andy Fleming <afleming@freescale.com>
58851
58852 commit b361acd64fd2525c081b9b288b0804efe209c0e9
58853 Author: ksi@koi8.net <ksi@koi8.net>
58854 Date: Tue Aug 14 10:02:16 2007 -0700
58855
58856 TI DaVinci - fix unsupported %hhx format
58857
58858 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
58859
58860 commit f01dbb5424a81453c81190dd30e945891466f621
58861 Author: Wolfgang Denk <wd@denx.de>
58862 Date: Tue Aug 14 18:42:36 2007 +0200
58863
58864 Coding style cleanup. Update CHANGELOG.
58865
58866 Signed-off-by: Wolfgang Denk <wd@denx.de>
58867
58868 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
58869 Author: Andy Fleming <afleming@freescale.com>
58870 Date: Tue Aug 14 10:32:59 2007 -0500
58871
58872 Fix initrd/dtb interaction
58873
58874 The original code would wrongly relocate the blob to be right before
58875 the initrd if it existed. The blob *must* be within CFG_BOOTMAPSZ,
58876 if it is defined. So we make two changes:
58877
58878 1) flag the blob for relocation whenever its address is above BOOTMAPSZ
58879
58880 2) If the blob is being relocated, relocate it before kbd, not initrd
58881
58882 Signed-off-by: Andy Fleming <afleming@freescale.com>
58883
58884 commit e54b970173769307a116bd34028b6d0c2eea2a4e
58885 Author: Peter Pearse <peter.pearse@arm.com>
58886 Date: Tue Aug 14 15:40:00 2007 +0100
58887
58888 Supply spi interface in at45.c
58889
58890 commit 4ce846ec59f36b85d6644a769690ad3feb667575
58891 Author: Stefan Roese <sr@denx.de>
58892 Date: Tue Aug 14 15:12:01 2007 +0200
58893
58894 POST: Fix merge problem
58895
58896 Signed-off-by: Stefan Roese <sr@denx.de>
58897
58898 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
58899 Author: Stefan Roese <sr@denx.de>
58900 Date: Tue Aug 14 15:03:17 2007 +0200
58901
58902 Coding style cleanup
58903
58904 Signed-off-by: Stefan Roese <sr@denx.de>
58905
58906 commit 779e975117a75e91fcebe226a63104dbfb924ab1
58907 Author: Stefan Roese <sr@denx.de>
58908 Date: Tue Aug 14 14:44:41 2007 +0200
58909
58910 ppc4xx: Add initial Zeus (PPC405EP) board support
58911
58912 Signed-off-by: Stefan Roese <sr@denx.de>
58913
58914 commit c5a172a5fd636c12467429e3f7910e53773979c6
58915 Author: Stefan Roese <sr@denx.de>
58916 Date: Tue Aug 14 14:41:55 2007 +0200
58917
58918 POST: Add option for external ethernet loopback test
58919
58920 When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
58921 is not done using an internal loopback connection, but by assuming
58922 that an external loopback connector is plugged into the board.
58923
58924 Signed-off-by: Stefan Roese <sr@denx.de>
58925
58926 commit eb2b4010ae426245172988804ee8d9193fb41038
58927 Author: Stefan Roese <sr@denx.de>
58928 Date: Tue Aug 14 14:39:44 2007 +0200
58929
58930 POST: Add ppc405 support to cache and UART POST
58931
58932 Signed-off-by: Stefan Roese <sr@denx.de>
58933
58934 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
58935 Author: Peter Pearse <peter.pearse@arm.com>
58936 Date: Tue Aug 14 10:46:32 2007 +0100
58937
58938 Replace lost end of at45.c.
58939
58940 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
58941 Author: Peter Pearse <peter.pearse@arm.com>
58942 Date: Tue Aug 14 10:30:06 2007 +0100
58943
58944 Update Makefiles for merged and split at45.c.
58945
58946 commit 3454cece2db57cb9eb7087995f7e73066a163f71
58947 Author: Peter Pearse <peter.pearse@arm.com>
58948 Date: Tue Aug 14 10:21:06 2007 +0100
58949
58950 Delete the merged files.
58951
58952 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
58953 Author: Peter Pearse <peter.pearse@arm.com>
58954 Date: Tue Aug 14 10:14:05 2007 +0100
58955
58956 Add the files.
58957
58958 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
58959 Author: Peter Pearse <peter.pearse@arm.com>
58960 Date: Tue Aug 14 10:10:52 2007 +0100
58961
58962 Add MACH_TYPE records for several AT91 boards.
58963 Merge to two at45.c files into a common file, split to at45.c and spi.c
58964 Fix spelling error in DM9161 PHY Support.
58965 Initialize at91rm9200 board (and set LED).
58966 Add PIO control for at91rm9200dk LEDs and Mux.
58967 Change dataflash partition boundaries to be compatible with Linux 2.6.
58968
58969 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
58970 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
58971
58972 commit 4ef35e53c693556c54b0c22d6f873de87bade253
58973 Author: Wolfgang Denk <wd@denx.de>
58974 Date: Tue Aug 14 09:54:46 2007 +0200
58975
58976 Coding style cleanup, update CHANGELOG
58977
58978 Signed-off-by: Wolfgang Denk <wd@denx.de>
58979
58980 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
58981 Author: Wolfgang Denk <wd@denx.de>
58982 Date: Tue Aug 14 09:47:27 2007 +0200
58983
58984 Coding style cleanup; rebuild CHANGELOG
58985
58986 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
58987 Author: Randy Vinson <rvinson@linuxbox.(none)>
58988 Date: Tue Feb 27 19:42:22 2007 -0700
58989
58990 85xxCDS: Add make targets for legacy systems.
58991
58992 The PCI ID select values on the Arcadia main board differ depending
58993 on the version of the hardware. The standard configuration supports
58994 Rev 3.1. The legacy target supports Rev 2.x.
58995
58996 Signed-off-by Randy Vinson <rvinson@mvista.com>
58997
58998 commit e41094c7e38177c755fbd9b182018069614f080d
58999 Author: Andy Fleming <afleming@freescale.com>
59000 Date: Tue Aug 14 01:50:09 2007 -0500
59001
59002 85xxCDS: Enable the VIA PCI-to-ISA bridge.
59003
59004 Author: Randy Vinson <rvinson@linuxbox.(none)>
59005
59006 Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
59007 Arcadia main board.
59008
59009 Signed-off-by: Randy Vinson <rvinson@mvista.com>
59010 Signed-off-by: York Sun <yorksun@freescale.com>
59011
59012 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
59013 Author: Andy Fleming <afleming@freescale.com>
59014 Date: Tue Aug 14 00:14:25 2007 -0500
59015
59016 Add support for UEC to 8568
59017
59018 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
59019 Signed-off-by: Andy Fleming <afleming@freescale.com>
59020
59021 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
59022 Author: Haiying Wang <Haiying.Wang@freescale.com>
59023 Date: Tue Jun 19 14:18:34 2007 -0400
59024
59025 Add PCI support for MPC8568MDS board
59026
59027 This patch is against u-boot-mpc85xx.git of www.denx.com
59028
59029 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
59030 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
59031
59032 commit d111d6382c99fdea08c2312eeeae8786945e189a
59033 Author: Haiying Wang <Haiying.Wang@freescale.com>
59034 Date: Tue Jun 19 14:18:32 2007 -0400
59035
59036 Empirically set cpo and clk_adjust for mpc85xx DDR2 support
59037
59038 This patch is against u-boot-mpc85xx.git of www.denx.com
59039
59040 Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
59041 both MPC8548CDS board and MPC8568MDS board, especially for supporting
59042 533MHz DDR2.
59043
59044 Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
59045 DDR2 on all current board versions especially ver 1.92 or later to bring
59046 up.
59047
59048 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
59049
59050 commit 3db0bef59eab1155801618cef5c481e97553b597
59051 Author: Kumar Gala <galak@kernel.crashing.org>
59052 Date: Tue Aug 7 18:07:27 2007 -0500
59053
59054 Use an absolute address when jumping out of 4k boot page
59055
59056 On e500 when we leave the 4k boot page we should use an absolute address since
59057 we don't know where the board code may want us to be really running at.
59058
59059 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59060
59061 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
59062 Author: Andy Fleming <afleming@freescale.com>
59063 Date: Mon Aug 13 14:49:59 2007 -0500
59064
59065 MPC85xx BA bits not set for 3-bit bank address DIMM
59066
59067 The current implementation does not set the number of bank address bits
59068 (BA) in the processor. The default assumes 2 logical bank bits. This
59069 works fine for a DIMM that uses devices with 4 internal banks (SPD
59070 byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
59071 devices with 8 internal banks (SPD byte17 = 0x8).
59072
59073 Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
59074
59075 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
59076 Author: Andy Fleming <afleming@freescale.com>
59077 Date: Mon Aug 13 14:38:06 2007 -0500
59078
59079 Fix minor 85xx warnings
59080
59081 Some patches had inserted warnings into the build:
59082 * mpc8560ads declared data without using it
59083 * cpu_init declared ecm and immap without using it in all CONFIGs
59084 * MPC8548CDS.h had its default filenames changed so that they contained
59085 "\m" in the paths. Made the defaults not Windows-specific (or
59086 anything-specific)
59087
59088 Signed-off-by: Andy Fleming <afleming@freescale.com>
59089
59090 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
59091 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59092 Date: Fri Jul 27 01:50:52 2007 -0500
59093
59094 8548cds PCIE support.
59095
59096 Make the early L1 cache stack region guarded to prevent speculative
59097 fetches outside the locked range.
59098
59099 Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
59100 init.S whitespace cleanup.
59101
59102 Allow TEXT_BASE value to be specified on command line. This allows it
59103 to be set to 0xfffc0000 which cuts the uboot binary in half.
59104
59105 Clear and enable lbc and ecm errors.
59106
59107 Update last_busno in device-tree for pci and pcie.
59108
59109 Remove load of obsolete cpu/mpc85xx/pci.0
59110
59111 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59112 Acked-by: Andy Fleming <afleming@freescale.com>
59113
59114 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
59115 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59116 Date: Fri Jul 27 01:50:51 2007 -0500
59117
59118 8544ds PCIE support
59119
59120 PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
59121
59122 Enable LBC and ECM errors and clear error registers.
59123
59124 Add tftpflash env var to get uboot from tftp server and flash it.
59125
59126 Add pci/pcie convenience env vars to display register space:
59127 "run pcie3regs" to see all pcie3 ccsr registers
59128 "run pcie3cfg" to see all cfg registers
59129 Whitespace cleanup and MPC8544DS.h
59130
59131 Enable CONFIG_INTERRUPTS.
59132
59133 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59134 Acked-by: Andy Fleming <afleming@freescale.com>
59135
59136 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
59137 Author: Andy Fleming <afleming@freescale.com>
59138 Date: Tue Aug 14 01:34:21 2007 -0500
59139
59140 85xx start.S cleanup and exception support
59141
59142 From: Ed Swarthout <Ed.Swarthout@freescale.com>
59143
59144 Support external interrupts from platform to eliminate system hangs.
59145 Define CONFIG_INTERRUPTS board configure option to enable.
59146 Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
59147
59148 Remove extra cpu initialization redundant with hardware initialization.
59149 Whitespace cleanup.
59150
59151 Define and use _START_OFFSET consistent with other processors using
59152 ppc_asm.tmpl
59153
59154 Move additional code from .text to boot page to make room for
59155 exception vectors at start of image.
59156
59157 Handle Machine Check, External and Critical exceptions.
59158
59159 Fix e500 machine check error determination in traps.c
59160
59161 TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
59162
59163 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59164 Acked-by: Andy Fleming <afleming@freescale.com>
59165
59166 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
59167 Author: Andy Fleming <afleming@freescale.com>
59168 Date: Tue Aug 14 01:33:18 2007 -0500
59169
59170 Add MPC8544DS README
59171
59172 Signed-off-by: Andy Fleming <afleming@freescale.com>
59173
59174 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
59175 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59176 Date: Fri Jul 27 01:50:48 2007 -0500
59177
59178 85xx allow debugger to configure ddr.
59179
59180 Only check for mpc8548 rev 1 when compiled for 8548.
59181
59182 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59183 Acked-by: Andy Fleming <afleming@freescale.com>
59184
59185 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
59186 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59187 Date: Fri Jul 27 01:50:47 2007 -0500
59188
59189 mpc85xx L2 cache reporting and SRAM relocation option.
59190
59191 Allow debugger to override flash cs0/cs1 settings to enable alternate
59192 boot regions
59193
59194 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59195 Acked-by: Andy Fleming <afleming@freescale.com>
59196
59197 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
59198 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59199 Date: Fri Jul 27 01:50:46 2007 -0500
59200
59201 e500 needs ppc_asm.tmp MCK_EXCEPTION
59202
59203 Always define MCK_EXCEPTION macro - so e500 can use it too.
59204
59205 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59206 Acked-by: Andy Fleming <afleming@freescale.com>
59207
59208 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
59209 Author: David Updegraff <dave@cray.com>
59210 Date: Mon Jun 11 10:41:07 2007 -0500
59211
59212 multicast tftp: RFC2090
59213
59214 Implemented IETF RFC2090, Multicast TFTP. Initial implementation
59215 on Realtek RTL8139 and Freescale TSEC.
59216
59217 Signed-off-by: David Updegraff <dave@cray.com>
59218 Signed-off-by: Ben Warren <bwarren@qstreams.com>
59219
59220 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
59221 Author: Wilson Callan <wcallan@savantav.com>
59222 Date: Sat Jul 28 10:56:13 2007 -0400
59223
59224 New CONFIG_BOOTP_SERVERIP option
59225
59226 Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
59227 from the bootp server
59228
59229 Signed-off-by: Wilson Callan <wcallan@savantav.com>
59230 Signed-off-by: Ben Warren <bwarren@qstreams.com>
59231
59232 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
59233 Author: Mike Rapoport <mike@compulab.co.il>
59234 Date: Sun Aug 12 08:48:27 2007 +0300
59235
59236 Add ability to take MAC address from the environment to DM9000 driver
59237
59238 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
59239 Signed-off-by: Ben Warren <bwarren@qstreams.com>
59240
59241 commit be5d72d10d47609326226225181e301fb9a33b58
59242 Author: Wolfgang Denk <wd@denx.de>
59243 Date: Mon Aug 13 21:57:53 2007 +0200
59244
59245 Minor coding style cleanup. Update CHANGELOG.
59246
59247 Signed-off-by: Wolfgang Denk <wd@denx.de>
59248
59249 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
59250 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
59251 Date: Sat Aug 11 06:54:58 2007 -0500
59252
59253 Modify SBC8641D to use new Freescale PCI routines
59254
59255 PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
59256 adapter.
59257
59258 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
59259 Signde-off-by: Jon Loeliger <jdl@freescale.com>
59260
59261 commit a08458303e7f9db67f296980036d3292c35cb45c
59262 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
59263 Date: Fri Jun 29 18:38:51 2007 +0200
59264
59265 atmel_mci: Fix data timeout value
59266
59267 Calculate the data timeout based on values from the CSD instead of
59268 just using a hardcoded DTOR value. This is a backport of a similar fix
59269 in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
59270 instead of down.
59271
59272 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59273
59274 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
59275 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
59276 Date: Mon Aug 13 17:22:31 2007 +0200
59277
59278 AVR32: Include <div64.h> instead of <asm/div64.h>
59279
59280 include/asm-avr32/div64.h was recently moved to include/div64.h, but
59281 cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
59282 the patch was merged perhaps?)
59283
59284 This patch updates cpu/at32ap/interrupts.c so that the avr32 port
59285 compiles again.
59286
59287 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59288
59289 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
59290 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
59291 Date: Wed Jun 27 13:34:26 2007 +0200
59292
59293 atmel_mci: Use 512 byte blocksize if possible
59294
59295 Instead of always using the largest blocksize the card supports, check
59296 if it can support smaller block sizes and use 512 bytes if possible.
59297 Most cards do support this, and other parts of u-boot seem to have
59298 trouble with block sizes different from 512 bytes.
59299
59300 Also enable underrun/overrun protection.
59301
59302 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59303 Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
59304
59305 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
59306 Author: Stefan Roese <sr@denx.de>
59307 Date: Mon Aug 13 09:05:33 2007 +0200
59308
59309 ppc4xx: Fix problem in PLL clock calculation
59310
59311 This patch was originall provided by David Mitchell <dmitchell@amcc.com>
59312 and fixes a bug in the PLL clock calculation.
59313
59314 Signed-off-by: Stefan Roese <sr@denx.de>
59315
59316 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
59317 Author: Wolfgang Denk <wd@denx.de>
59318 Date: Sun Aug 12 21:34:50 2007 +0200
59319
59320 Update CHANGELOG
59321
59322 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
59323 Author: Wolfgang Denk <wd@denx.de>
59324 Date: Sun Aug 12 21:34:34 2007 +0200
59325
59326 Minor alignment of output, 2nd try.
59327 Also update CHANGELOG
59328
59329 Signed-off-by: Wolfgang Denk <wd@denx.de>
59330
59331 commit 6b309f22a724fad8418e811751a0741b893419cf
59332 Author: Wolfgang Denk <wd@denx.de>
59333 Date: Sun Aug 12 20:35:49 2007 +0200
59334
59335 Minor alignment of output
59336
59337 Signed-off-by: Wolfgang Denk <wd@denx.de>
59338
59339 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
59340 Author: Wolfgang Denk <wd@denx.de>
59341 Date: Sun Aug 12 18:28:18 2007 +0200
59342
59343 Cleanup output on ADS5121 board
59344
59345 Signed-off-by: Wolfgang Denk
59346
59347 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
59348 Author: Wolfgang Denk <wd@denx.de>
59349 Date: Sun Aug 12 15:11:38 2007 +0200
59350
59351 Adapt board configuration and fix kernel crash on MCC200 board.
59352
59353 The update procedure was modified to turn off the USB subsystem
59354 before exit for MCC200 and TRAB. This is necessary as otherwise the
59355 USB controller continues to write periodically to system memory!
59356
59357 MCC200-specific notes:
59358 - the patch disables the magic key check for MCC200
59359 - the patch contains the configuration changes made
59360 for the new revision of the board.
59361
59362 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
59363 Signed-off-by: Wolfgang Denk <wd@denx.de>
59364
59365 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
59366 Author: Wolfgang Denk <wd@denx.de>
59367 Date: Sun Aug 12 14:47:54 2007 +0200
59368
59369 Adjust default configuration of ADS5121 board.
59370
59371 Signed-off-by: Wolfgang Denk <wd@denx.de>
59372
59373 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
59374 Author: Wolfgang Denk <wd@denx.de>
59375 Date: Sun Aug 12 14:27:39 2007 +0200
59376
59377 Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
59378
59379 Signed-off-by: Wolfgang Denk <wd@denx.de>
59380
59381 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
59382 Author: Gerald Van Baren <vanbaren@cideas.com>
59383 Date: Tue Aug 7 21:14:22 2007 -0400
59384
59385 Improve error print messages.
59386
59387 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59388
59389 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
59390 Author: Kim Phillips <kim.phillips@freescale.com>
59391 Date: Tue Jul 17 13:57:04 2007 -0500
59392
59393 fdt: allow for builds that don't want env and bd_t nodes
59394
59395 protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
59396 area.
59397
59398 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59399
59400 commit 91148bf7aeba142d6f348805db7625db7da64d6f
59401 Author: Kim Phillips <kim.phillips@freescale.com>
59402 Date: Tue Jul 17 13:56:53 2007 -0500
59403
59404 fdt: do board setup based on fdt address specified on bootm line
59405
59406 The last fdt patch to bootm did board setup based on the address
59407 specified by a prior fdt address command invocation. The bootm
59408 code, as its call to fdt_chosen does, should use the fdt specified
59409 by the user on the bootm command. Note this restores full
59410 functionality for the 8360's existing default boot environment
59411 values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
59412 before booting a kernel).
59413
59414 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59415
59416 commit e125a2ffc209dd34794e326c7175658253beadf3
59417 Author: Gerald Van Baren <vanbaren@cideas.com>
59418 Date: Tue Jul 10 20:40:39 2007 -0400
59419
59420 Call ft_board_setup() from the bootm command.
59421
59422 In the patch titled "Create new fdt boardsetup command..." I removed the
59423 call to ft_board_setup() from the routine fdt_chosen(), but I forgot
59424 to add a direct call back into cmd_bootm.c
59425
59426 This fixes the oversight by adding the direct call to the bootm command.
59427
59428 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59429
59430 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
59431 Author: Gerald Van Baren <vanbaren@cideas.com>
59432 Date: Mon Jun 25 23:25:28 2007 -0400
59433
59434 Create new fdt boardsetup command, fix bug parsing [] form of set values.
59435
59436 Previously ft_board_setup() was called by fdt_chosen() which was not
59437 really correctly structured. This splits ft_board_setup() out by creating
59438 a new fdt boardsetup command.
59439
59440 Fix a bug when parsing fdt set command values which have the square
59441 bracket form [00 11 22 33] - the length was updated incorrectly in when
59442 parsing that form.
59443
59444 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59445
59446 commit 6f35ded9e85493595e0eb66a82b502a95326d049
59447 Author: Gerald Van Baren <vanbaren@cideas.com>
59448 Date: Mon Jun 25 20:55:58 2007 -0400
59449
59450 Tighten up the error messages.
59451
59452 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59453
59454 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
59455 Author: Gerald Van Baren <vanbaren@cideas.com>
59456 Date: Mon Jun 25 19:52:23 2007 -0400
59457
59458 Asthetic improvements: error messages and line lengths.
59459
59460 Tighten up the error messages, split overlength lines.
59461
59462 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59463
59464 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
59465 Author: Gerald Van Baren <vanbaren@cideas.com>
59466 Date: Fri May 25 22:08:57 2007 -0400
59467
59468 Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
59469
59470 The fdt_chosen() function was adding/seting some properties ad-hoc
59471 improperly and duplicated (poorly) what was done in ft_board_setup()
59472
59473 Clean up long lines (setting properties, printing errors).
59474
59475 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59476
59477 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
59478 Author: Gerald Van Baren <vanbaren@cideas.com>
59479 Date: Mon May 21 23:27:16 2007 -0400
59480
59481 For fdt_find_node_by_path(), handle the root path properly.
59482
59483 Also removes the special case root path detection in cmd_fdt.c since it
59484 is no longer necessary.
59485
59486 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59487
59488 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
59489 Author: Gerald Van Baren <vanbaren@cideas.com>
59490 Date: Thu May 17 23:54:36 2007 -0400
59491
59492 Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
59493
59494 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
59495 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
59496
59497 commit 1a861169bc3758f9de3aead62b058736c6891246
59498 Author: Gerald Van Baren <vanbaren@cideas.com>
59499 Date: Wed Jun 6 22:47:58 2007 -0400
59500
59501 Replace fdt_node_offset() with fdt_find_node_by_path().
59502
59503 The new name matches more closely the kernel's name, which is also
59504 a much better description.
59505
59506 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
59507 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
59508
59509 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
59510 Author: Gerald Van Baren <vanbaren@cideas.com>
59511 Date: Wed May 16 22:39:59 2007 -0400
59512
59513 Fix cmd_fdt line lengths, refactor code.
59514
59515 Break lines that were greater than 80 characters in length.
59516 Move the fdt print and property parsing code to separate static functions
59517 to reduce coding clutter in the fdt_cmd handling body.
59518
59519 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59520
59521 commit 25114033ab21788810c48ba4df103b649da1223b
59522 Author: Gerald Van Baren <vanbaren@cideas.com>
59523 Date: Sat May 12 09:47:25 2007 -0400
59524
59525 FDT command improvements.
59526
59527 Fix "fdt set" so that it will create a non-existing property.
59528 Add "fdt mknode" to create nodes.
59529
59530 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59531
59532 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
59533 Author: Gerald Van Baren <vanbaren@cideas.com>
59534 Date: Sat May 12 09:45:46 2007 -0400
59535
59536 Reorganize and fix problems (returns) in the bootm command.
59537
59538 Do *NOT* return after the "point of no return" has been passed.
59539 If something goes wrong, the board must be reset after that point.
59540 Move the "Transferring control to Linux" debug message back to where it
59541 belongs: just before transferring control to linux.
59542
59543 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59544
59545 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
59546 Author: Gerald Van Baren <vanbaren@cideas.com>
59547 Date: Tue May 8 21:27:35 2007 -0400
59548
59549 Fix bugs in the CONFIG_OF_LIBFDT
59550
59551 Stupid coding mistakes (identified by Timur Tabi, thanks).
59552
59553 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59554
59555 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
59556 Author: Gerald Van Baren <vanbaren@cideas.com>
59557 Date: Wed Apr 25 22:47:15 2007 -0400
59558
59559 Improve fdt move length handling.
59560
59561 Make the length parameter optional: if not specified, do the move using
59562 the current size unchanged.
59563
59564 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59565
59566 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
59567 Author: Gerald Van Baren <vanbaren@cideas.com>
59568 Date: Wed Apr 25 22:23:36 2007 -0400
59569
59570 Minor code clean up.
59571
59572 Declare the variable fdt properly as extern.
59573 Call the "set_fn" function pointer the "short way" without the full
59574 dereferencing syntax.
59575
59576 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59577
59578 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
59579 Author: Gerald Van Baren <vanbaren@cideas.com>
59580 Date: Wed Apr 25 21:24:27 2007 -0400
59581
59582 Improve error messages, more informative.
59583
59584 Print more than the raw libfdt error message strings. This is especially
59585 useful for cluing in the user when the bootm command aborts due to
59586 blob problems.
59587
59588 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59589
59590 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
59591 Author: Gerald Van Baren <vanbaren@cideas.com>
59592 Date: Fri Apr 20 22:46:53 2007 -0400
59593
59594 libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
59595
59596 This is the way u-boot reduces configured-out code. At Wolfgang
59597 Grandegger and Wolfgang Denk's request, make libfdt conform.
59598
59599 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59600
59601 commit 923efd286411ed052d9e074f59f8986d6081061c
59602 Author: Bruce Adler <bruce.adler@ccpu.com>
59603 Date: Fri Aug 10 14:54:47 2007 -0700
59604
59605 add image size and descriptors for Spartan 3E FPGA chips
59606
59607 Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
59608
59609 Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
59610
59611 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
59612 Author: Kim Phillips <kim.phillips@freescale.com>
59613 Date: Fri Aug 10 15:34:48 2007 -0500
59614
59615 make MAKEALL more immune to merge conflicts
59616
59617 ..by placing board entries one per line, as suggested by jdl.
59618
59619 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59620
59621 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
59622 Author: Kim Phillips <kim.phillips@freescale.com>
59623 Date: Fri Aug 10 13:28:25 2007 -0500
59624
59625 README: Remove outdated cpu type, board type, and NAME_config lists
59626
59627 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59628
59629 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
59630 Author: Dave Liu <r63238@freescale.com>
59631 Date: Fri Aug 10 15:48:59 2007 +0800
59632
59633 mpc83xx: Suppress the warning 'burstlen'
59634
59635 suppress the warning 'burstlen' of spd_sdram.
59636
59637 Signed-off-by: Dave Liu <daveliu@freescale.com>
59638
59639 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
59640 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
59641 Date: Thu Aug 9 15:11:03 2007 -0500
59642
59643 Add support for SBC8641D. Config files.
59644
59645 Add support for Wind River's SBC8641D reference board.
59646
59647 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
59648 Acked-by: Wolfgang Denk <wd@denx.de>
59649 Acked-by: Jon Loeliger <jdl@freescale.com>
59650
59651 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
59652 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
59653 Date: Thu Aug 9 15:10:53 2007 -0500
59654
59655 Add support for SBC8641D. Board files.
59656
59657 Add support for Wind River's SBC8641D reference board.
59658
59659 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
59660 Acked-by: Wolfgang Denk <wd@denx.de>
59661 Acked-by: Jon Loeliger <jdl@freescale.com>
59662
59663 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
59664 Author: Stefan Roese <sr@denx.de>
59665 Date: Fri Aug 10 20:34:58 2007 +0200
59666
59667 Conding style cleanup
59668
59669 Signed-off-by: Stefan Roese <sr@denx.de>
59670
59671 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
59672 Author: Sergey Kubushyn <ksi@koi8.net>
59673 Date: Fri Aug 10 20:26:18 2007 +0200
59674
59675 [ARM] TI DaVinci support, hopefully final
59676
59677 Add support for the following DaVinci boards:
59678 - DV_EVM
59679 - SCHMOOGIE
59680 - SONATA
59681
59682 Changes:
59683
59684 - Split into separate board directories
59685 - Removed changes to MTD_DEBUG (or whatever it's called)
59686 - New CONFIG_CMD party line followed
59687 - Some cosmetic fixes, cleanup etc.
59688 - Patches against the latest U-Boot tree as of now.
59689 - Fixed CONFIG_CMD_NET in net files.
59690 - Fixed CONFIG_CMD_EEPROM for schmoogie.
59691 - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
59692 DV_EVM. Can't check if it works on SONATA, don't have a board any more,
59693 but it at least compiles.
59694
59695 Here is an excerpt from session log on SCHMOOGIE...
59696
59697 U-Boot 1.2.0-g6c33c785-dirty (Aug 7 2007 - 13:07:17)
59698
59699 DRAM: 128 MB
59700 NAND: 128 MiB
59701 In: serial
59702 Out: serial
59703 Err: serial
59704 ARM Clock : 297MHz
59705 DDR Clock : 162MHz
59706 ETH PHY : DP83848 @ 0x01
59707 U-Boot > iprobe
59708 Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
59709 U-Boot > ping 192.168.253.10
59710 host 192.168.253.10 is alive
59711 U-Boot >
59712
59713 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
59714 Acked-by: Dirk Behme <dirk.behme@gmail.com>
59715 Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
59716 Acked-by: Stefan Roese <sr@denx.de>
59717
59718 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
59719 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59720 Date: Fri Jul 27 01:50:45 2007 -0500
59721
59722 fsl_pci_init cleanup.
59723
59724 Do not enable normal errors created during probe (master abort, perr,
59725 and pcie Invalid Configuration access).
59726
59727 Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
59728
59729 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59730 Acked-by: Andy Fleming <afleming@freescale.com>
59731
59732 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
59733 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59734 Date: Fri Jul 27 01:50:44 2007 -0500
59735
59736 pciauto_setup_device bars_num fix
59737
59738 Passing bars_num=0 to pciauto_setup_device should assign no bars.
59739
59740 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59741 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
59742 Acked-by: Andy Fleming <afleming@freescale.com>
59743
59744 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
59745 Author: Jon Loeliger <jdl@freescale.com>
59746 Date: Mon Aug 6 17:39:44 2007 -0500
59747
59748 8641hpcn: Do correct sized pointer math.
59749
59750 When I rebased Ed's patch and cleaned up a few compilation
59751 problems, I apparently rebased my brain on crack first.
59752 Fix that by doing (char *) sized pointer math as needed.
59753
59754 Signed-off-by: Jon Loeliger <jdl@freescale.com>
59755
59756 commit cfc7a7f5bb3273c9951173c788001d45118f141f
59757 Author: Jon Loeliger <jdl@freescale.com>
59758 Date: Thu Aug 2 14:42:20 2007 -0500
59759
59760 cpu/86xx fixes.
59761
59762 Remove rev 1 fixes.
59763 Always set PICGCR_MODE.
59764 Enable machine check and provide board config option
59765 to set and handle SoC error interrupts.
59766
59767 Include MSSSR0 in error message.
59768
59769 Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
59770
59771 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59772 Signed-off-by: Jon Loeliger <jdl@freescale.com>
59773
59774 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
59775 Author: Stefan Roese <sr@denx.de>
59776 Date: Fri Aug 10 10:42:25 2007 +0200
59777
59778 Coding style cleanup
59779
59780 Signed-off-by: Stefan Roese <sr@denx.de>
59781
59782 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
59783 Author: Dirk Behme <dirk.behme@googlemail.com>
59784 Date: Thu Aug 2 17:42:08 2007 +0200
59785
59786 Make use of generic 64bit division in nand_util.c
59787
59788 Use generic 64bit division in nand_util.c. This makes nand_util.c
59789 independent of any toolchain 64bit division.
59790
59791 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
59792
59793 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
59794 Author: Dirk Behme <dirk.behme@googlemail.com>
59795 Date: Thu Aug 2 17:41:14 2007 +0200
59796
59797 Move 64bit division from avr32 to generic lib
59798
59799 Move the 64bit division from lib_avr32 to lib_generic. With this, all
59800 boards can do_div/__div64_32 if needed, not only avr one. Code is put
59801 to lib_generic, so no larger memory footprint if not used. No code
59802 modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
59803
59804 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
59805
59806 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
59807 Author: Niklaus Giger <niklausgiger@gmx.ch>
59808 Date: Fri Jul 27 11:31:22 2007 +0200
59809
59810 Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
59811
59812 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59813
59814 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
59815 Author: Niklaus Giger <niklausgiger@gmx.ch>
59816 Date: Fri Jul 27 11:30:33 2007 +0200
59817
59818 Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
59819
59820 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59821
59822 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
59823 Author: Niklaus Giger <niklausgiger@gmx.ch>
59824 Date: Fri Jul 27 11:38:26 2007 +0200
59825
59826 Add PPC4xx-HCU4 and HCU5 boards: common files
59827
59828 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59829
59830 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
59831 Author: Niklaus Giger <niklausgiger@gmx.ch>
59832 Date: Fri Jul 27 11:28:44 2007 +0200
59833
59834 Add PPC4xx-HCU4 and HCU5 boards: make related
59835
59836 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59837
59838 commit 137fdd9f474ecb853efdace5200576308c67f18d
59839 Author: Niklaus Giger <niklausgiger@gmx.ch>
59840 Date: Fri Jul 27 11:28:03 2007 +0200
59841
59842 Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
59843
59844 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59845
59846 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
59847 Author: Niklaus Giger <niklausgiger@gmx.ch>
59848 Date: Fri Jul 27 11:27:15 2007 +0200
59849
59850 Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
59851
59852 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59853
59854 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
59855 Author: Niklaus Giger <niklausgiger@gmx.ch>
59856 Date: Fri Jul 27 11:25:31 2007 +0200
59857
59858 Add PPC4xx-HCU4 and HCU5 boards: READMEs
59859
59860 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59861
59862 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
59863 Author: Niklaus Giger <niklausgiger@gmx.ch>
59864 Date: Fri Jul 27 11:37:40 2007 +0200
59865
59866 Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
59867
59868 This series of patches adds support for 2 boards from Netstal Maschinen.
59869
59870 The HCU4 has a PPC405Gpr and
59871 the HCU5 has a PPC440EPX.
59872
59873 The HCU4 has a somehow complicated flash setup, as the booteprom is
59874 only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
59875 elegant solution.
59876
59877 The HCU5 has only a booteprom as the whole code will be downloaded from a
59878 different board which has HD, CD-ROM, etc and where all code is stored.
59879
59880 This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
59881 Thanks them a lot.
59882
59883 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59884
59885 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
59886 Author: Stefan Roese <sr@denx.de>
59887 Date: Fri Aug 10 08:42:55 2007 +0200
59888
59889 ppc4xx: Update lwmon5 POST configuration
59890
59891 Signed-off-by: Stefan Roese <sr@denx.de>
59892
59893 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
59894 Author: Yuri Tikhonov <yur@emcraft.com>
59895 Date: Fri Aug 10 08:25:22 2007 +0200
59896
59897 POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
59898
59899 The patch adds support for UART POST on ppc44x-based boards with no
59900 external serial clocks installed.
59901
59902 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59903 Acked-by: Stefan Roese <sr@denx.de>
59904
59905 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
59906 Author: Kim Phillips <kim.phillips@freescale.com>
59907 Date: Mon Aug 6 18:18:34 2007 -0500
59908
59909 mpc83xx: fix ITX[GP] O=builddir builds
59910
59911 make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'. Stop.
59912
59913 Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
59914 "BUILD_DIR=<some dir> ./MAKEALL ..."
59915
59916 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59917
59918 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
59919 Author: Dave Liu <r63238@freescale.com>
59920 Date: Wed Aug 1 15:00:59 2007 +0800
59921
59922 mpc83xx: Correct the README for DDR ECC
59923
59924 Update the README for DDR ECC, change the name
59925 to README.mpc83xx.ddrecc.
59926
59927 Signed-off-by: Dave Liu <daveliu@freescale.com>
59928 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59929
59930 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
59931 Author: Dave Liu <r63238@freescale.com>
59932 Date: Wed Aug 1 15:00:15 2007 +0800
59933
59934 mpc83xx: Consolidate the ECC support of 83xx
59935
59936 Remove the duplicated source code of ecc command on the <board>.c,
59937 for reused, move these code to cpu/mpc83xx directory.
59938
59939 Signed-off-by: Dave Liu <daveliu@freescale.com>
59940 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59941
59942 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
59943 Author: Dave Liu <r63238@freescale.com>
59944 Date: Sat Aug 4 13:37:39 2007 +0800
59945
59946 mpc83xx: Correct the burst length for DDR2 with 32 bits
59947
59948 The burst length should be 4 for DDR2 with 32 bits bus
59949
59950 Signed-off-by: Dave Liu <daveliu@freescale.com>
59951
59952 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
59953 Author: Kim Phillips <kim.phillips@freescale.com>
59954 Date: Wed Jul 25 19:25:33 2007 -0500
59955
59956 mpc83xx: add support for the MPC8323E RDB
59957
59958 MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
59959 five 10/100 ethernet ports connected via an ICPlus IP175C
59960 switch, one PCI slot, and serial. Features not supported
59961 in this patch are SD card interface, 2 USB ports, and the
59962 two phone ports.
59963
59964 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
59965 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59966
59967 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
59968 Author: Kim Phillips <kim.phillips@freescale.com>
59969 Date: Wed Jul 25 19:25:28 2007 -0500
59970
59971 mpc83xx: fixup generic pci for libfdt
59972
59973 add libfdt support to the generic 83xx pci code
59974
59975 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59976
59977 commit f57ac7a7b37109245b69db80839ebee26179966a
59978 Author: Kim Phillips <kim.phillips@freescale.com>
59979 Date: Wed Jul 25 19:25:22 2007 -0500
59980
59981 mpc83xx: fix 8360 and cpu functions to update fdt being passed
59982
59983 ..and not the global fdt. Rename local fdt vars to blob so as not to
59984 be confused with the global var with the same three-letter name.
59985
59986 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59987
59988 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
59989 Author: Jerry Van Baren <gvb.uboot@gmail.com>
59990 Date: Wed Jul 4 21:34:24 2007 -0400
59991
59992 mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
59993
59994 Several node strings were not correct (trailing slashes and properties
59995 in the strings)
59996 Added setting of the timebase-frequency.
59997 Improved error messages and use debug() instead of printf().
59998
59999 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
60000 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60001
60002 commit 26d02c9bbac1751c5e19294f000100b48d43a920
60003 Author: Jerry Van Baren <gvb.uboot@gmail.com>
60004 Date: Wed Jul 4 21:27:30 2007 -0400
60005
60006 mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
60007
60008 The new name matches more closely the kernel's name, which is also
60009 a much better description.
60010
60011 These are the mpc83xx changes made necessary by the function name change.
60012
60013 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
60014 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
60015 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60016
60017 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
60018 Author: Dave Liu <daveliu@freescale.com>
60019 Date: Mon Jun 25 10:41:56 2007 +0800
60020
60021 mpc83xx: Add support for the display of reset status
60022
60023 83xx processor family has many reset sources, such as
60024 power on reset, software hard reset, software soft reset,
60025 JTAG, bus monitor, software watchdog, check stop reset,
60026 external hard reset, external software reset.
60027 sometimes, to figure out the fault of system, we need to
60028 know the cause of reset early before the prompt of
60029 u-boot present.
60030
60031 Signed-off-by: Dave Liu <daveliu@freescale.com>
60032 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60033
60034 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
60035 Author: Dave Liu <daveliu@freescale.com>
60036 Date: Mon Jun 25 10:41:04 2007 +0800
60037
60038 mpc83xx: Fix the align bug of SDMA buffer
60039
60040 According to the latest user manual, the SDMA temporary
60041 buffer base address must be 4KB aligned.
60042
60043 Signed-off-by: Dave Liu <daveliu@freescale.com>
60044 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60045
60046 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
60047 Author: Dave Liu <daveliu@freescale.com>
60048 Date: Mon Jun 25 13:21:12 2007 +0800
60049
60050 mpc83xx: Revise the MPC8360EMDS readme doc
60051
60052 When the rev2.x silicon mount on the MPC8360EMDS baord,
60053 and if you are using the u-boot version after the commit
60054 3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
60055 to make the ethernet interface usable, we have to setup
60056 the jumpers correctly.
60057
60058 Signed-off-by: Dave Liu <daveliu@freescale.com>
60059 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60060
60061 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
60062 Author: Timur Tabi <timur@freescale.com>
60063 Date: Tue Jul 3 13:46:32 2007 -0500
60064
60065 FSL I2C driver programs the two I2C busses differently
60066
60067 The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
60068 The second I2C bus has its slave address programmed incorrectly and is
60069 missing a 5-us delay.
60070
60071 Signed-off-by: Timur Tabi <timur@freescale.com>
60072 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60073
60074 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
60075 Author: Timur Tabi <timur@freescale.com>
60076 Date: Tue Jul 3 13:04:34 2007 -0500
60077
60078 Update SCCR programming in cpu_init_f() to support all 83xx processors
60079
60080 Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
60081 bitfields for all 83xx processors. The code to update some bitfields was
60082 compiled only on some processors. Now, the bitfields are programmed as long
60083 as the corresponding CFG_SCCR option is defined in the board header file.
60084 This means that the board header file should not define any CFG_SCCR macros
60085 for bitfields that don't exist on that processor, otherwise the SCCR will be
60086 programmed incorrectly.
60087
60088 Signed-off-by: Timur Tabi <timur@freescale.com>
60089 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60090
60091 commit 9546266999f0b9b51372636614211b88d90f0f25
60092 Author: Martin Krause <martin.krause@tqs.de>
60093 Date: Fri Jun 22 13:04:22 2007 +0200
60094
60095 TQM834x: cleanup configuraton
60096
60097 Remove irritating #undef DEBUG
60098
60099 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60100 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60101
60102 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
60103 Author: david.saada <David.Saada@ecitele.com>
60104 Date: Mon Jun 18 09:09:53 2007 -0700
60105
60106 MPC83xx: Fix makefile to generate config.h file in the build directory
60107
60108 MPC83xx: Fix the Makefile config sections to generate the include/config.h
60109 file in the build directory instead of the source directory.
60110
60111 Signed-off-by: David Saada <david.saada@ecitele.com>
60112 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60113
60114 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
60115 Author: Lee Nipper <Lee.Nipper@freescale.com>
60116 Date: Thu Jun 14 20:07:33 2007 -0500
60117
60118 mpc83xx: Add support for 8360 silicon revision 2.1
60119
60120 This change adds 8360 silicon revision 2.1 support to u-boot.
60121
60122 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
60123 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60124
60125 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
60126 Author: Kumar Gala <galak@kernel.crashing.org>
60127 Date: Wed Aug 8 04:14:28 2007 -0500
60128
60129 Treat ppc64 host as ppc
60130
60131 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60132
60133 commit 0dc4279b08ff82472bec2e2c90858602459febe8
60134 Author: Jason Jin <Jason.jin@freescale.com>
60135 Date: Wed Aug 8 09:01:46 2007 +0800
60136
60137 Minor fix for bios emulator makefile
60138
60139 Add $(obj) to LIB avoiding objects be built in the source dir
60140
60141 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60142
60143 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
60144 Author: Jason Jin <Jason.jin@freescale.com>
60145 Date: Wed Aug 8 08:33:11 2007 +0800
60146
60147 Add CONFIG_BIOSEMU define to guard all the bios emulator code
60148
60149 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60150
60151 This patch fix the compile issue on the board that did not enable the bios emulator
60152
60153 commit ed8106433522f2ea8933e9808346860d061d7731
60154 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
60155 Date: Tue Jul 31 12:27:25 2007 -0500
60156
60157 tsec: fix multiple PHY support
60158
60159 The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
60160 broke multiple PHY support in tsec.c. This fixes it.
60161
60162 Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
60163 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60164
60165 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
60166 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
60167 Date: Thu Aug 9 09:08:18 2007 -0500
60168
60169 tsec: Allow Ten Bit Interface address to be configurable
60170
60171 Allow the address of the Ten Bit Interface (TBI) to be changed in the
60172 event of a conflict with another device.
60173
60174 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
60175
60176 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
60177 Author: Stefan Roese <sr@denx.de>
60178 Date: Wed Aug 8 09:54:26 2007 +0200
60179
60180 Coding style cleanup
60181
60182 Signed-off-by: Stefan Roese <sr@denx.de>
60183
60184 commit a41de1f0d373e09c782dea558385a06247111ba5
60185 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60186 Date: Sun Aug 5 05:15:18 2007 -0500
60187
60188 Port enabled for I2C signals and chipselects port configuration.
60189
60190 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60191
60192 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
60193 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60194 Date: Sun Aug 5 04:31:18 2007 -0500
60195
60196 Added NAND support
60197
60198 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60199
60200 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
60201 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60202 Date: Sun Aug 5 04:11:20 2007 -0500
60203
60204 Added I2C support
60205
60206 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60207
60208 commit 99c03c175d2689093176facf17c58ce2cb320001
60209 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60210 Date: Sun Aug 5 03:58:52 2007 -0500
60211
60212 Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
60213
60214 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60215
60216 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
60217 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60218 Date: Sun Aug 5 03:55:21 2007 -0500
60219
60220 Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
60221
60222 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60223
60224 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
60225 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60226 Date: Sun Aug 5 03:43:30 2007 -0500
60227
60228 Moved sync() from board file to include/asm-m68k/io.h
60229
60230 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60231
60232 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
60233 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60234 Date: Sun Aug 5 03:30:44 2007 -0500
60235
60236 Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
60237
60238 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60239
60240 commit 9998bd37ead85e93953559720710d3b0685c81e6
60241 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60242 Date: Sun Aug 5 03:19:10 2007 -0500
60243
60244 Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
60245
60246 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
60247
60248 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
60249 Author: Jason Jin <Jason.jin@freescale.com>
60250 Date: Tue Aug 7 16:17:06 2007 +0800
60251
60252 Add CONFIG_BIOSEMU define to guard all the bios emulator code
60253
60254 This patch fix the compile issue on the board that did not enable the bios emulator
60255
60256 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
60257 Author: Wolfgang Denk <wd@denx.de>
60258 Date: Tue Aug 7 16:02:13 2007 +0200
60259
60260 Fix missing brace error in fs/fat/fat.c
60261 [pointed out by Roderik Wildenburg]
60262
60263 Signed-off-by: Wolfgang Denk <wd@denx.de>
60264
60265 commit 706714d97a0d08d59eda4de2268c39f504688329
60266 Author: Michal Simek <monstr@monstr.eu>
60267 Date: Mon Aug 6 23:41:53 2007 +0200
60268
60269 [FIX] remove cute code
60270
60271 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
60272 Author: Michal Simek <monstr@monstr.eu>
60273 Date: Mon Aug 6 23:35:26 2007 +0200
60274
60275 [FIX] Fix romfs code
60276
60277 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
60278 Author: Michal Simek <monstr@monstr.eu>
60279 Date: Mon Aug 6 23:31:49 2007 +0200
60280
60281 [FIX] Coding style cleanup - Wolfgang's suggestions
60282
60283 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
60284 Author: Wolfgang Denk <wd@denx.de>
60285 Date: Mon Aug 6 23:21:05 2007 +0200
60286
60287 Fixed typo in README (pointed out by Martin Jost).
60288
60289 Signed-off-by: Wolfgang Denk <wd@denx.de>
60290
60291 commit 537223afa61f64480df31ce440a9cb386df4a814
60292 Author: Stefan Roese <sr@denx.de>
60293 Date: Mon Aug 6 21:10:17 2007 +0200
60294
60295 ppc4xx: Update AMCC Bamboo README doc/README.bamboo
60296
60297 As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
60298 here an updated Bamboo README.
60299
60300 Signed-off-by: Stefan Roese <sr@denx.de>
60301
60302 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
60303 Author: Wolfgang Denk <wd@denx.de>
60304 Date: Mon Aug 6 02:17:36 2007 +0200
60305
60306 Coding style cleanup. Update CHANGELOG.
60307
60308 Signed-off-by: Wolfgang Denk <wd@denx.de>
60309
60310 commit 221838cc7eb178370ff62aa05920a582e12ac322
60311 Author: Jason Jin <Jason.jin@freescale.com>
60312 Date: Tue Jul 10 09:03:22 2007 +0800
60313
60314 Remove the bios emulator from MAI board.
60315
60316 The bios emulator in the MAI board can not pass compile
60317 and have a lot of crap in it. remove it and will have a
60318 clean and small bios emulator in the drivers directory
60319 which can be uesed for every board.
60320
60321 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60322
60323 commit 5618332409bb96f4448d1712899369fc80c0b489
60324 Author: Jason Jin <Jason.jin@freescale.com>
60325 Date: Fri Jul 13 12:14:59 2007 +0800
60326
60327 Fix some compile issues for MAI board.
60328
60329 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60330
60331 commit 0f460a1ee148b648ee242c3157650287d4296260
60332 Author: Jason Jin <Jason.jin@freescale.com>
60333 Date: Fri Jul 13 12:14:58 2007 +0800
60334
60335 Configurations for ATI video card BIOS emulator
60336
60337 This patch add definition of the BIOS emulator and the ATI framebuffer
60338 driver for MPC8641HPCN board.
60339
60340 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60341 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
60342
60343 commit ece92f85053b8df613edcf05b26a416cbc3d629c
60344 Author: Jason Jin <Jason.jin@freescale.com>
60345 Date: Fri Jul 6 08:34:56 2007 +0800
60346
60347 This is a BIOS emulator, porting from SciTech for u-boot, mainly for
60348 ATI video card BIOS. and can be used for x86 code emulation by some
60349 modifications.
60350
60351 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60352
60353 commit 5072188acabde3178fac7f5a597150e6e74fd40c
60354 Author: Jason Jin <Jason.jin@freescale.com>
60355 Date: Fri Jul 6 08:33:33 2007 +0800
60356
60357 This is a framebuffer driver for ATI video card, can work for PCI9200,
60358 X300, X700, X800 ATI video cards.
60359
60360 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
60361 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60362
60363 commit 5728be389e65fd47f34b33c2596271eb4db751ae
60364 Author: Wolfgang Denk <wd@denx.de>
60365 Date: Mon Aug 6 01:01:49 2007 +0200
60366
60367 Coding style cleanup. Update CHANGELOG.
60368
60369 Signed-off-by: Wolfgang Denk <wd@denx.de>
60370
60371 commit 8092fef4c29b395958bb649647da7e3775731517
60372 Author: Martin Krause <Martin.Krause@tqs.de>
60373 Date: Tue Dec 12 14:26:01 2006 +0100
60374
60375 Add functions to list of exported functions
60376
60377 Additionally export the following fuctions (to make trab_config build again):
60378 - simple_strtol()
60379 - strcmp()
60380
60381 Also bump the ABI version to reflect this change
60382
60383 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60384
60385 commit 63cec5814fab5d2b1c86982327433807a5ac0249
60386 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
60387 Date: Thu Aug 2 14:09:49 2007 -0500
60388
60389 Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
60390
60391 All of the PCI/PCI-Express driver and initialization code that
60392 was in the MPC8641HPCN port has now been moved into the common
60393 drivers/fsl_pci_init.c. In a subsequent patch, this will be
60394 utilized by the 85xx ports as well.
60395
60396 Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
60397
60398 Also enable the second PCI-Express controller on 8641
60399 by getting its BATS and CFG_ setup right.
60400
60401 Fixed a u16 vendor compiler warning in AHCI driver too.
60402
60403 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
60404 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
60405 Signed-off-by: Jon Loeliger <jdl@freescale.com>
60406
60407 commit a274ca4f6d68830e7c916f897561cff8c4101c38
60408 Author: Michal Simek <monstr@monstr.eu>
60409 Date: Sun Aug 5 22:33:05 2007 +0200
60410
60411 [FIX] Coding style cleanup
60412
60413 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
60414 Author: Michal Simek <monstr@monstr.eu>
60415 Date: Sun Aug 5 16:13:31 2007 +0200
60416
60417 [FIX] Xilinx Uartlite driver
60418 Because PPC405 can use UARTLITE serial interface and
60419 Microblaze can use Uart16550 serial interface not only Uartlite.
60420
60421 commit 98889edd50aadf862071eb5664747ad0d568a20e
60422 Author: Michal Simek <monstr@monstr.eu>
60423 Date: Sun Aug 5 15:54:53 2007 +0200
60424
60425 [FIX] Change configuration for XUPV2P Microblaze board
60426
60427 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
60428 Author: Michal Simek <monstr@monstr.eu>
60429 Date: Sun Aug 5 15:53:50 2007 +0200
60430
60431 [PATCH] Added support for Xilinx Emac community driver
60432
60433 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
60434 Author: Bartlomiej Sieka <tur@semihalf.com>
60435 Date: Fri Aug 3 12:08:16 2007 +0200
60436
60437 cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
60438
60439 Add the ability for modules from the Schindler cm5200 family to use a
60440 single U-Boot image:
60441 - rename cm1_qp1 to cm5200
60442 - add run-time module detection
60443 - parametrize SDRAM configuration according to the module we are running on
60444
60445 Few minor, board-specific fixes included in this patch:
60446 - better MAC address handling
60447 - updated default environment ('update' command uses +{filesize} now)
60448 - improved error messages in the auto-update code
60449 - allow booting U-Boot from RAM (CFG_RAMBOOT)
60450
60451 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
60452 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
60453 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
60454
60455 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
60456 Author: Andy Fleming <afleming@freescale.com>
60457 Date: Fri Aug 3 04:05:25 2007 -0500
60458
60459 Add Marvell 1149 PHY support to the TSEC
60460
60461 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
60462 Author: Wolfgang Denk <wd@denx.de>
60463 Date: Thu Aug 2 21:27:46 2007 +0200
60464
60465 Coding style cleanup, update CHANGELOG
60466
60467 Signed-off-by: Wolfgang Denk <wd@denx.de>
60468
60469 commit 63e22764d2f8653f68888c667eb65b3996b52680
60470 Author: Wolfgang Denk <wd@denx.de>
60471 Date: Thu Aug 2 10:11:18 2007 +0200
60472
60473 Minor cleanup of <board>_nand build rules.
60474
60475 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
60476 Author: Stefan Roese <sr@denx.de>
60477 Date: Thu Aug 2 08:33:56 2007 +0200
60478
60479 ppc4xx: Code cleanup
60480
60481 Signed-off-by: Stefan Roese <sr@denx.de>
60482
60483 commit c92409812206ac67a7fa7aae298539a9c3804a46
60484 Author: Grzegorz Bernacki <gjb@semihalf.com>
60485 Date: Tue Jul 31 18:51:48 2007 +0200
60486
60487 [ppc440SPe] Graceful recovery from machine check during PCIe configuration
60488
60489 During config transactions on the PCIe bus an attempt to scan for a
60490 non-existent device can lead to a machine check exception with certain
60491 peripheral devices. In order to avoid crashing in such scenarios the
60492 instrumented versions of the config cycle read routines are introduced, so
60493 the exceptions fixups framework can gracefully recover.
60494
60495 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
60496 Acked-by: Rafal Jaworowski <raj@semihalf.com>
60497
60498 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
60499 Author: Rafal Jaworowski <raj@semihalf.com>
60500 Date: Tue Jul 31 18:19:54 2007 +0200
60501
60502 [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
60503
60504 This brings back separate settings for PCIe bus numbers depending on chip
60505 revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
60506 commit. 440SPe rev. A does NOT work properly with the same settings as for
60507 the rev. B (no devices are seen on the bus during enumeration).
60508
60509 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
60510
60511 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
60512 Author: Wolfgang Denk <wd@denx.de>
60513 Date: Thu Aug 2 00:48:45 2007 +0200
60514
60515 Fix build errors and warnings / code cleanup.
60516
60517 Signed-off-by: Wolfgang Denk <wd@denx.de>
60518
60519 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
60520 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
60521 Date: Tue Jul 31 10:24:56 2007 +0200
60522
60523 ppc4xx: Update AMCC Bamboo 440EP support
60524
60525 Changed storage type of cfg_simulate_spd_eeprom to const
60526 Changed storage type of gpio_tab to stack storage
60527 (Cannot access global data declarations in .bss until afer code relocation)
60528
60529 Improved SDRAM tests to catch problems where data is not uniquely addressable
60530 (e.g. incorrectly programmed SDRAM row or columns)
60531
60532 Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
60533 Fixed AM29LV320DT (OpCode Flash) sector map
60534
60535 Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
60536 Signed-off-by: Stefan Roese <sr@denx.de>
60537
60538 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
60539 Author: Stefan Roese <sr@denx.de>
60540 Date: Tue Jul 31 08:37:01 2007 +0200
60541
60542 ppc4xx: Update 440EPx lwmon5 board support
60543
60544 - Clear ECC status regs after ECC POST test
60545 - Set dcbz for ECC generation with caches enabled as default
60546 - Code cleanup
60547
60548 Signed-off-by: Stefan Roese <sr@denx.de>
60549
60550 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
60551 Author: Stefan Roese <sr@denx.de>
60552 Date: Mon Jul 30 11:04:57 2007 +0200
60553
60554 ppc4xx: Only print ECC related info when the error bis are set
60555
60556 Signed-off-by: Stefan Roese <sr@denx.de>
60557
60558 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
60559 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60560 Date: Fri Jul 27 16:44:31 2007 +0200
60561
60562 new FPGA image for PLU405 board
60563
60564 new FPGA image for PLU405 board with improved CompactFlash timing
60565
60566 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60567
60568 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
60569 Author: Rafal Jaworowski <raj@semihalf.com>
60570 Date: Fri Jul 27 14:43:59 2007 +0200
60571
60572 [ADS5121] Support for the ADS5121 board
60573
60574 The following MPC5121e subsystems are supported:
60575
60576 - low-level CPU init
60577 - NOR Boot Flash (common CFI driver)
60578 - DDR SDRAM
60579 - FEC
60580 - I2C
60581 - Watchdog
60582
60583 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
60584 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
60585 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
60586
60587 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
60588 Author: Rafal Jaworowski <raj@semihalf.com>
60589 Date: Fri Jul 27 14:22:04 2007 +0200
60590
60591 [PPC] Remove unused MSR_USER definition
60592
60593 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
60594
60595 commit d4024bb72dd81695ec099b2199eda0d27c623e62
60596 Author: John Otken <john@softadvances.com>
60597 Date: Thu Jul 26 17:49:11 2007 +0200
60598
60599 ppc4xx: Add support for AMCC 405EP Taihu board
60600
60601 Signed-off-by: John Otken <john@softadvances.com>
60602
60603 commit b66091de6c7390620312c2501db23d8391e7cabb
60604 Author: Anatolij Gustschin <agust@denx.de>
60605 Date: Thu Jul 26 15:08:01 2007 +0200
60606
60607 ppc4xx: lwmon5: Update Lime initialization
60608
60609 Change Lime SDRAM initialization to now support 100MHz and
60610 133MHz (if enabled). Also the framebuffer is initialized to
60611 display a blue rectangle with a white border.
60612
60613 Signed-off-by: Anatolij Gustschin <agust@denx.de>
60614 Signed-off-by: Stefan Roese <sr@denx.de>
60615
60616 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
60617 Author: Stefan Roese <sr@denx.de>
60618 Date: Tue Jul 24 09:52:52 2007 +0200
60619
60620 ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
60621
60622 The used Intel NOR FLASH chips have internally two dies, and are now
60623 treated as two seperate chips.
60624
60625 Signed-off-by: Stefan Roese <sr@denx.de>
60626
60627 commit aedf5bde179ecfbd0a96130d18996a96518b785f
60628 Author: Stefan Roese <sr@denx.de>
60629 Date: Tue Jul 24 07:20:09 2007 +0200
60630
60631 ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
60632
60633 As suggested by Hakan Eryigit, here an updated setup for the lwmon5
60634 interrupt controller.
60635
60636 Signed-off-by: Stefan Roese <sr@denx.de>
60637
60638 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
60639 Author: Stefan Roese <sr@denx.de>
60640 Date: Fri Jul 20 15:03:44 2007 +0200
60641
60642 ppc4xx: Fix bug with default GPIO output value
60643
60644 As spotted by Matthias Fuchs, the default output values for all GPIO1
60645 outputs were not setup correctly. This patch fixes this issue.
60646
60647 Signed-off-by: Stefan Roese <sr@denx.de>
60648
60649 commit 531e3e8b831f357056448fa573137d5fb37000fd
60650 Author: Pavel Kolesnikov <concord@emcraft.com>
60651 Date: Fri Jul 20 15:03:03 2007 +0200
60652
60653 POST: Add ECC POST for the lwmon5 board
60654
60655 This patch adds ECC Post test for the Lwmon5 board based
60656 on PPC440EPx to U-Boot.
60657
60658 Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
60659 Acked-by: Yuri Tikhonov <yur@emcraft.com>
60660 Acked-by: Stefan Roese <sr@denx.de>
60661
60662 commit cc3023b9f95d7ac959a764471a65001062aecf41
60663 Author: Rafal Jaworowski <raj@semihalf.com>
60664 Date: Thu Jul 19 17:12:28 2007 +0200
60665
60666 Fix breakage of 8xx boards from recent commit.
60667
60668 This patch fixes the negative consequences for 8xx of the recent
60669 "ppc4xx: Clean up 440 exceptions handling" commit.
60670
60671 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
60672
60673 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
60674 Author: Stefan Roese <sr@denx.de>
60675 Date: Mon Jul 16 13:11:12 2007 +0200
60676
60677 Coding style cleanup
60678
60679 Signed-off-by: Stefan Roese <sr@denx.de>
60680
60681 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
60682 Author: Stefan Roese <sr@denx.de>
60683 Date: Mon Jul 16 10:02:12 2007 +0200
60684
60685 ppc4xx: Code cleanup
60686
60687 Signed-off-by: Stefan Roese <sr@denx.de>
60688
60689 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
60690 Author: Stefan Roese <sr@denx.de>
60691 Date: Mon Jul 16 10:01:38 2007 +0200
60692
60693 ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
60694
60695 Signed-off-by: Stefan Roese <sr@denx.de>
60696
60697 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
60698 Author: Stefan Roese <sr@denx.de>
60699 Date: Mon Jul 16 10:00:43 2007 +0200
60700
60701 ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
60702
60703 The new boardspecific DDR2 controller configuration is used for the Yucca
60704 board. Now the Yucca board with 440SPe Rev. A chips is also supported.
60705
60706 Signed-off-by: Stefan Roese <sr@denx.de>
60707
60708 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
60709 Author: Stefan Roese <sr@denx.de>
60710 Date: Mon Jul 16 09:57:00 2007 +0200
60711
60712 ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
60713
60714 The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
60715 support non default, boardspecific DDR(2) controller configuration.
60716
60717 Signed-off-by: Stefan Roese <sr@denx.de>
60718
60719 commit 5743a9207a370b90f09b20ebd61167c806b937f3
60720 Author: Stefan Roese <sr@denx.de>
60721 Date: Mon Jul 16 08:53:51 2007 +0200
60722
60723 ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
60724
60725 The new function remove_tlb() can be used to remove the TLB's used to
60726 map a specific memory region. This is especially useful for the DDR(2)
60727 setup routines which configure the SDRAM area temporarily as a cached
60728 area (for speedup on auto-calibration and ECC generation) and later
60729 need this area uncached for normal usage.
60730
60731 Signed-off-by: Stefan Roese <sr@denx.de>
60732
60733 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
60734 Author: Michal Simek <monstr@monstr.eu>
60735 Date: Mon Jul 16 00:31:07 2007 +0200
60736
60737 [PATCH] Support for Xilinx EmacLite controller
60738
60739 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
60740 Author: Wolfgang Denk <wd@denx.de>
60741 Date: Sat Jul 14 22:51:02 2007 +0200
60742
60743 Update CHANGELOG
60744
60745 Signed-off-by: Wolfgang Denk <wd@denx.de>
60746
60747 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
60748 Author: Michal Simek <monstr@monstr.eu>
60749 Date: Sat Jul 14 13:11:28 2007 +0200
60750
60751 [FIX] support for simply measuring time
60752
60753 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
60754 Author: Michal Simek <monstr@monstr.eu>
60755 Date: Sat Jul 14 12:41:23 2007 +0200
60756
60757 [FS] Added support for ROMFS
60758
60759 commit 011595307731a7a67a7445d107c279d031e8ab97
60760 Author: Heiko Schocher <hs@pollux.denx.de>
60761 Date: Sat Jul 14 01:06:58 2007 +0200
60762
60763 [PCS440EP] - fix compile error, if BUILD_DIR is used
60764
60765 commit 5a2f1098d81ad58b309e5e558d0492643166a799
60766 Author: Michal Simek <monstr@monstr.eu>
60767 Date: Sat Jul 14 00:18:48 2007 +0200
60768
60769 [PATCH] Support time without timer
60770
60771 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
60772 Author: Michal Simek <monstr@monstr.eu>
60773 Date: Fri Jul 13 21:43:55 2007 +0200
60774
60775 [PATCH] Remove problem with disabled BARREL SHIFTER
60776
60777 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
60778 Author: Michal Simek <monstr@monstr.eu>
60779 Date: Fri Jul 13 21:41:44 2007 +0200
60780
60781 [FIX] correct help for rspr
60782
60783 commit fad63407154f46246ce80d53a9c669a44362ac67
60784 Author: Heiko Schocher <hs@pollux.denx.de>
60785 Date: Fri Jul 13 09:54:17 2007 +0200
60786
60787 make show_boot_progress () weak.
60788
60789 Signed-off-by: Heiko Schocher <hs@denx.de>
60790
60791 commit 907902472391b6ca1876ec300687562ecaf459b1
60792 Author: Heiko Schocher <hs@pollux.denx.de>
60793 Date: Fri Jul 13 08:26:05 2007 +0200
60794
60795 [PCS440EP] - The DIAG LEDs are now blinking, if an error occur
60796 - fix compile error, if BUILD_DIR is used
60797
60798 Signed-off-by: Heiko Schocher <hs@denx.de>
60799
60800 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
60801 Author: Stefan Roese <sr@denx.de>
60802 Date: Thu Jul 12 16:32:08 2007 +0200
60803
60804 ppc4xx: Change receive buffer handling in the 4xx emac driver
60805
60806 This change fixes a bug in the receive buffer handling, that
60807 could lead to problems upon high network traffic (broadcasts...).
60808
60809 Signed-off-by: Stefan Roese <sr@denx.de>
60810
60811 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
60812 Author: Wolfgang Denk <wd@denx.de>
60813 Date: Thu Jul 12 01:45:34 2007 +0200
60814
60815 Update CHANGELOG, minor coding style cleanup.
60816
60817 Signed-off-by: Wolfgang Denk <wd@denx.de>
60818
60819 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
60820 Author: Andy Fleming <afleming@freescale.com>
60821 Date: Fri Jun 8 16:41:18 2007 -0500
60822
60823 Remove erroneous errata code from Marvel 88E1111S driver
60824
60825 The Marvel 88E1111S driver for the TSEC was copied from the
60826 88E1101 driver, and included a fix for an erratum which does not
60827 exist on that part. Now it is removed
60828
60829 Signed-off-by: Andy Fleming <afleming@freescale.com>
60830
60831 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
60832 Author: Andy Fleming <afleming@freescale.com>
60833 Date: Tue Jun 5 16:38:44 2007 -0500
60834
60835 From: eran liberty <eran.liberty@gmail.com>
60836
60837 adds the reset register to 85xx immap
60838
60839 Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
60840 Signed-off-by: Andy Fleming <afleming@freescale.com>
60841
60842 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
60843 Author: Andy Fleming <afleming@freescale.com>
60844 Date: Thu May 10 17:50:01 2007 -0500
60845
60846 Polished the 85xx ADS config files
60847
60848 Made the boot commands use device trees by default.
60849 Also moved the ramdisk to 1000000 (I think the previous address
60850 was getting overridden during boot).
60851
60852 Signed-off-by: Andy Fleming <afleming@freescale.com>
60853
60854 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
60855 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
60856 Date: Wed May 9 11:03:32 2007 -0500
60857
60858 8544ds: Fix Makefile after moving pixis to board/freescale.
60859
60860 The OBJTREE != SRCTREE build scenario was broken.
60861 This fixes it.
60862
60863 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
60864 Signed-off-by: Jon Loeliger <jdl@freescale.com>
60865
60866 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
60867 Author: Andy Fleming <afleming@freescale.com>
60868 Date: Wed May 9 00:54:20 2007 -0500
60869
60870 tsec: Fix PHY code to match first driver
60871
60872 Jarrold Wen noticed that the generic PHY code always matches
60873 under the current implementation. Change it so the first match
60874 wins, and *only* unknown PHYs trigger the generic driver
60875
60876 Signed-off-by: Andy Fleming <afleming@freescale.com>
60877
60878 commit ccc091aac61a38cd998d575d92f7232e256d6312
60879 Author: Andy Fleming <afleming@freescale.com>
60880 Date: Tue May 8 17:27:43 2007 -0500
60881
60882 Add support for CPM device tree configuration to 8560 ADS
60883
60884 * Adds code to modify CPM frequencies
60885 * Cleans up the config file to #define TSEC and (for now) #undef FCC
60886 * Adds the MII command for all 8560 ADS configurations
60887 * Updates config file to provide convenience commands for booting
60888 with a device tree
60889
60890 Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
60891 Signed-off-by: Andy Fleming <afleming@freescale.com>
60892
60893 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
60894 Author: Andy Fleming <afleming@freescale.com>
60895 Date: Tue May 8 17:23:02 2007 -0500
60896
60897 Fix Marvell 88e1145 PHY init code
60898
60899 Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
60900 where the reset was being done after the errata code instead of
60901 before.
60902
60903 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
60904 Signed-off-by: Andy Fleming <afleming@freescale.com>
60905
60906 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
60907 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
60908 Date: Wed Jul 11 14:52:16 2007 -0500
60909
60910 Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
60911
60912 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
60913
60914 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
60915 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
60916 Date: Wed Jul 11 14:52:08 2007 -0500
60917
60918 pciauto setup bridge
60919
60920 The P2P bridge bus numbers programmed into the device are relative to
60921 hose->first_busno.
60922
60923 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
60924
60925 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
60926 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
60927 Date: Wed Jul 11 14:52:01 2007 -0500
60928
60929 Support PCIe extended config registers
60930
60931 FSL PCIe block has extended cfg registers in the 100 and 400 range.
60932 For example, to read the LTSSM register: pci display <busn>.0 404 1
60933
60934 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
60935
60936 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
60937 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
60938 Date: Wed Jul 11 14:51:48 2007 -0500
60939
60940 Minor improvements to drivers/pci_auto.c
60941
60942 - Make pciauto_{pre,post}scan_setup_bridge non-static
60943 - Added physical address display in debug messages.
60944
60945 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
60946
60947 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
60948 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
60949 Date: Wed Jul 11 14:51:35 2007 -0500
60950
60951 Start pci hose scan from hose->current_busno.
60952
60953 Ensure hose->current_busno is not less than first_busno. This fixes
60954 broken board code which leaves current_busno=0 when first_busno is
60955 greater than 0 for the cases with multiple controllers.
60956
60957 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
60958
60959 commit 3865b1fb7843a08ad49a6319a36415752276ff48
60960 Author: Stefan Roese <sr@denx.de>
60961 Date: Wed Jul 11 12:13:53 2007 +0200
60962
60963 Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
60964
60965 Signed-off-by: Stefan Roese <sr@denx.de>
60966
60967 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
60968 Author: Bartlomiej Sieka <tur@semihalf.com>
60969 Date: Wed Jul 11 20:11:07 2007 +0200
60970
60971 CM1.QP1: Support for the Schindler CM1.QP1 board.
60972
60973 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
60974 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
60975
60976 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
60977 Author: Heiko Schocher <hs@pollux.denx.de>
60978 Date: Wed Jul 11 18:39:11 2007 +0200
60979
60980 [PCS440EP] - Show on the DIAG LEDs, if the SHA1 check failed
60981 - now the Flash ST M29W040B is supported (not tested)
60982 - fix the "led" command
60983 - fix compile error, if BUILD_DIR is used
60984
60985 Signed-off-by: Heiko Schocher <hs@denx.de>
60986
60987 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
60988 Author: Stefan Roese <sr@denx.de>
60989 Date: Sun Jul 8 13:44:27 2007 +0200
60990
60991 Fix malloc problem introduced with the relocation fixup for the PPC platform
60992
60993 The relocation fixup didn't handle the malloc pointer initialization
60994 correctly. This patch fixes this problem. Tested successfully on 4xx.
60995 The relocation fixup patches for 4xx will follow soon.
60996
60997 Signed-off-by: Stefan Roese <sr@denx.de>
60998
60999 commit 0dca874db62718e41253659e60f3a1de7eb418ce
61000 Author: TsiChung <tcliew@Goku.(none)>
61001 Date: Tue Jul 10 15:45:43 2007 -0500
61002
61003 Cache update and added CFG_UNIFY_CACHE
61004
61005 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.
61006
61007 Signed-off-by: TsiChung <tcliew@Goku.(none)>
61008
61009 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
61010 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61011 Date: Thu Jul 5 23:36:16 2007 -0500
61012
61013 Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
61014
61015 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
61016
61017 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61018
61019 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
61020 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61021 Date: Thu Jul 5 23:31:25 2007 -0500
61022
61023 Update header files
61024
61025 Include immap.h and renamed mcfrtc.h to rtc.h
61026
61027 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61028
61029 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
61030 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61031 Date: Thu Jul 5 23:29:21 2007 -0500
61032
61033 Add mcffec_initialize()
61034
61035 Added mcffec_initialize() in eth_initialize()
61036
61037 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61038
61039 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
61040 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61041 Date: Thu Jul 5 23:27:40 2007 -0500
61042
61043 Update header file and clean up
61044
61045 Include immap.h
61046
61047 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61048
61049 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
61050 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61051 Date: Thu Jul 5 23:23:15 2007 -0500
61052
61053 New uart structure and defines
61054
61055 Seperated from mcfuart.h
61056
61057 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61058
61059 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
61060 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61061 Date: Thu Jul 5 23:22:31 2007 -0500
61062
61063 New timer structure and defines
61064
61065 Seperated from mcftimer.h
61066
61067 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61068
61069 commit e04acb2eba4782489417240eff76e20e176aec10
61070 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61071 Date: Thu Jul 5 23:21:09 2007 -0500
61072
61073 Rename mcfrtc to rtc
61074
61075 Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
61076
61077 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61078
61079 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
61080 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61081 Date: Thu Jul 5 23:17:36 2007 -0500
61082
61083 Rename mcfserial.c. Update include header
61084
61085 Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
61086
61087 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61088
61089 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
61090 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61091 Date: Thu Jul 5 23:13:58 2007 -0500
61092
61093 Header file update, clean up and cache handling
61094
61095 Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
61096
61097 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61098
61099 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
61100 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61101 Date: Thu Jul 5 23:10:40 2007 -0500
61102
61103 Create interrupts.c and modify Makefile
61104
61105 interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
61106
61107 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61108
61109 commit ddd104f1ed655eda50c06ba636237a83ed943f34
61110 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61111 Date: Thu Jul 5 23:06:55 2007 -0500
61112
61113 Enable Icache
61114
61115 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61116
61117 commit b9bf3de377b2bae70c983c9b97feae914999e735
61118 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61119 Date: Thu Jul 5 23:05:31 2007 -0500
61120
61121 Update header file and some clean up
61122
61123 Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
61124
61125 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61126
61127 commit 84a015b52ec820a5ae173717d78516de731c89c2
61128 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61129 Date: Thu Jul 5 23:03:28 2007 -0500
61130
61131 Update header file and enable icache
61132
61133 Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
61134
61135 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61136
61137 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
61138 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61139 Date: Thu Jul 5 23:01:22 2007 -0500
61140
61141 Update header file and removed interrupt_init()
61142
61143 Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
61144
61145 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61146
61147 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
61148 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61149 Date: Thu Jul 5 22:57:46 2007 -0500
61150
61151 Update for flash.o and mii.o
61152
61153 Removed flash.o and added mii.o
61154
61155 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61156
61157 commit c5ded275d839e4ff79f41718d50a835d989f57bc
61158 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61159 Date: Thu Jul 5 22:56:19 2007 -0500
61160
61161 MII functions calls.
61162
61163 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61164
61165 commit 427c814104560e29bda14955c67703245aaaa5b4
61166 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61167 Date: Thu Jul 5 22:54:42 2007 -0500
61168
61169 Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
61170
61171 The removed MII routines will be placed in mii.c.
61172
61173 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61174
61175 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
61176 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61177 Date: Thu Jul 5 22:51:05 2007 -0500
61178
61179 Duplicate code
61180
61181 There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
61182
61183 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61184
61185 commit 2744354a8437b8f78db178e30660215688bff570
61186 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61187 Date: Thu Jul 5 22:46:38 2007 -0500
61188
61189 Seperate old structure defines and new structure defines
61190
61191 Removed new uart structure and defines to uart.h
61192
61193 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61194
61195 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
61196 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61197 Date: Thu Jul 5 22:45:01 2007 -0500
61198
61199 Seperate old structure defines and new structure defines
61200
61201 New timer structure and defines will move to new timer.h
61202
61203 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61204
61205 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
61206 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61207 Date: Thu Jul 5 22:42:23 2007 -0500
61208
61209 Clean up
61210
61211 Removed whitespace
61212
61213 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61214
61215 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
61216 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61217 Date: Thu Jul 5 22:41:24 2007 -0500
61218
61219 Clean up
61220
61221 Replaced whitespace with tabs
61222
61223 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61224
61225 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
61226 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61227 Date: Thu Jul 5 22:39:07 2007 -0500
61228
61229 Create new header file and move peripherals base address from configs file to new header file.
61230
61231 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.
61232
61233 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61234
61235 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
61236 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61237 Date: Thu Jul 5 22:24:58 2007 -0500
61238
61239 Revert file mode
61240
61241 Changed MAKEALL file mode to executable, removed executable file mode from Makefile
61242
61243 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61244
61245 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
61246 Author: Jon Loeliger <jdl@freescale.com>
61247 Date: Tue Jul 10 11:19:50 2007 -0500
61248
61249 disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
61250
61251 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
61252 Those always evaluated TRUE, and thus were always compiled
61253 even when IDE really wasn't defined/wanted.
61254
61255 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61256
61257 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
61258 Author: Jon Loeliger <jdl@freescale.com>
61259 Date: Tue Jul 10 11:13:21 2007 -0500
61260
61261 drivers/: Remove lingering references to CFG_CMD_* symbols.
61262
61263 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
61264 Those always evaluated TRUE, and thus were always compiled
61265 even when IDE really wasn't defined/wanted.
61266
61267 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61268
61269 commit f40a7f3e3888b42a43674b099e5470022c8c544c
61270 Author: Jon Loeliger <jdl@freescale.com>
61271 Date: Tue Jul 10 11:07:56 2007 -0500
61272
61273 fs/: Remove lingering references to CFG_CMD_* symbols.
61274
61275 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
61276 Those always evaluated TRUE, and thus were always compiled
61277 even when IDE really wasn't defined/wanted.
61278
61279 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61280
61281 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
61282 Author: Jon Loeliger <jdl@freescale.com>
61283 Date: Tue Jul 10 11:05:02 2007 -0500
61284
61285 net/: Remove lingering references to CFG_CMD_* symbols.
61286
61287 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
61288 Those always evaluated TRUE, and thus were always compiled
61289 even when IDE really wasn't defined/wanted.
61290
61291 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61292
61293 commit 902531788376046da212afd1661cffb62f3daa1c
61294 Author: Jon Loeliger <jdl@freescale.com>
61295 Date: Tue Jul 10 11:02:44 2007 -0500
61296
61297 common/: Remove lingering references to CFG_CMD_* symbols.
61298
61299 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
61300 Those always evaluated TRUE, and thus were always compiled
61301 even when IDE really wasn't defined/wanted.
61302
61303 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61304
61305 commit d39b57415838c73fb0a37eca84de3c68ba990586
61306 Author: Jon Loeliger <jdl@freescale.com>
61307 Date: Tue Jul 10 10:48:22 2007 -0500
61308
61309 board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
61310
61311 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
61312 Those always evaluated TRUE, and thus were always compiled
61313 even when IDE really wasn't defined/wanted.
61314
61315 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61316
61317 commit 77a318545d57aefa844752465b94c7e09a3f26d0
61318 Author: Jon Loeliger <jdl@freescale.com>
61319 Date: Tue Jul 10 10:39:10 2007 -0500
61320
61321 board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
61322
61323 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
61324 Those always evaluated TRUE, and thus were always compiled
61325 even when IDE really wasn't defined/wanted.
61326
61327 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61328
61329 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
61330 Author: Jon Loeliger <jdl@freescale.com>
61331 Date: Tue Jul 10 10:27:39 2007 -0500
61332
61333 cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
61334
61335 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61336
61337 commit 079a136c3588814784561d6e4856970ee82d6e2a
61338 Author: Jon Loeliger <jdl@freescale.com>
61339 Date: Tue Jul 10 10:12:10 2007 -0500
61340
61341 include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
61342
61343 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
61344 used to be included but CONFIG_BOOTP_MASK was not defined.
61345
61346 Remove lingering references to CFG_CMD_* symbols.
61347
61348 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61349
61350 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
61351 Author: Jon Loeliger <jdl@freescale.com>
61352 Date: Tue Jul 10 09:38:02 2007 -0500
61353
61354 include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
61355
61356 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
61357 used to be included but CONFIG_BOOTP_MASK was not defined.
61358
61359 Remove lingering references to CFG_CMD_* symbols.
61360
61361 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61362
61363 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
61364 Author: Jon Loeliger <jdl@freescale.com>
61365 Date: Tue Jul 10 09:29:01 2007 -0500
61366
61367 include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
61368
61369 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
61370 used to be included but CONFIG_BOOTP_MASK was not defined.
61371
61372 Remove lingering references to CFG_CMD_* symbols.
61373
61374 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61375
61376 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
61377 Author: Jon Loeliger <jdl@freescale.com>
61378 Date: Tue Jul 10 09:22:23 2007 -0500
61379
61380 include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
61381
61382 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
61383 used to be included but CONFIG_BOOTP_MASK was not defined.
61384
61385 Remove lingering references to CFG_CMD_* symbols.
61386
61387 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61388
61389 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
61390 Author: Jon Loeliger <jdl@freescale.com>
61391 Date: Tue Jul 10 09:10:49 2007 -0500
61392
61393 include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
61394
61395 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
61396 used to be included but CONFIG_BOOTP_MASK was not defined.
61397
61398 Remove lingering references to CFG_CMD_* symbols.
61399
61400 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61401
61402 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
61403 Author: Jon Loeliger <jdl@freescale.com>
61404 Date: Tue Jul 10 09:02:57 2007 -0500
61405
61406 include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
61407
61408 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
61409 used to be included but CONFIG_BOOTP_MASK was not defined.
61410
61411 Remove lingering references to CFG_CMD_* symbols.
61412
61413 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61414
61415 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
61416 Author: Jon Loeliger <jdl@freescale.com>
61417 Date: Mon Jul 9 22:08:34 2007 -0500
61418
61419 Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
61420
61421 All of the choices for CONFIG_BOOTP_ are now documented in
61422 the README file. You must now individually select exactly
61423 the set that you want using a series of
61424 #define CONFIG_BOOTP_<x>
61425 statements in the board port config files now.
61426
61427 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61428
61429 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
61430 Author: Jon Loeliger <jdl@freescale.com>
61431 Date: Mon Jul 9 21:57:31 2007 -0500
61432
61433 include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
61434
61435 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61436
61437 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
61438 Author: Jon Loeliger <jdl@freescale.com>
61439 Date: Mon Jul 9 21:48:26 2007 -0500
61440
61441 include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
61442
61443 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61444
61445 commit 37d4bb70586659dedef1658ce1bed071be098aec
61446 Author: Jon Loeliger <jdl@freescale.com>
61447 Date: Mon Jul 9 21:38:02 2007 -0500
61448
61449 include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
61450
61451 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61452
61453 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
61454 Author: Jon Loeliger <jdl@freescale.com>
61455 Date: Mon Jul 9 21:31:24 2007 -0500
61456
61457 include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
61458
61459 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61460
61461 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
61462 Author: Jon Loeliger <jdl@freescale.com>
61463 Date: Mon Jul 9 21:24:19 2007 -0500
61464
61465 include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
61466
61467 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61468
61469 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
61470 Author: Jon Loeliger <jdl@freescale.com>
61471 Date: Mon Jul 9 21:16:53 2007 -0500
61472
61473 include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
61474
61475 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61476
61477 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
61478 Author: Jon Loeliger <jdl@freescale.com>
61479 Date: Mon Jul 9 19:12:30 2007 -0500
61480
61481 Retire CONFIG_COMMANDS finally.
61482 Strip old CFG_CMD_* symbols out.
61483
61484 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61485
61486 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
61487 Author: Jon Loeliger <jdl@freescale.com>
61488 Date: Mon Jul 9 19:10:03 2007 -0500
61489
61490 Update README.* to reference new CONFIG_CMD_* names now.
61491
61492 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61493
61494 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
61495 Author: Jon Loeliger <jdl@freescale.com>
61496 Date: Mon Jul 9 19:06:00 2007 -0500
61497
61498 cpu/m*: Remove obsolete references to CONFIG_COMMANDS
61499
61500 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61501
61502 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
61503 Author: Jon Loeliger <jdl@freescale.com>
61504 Date: Mon Jul 9 18:57:22 2007 -0500
61505
61506 cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
61507
61508 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61509
61510 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
61511 Author: Jon Loeliger <jdl@freescale.com>
61512 Date: Mon Jul 9 18:45:16 2007 -0500
61513
61514 board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
61515
61516 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61517
61518 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
61519 Author: Jon Loeliger <jdl@freescale.com>
61520 Date: Mon Jul 9 18:38:39 2007 -0500
61521
61522 board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
61523
61524 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61525
61526 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
61527 Author: Jon Loeliger <jdl@freescale.com>
61528 Date: Mon Jul 9 18:31:28 2007 -0500
61529
61530 board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
61531
61532 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61533
61534 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
61535 Author: Jon Loeliger <jdl@freescale.com>
61536 Date: Mon Jul 9 18:24:55 2007 -0500
61537
61538 board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
61539
61540 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61541
61542 commit fcec2eb93e126400009729328e797f12bc94f1fd
61543 Author: Jon Loeliger <jdl@freescale.com>
61544 Date: Mon Jul 9 18:19:09 2007 -0500
61545
61546 board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
61547
61548 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61549
61550 commit a593814f2be0c9cdc3133cd550b167b8a988328f
61551 Author: Jon Loeliger <jdl@freescale.com>
61552 Date: Mon Jul 9 18:10:50 2007 -0500
61553
61554 rtc/: Remove obsolete references to CONFIG_COMMANDS
61555
61556 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61557
61558 commit 67350568f9d46e66c21829f3513b3db0caeb948b
61559 Author: Jon Loeliger <jdl@freescale.com>
61560 Date: Mon Jul 9 18:05:38 2007 -0500
61561
61562 lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
61563
61564 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61565
61566 commit 7def6b34f910f08d7ef0a14646da067719237ca2
61567 Author: Jon Loeliger <jdl@freescale.com>
61568 Date: Mon Jul 9 18:02:11 2007 -0500
61569
61570 lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
61571
61572 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61573
61574 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
61575 Author: Jon Loeliger <jdl@freescale.com>
61576 Date: Mon Jul 9 17:56:50 2007 -0500
61577
61578 fs/: Remove obsolete references to CONFIG_COMMANDS
61579
61580 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61581
61582 commit c91898bbc505aff3e12a807af88e76da18efb7ee
61583 Author: Jon Loeliger <jdl@freescale.com>
61584 Date: Mon Jul 9 17:46:09 2007 -0500
61585
61586 tools/: Remove obsolete references to CONFIG_COMMANDS
61587
61588 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61589
61590 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
61591 Author: Jon Loeliger <jdl@freescale.com>
61592 Date: Mon Jul 9 17:45:14 2007 -0500
61593
61594 net/: Remove obsolete references to CONFIG_COMMANDS
61595
61596 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61597
61598 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
61599 Author: Jon Loeliger <jdl@freescale.com>
61600 Date: Mon Jul 9 17:39:42 2007 -0500
61601
61602 drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
61603
61604 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61605
61606 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
61607 Author: Jon Loeliger <jdl@freescale.com>
61608 Date: Mon Jul 9 17:30:01 2007 -0500
61609
61610 drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
61611
61612 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61613
61614 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
61615 Author: Jon Loeliger <jdl@freescale.com>
61616 Date: Mon Jul 9 17:22:37 2007 -0500
61617
61618 disk/: Remove obsolete references to CONFIG_COMMANDS
61619
61620 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61621
61622 commit 639221c76c88215bd55af83ad174fc30d1940f8f
61623 Author: Jon Loeliger <jdl@freescale.com>
61624 Date: Mon Jul 9 17:15:49 2007 -0500
61625
61626 include/: Remove obsolete references to CONFIG_COMMANDS
61627 Mostly removed from comments here.
61628
61629 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61630
61631 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
61632 Author: Wolfgang Denk <wd@denx.de>
61633 Date: Tue Jul 10 00:01:28 2007 +0200
61634
61635 Coding style cleanup; update CHANGELOG.
61636
61637 Signed-off-by: Wolfgang Denk <wd@denx.de>
61638
61639 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
61640 Author: Stefan Roese <sr@denx.de>
61641 Date: Mon Jul 9 11:00:24 2007 +0200
61642
61643 Small coding style cleanup
61644
61645 Signed-off-by: Stefan Roese <sr@denx.de>
61646
61647 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
61648 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61649 Date: Mon Jul 9 10:10:08 2007 +0200
61650
61651 Migrate esd 405EP boards to new NAND subsystem
61652
61653 Remove unused CFG_NAND_LEGACY define
61654
61655 These boards to not have NAND.
61656
61657 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61658
61659 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
61660 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61661 Date: Mon Jul 9 10:10:06 2007 +0200
61662
61663 Migrate esd 405EP boards to new NAND subsystem
61664
61665 Migrate esd 405EP boards to new NAND subsystem
61666
61667 -cleanup
61668 -use correct io accessors (in/out_be32())
61669
61670 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61671
61672 commit e09f7ab5749c345f924da272bea0521a73af5b11
61673 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61674 Date: Mon Jul 9 10:10:04 2007 +0200
61675
61676 Migrate esd 405EP boards to new NAND subsystem
61677
61678 This patch prepares the migration from the legacy NAND driver
61679 to U-Boot's new NAND subsystem for esd boards.
61680
61681 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61682
61683 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
61684 Author: Jon Loeliger <jdl@freescale.com>
61685 Date: Sun Jul 8 18:10:08 2007 -0500
61686
61687 common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
61688
61689 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61690
61691 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
61692 Author: Jon Loeliger <jdl@freescale.com>
61693 Date: Sun Jul 8 18:05:39 2007 -0500
61694
61695 common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
61696
61697 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61698
61699 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
61700 Author: Jon Loeliger <jdl@freescale.com>
61701 Date: Sun Jul 8 18:02:23 2007 -0500
61702
61703 common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
61704
61705 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61706
61707 commit baa26db4113679b80970ff447d91cc10217742a6
61708 Author: Jon Loeliger <jdl@freescale.com>
61709 Date: Sun Jul 8 17:51:39 2007 -0500
61710
61711 common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
61712
61713 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61714
61715 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
61716 Author: Jon Loeliger <jdl@freescale.com>
61717 Date: Sun Jul 8 17:02:01 2007 -0500
61718
61719 Clear up confusion over the CMD_POST and POST_DIAG mess.
61720
61721 For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
61722 when it really means just CONFIG_CMD_DIAG. There is no CMD_POST.
61723 Clear this mess up some.
61724
61725 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61726
61727 commit b3631487105a57ab7cbadfc26efbaf9676275018
61728 Author: Jon Loeliger <jdl@freescale.com>
61729 Date: Sun Jul 8 15:45:08 2007 -0500
61730
61731 Remove references to the old cmd_confdefs.h include file.
61732
61733 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61734
61735 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
61736 Author: Jon Loeliger <jdl@freescale.com>
61737 Date: Sun Jul 8 15:42:59 2007 -0500
61738
61739 include/configs: Catch some CONFIG_CMD_* conversion stragglers.
61740
61741 Use new CONFIG_CMD_* in lwmon5.h board config file.
61742 Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
61743
61744 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61745
61746 commit a5562901661bd428f7e5feb333f796372cb81019
61747 Author: Jon Loeliger <jdl@freescale.com>
61748 Date: Sun Jul 8 15:31:57 2007 -0500
61749
61750 include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
61751
61752 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61753
61754 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
61755 Author: Jon Loeliger <jdl@freescale.com>
61756 Date: Sun Jul 8 15:02:44 2007 -0500
61757
61758 include/configs: Use new CONFIG_CMD_* in various S* named board config files.
61759
61760 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61761
61762 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
61763 Author: Jon Loeliger <jdl@freescale.com>
61764 Date: Sun Jul 8 15:12:40 2007 -0500
61765
61766 include/configs: Use new CONFIG_CMD_* in various R* named board config files.
61767
61768 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61769
61770 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
61771 Author: Jon Loeliger <jdl@freescale.com>
61772 Date: Sun Jul 8 14:55:07 2007 -0500
61773
61774 include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
61775
61776 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61777
61778 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
61779 Author: Jon Loeliger <jdl@freescale.com>
61780 Date: Sun Jul 8 14:49:44 2007 -0500
61781
61782 include/configs: Use new CONFIG_CMD_* in various P* named board config files.
61783
61784 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61785
61786 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
61787 Author: Jon Loeliger <jdl@freescale.com>
61788 Date: Sun Jul 8 14:21:43 2007 -0500
61789
61790 include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
61791
61792 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61793
61794 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
61795 Author: Jon Loeliger <jdl@freescale.com>
61796 Date: Sun Jul 8 14:14:17 2007 -0500
61797
61798 include/configs: Use new CONFIG_CMD_* in various M* named board config files.
61799
61800 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61801
61802 commit 348f258f24253433e4a2302a0bbceb6740a67246
61803 Author: Jon Loeliger <jdl@freescale.com>
61804 Date: Sun Jul 8 13:46:18 2007 -0500
61805
61806 include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
61807
61808 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61809
61810 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
61811 Author: Jon Loeliger <jdl@freescale.com>
61812 Date: Sun Jul 8 10:09:35 2007 -0500
61813
61814 include/configs: Use new CONFIG_CMD_* in various H* named board config files.
61815
61816 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61817
61818 commit 60a0876b5106b34220e459c208bbf648073306c0
61819 Author: Jon Loeliger <jdl@freescale.com>
61820 Date: Sat Jul 7 21:04:26 2007 -0500
61821
61822 include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
61823
61824 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61825
61826 commit dcaa71562826a2466e894c868d132509dcda8444
61827 Author: Jon Loeliger <jdl@freescale.com>
61828 Date: Sat Jul 7 20:56:05 2007 -0500
61829
61830 include/configs: Use new CONFIG_CMD_* in various E* named board config files.
61831
61832 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61833
61834 commit 3c3227f3c737502311b25b72084573901cbbf17d
61835 Author: Jon Loeliger <jdl@freescale.com>
61836 Date: Sat Jul 7 20:40:43 2007 -0500
61837
61838 include/configs: Use new CONFIG_CMD_* in various D* named board config files.
61839
61840 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61841
61842 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
61843 Author: Jon Loeliger <jdl@freescale.com>
61844 Date: Thu Jul 5 19:52:35 2007 -0500
61845
61846 include/configs: Use new CONFIG_CMD_* in various C* named board config files.
61847
61848 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61849
61850 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
61851 Author: Jon Loeliger <jdl@freescale.com>
61852 Date: Thu Jul 5 19:32:07 2007 -0500
61853
61854 include/configs: Use new CONFIG_CMD_* in various B* named board config files.
61855
61856 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61857
61858 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
61859 Author: Jon Loeliger <jdl@freescale.com>
61860 Date: Thu Jul 5 19:13:52 2007 -0500
61861
61862 include/configs: Use new CONFIG_CMD_* in various A* named board config files.
61863
61864 Since ADS860.h includes "board/fads/fads.h" with ramifications
61865 on the CONFIG_COMMAND treatment, it too has to be adjusted to
61866 exclude already configured commands in this same commit.
61867
61868 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61869
61870 commit 10e038932f22ee80ebd53de312531e70e6590a2f
61871 Author: Thomas Knobloch <knobloch@siemens.com>
61872 Date: Fri Jul 6 14:58:39 2007 +0200
61873
61874 [NAND] Bad block skipping for command nboot
61875
61876 The old implementation of command nboot does not support reading the image from
61877 NAND flash with skipping of bad blocks. The patch implements a new version of
61878 the nboot command: by calling nboot.jffs2 from the u-boot command line the
61879 command will load the image from NAND flash with respect to bad blocks (by using
61880 nand_read_opts()). This is similar to e.g. the NAND read command: "nand
61881 read.jffs2 ...".
61882
61883 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
61884 Signed-off-by: Stefan Roese <sr@denx.de>
61885
61886 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
61887 Author: Stefan Roese <sr@denx.de>
61888 Date: Fri Jul 6 12:26:51 2007 +0200
61889
61890 ppc4xx: Update lwmon5 default environment
61891
61892 Signed-off-by: Stefan Roese <sr@denx.de>
61893
61894 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
61895 Author: Stefan Roese <sr@denx.de>
61896 Date: Fri Jul 6 11:48:24 2007 +0200
61897
61898 ppc4xx: Update lwmon5 board
61899
61900 Add unlock=yes environment variable to default variables to unlock
61901 the CFI flash by default.
61902
61903 Signed-off-by: Stefan Roese <sr@denx.de>
61904
61905 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
61906 Author: Stefan Roese <sr@denx.de>
61907 Date: Fri Jul 6 09:45:47 2007 +0200
61908
61909 Fix problem with get/setdcr commands introduced by cfg patches
61910
61911 Signed-off-by: Stefan Roese <sr@denx.de>
61912
61913 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
61914 Author: Wolfgang Denk <wd@denx.de>
61915 Date: Fri Jul 6 02:50:19 2007 +0200
61916
61917 Code cleanup and default config update for STC GP3 SSA board.
61918
61919 Signed-off-by: Wolfgang Denk <wd@denx.de>
61920
61921 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
61922 Author: Wolfgang Denk <wd@denx.de>
61923 Date: Thu Jul 5 17:56:27 2007 +0200
61924
61925 Fixing some typos etc. introduced mainly by cfg patches.
61926
61927 Signed-off-by: Wolfgang Denk <wd@denx.de>
61928
61929 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
61930 Author: Wolfgang Denk <wd@denx.de>
61931 Date: Thu Jul 5 11:12:16 2007 +0200
61932
61933 Minor coding style cleanup. Update CHANGELOG.
61934
61935 commit dca3b3d6d6396b67e5e84af53452164923c73443
61936 Author: Jon Loeliger <jdl@jdl.com>
61937 Date: Wed Jul 4 22:33:46 2007 -0500
61938
61939 include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
61940
61941 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61942
61943 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
61944 Author: Jon Loeliger <jdl@jdl.com>
61945 Date: Wed Jul 4 22:33:38 2007 -0500
61946
61947 include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
61948
61949 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61950
61951 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
61952 Author: Jon Loeliger <jdl@jdl.com>
61953 Date: Wed Jul 4 22:33:30 2007 -0500
61954
61955 include/configs: Use new CONFIG_CMD_* in various s* named board config files.
61956
61957 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61958
61959 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
61960 Author: Jon Loeliger <jdl@jdl.com>
61961 Date: Wed Jul 4 22:33:23 2007 -0500
61962
61963 include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
61964
61965 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61966
61967 commit 26a34560d56a9df5bc2ae23525d9229736134757
61968 Author: Jon Loeliger <jdl@jdl.com>
61969 Date: Wed Jul 4 22:33:17 2007 -0500
61970
61971 include/configs: Use new CONFIG_CMD_* in various p* named board config files.
61972
61973 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61974
61975 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
61976 Author: Jon Loeliger <jdl@jdl.com>
61977 Date: Wed Jul 4 22:33:13 2007 -0500
61978
61979 include/configs: Use new CONFIG_CMD_* in various o* named board config files.
61980
61981 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61982
61983 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
61984 Author: Jon Loeliger <jdl@jdl.com>
61985 Date: Wed Jul 4 22:33:07 2007 -0500
61986
61987 include/configs: Use new CONFIG_CMD_* in various n* named board config files.
61988
61989 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61990
61991 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
61992 Author: Jon Loeliger <jdl@jdl.com>
61993 Date: Wed Jul 4 22:33:01 2007 -0500
61994
61995 include/configs: Use new CONFIG_CMD_* in various m* named board config files.
61996
61997 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61998
61999 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
62000 Author: Jon Loeliger <jdl@jdl.com>
62001 Date: Wed Jul 4 22:32:57 2007 -0500
62002
62003 include/configs: Use new CONFIG_CMD_* in various l* named board config files.
62004
62005 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62006
62007 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
62008 Author: Jon Loeliger <jdl@jdl.com>
62009 Date: Wed Jul 4 22:32:51 2007 -0500
62010
62011 include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
62012
62013 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62014
62015 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
62016 Author: Jon Loeliger <jdl@jdl.com>
62017 Date: Wed Jul 4 22:32:32 2007 -0500
62018
62019 include/configs: Use new CONFIG_CMD_* in various i* named board config files.
62020
62021 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62022
62023 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
62024 Author: Jon Loeliger <jdl@jdl.com>
62025 Date: Wed Jul 4 22:32:25 2007 -0500
62026
62027 include/configs: Use new CONFIG_CMD_* in various h* named board config files.
62028
62029 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62030
62031 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
62032 Author: Jon Loeliger <jdl@jdl.com>
62033 Date: Wed Jul 4 22:32:19 2007 -0500
62034
62035 include/configs: Use new CONFIG_CMD_* in various g* named board config files.
62036
62037 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62038
62039 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
62040 Author: Jon Loeliger <jdl@jdl.com>
62041 Date: Wed Jul 4 22:32:10 2007 -0500
62042
62043 include/configs: Use new CONFIG_CMD_* in various e* named board config files.
62044
62045 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62046
62047 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
62048 Author: Jon Loeliger <jdl@jdl.com>
62049 Date: Wed Jul 4 22:32:03 2007 -0500
62050
62051 include/configs: Use new CONFIG_CMD_* in various d* named board config files.
62052
62053 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62054
62055 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
62056 Author: Jon Loeliger <jdl@jdl.com>
62057 Date: Wed Jul 4 22:31:56 2007 -0500
62058
62059 include/configs: Use new CONFIG_CMD_* in various c* named board config files.
62060
62061 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62062
62063 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
62064 Author: Jon Loeliger <jdl@jdl.com>
62065 Date: Wed Jul 4 22:31:49 2007 -0500
62066
62067 include/configs: Use new CONFIG_CMD_* in various b* named board config files.
62068
62069 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62070
62071 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
62072 Author: Jon Loeliger <jdl@jdl.com>
62073 Date: Wed Jul 4 22:31:42 2007 -0500
62074
62075 include/configs: Use new CONFIG_CMD_* in various a* named board config files.
62076
62077 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62078
62079 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
62080 Author: Jon Loeliger <jdl@jdl.com>
62081 Date: Wed Jul 4 22:31:35 2007 -0500
62082
62083 include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
62084
62085 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62086
62087 commit d794cfefead5fc177cf4f41164e80382e9c9484a
62088 Author: Jon Loeliger <jdl@jdl.com>
62089 Date: Wed Jul 4 22:31:15 2007 -0500
62090
62091 include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
62092
62093 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62094
62095 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
62096 Author: Jon Loeliger <jdl@jdl.com>
62097 Date: Wed Jul 4 22:31:07 2007 -0500
62098
62099 include/configs: Use new CONFIG_CMD_* in STx board config files.
62100
62101 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62102
62103 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
62104 Author: Jon Loeliger <jdl@jdl.com>
62105 Date: Wed Jul 4 22:30:58 2007 -0500
62106
62107 include/configs: Use new CONFIG_CMD_* in sbc* board config files.
62108
62109 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62110
62111 commit 2694690e285acaa34922f55f4b5ae030da60c55a
62112 Author: Jon Loeliger <jdl@jdl.com>
62113 Date: Wed Jul 4 22:30:50 2007 -0500
62114
62115 include/configs: Use new CONFIG_CMD_* in TQM board config files.
62116
62117 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62118
62119 commit 1cc4c458329765b58e584a19821e796b3c10e976
62120 Author: Jon Loeliger <jdl@jdl.com>
62121 Date: Wed Jul 4 22:30:28 2007 -0500
62122
62123 include/configs: Use new CONFIG_CMD_* in 82xx board config files.
62124
62125 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62126
62127 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
62128 Author: Jon Loeliger <jdl@jdl.com>
62129 Date: Wed Jul 4 22:30:06 2007 -0500
62130
62131 include/configs: Use new CONFIG_CMD_* in 83xx board config files.
62132
62133 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62134
62135 commit b44896215a09c60fa40cae906f7ed207bbc2c492
62136 Author: Sergei Poselenov <sposelenov@emcraft.com>
62137 Date: Thu Jul 5 08:17:37 2007 +0200
62138
62139 Merged POST framework with the current TOT.
62140
62141 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
62142
62143 commit b24629fa377214d63bb40d1360e354b6d3e4af56
62144 Author: Jon Loeliger <jdl@jdl.com>
62145 Date: Wed Jun 13 13:23:15 2007 -0500
62146
62147 mpc86xx: Remove old CFG_CMD_* references.
62148
62149 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62150
62151 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
62152 Author: Jon Loeliger <jdl@jdl.com>
62153 Date: Wed Jun 13 13:22:54 2007 -0500
62154
62155 Add MPC8568MDS to MAKEALL 85xx target.
62156
62157 It was missing from the original port submission.
62158
62159 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62160
62161 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
62162 Author: Jon Loeliger <jdl@jdl.com>
62163 Date: Wed Jun 13 13:22:08 2007 -0500
62164
62165 include/configs: Use new CONFIG_CMD_* in 85xx board config files.
62166
62167 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62168
62169 commit 56b304ac2091689506088a9ae67f63fd6300cf16
62170 Author: Jon Loeliger <jdl@jdl.com>
62171 Date: Wed Jun 13 13:21:37 2007 -0500
62172
62173 Fix #if typo in CONFIG_CMD_* changes.
62174
62175 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62176
62177 commit f780b83316d9af1f61d71cc88b1917b387b9b995
62178 Author: Niklaus Giger <niklausgiger@gmx.ch>
62179 Date: Wed Jun 27 18:11:38 2007 +0200
62180
62181 resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
62182
62183 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
62184
62185 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
62186 Author: Stefan Roese <sr@denx.de>
62187 Date: Wed Jul 4 10:06:30 2007 +0200
62188
62189 ppc4xx: Update lwmon5 board
62190
62191 - Add optional ECC generation routine to preserve existing
62192 RAM values. This is needed for the Linux log-buffer support
62193 - Add optional DDR2 setup with CL=4
62194 - GPIO50 not used anymore
62195 - Lime register setup added
62196
62197 Signed-off-by: Stefan Roese <sr@denx.de>
62198
62199 commit 6810a34677dbc446334f5e451f1682426dd33b49
62200 Author: Grant Likely <grant.likely@secretlab.ca>
62201 Date: Tue Jul 3 00:17:28 2007 -0600
62202
62203 Fix Makefile to use $(MKCONFIG) macro for all board ports
62204
62205 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62206
62207 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
62208 Author: Grant Likely <grant.likely@secretlab.ca>
62209 Date: Tue Jul 3 00:17:28 2007 -0600
62210
62211 Fix Makefile to use $(MKCONFIG) macro for all board ports
62212
62213 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62214
62215 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
62216 Author: Grant Likely <grant.likely@secretlab.ca>
62217 Date: Tue Jul 3 00:34:49 2007 -0600
62218
62219 Correct fixup relocation for mpc83xx
62220
62221 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62222
62223 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
62224 Author: Grant Likely <grant.likely@secretlab.ca>
62225 Date: Tue Jul 3 00:34:44 2007 -0600
62226
62227 Correct fixup relocation for mpc8260
62228
62229 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62230
62231 commit f3a52fe05923935db86985daf9438e2f70ac39aa
62232 Author: Grant Likely <grant.likely@secretlab.ca>
62233 Date: Tue Jul 3 00:34:39 2007 -0600
62234
62235 Correct fixup relocation for mpc824x
62236
62237 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62238
62239 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
62240 Author: Grant Likely <grant.likely@secretlab.ca>
62241 Date: Tue Jul 3 00:34:34 2007 -0600
62242
62243 Correct fixup relocation for mpc8220
62244
62245 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62246
62247 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
62248 Author: Grant Likely <grant.likely@secretlab.ca>
62249 Date: Tue Jul 3 00:34:29 2007 -0600
62250
62251 Correct fixup relocation for MPC5xxx
62252
62253 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62254
62255 commit 3649cd99ba815b6601868735765602f00ef3692b
62256 Author: Grant Likely <grant.likely@secretlab.ca>
62257 Date: Tue Jul 3 00:34:24 2007 -0600
62258
62259 Correct relocation fixup for mpc5xx
62260
62261 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62262
62263 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
62264 Author: Grant Likely <grant.likely@secretlab.ca>
62265 Date: Tue Jul 3 00:34:19 2007 -0600
62266
62267 Don't set gd->reloc_off if relocation of .fixup works correctly
62268
62269 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62270
62271 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
62272 Author: Grant Likely <grant.likely@secretlab.ca>
62273 Date: Tue Jul 3 00:34:14 2007 -0600
62274
62275 Remove obsolete mpc83xx linker scripts
62276
62277 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62278
62279 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
62280 Author: Grant Likely <grant.likely@secretlab.ca>
62281 Date: Tue Jul 3 00:34:09 2007 -0600
62282
62283 Consolidate mpc8260 linker scripts
62284
62285 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62286
62287 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
62288 Author: Grant Likely <grant.likely@secretlab.ca>
62289 Date: Tue Jul 3 00:34:04 2007 -0600
62290
62291 Remove obsolete mpc824x linker scripts
62292
62293 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62294
62295 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
62296 Author: Grant Likely <grant.likely@secretlab.ca>
62297 Date: Tue Jul 3 00:33:59 2007 -0600
62298
62299 Remove obsolete mpc824x linker scripts (3 of 4)
62300
62301 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62302
62303 commit a71c084f3ac7fedf144537db2b2da47323068833
62304 Author: Grant Likely <grant.likely@secretlab.ca>
62305 Date: Tue Jul 3 00:33:53 2007 -0600
62306
62307 Remove obsolete mpc824x linker scripts (2 of 4)
62308
62309 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62310
62311 commit f670a15468d1365241d40022b9408e1004181f5e
62312 Author: Grant Likely <grant.likely@secretlab.ca>
62313 Date: Tue Jul 3 00:33:48 2007 -0600
62314
62315 Remove obsolete mpc824x linker scripts (1 of 4)
62316
62317 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62318
62319 commit 09555bd45a04c0e54f172528d21bc18896550d28
62320 Author: Grant Likely <grant.likely@secretlab.ca>
62321 Date: Tue Jul 3 00:33:43 2007 -0600
62322
62323 Remove obsolete mpc8220 linker scripts
62324
62325 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62326
62327 commit 5efb992f046e51225c93d52f80fecbe433abd789
62328 Author: Grant Likely <grant.likely@secretlab.ca>
62329 Date: Tue Jul 3 00:33:38 2007 -0600
62330
62331 Remove obsolete mpc5xxx linker scripts (3 of 3)
62332
62333 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62334
62335 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
62336 Author: Grant Likely <grant.likely@secretlab.ca>
62337 Date: Tue Jul 3 00:33:33 2007 -0600
62338
62339 Remove obsolete mpc5xxx linker scripts (2 of 3)
62340
62341 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62342
62343 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
62344 Author: Grant Likely <grant.likely@secretlab.ca>
62345 Date: Tue Jul 3 00:33:28 2007 -0600
62346
62347 Remove obsolete mpc5xxx linker scripts (1 of 3)
62348
62349 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62350
62351 commit b7d8e05f8675249b5f208aa73babeed384a4519d
62352 Author: Grant Likely <grant.likely@secretlab.ca>
62353 Date: Tue Jul 3 00:33:23 2007 -0600
62354
62355 Remove obsolete mpc5xx linker scripts
62356
62357 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62358
62359 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
62360 Author: Grant Likely <grant.likely@secretlab.ca>
62361 Date: Tue Jul 3 00:33:18 2007 -0600
62362
62363 Consolidate mpc83xx linker scripts
62364
62365 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62366
62367 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
62368 Author: Grant Likely <grant.likely@secretlab.ca>
62369 Date: Tue Jul 3 00:33:13 2007 -0600
62370
62371 Consolidate mpc8260 linker scripts
62372
62373 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62374
62375 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
62376 Author: Grant Likely <grant.likely@secretlab.ca>
62377 Date: Tue Jul 3 00:33:08 2007 -0600
62378
62379 Consolidate mpc824x linker scripts
62380
62381 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62382
62383 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
62384 Author: Grant Likely <grant.likely@secretlab.ca>
62385 Date: Tue Jul 3 00:33:03 2007 -0600
62386
62387 Consolidate mpc8220 linker scripts
62388
62389 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62390
62391 commit d181c9a15cd41863fe24840d17848429f27d3c8c
62392 Author: Grant Likely <grant.likely@secretlab.ca>
62393 Date: Tue Jul 3 00:32:58 2007 -0600
62394
62395 Consolidate mpc5xxx linker scripts
62396
62397 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62398
62399 commit 287ac924adb7291bebe5086652a362a30ab28b13
62400 Author: Grant Likely <grant.likely@secretlab.ca>
62401 Date: Tue Jul 3 00:32:53 2007 -0600
62402
62403 Consolidate mpc5xx linker scripts
62404
62405 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62406
62407 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
62408 Author: Wolfgang Denk <wd@denx.de>
62409 Date: Wed Jul 4 00:43:53 2007 +0200
62410
62411 Fix a few file permission problems.
62412
62413 Signed-off-by: Wolfgang Denk <wd@denx.de>
62414
62415 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
62416 Author: Wolfgang Denk <wd@denx.de>
62417 Date: Wed Jul 4 00:38:38 2007 +0200
62418
62419 Minor coding style cleanup. Rebuild CHANGELOG file.
62420
62421 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
62422 Author: Jon Loeliger <jdl@jdl.com>
62423 Date: Mon Jun 11 19:03:44 2007 -0500
62424
62425 configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
62426
62427 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62428
62429 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
62430 Author: Jon Loeliger <jdl@jdl.com>
62431 Date: Mon Jun 11 19:03:39 2007 -0500
62432
62433 README: Rewrite command line config to use CONFIG_CMD_* names.
62434
62435 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62436
62437 commit 72a074cec68e5bad60d63206c050974e08afd804
62438 Author: Jon Loeliger <jdl@jdl.com>
62439 Date: Mon Jun 11 19:03:34 2007 -0500
62440
62441 include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62442
62443 This is a compatibility step that allows both the older form
62444 and the new form to co-exist for a while until the older can
62445 be removed entirely.
62446
62447 All transformations are of the form:
62448 Before:
62449 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62450 After:
62451 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62452
62453 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62454
62455 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
62456 Author: Jon Loeliger <jdl@jdl.com>
62457 Date: Mon Jun 11 19:03:28 2007 -0500
62458
62459 tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62460
62461 This is a compatibility step that allows both the older form
62462 and the new form to co-exist for a while until the older can
62463 be removed entirely.
62464
62465 All transformations are of the form:
62466 Before:
62467 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62468 After:
62469 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62470
62471 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62472
62473 commit 9107ebe0d352420895ab69b715697bdebc8caf50
62474 Author: Jon Loeliger <jdl@jdl.com>
62475 Date: Mon Jun 11 19:03:23 2007 -0500
62476
62477 board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62478
62479 This is a compatibility step that allows both the older form
62480 and the new form to co-exist for a while until the older can
62481 be removed entirely.
62482
62483 All transformations are of the form:
62484 Before:
62485 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62486 After:
62487 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62488
62489 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62490
62491 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
62492 Author: Jon Loeliger <jdl@jdl.com>
62493 Date: Mon Jun 11 19:03:19 2007 -0500
62494
62495 board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62496
62497 This is a compatibility step that allows both the older form
62498 and the new form to co-exist for a while until the older can
62499 be removed entirely.
62500
62501 All transformations are of the form:
62502 Before:
62503 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62504 After:
62505 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62506
62507 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62508
62509 commit 737184114ec9c9e0ab94d6713536126073bd2472
62510 Author: Jon Loeliger <jdl@jdl.com>
62511 Date: Mon Jun 11 19:03:15 2007 -0500
62512
62513 cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62514
62515 This is a compatibility step that allows both the older form
62516 and the new form to co-exist for a while until the older can
62517 be removed entirely.
62518
62519 All transformations are of the form:
62520 Before:
62521 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62522 After:
62523 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62524
62525 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62526
62527 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
62528 Author: Jon Loeliger <jdl@jdl.com>
62529 Date: Mon Jun 11 19:03:08 2007 -0500
62530
62531 cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62532
62533 This is a compatibility step that allows both the older form
62534 and the new form to co-exist for a while until the older can
62535 be removed entirely.
62536
62537 All transformations are of the form:
62538 Before:
62539 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62540 After:
62541 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62542
62543 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62544
62545 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
62546 Author: Jon Loeliger <jdl@jdl.com>
62547 Date: Mon Jun 11 19:03:03 2007 -0500
62548
62549 lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62550
62551 This is a compatibility step that allows both the older form
62552 and the new form to co-exist for a while until the older can
62553 be removed entirely.
62554
62555 All transformations are of the form:
62556 Before:
62557 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62558 After:
62559 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62560
62561 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62562
62563 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
62564 Author: Jon Loeliger <jdl@jdl.com>
62565 Date: Mon Jun 11 19:02:58 2007 -0500
62566
62567 lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62568
62569 This is a compatibility step that allows both the older form
62570 and the new form to co-exist for a while until the older can
62571 be removed entirely.
62572
62573 All transformations are of the form:
62574 Before:
62575 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62576 After:
62577 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62578
62579 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62580
62581 commit 98b79003c21c2578206003256de4e781d6b36ca8
62582 Author: Jon Loeliger <jdl@jdl.com>
62583 Date: Mon Jun 11 19:02:53 2007 -0500
62584
62585 rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62586
62587 This is a compatibility step that allows both the older form
62588 and the new form to co-exist for a while until the older can
62589 be removed entirely.
62590
62591 All transformations are of the form:
62592 Before:
62593 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62594 After:
62595 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62596
62597 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62598
62599 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
62600 Author: Jon Loeliger <jdl@jdl.com>
62601 Date: Mon Jun 11 19:02:49 2007 -0500
62602
62603 net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62604
62605 This is a compatibility step that allows both the older form
62606 and the new form to co-exist for a while until the older can
62607 be removed entirely.
62608
62609 All transformations are of the form:
62610 Before:
62611 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62612 After:
62613 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62614
62615 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62616
62617 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
62618 Author: Jon Loeliger <jdl@jdl.com>
62619 Date: Mon Jun 11 19:02:34 2007 -0500
62620
62621 disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62622
62623 This is a compatibility step that allows both the older form
62624 and the new form to co-exist for a while until the older can
62625 be removed entirely.
62626
62627 All transformations are of the form:
62628 Before:
62629 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62630 After:
62631 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62632
62633 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62634
62635 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
62636 Author: Jon Loeliger <jdl@jdl.com>
62637 Date: Mon Jun 11 19:02:20 2007 -0500
62638
62639 fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62640
62641 This is a compatibility step that allows both the older form
62642 and the new form to co-exist for a while until the older can
62643 be removed entirely.
62644
62645 All transformations are of the form:
62646 Before:
62647 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62648 After:
62649 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62650
62651 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62652
62653 commit d5be43de93ff905c465e509d45a3164ef48d26e7
62654 Author: Jon Loeliger <jdl@jdl.com>
62655 Date: Mon Jun 11 19:02:10 2007 -0500
62656
62657 drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62658
62659 This is a compatibility step that allows both the older form
62660 and the new form to co-exist for a while until the older can
62661 be removed entirely.
62662
62663 All transformations are of the form:
62664 Before:
62665 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62666 After:
62667 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62668
62669 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62670
62671 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
62672 Author: Jon Loeliger <jdl@jdl.com>
62673 Date: Mon Jun 11 19:02:05 2007 -0500
62674
62675 common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62676
62677 This is a compatibility step that allows both the older form
62678 and the new form to co-exist for a while until the older can
62679 be removed entirely.
62680
62681 All transformations are of the form:
62682 Before:
62683 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62684 After:
62685 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62686
62687 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62688
62689 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
62690 Author: Jon Loeliger <jdl@jdl.com>
62691 Date: Mon Jun 11 19:01:54 2007 -0500
62692
62693 common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62694
62695 This is a compatibility step that allows both the older form
62696 and the new form to co-exist for a while until the older can
62697 be removed entirely.
62698
62699 All transformations are of the form:
62700 Before:
62701 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62702 After:
62703 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62704
62705 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62706
62707 commit a76adc8142c1d956385a109e0b70f9319ede4d66
62708 Author: Jon Loeliger <jdl@jdl.com>
62709 Date: Mon Jun 11 19:01:43 2007 -0500
62710
62711 common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
62712
62713 This is a compatibility step that allows both the older form
62714 and the new form to co-exist for a while until the older can
62715 be removed entirely.
62716
62717 All transformations are of the form:
62718 Before:
62719 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
62720 After:
62721 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
62722
62723 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62724
62725 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
62726 Author: Jon Loeliger <jdl@jdl.com>
62727 Date: Mon Jun 11 19:01:34 2007 -0500
62728
62729 Introduce initial versions of new Command Config files.
62730
62731 Derive three new files from cmd_confdefs.h:
62732 config_bootp.h - Has BOOTP related config options, not commands
62733 config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
62734 config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
62735
62736 For now, include "config_bootp.h" for compatability until all
62737 users of it directly include it properly.
62738
62739 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62740
62741 commit 1f2a05898658900dc5717761e27abf2052e67e13
62742 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
62743 Date: Sat Jun 30 18:50:48 2007 +0200
62744
62745 Fix S-ATA support.
62746
62747 Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
62748
62749 commit a5d71e290f3673269be8eefb4ec44f53412f9461
62750 Author: Heiko Schocher <hs@pollux.denx.de>
62751 Date: Mon Jun 25 19:11:37 2007 +0200
62752
62753 [PCS440EP] get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
62754
62755 Signed-off-by: Heiko Schocher <hs@denx.de>
62756
62757 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
62758 Author: Niklaus Giger <niklaus.giger@nestal.com>
62759 Date: Mon Jun 25 17:03:13 2007 +0200
62760
62761 ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
62762
62763 This patch prints the DDR status registers upon machine check
62764 interrupt on the 440EPx/GRx. This can be useful especially when
62765 ECC support is enabled.
62766
62767 I added some small changes to the original patch from Niklaus to
62768 make it compile clean.
62769
62770 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
62771 Signed-off-by: Stefan Roese <sr@denx.de>
62772
62773 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
62774 Author: Niklaus Giger <niklaus.giger@nestal.com>
62775 Date: Mon Jun 25 16:50:55 2007 +0200
62776
62777 ppc4xx: Fix O=buildir builds
62778
62779 This patch fixes the problem to assemble cpu/ppc4xx/start.S
62780 experienced last week where building failed having specified
62781 O=../build.sequoia.
62782
62783 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
62784
62785 commit 466fff1a7bb5fe764a06450626f6098219f446b8
62786 Author: Stefan Roese <sr@denx.de>
62787 Date: Mon Jun 25 15:57:39 2007 +0200
62788
62789 ppc4xx: Add pci_pre_init() for 405 boards
62790
62791 This patch removes the CFG_PCI_PRE_INIT option completely, since
62792 it's not needed anymore with the patch from Matthias Fuchs with
62793 the "weak" pci_pre_init() implementation.
62794
62795 Signed-off-by: Stefan Roese <sr@denx.de>
62796
62797 commit 6f35c53166213c24a5a0e2390ed861136ff73870
62798 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62799 Date: Sun Jun 24 17:41:21 2007 +0200
62800
62801 ppc4xx: Maintenance patch for esd's CPCI405 derivats
62802
62803 -add pci_pre_init() for pci interrupt fixup code
62804 -disable phy sleep mode via reset_phy() function
62805 -use correct io accessors
62806 -cleanup
62807
62808 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62809
62810 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
62811 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62812 Date: Sun Jun 24 17:23:41 2007 +0200
62813
62814 ppc4xx: Add pci_pre_init() for 405 boards
62815
62816 This patch adds support for calling a plattform dependant
62817 pci_pre_init() function for 405 boards. This can be used to
62818 move the current pci_405gp_fixup_irq() function into the
62819 board code.
62820
62821 This patch also makes the CFG_PCI_PRE_INIT define obsolete.
62822 A default function with 'weak' attribute is used when
62823 a board specific pci_pre_init() is not implemented.
62824
62825 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62826
62827 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
62828 Author: Wolfgang Denk <wd@denx.de>
62829 Date: Fri Jun 22 23:59:00 2007 +0200
62830
62831 Coding stylke cleanup; rebuild CHANGELOG
62832
62833 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
62834 Author: Igor Lisitsin <igor@emcraft.com>
62835 Date: Wed Apr 18 14:55:19 2007 +0400
62836
62837 Adapt log buffer code to support Linux 2.6
62838
62839 A new environment variable, "logversion", selects the log buffer
62840 behaviour. If it is not set or set to a value other than 2, then the
62841 old, Linux 2.4.4, behaviour is selected.
62842
62843 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
62844 --
62845
62846 commit a11e06965ec91270c51853407ff1261d3c740386
62847 Author: Igor Lisitsin <igor@emcraft.com>
62848 Date: Wed Mar 28 19:06:19 2007 +0400
62849
62850 Extend POST support for PPC440
62851
62852 Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
62853
62854 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
62855 --
62856
62857 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
62858 Author: Heiko Schocher <hs@pollux.denx.de>
62859 Date: Fri Jun 22 19:11:54 2007 +0200
62860
62861 [PCS440EP] upgrade the PCS440EP board:
62862 - Show on the Status LEDs, some States of the board.
62863 - Get the MAC addresses from the EEProm
62864 - use PREBOOT
62865 - use the CF on the board.
62866 - check the U-Boot image in the Flash with a SHA1
62867 checksum.
62868 - use dynamic TLB entries generation for the SDRAM
62869
62870 Signed-off-by: Heiko Schocher <hs@denx.de>
62871
62872 commit 3a1f5c81b0b9557817a789bece839905581c2205
62873 Author: Stefan Roese <sr@denx.de>
62874 Date: Fri Jun 22 16:58:40 2007 +0200
62875
62876 ppc4xx: Fix problem with extended program_tlb() funtion
62877
62878 The recently extended program_tlb() function had a problem when
62879 multiple TLB's had to be setup (for example with 512MB of SDRAM). The
62880 virtual address was not incremented. This patch fixes this issue
62881 and is tested on Katmai with 512MB SDRAM.
62882
62883 Signed-off-by: Stefan Roese <sr@denx.de>
62884
62885 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
62886 Author: Rafal Jaworowski <raj@semihalf.com>
62887 Date: Fri Jun 22 14:58:04 2007 +0200
62888
62889 [ppc] Fix build breakage for all non-4xx PowerPC variants.
62890
62891 - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
62892 - minor 4xx cleanup
62893
62894 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
62895 Author: Mike Frysinger <vapier@gentoo.org>
62896 Date: Fri Jun 22 10:34:12 2007 +0200
62897
62898 [patch] add nand_init() prototype to nand.h
62899
62900 since nand_init() is expected to be called by other parts of u-boot, there
62901 should be a prototype for it in nand.h
62902
62903 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62904 Signed-off-by: Stefan Roese <sr@denx.de>
62905
62906 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
62907 Author: Wolfgang Denk <wd@denx.de>
62908 Date: Wed Jun 20 18:14:24 2007 +0200
62909
62910 Coding style cleanup. Refresh CHANGELOG.
62911
62912 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
62913 Author: Stefan Roese <sr@denx.de>
62914 Date: Tue Jun 19 17:22:44 2007 +0200
62915
62916 ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
62917
62918 This patch adds a board command to configure the I2C bootstrap EEPROM
62919 values. Right now 533 and 667MHz are supported for booting either via NOR
62920 or NAND FLASH. Here the usage:
62921
62922 => bootstrap 533 nor ;to configure the board for 533MHz NOR booting
62923 => bootstrap 667 nand ;to configure the board for 667MHz NNAND booting
62924
62925 Signed-off-by: Stefan Roese <sr@denx.de>
62926
62927 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
62928 Author: Stefan Roese <sr@denx.de>
62929 Date: Tue Jun 19 16:42:31 2007 +0200
62930
62931 [ppc4xx] Fix problem with NAND booting on AMCC Acadia
62932
62933 The latest changes showed a problem with the location of the NAND-SPL
62934 image in the OCM and the init-data area (incl. cache). This patch
62935 fixes this problem.
62936
62937 Signed-off-by: Stefan Roese <sr@denx.de>
62938
62939 commit 86ba99e34194394052d24c04dc40d1263d29a26f
62940 Author: Stefan Roese <sr@denx.de>
62941 Date: Tue Jun 19 16:40:58 2007 +0200
62942
62943 [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
62944
62945 Signed-off-by: Stefan Roese <sr@denx.de>
62946
62947 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
62948 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
62949 Date: Mon Jun 18 13:50:13 2007 -0500
62950
62951 Added M5329AFEE and M5329BFEE Platforms
62952
62953 Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
62954 drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
62955 include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
62956 rtc/mcfrtc.c
62957
62958 Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
62959 common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
62960 include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
62961 include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
62962 include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
62963 lib_m68k/time.c, net/eth.c and rtc/Makefile
62964
62965 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
62966
62967 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
62968 Author: Michal Simek <monstr@monstr.eu>
62969 Date: Sun Jun 17 19:04:11 2007 +0200
62970
62971 [fix] email reparation
62972
62973 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
62974 Author: Michal Simek <monstr@monstr.eu>
62975 Date: Sun Jun 17 19:03:21 2007 +0200
62976
62977 [FIX] fix microblaze file permitission
62978
62979 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
62980 Author: Stefan Roese <sr@denx.de>
62981 Date: Fri Jun 15 11:33:41 2007 +0200
62982
62983 [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
62984
62985 Now CONFIG_440 has to be defined in all PPC440 board config files.
62986
62987 Signed-off-by: Stefan Roese <sr@denx.de>
62988
62989 commit efa35cf12d914d4caba942acd5a6c45f217de302
62990 Author: Grzegorz Bernacki <gjb@semihalf.com>
62991 Date: Fri Jun 15 11:19:28 2007 +0200
62992
62993 ppc4xx: Clean up 440 exceptions handling
62994
62995 - Introduced dedicated switches for building 440 and 405 images required
62996 for 440-specific machine instructions like 'rfmci' etc.
62997
62998 - Exception vectors moved to the proper location (_start moved away from
62999 the critical exception handler space, which it occupied)
63000
63001 - CriticalInput now serviced (with default handler)
63002
63003 - MachineCheck properly serviced (added a dedicated handler and return
63004 subroutine)
63005
63006 - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
63007 unhandled and those not relevant for 4xx were eliminated)
63008
63009 - Eliminated Linux leftovers, removed dead code
63010
63011 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
63012 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
63013 Signed-off-by: Stefan Roese <sr@denx.de>
63014
63015 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
63016 Author: Stefan Roese <sr@denx.de>
63017 Date: Fri Jun 15 08:18:01 2007 +0200
63018
63019 [ppc4xx] Add initial lwmon5 board support
63020
63021 This patch adds initial support for the Liebherr lwmon5 board euqipped
63022 with an AMCC 440EPx PowerPC.
63023
63024 Signed-off-by: Stefan Roese <sr@denx.de>
63025
63026 commit 85f737376d5ff3d5f0d45a8b657686326d175307
63027 Author: Stefan Roese <sr@denx.de>
63028 Date: Fri Jun 15 07:39:43 2007 +0200
63029
63030 [ppc4xx] Extend 44x GPIO setup with default output state
63031
63032 The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
63033 is extended with the default GPIO output state (level).
63034
63035 Signed-off-by: Stefan Roese <sr@denx.de>
63036
63037 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
63038 Author: Stefan Roese <sr@denx.de>
63039 Date: Thu Jun 14 11:14:32 2007 +0200
63040
63041 [ppc4xx] Extend program_tlb() with virtual & physical addresses
63042
63043 Now program_tlb() allows to program a TLB (or multiple) with
63044 different virtual and physical addresses. With this change, now one
63045 physical region (e.g. SDRAM) can be mapped 2 times, once with caches
63046 diabled and once with caches enabled.
63047
63048 Signed-off-by: Stefan Roese <sr@denx.de>
63049
63050 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
63051 Author: Detlev Zundel <dzu@denx.de>
63052 Date: Wed May 23 19:02:41 2007 +0200
63053
63054 Change 'repeatable' attribute of some commands to sensible values.
63055
63056 Most prominently this changes 'erase' to be non-repeatable.
63057
63058 Signed-off-by: Detlev Zundel <dzu@denx.de>
63059
63060 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
63061 Author: Detlev Zundel <dzu@denx.de>
63062 Date: Wed May 23 18:47:48 2007 +0200
63063
63064 Fix 'run' not to continue after interrupted command
63065
63066 Signed-off-by: Detlev Zundel <dzu@denx.de>
63067
63068 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
63069 Author: Jason Jin <Jason.jin@freescale.com>
63070 Date: Mon Jun 11 15:14:24 2007 +0200
63071
63072 USB: This patch fix readl in ohci swap reg access.
63073
63074 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
63075
63076 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
63077 Author: Bartlomiej Sieka <tur@semihalf.com>
63078 Date: Fri Jun 8 14:52:22 2007 +0200
63079
63080 TQM5200: Add Flat Device Tree support, update default env. accordingly.
63081
63082 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
63083 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63084
63085 commit 9045f33c023f698660a2e45d1b2194c0711abebc
63086 Author: Wolfgang Denk <wd@denx.de>
63087 Date: Fri Jun 8 10:24:58 2007 +0200
63088
63089 Fix config problems on SC3 board; make ide_reset_timeout work.
63090
63091 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
63092 Author: Benoît Monin <bmonin@adeneo.eu>
63093 Date: Fri Jun 8 09:55:24 2007 +0200
63094
63095 [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
63096
63097 Set the correct value in GPIOx_TCR when configuring the gpio
63098 with CFG_440_GPIO_TABLE.
63099
63100 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
63101 Signed-off-by: Stefan Roese <sr@denx.de>
63102
63103 commit f539edc076cfe52bff919dd512ba8d7af0e22092
63104 Author: Vadim Bendebury <vbendeb@google.com>
63105 Date: Thu May 24 15:52:25 2007 -0700
63106
63107 cosmetic changes to bcm570x driver
63108
63109 This is a cosmetic only changes submission.
63110 It affects files relevant to bcm570x driver.
63111 the commands used to generate this change was
63112
63113 cd drivers
63114 Lindent -pcs -l80 bcm570x.c bcm570x_lm.h bcm570x_mm.h tigon3.c tigon3.h
63115
63116 The BMW target (the only one using this chip so far) builds cleanly, the
63117 `before and after' generated object files for drivers/bcm570x.c and
63118 drivers/tigon3.o are identical as reported by objdump -d
63119
63120 Signed-off-by: Vadim Bendebury <vbendeb@google.com>
63121 Signed-off-by: Ben Warren <bwarren@qstreams.com>
63122
63123 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
63124 Author: Wolfgang Denk <wd@denx.de>
63125 Date: Wed Jun 6 16:26:56 2007 +0200
63126
63127 Coding Style cleanup; generate new CHANGELOG file.
63128
63129 Signed-off-by: Wolfgang Denk <wd@denx.de>
63130
63131 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
63132 Author: Markus Klotzbuecher <mk@denx.de>
63133 Date: Wed Jun 6 11:49:44 2007 +0200
63134
63135 TRAB, USB: update trab board configuration for use of generic ohci driver
63136
63137 commit dace45acd1c1357daa9322099d07c9a9e08b0024
63138 Author: Markus Klotzbuecher <mk@denx.de>
63139 Date: Wed Jun 6 11:49:43 2007 +0200
63140
63141 USB: ohci fixes and cleanup for ppc4xx and yosemite board.
63142
63143 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
63144 Author: Markus Klotzbuecher <mk@denx.de>
63145 Date: Wed Jun 6 11:49:43 2007 +0200
63146
63147 USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
63148
63149 commit fc43be478f2aa37ce38acd85355038866e4162af
63150 Author: Markus Klotzbuecher <mk@denx.de>
63151 Date: Wed Jun 6 11:49:35 2007 +0200
63152
63153 USB/OHCI: endianness cleanup in the generic ohci driver
63154
63155 commit c440bfe6d6d92d66478a7e84402b31f48413617b
63156 Author: Stefan Roese <sr@denx.de>
63157 Date: Wed Jun 6 11:42:13 2007 +0200
63158
63159 ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
63160
63161 This patch adds NAND booting support for the AMCC Acadia eval board.
63162
63163 Please make sure to configure jumper J7 to position 2-3 when booting
63164 from NOR, and to position 1-2 when booting for NAND.
63165
63166 I also added a board command to configure the I2C bootstrap EEPROM
63167 values. Right now only 267MHz is support for booting either via NOR
63168 or NAND FLASH. Here the usage:
63169
63170 => bootstrap 267 nor ;to configure the board for 267MHz NOR booting
63171 => bootstrap 267 nand ;to configure the board for 267MHz NNAND booting
63172
63173 Signed-off-by: Stefan Roese <sr@denx.de>
63174
63175 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
63176 Author: Rodolfo Giometti <giometti@linux.it>
63177 Date: Wed Jun 6 10:08:14 2007 +0200
63178
63179 Files include/linux/byteorder/{big,little}_endian.h define
63180 __BIG_ENDIAN and __LITTLE_ENDIAN.
63181
63182 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
63183
63184 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
63185 Author: Zhang Wei <wei.zhang@freescale.com>
63186 Date: Wed Jun 6 10:08:14 2007 +0200
63187
63188 Add USB PCI-OHCI, USB keyboard and event poll support to the
63189 MPC8641HPCN board config file.
63190
63191 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
63192
63193 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
63194 Author: Zhang Wei <wei.zhang@freescale.com>
63195 Date: Wed Jun 6 10:08:14 2007 +0200
63196
63197 USB PCI-OHCI, interrupt pipe and usb event poll support
63198
63199 This patch added USB PCI-OHCI chips support, interrupt pipe support
63200 and usb event poll support. For supporting the USB interrupt pipe, the
63201 globe urb_priv is moved to purb in ed struct. Now, we can process
63202 several urbs at one time. The interrupt pipe support codes are ported
63203 from Linux kernel 2.4.
63204
63205 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
63206
63207 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
63208 Author: Zhang Wei <wei.zhang@freescale.com>
63209 Date: Wed Jun 6 10:08:13 2007 +0200
63210
63211 USB event poll support
63212
63213 This patch adds USB event poll support, which could be used in usbkbd
63214 and other usb devices driver when the asynchronous interrupt
63215 processing is supported.
63216
63217 Signed-off-by: Zhang Wei <wei.zhang@freescale.com
63218
63219 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
63220 Author: Rodolfo Giometti <giometti@linux.it>
63221 Date: Wed Jun 6 10:08:12 2007 +0200
63222
63223 ISP116x: delay for crappy USB keys
63224
63225 Using some (very) slow USB keys cause the USB host controller buffers
63226 are not ready to be read by the CPU so we need an extra delay before
63227 reading the USB storage data.
63228
63229 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
63230
63231 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
63232 Author: Markus Klotzbuecher <mk@denx.de>
63233 Date: Wed Jun 6 10:08:12 2007 +0200
63234
63235 Change duplicate usb_cpu_init_fail to usb_board_init_fail
63236
63237 Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
63238 this out.
63239
63240 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63241
63242 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
63243 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
63244 Date: Tue Jun 5 12:30:52 2007 -0500
63245
63246 mpc8641 image size cleanup
63247
63248 e600 does not have a bootpg restriction.
63249 Move the version string to beginning of image at fff00000.
63250 Resetvec.S is not needed.
63251 Update flash copy instructions.
63252 Add tftpflash env variable
63253
63254 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
63255 Signed-off-by: Jon Loeliger <jdl@freescale.com>
63256
63257 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
63258 Author: Benoît Monin <bmonin@adeneo.eu>
63259 Date: Mon Jun 4 08:36:05 2007 +0200
63260
63261 [PATCH] Fix ppc4xx bootstrap letter displayed on startup
63262
63263 The attached patch is mainly cosmetic, allowing u-boot to
63264 display the correct bootstrap option letter according to the
63265 datasheets.
63266
63267 The original patch was extended with 405EZ support by Stefan
63268 Roese.
63269
63270 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
63271 Signed-off-by: Stefan Roese <sr@denx.de>
63272
63273 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
63274 Author: Nikita V. Youshchenko <yoush@debian.org>
63275 Date: Wed May 23 12:45:19 2007 +0400
63276
63277 fix compilation problem for mpc8349itx CFG_RAMBOOT
63278
63279 Current include/configs/MPC8349ITX.h does contain some support for building
63280 image that will be started from memory (without putting in into flash).
63281 It could be triggered by building with TEXT_BASE set to a low value.
63282
63283 However, this support is incomplete: using of low TEXT_BASE causes
63284 defining configuration macros in inconsistent way, which later leads
63285 to compilation errors. In particular. flash support is being disabled,
63286 but then flash structures get referenced.
63287
63288 This patch fixes this, making it possible to build with low TEXT_BASE.
63289
63290 Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
63291
63292 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63293
63294 commit 8a364f0970de49949d635e60accf463c6443ef8c
63295 Author: Nikita V. Youshchenko <yoush@debian.org>
63296 Date: Wed May 23 12:45:25 2007 +0400
63297
63298 add missing 'console' var to default mpc8349itx config
63299
63300 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63301
63302 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
63303 Author: Stefan Roese <sr@denx.de>
63304 Date: Fri Jun 1 16:18:17 2007 +0200
63305
63306 ppc4xx: Add missing file for Bamboo NAND booting support
63307
63308 Signed-off-by: Stefan Roese <sr@denx.de>
63309
63310 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
63311 Author: Stefan Roese <sr@denx.de>
63312 Date: Fri Jun 1 15:58:19 2007 +0200
63313
63314 ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
63315
63316 This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
63317 suggested by AMCC it is not recommended to dynamically change the EBC
63318 speed after bootup. So we undo this change to be on the safe side.
63319
63320 Signed-off-by: Stefan Roese <sr@denx.de>
63321
63322 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
63323 Author: Stefan Roese <sr@denx.de>
63324 Date: Fri Jun 1 15:29:04 2007 +0200
63325
63326 ppc4xx: Update Sequoia NAND booting support with ECC
63327
63328 Signed-off-by: Stefan Roese <sr@denx.de>
63329
63330 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
63331 Author: Stefan Roese <sr@denx.de>
63332 Date: Fri Jun 1 15:27:11 2007 +0200
63333
63334 ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
63335
63336 This patch adds NAND booting support for the AMCC Bamboo eval board.
63337 Since the NAND-SPL boot image is limited to 4kbytes, this version
63338 only supports the onboard 64MBytes of DDR. The DIMM modules can't be
63339 supported, since the setup code for I2C DIMM autodetection and
63340 configuration is too big for this NAND bootloader.
63341
63342 Signed-off-by: Stefan Roese <sr@denx.de>
63343
63344 commit 42be56f53c8b107868e6125c8524ae84293e95a7
63345 Author: Stefan Roese <sr@denx.de>
63346 Date: Fri Jun 1 15:23:04 2007 +0200
63347
63348 NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
63349
63350 The U-Boot NAND booting support is now extended to support ECC
63351 upon loading of the NAND U-Boot image.
63352
63353 Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
63354
63355 Signed-off-by: Stefan Roese <sr@denx.de>
63356
63357 commit a471db07fbb65a841ffc9f4f112562b945230f98
63358 Author: Stefan Roese <sr@denx.de>
63359 Date: Fri Jun 1 15:19:29 2007 +0200
63360
63361 ppc4xx: Prepare Bamboo port for NAND booting support
63362
63363 This patch updates the "normal" Bamboo NOR booting port, so
63364 that it is compatible with the coming soon NAND booting
63365 Bamboo port.
63366
63367 It also enables the 2nd NAND flash on the Bamboo.
63368
63369 Signed-off-by: Stefan Roese <sr@denx.de>
63370
63371 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
63372 Author: Stefan Roese <sr@denx.de>
63373 Date: Fri Jun 1 15:16:58 2007 +0200
63374
63375 ppc4xx: Update in_be32() functions and friends to latest Linux version
63376
63377 Signed-off-by: Stefan Roese <sr@denx.de>
63378
63379 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
63380 Author: Stefan Roese <sr@denx.de>
63381 Date: Fri Jun 1 15:15:12 2007 +0200
63382
63383 NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
63384
63385 This patch adds hardware ECC support to the NDFC driver. It also
63386 changes the register access from using the "simple" in32/out32
63387 functions to the in_be32/out_be32 functions, which make sure
63388 that the access is correctly synced. This is the only recommended
63389 access to SoC registers in the current Linux kernel.
63390
63391 Signed-off-by: Stefan Roese <sr@denx.de>
63392
63393 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
63394 Author: Stefan Roese <sr@denx.de>
63395 Date: Fri Jun 1 15:12:15 2007 +0200
63396
63397 NAND: Update nand_ecc.c to latest Linux version
63398
63399 This patch updates the nand_ecc code to the latest Linux version.
63400 The main reason for this is the more compact code. This makes
63401 it possible to include the ECC code into the NAND bootloader
63402 image (NAND_SPL) for PPC4xx.
63403
63404 Signed-off-by: Stefan Roese <sr@denx.de>
63405
63406 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
63407 Author: Stefan Roese <sr@denx.de>
63408 Date: Fri Jun 1 15:09:50 2007 +0200
63409
63410 ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
63411
63412 Signed-off-by: Stefan Roese <sr@denx.de>
63413
63414 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
63415 Author: Stefan Roese <sr@denx.de>
63416 Date: Fri Jun 1 13:45:24 2007 +0200
63417
63418 ppc4xx: Change Luan config file to support ECC
63419
63420 With the updated 44x DDR2 driver the Luan board now supports
63421 ECC generation and checking.
63422
63423 Signed-off-by: Stefan Roese <sr@denx.de>
63424
63425 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
63426 Author: Stefan Roese <sr@denx.de>
63427 Date: Fri Jun 1 13:45:00 2007 +0200
63428
63429 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
63430
63431 Add config option for 180 degree advance clock control as needed
63432 for the AMCC Luan eval board.
63433
63434 Signed-off-by: Stefan Roese <sr@denx.de>
63435
63436 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
63437 Author: Wolfgang Denk <wd@denx.de>
63438 Date: Thu May 31 17:20:09 2007 +0200
63439
63440 Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
63441
63442 Signed-off-by: Wolfgang Denk <wd@denx.de>
63443
63444 commit 7049288fb1f16f1b317140226cdebd07bd416395
63445 Author: Bartlomiej Sieka <tur@semihalf.com>
63446 Date: Sun May 27 17:26:46 2007 +0200
63447
63448 Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
63449
63450 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
63451
63452 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
63453 Author: Bartlomiej Sieka <tur@semihalf.com>
63454 Date: Sun May 27 17:06:36 2007 +0200
63455
63456 Motion-PRO: Add support for redundant environment.
63457
63458 Enable redundant environment, add a MTD partition for it; also add env.
63459 variable command for passing MTD partitions to the kernel command line.
63460
63461 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
63462 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63463
63464 commit a26eabeec31746f06d309103690892805696e344
63465 Author: Bartlomiej Sieka <tur@semihalf.com>
63466 Date: Sun May 27 17:05:11 2007 +0200
63467
63468 Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
63469
63470 Allow passing longer command line to the kernel - useful especially
63471 for passing MTD partition layout.
63472
63473 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
63474 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63475
63476 commit 9160b96f71483a116de81c68985e8ee306d36764
63477 Author: Bartlomiej Sieka <tur@semihalf.com>
63478 Date: Sun May 27 17:04:18 2007 +0200
63479
63480 Fix: Add missing NULL termination in strings expanded by macros parser.
63481
63482 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
63483 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63484
63485 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
63486 Author: Bartlomiej Sieka <tur@semihalf.com>
63487 Date: Sun May 27 17:03:37 2007 +0200
63488
63489 Motion-PRO: Update EEPROM's page write bits and write delay.
63490
63491 Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
63492 have a page write capability of two bytes", and "This device offers fast (1ms)
63493 byte write". Add 3ms of extra delay.
63494
63495 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
63496 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63497
63498 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
63499 Author: Bartlomiej Sieka <tur@semihalf.com>
63500 Date: Sun May 27 16:58:45 2007 +0200
63501
63502 MPC5XXX, Motion-PRO: Fix PHY initialization problem.
63503
63504 After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
63505 networking does not function. This commit switches PHY to TX mode by clearing
63506 the FX_SEL bit of Mode Control Register. It also reverses commit
63507 008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
63508
63509 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
63510 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63511
63512 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
63513 Author: Bartlomiej Sieka <tur@semihalf.com>
63514 Date: Sun May 27 16:57:15 2007 +0200
63515
63516 Motion-PRO: Add support for the temperature sensor.
63517
63518 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
63519 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63520
63521 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
63522 Author: Bartlomiej Sieka <tur@semihalf.com>
63523 Date: Sun May 27 16:55:23 2007 +0200
63524
63525 Motion-PRO: Add displaying of CPLD revision information during boot.
63526
63527 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
63528 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63529
63530 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
63531 Author: Bartlomiej Sieka <tur@semihalf.com>
63532 Date: Sun May 27 16:53:43 2007 +0200
63533
63534 MPC5xxx: Change names of defines related to IPB and PCI clocks.
63535
63536 Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
63537 them does not cause PCI or IPB clocks to run at the specified speed.
63538 Instead, they configure divisors used to calculate said clocks. This
63539 patch renames the defines according to their real function.
63540
63541 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
63542 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63543
63544 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
63545 Author: Bartlomiej Sieka <tur@semihalf.com>
63546 Date: Sun May 27 16:51:48 2007 +0200
63547
63548 Motion-PRO: Add LED support.
63549
63550 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
63551 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
63552 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
63553
63554 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
63555 Author: Ulf Samuelsson <ulf@atmel.com>
63556 Date: Thu May 24 12:12:47 2007 +0200
63557
63558 [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
63559
63560 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
63561 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
63562 Signed-off-by: Stefan Roese <sr@denx.de>
63563
63564 commit d756894722c888d09a9fa1df8323753772d3dcce
63565 Author: Stefan Roese <sr@denx.de>
63566 Date: Thu May 24 09:49:00 2007 +0200
63567
63568 ppc4xx: Fix small 405EZ OCM initilization bug in start.S
63569
63570 As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
63571 fixes a small bug in the 405EZ OCM initialization. Thanks for
63572 spotting.
63573
63574 Signed-off-by: Stefan Roese <sr@denx.de>
63575
63576 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
63577 Author: Stefan Roese <sr@denx.de>
63578 Date: Thu May 24 08:22:09 2007 +0200
63579
63580 ppc4xx: Update AMCC Acadia support for board revision 1.1
63581
63582 This patch updates the Acadia (405EZ) support for the new 1.1 board
63583 revision. It also adds support for NAND FLASH via the 4xx NDFC.
63584
63585 Please note that the jumper J7 must be in position 2-3 for this
63586 NAND support. Position 1-2 is for NAND booting only. NAND booting
63587 support will follow later.
63588
63589 Signed-off-by: Stefan Roese <sr@denx.de>
63590
63591 commit 822d55365bb557e084d0e33625a6dedcc866110b
63592 Author: Jon Loeliger <jdl@freescale.com>
63593 Date: Wed May 23 14:09:46 2007 -0500
63594
63595 Add LIST_86xx MAKEALL target for PowerPC builds.
63596
63597 Signed-off-by: Jon Loeliger <jdl@freescale.com>
63598
63599 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
63600 Author: Stefan Roese <sr@denx.de>
63601 Date: Tue May 22 12:48:09 2007 +0200
63602
63603 ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
63604
63605 Signed-off-by: Stefan Roese <sr@denx.de>
63606
63607 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
63608 Author: Stefan Roese <sr@denx.de>
63609 Date: Tue May 22 12:46:10 2007 +0200
63610
63611 ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
63612
63613 This patch adds support for 405 PPC's to the 4xx NAND driver
63614 ndfc.c. This is in preparation for the new AMCC 405EZ.
63615
63616 Signed-off-by: Stefan Roese <sr@denx.de>
63617
63618 commit 10603d76767426be803dadd4fb688b97eb69481c
63619 Author: Stefan Roese <sr@denx.de>
63620 Date: Mon May 21 07:41:22 2007 +0200
63621
63622 ppc4xx: Fix problem in 405EZ OCM initialization
63623
63624 As spotted by Bruce Adler this patch fixes an initialization problem
63625 for the 405EZ OCM.
63626
63627 Signed-off-by: Stefan Roese <sr@denx.de>
63628
63629 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
63630 Author: Peter Pearse <peter.pearse@arm.com>
63631 Date: Fri May 18 16:47:03 2007 +0100
63632
63633 Reduce line lengths to 80 characters max.
63634
63635 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
63636 Author: Peter Pearse <peter.pearse@arm.com>
63637 Date: Fri May 18 14:34:07 2007 +0100
63638
63639 Makefile permissions
63640
63641 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
63642 Author: Peter Pearse <peter.pearse@arm.com>
63643 Date: Fri May 18 14:33:11 2007 +0100
63644
63645 Makefile permissions
63646
63647 commit 255a3577c848706441daee0174543efe205a77f8
63648 Author: Kim Phillips <kim.phillips@freescale.com>
63649 Date: Wed May 16 16:52:19 2007 -0500
63650
63651 Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
63652
63653 For all practical u-boot purposes, TSECs don't differ throughout the
63654 mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
63655
63656 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63657
63658 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
63659 Author: Stefano Babic <sbabic@denx.de>
63660 Date: Wed May 16 14:49:12 2007 +0200
63661
63662 Fix compile problem cause my Microblaze merge
63663
63664 Signed-off-by: Stefano Babic <sbabic@denx.de>
63665
63666 commit ada4697d0230d6da552867777f98a67ec3ba2579
63667 Author: Jeffrey Mann <mannj@embeddedplanet.com>
63668 Date: Wed May 16 13:23:10 2007 +0200
63669
63670 [PATCH] Run new sequoia boards with an EBC speed of 83MHz
63671
63672 Because the Sequoia board does not boot with an EBC faster than 66MHz,
63673 the clock divider are changed after the initial boot process.
63674
63675 This allows for maximum clocking speeds to be achieved on newer boards.
63676 Sequoia boards with 666.66 MHz processors require that the EBC divider
63677 be set to 3 in order to start the initial boot process at a slower EBC
63678 speed. After the initial boot process, the divider can be set back to 2,
63679 which will cause the boards to run at 83.333MHz. This is backward
63680 compatible with boards with 533.33 MHz processors, as these boards will
63681 already be set with an EBC divider of 2.
63682
63683 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
63684
63685 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
63686 Author: Wolfgang Denk <wd@denx.de>
63687 Date: Wed May 16 01:16:53 2007 +0200
63688
63689 Minor Coding Style cleanup, update CHANGELOG.
63690
63691 Signed-off-by: Wolfgang Denk <wd@denx.de>
63692
63693 commit d62f64cc23a940eafe712c776b3249e4160753d1
63694 Author: Wolfgang Denk <wd@denx.de>
63695 Date: Wed May 16 00:13:33 2007 +0200
63696
63697 Coding Style Cleanup, new CHANGELOG
63698
63699 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
63700 Author: Wolfgang Denk <wd@denx.de>
63701 Date: Tue May 15 23:38:05 2007 +0200
63702
63703 Minor coding style cleanup.
63704
63705 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
63706 Author: mushtaq khan <mushtaq_k@procsys.com>
63707 Date: Fri Apr 20 14:23:02 2007 +0530
63708
63709 Add driver for S-ATA-controller on Intel processors with South
63710 Bridge, ICH-5, ICH-6 and ICH-7.
63711
63712 Implementation:
63713
63714 1. Code is divided in to two files. All functions, which are
63715 controller specific are kept in "drivers/ata_piix.c" file and
63716 functions, which are not controller specific, are kept in
63717 "common/cmd_sata.c" file.
63718
63719 2. Reading and Writing from the S-ATA drive is done using PIO method.
63720
63721 3. Driver can be configured for 48-bit addressing by defining macro
63722 CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
63723 addressing.
63724
63725 4. S-ATA read function is hooked to the File system, commands like
63726 ext2ls and ext2load file can be used. This has been tested.
63727
63728 5. U-Boot command "SATA_init" is added, which initializes the S-ATA
63729 controller and identifies the S-ATA drives connected to it.
63730
63731 6. U-Boot command "sata" is added, which is used to read/write, print
63732 partition table and get info about the drives present. This I have
63733 implemented in same way as "ide" command is implemented in U-Boot.
63734
63735 7. This driver is for S-ATA in native mode.
63736
63737 8. This driver does not support the Native command queuing and
63738 Hot-plugging.
63739
63740 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
63741
63742 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
63743 Author: mushtaq khan <mushtaq_k@procsys.com>
63744 Date: Mon Apr 30 15:57:22 2007 +0530
63745
63746 Fixes bug clearing the bss section for i386
63747
63748 Hi,
63749 There is a bug in the code of clearing the bss section for processor
63750 i386.(File: cpu/i386/start.S)
63751 In the code, bss_start addr (starting addr of bss section) is put into
63752 the register %eax, but the code which clears the bss section refers to
63753 the addr pointed by %edi.
63754
63755 This patch fixes this bug by putting bss_start into %edi register.
63756
63757 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
63758
63759 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
63760 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
63761 Date: Mon Apr 30 16:47:28 2007 -0500
63762
63763 Add support for BCM5464 Quad Phy
63764
63765 Added support for Broadcom's BCM5464 Quad Phy
63766
63767 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
63768
63769 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
63770 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
63771 Date: Wed May 9 08:10:57 2007 +0800
63772
63773 Search the exception table with linear algorithm
63774
63775 Search the exception table with linear algorithm instead of
63776 bisecting algorithm.
63777 Because the exception table might be unsorted.
63778
63779 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
63780
63781 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
63782 Author: Aubrey.Li <aubrey.adi@gmail.com>
63783 Date: Mon May 14 11:47:35 2007 +0800
63784
63785 Fix compilation issues on MACOSX
63786
63787 Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
63788 Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
63789
63790 commit 56fd7162985c412317bbf763a225fba23c64fd31
63791 Author: Stephen Williams <steve@icarus.com>
63792 Date: Tue May 15 07:55:42 2007 -0700
63793
63794 Fix for compile of JSE target
63795
63796 The attached patch fixes the compile of the JSE board in the
63797 denx git as of 14 may 2007. It is an extremely simple patch,
63798 it just adds the missing define of CFG_SYSTEMACE_WIDTH.
63799
63800 Fix to compile JSE against 20070514 git of u-boot
63801
63802 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
63803 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
63804 Date: Sun May 13 21:01:03 2007 +0900
63805
63806 sh: MS7750SE support.
63807
63808 This adds support for the Hitachi MS7750SE.
63809
63810 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63811
63812 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
63813 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
63814 Date: Sun May 13 20:58:00 2007 +0900
63815
63816 sh: First support code of SuperH.
63817
63818 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63819
63820 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
63821 Author: Stefan Roese <sr@denx.de>
63822 Date: Fri May 11 12:01:49 2007 +0200
63823
63824 ppc4xx: Add mtcpr/mfcpr access macros
63825
63826 Signed-off-by: Stefan Roese <sr@denx.de>
63827
63828 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
63829 Author: Stefan Roese <sr@denx.de>
63830 Date: Fri May 11 12:01:06 2007 +0200
63831
63832 ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
63833
63834 Signed-off-by: Stefan Roese <sr@denx.de>
63835
63836 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
63837 Author: Piotr Kruszynski <ppk@semihalf.com>
63838 Date: Thu May 10 16:55:52 2007 +0200
63839
63840 [Motion-PRO] Add MTD and JFFS2 support, also add default partition
63841 definition.
63842
63843 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
63844 Author: Peter Pearse <peter.pearse@arm.com>
63845 Date: Wed May 9 11:42:44 2007 +0100
63846
63847 Add the board directory for SMN42
63848
63849 commit 160131bf965785419626df6c388729fe0b597992
63850 Author: Peter Pearse <peter.pearse@arm.com>
63851 Date: Wed May 9 11:41:58 2007 +0100
63852
63853 Add the files for the SMN42 board
63854
63855 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
63856 Author: Peter Pearse <peter.pearse@arm.com>
63857 Date: Wed May 9 11:40:34 2007 +0100
63858
63859 Remove the deleted files for the SMN42 patch
63860
63861 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
63862 Author: Peter Pearse <peter.pearse@arm.com>
63863 Date: Wed May 9 11:37:56 2007 +0100
63864
63865 New board SMN42 branch
63866
63867 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
63868 Author: Peter Pearse <peter.pearse@arm.com>
63869 Date: Wed May 9 10:24:38 2007 +0100
63870
63871 Makefile permissions
63872
63873 commit b84289b595731e8851df46e893845cc1322c9b9b
63874 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
63875 Date: Tue May 8 14:17:07 2007 -0500
63876
63877 8641hpcn: Fix Makefile after moving pixis to board/freescale.
63878
63879 The OBJTREE != SRCTREE build scenario was broken.
63880 This fixes it.
63881
63882 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
63883 Signed-off-by: Jon Loeliger <jdl@freescale.com>
63884
63885 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
63886 Author: Michal Simek <monstr@monstr.eu>
63887 Date: Tue May 8 15:57:43 2007 +0200
63888
63889 add: reading special purpose registers
63890
63891 commit 1a50f164beb065f360fbddb76029607d6b099698
63892 Author: Michal Simek <monstr@monstr.eu>
63893 Date: Tue May 8 14:52:52 2007 +0200
63894
63895 add: Microblaze V5 exception handling
63896
63897 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
63898 Author: Michal Simek <monstr@monstr.eu>
63899 Date: Tue May 8 14:39:11 2007 +0200
63900
63901 add: FSL control read and write
63902
63903 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
63904 Author: Piotr Kruszynski <ppk@semihalf.com>
63905 Date: Tue May 8 13:05:44 2007 +0200
63906
63907 [Motion-PRO] Add support for I2C, EEPROM and RTC.
63908
63909 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
63910 Author: Bartlomiej Sieka <tur@semihalf.com>
63911 Date: Tue May 8 10:23:56 2007 +0200
63912
63913 [Motion-PRO] Add ATA support. Add CF-booting commands to the default
63914 environment.
63915
63916 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
63917 Author: Bartlomiej Sieka <tur@semihalf.com>
63918 Date: Tue May 8 09:39:12 2007 +0200
63919
63920 [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
63921 eliminates networking problems in Linux (timeouts).
63922
63923 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
63924 Author: Bartlomiej Sieka <tur@semihalf.com>
63925 Date: Tue May 8 09:21:57 2007 +0200
63926
63927 [Motion-PRO] Enable Flat Device Tree support and modify default environment
63928 to allow booting of FDT-expecting kernels.
63929
63930 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
63931 Author: Michal Simek <monstr@monstr.eu>
63932 Date: Mon May 7 23:58:31 2007 +0200
63933
63934 new: USE_MSR_INTR support
63935
63936 commit 008861a2f3ef2c062744d733787c7e530a1b8761
63937 Author: Bartlomiej Sieka <tur@semihalf.com>
63938 Date: Mon May 7 22:36:15 2007 +0200
63939
63940 [MPC5xxx] There are networking problems on the Motion-PRO board with
63941 current PHY initalization code (tftp timeouts all the time). This commit
63942 temporarily disables PHY initalization sequence to make the networking
63943 operational, until a fix is found.
63944
63945 commit abca901869c3760b6c5fecb825db6c1d91a78a93
63946 Author: Wolfgang Denk <wd@denx.de>
63947 Date: Mon May 7 22:10:36 2007 +0200
63948
63949 Get rid of duplicated file (see include/configs/sbc8560.h instead)
63950
63951 Signed-off-by: Wolfgang Denk <wd@denx.de>
63952
63953 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
63954 Author: Wolfgang Denk <wd@denx.de>
63955 Date: Mon May 7 22:07:08 2007 +0200
63956
63957 Get rid of duplicated file (see doc/README.SBC8560 instead)
63958
63959 Signed-off-by: Wolfgang Denk <wd@denx.de>
63960
63961 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
63962 Author: Michal Simek <monstr@monstr.eu>
63963 Date: Mon May 7 19:43:10 2007 +0200
63964
63965 fix: read and write MSR - repair number of parameters
63966
63967 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
63968 Author: Jeffrey Mann <mannj@embeddedplanet.com>
63969 Date: Mon May 7 19:42:49 2007 +0200
63970
63971 [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
63972
63973 A '3' got cut off in the formatting of the last patch to automatically
63974 change the clock speed of the system clock on sequoia board.
63975
63976 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
63977 Signed-off-by: Stefan Roese <sr@denx.de>
63978
63979 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
63980 Author: Michal Simek <monstr@monstr.eu>
63981 Date: Mon May 7 19:33:51 2007 +0200
63982
63983 new: fsl interrupt support
63984 FSL_Has_data is connected to INTC.
63985
63986 commit 792032baa7d625e34c981ab6df521911bd8dc861
63987 Author: Michal Simek <monstr@monstr.eu>
63988 Date: Mon May 7 19:30:12 2007 +0200
63989
63990 fix: interrupt handler
63991 remove asm code
63992
63993 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
63994 Author: Michal Simek <monstr@monstr.eu>
63995 Date: Mon May 7 19:25:08 2007 +0200
63996
63997 fix: remove asm code
63998
63999 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
64000 Author: Michal Simek <monstr@monstr.eu>
64001 Date: Mon May 7 19:12:43 2007 +0200
64002
64003 fix: clean interrupt
64004
64005 commit 42efed6130c8fcf7da881385b5427065d2801757
64006 Author: Michal Simek <monstr@monstr.eu>
64007 Date: Mon May 7 17:22:25 2007 +0200
64008
64009 fix: interrupt handler for multiple sources
64010
64011 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
64012 Author: Michal Simek <monstr@monstr.eu>
64013 Date: Mon May 7 17:11:09 2007 +0200
64014
64015 new: add writing to msr register
64016
64017 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
64018 Author: Markus Klotzbuecher <mk@denx.de>
64019 Date: Mon May 7 16:43:56 2007 +0200
64020
64021 Fix an ancient CHANGELOG conflict
64022
64023 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
64024 Author: Timur Tabi <timur@freescale.com>
64025 Date: Sat May 5 08:12:30 2007 +0200
64026
64027 5xxx: write MAC address to mac-address and local-mac-address
64028
64029 Some device trees have a mac-address property, some have local-mac-address,
64030 and some have both. To support all of these device trees, ftp_cpu_setup()
64031 should write the MAC address to mac-address and local-mac-address, if they
64032 exist.
64033
64034 Signed-off-by: Timur Tabi <timur@freescale.com>
64035 Acked-by: Grant Likely <grant.likely@secretlab.ca>
64036
64037 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
64038 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
64039 Date: Sun Apr 29 14:01:54 2007 +0200
64040
64041 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
64042
64043 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
64044 message. Use PVR to distinguish between the two variants, and print proper CPU
64045 information.
64046
64047 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
64048 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
64049 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64050
64051 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
64052 Author: Ladislav Michl <ladis@linux-mips.org>
64053 Date: Wed Apr 25 16:01:26 2007 +0200
64054
64055 [PATCH] simplify silent console
64056
64057 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
64058 Acked-by: Stefan Roese <sr@denx.de>
64059
64060 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
64061 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
64062 Date: Mon Apr 23 15:30:39 2007 +0200
64063
64064 [PATCH] Avoid assigning PCI resources from zero address
64065
64066 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
64067 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
64068 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
64069 sentence about "0" being considered an invalid address) -- so, use a reasonable
64070 starting value of 0x1000 (that's what the most Linux archs are using).
64071
64072 Alternatively, one might have fixed the calls to pci_set_region() individually
64073 (some code even seems to have taken care of this issue) but that would have
64074 been a lot more work. :-)
64075
64076 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
64077 Acked-by: Stefan Roese <sr@denx.de>
64078
64079 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
64080 Author: Jeffrey Mann <mannj@embeddedplanet.com>
64081 Date: Mon Apr 23 14:00:11 2007 +0200
64082
64083 [patch] setenv(...) can delete environmentalvariables
64084
64085 update setenv() function so that entering a NULL value for the
64086 variable's value will delete the environmental variable
64087
64088 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
64089 Acked-by: Stefan Roese <sr@denx.de>
64090
64091 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
64092 Author: Mike Frysinger <vapier@gentoo.org>
64093 Date: Mon Apr 23 13:54:24 2007 +0200
64094
64095 [patch] use unsigned char in smc91111 driver for mac
64096
64097 the v_mac variable in the smc91111 driver is declared as a signed char ...
64098 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
64099 because when it gets printed out, you get a display like:
64100 0xFFFFFFE0 and that's no good
64101
64102 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
64103
64104 commit ffc50f9bb194343c6303517a517708457a5eb6b8
64105 Author: Michal Simek <monstr@monstr.eu>
64106 Date: Sat May 5 18:54:42 2007 +0200
64107
64108 new: FSL and MSR support #2
64109
64110 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
64111 Author: Michal Simek <monstr@monstr.eu>
64112 Date: Sat May 5 18:27:16 2007 +0200
64113
64114 new: FSL and MSR support
64115
64116 commit 2f15278c2eb911c668b4fe562130b78cf554d139
64117 Author: Wolfgang Denk <wd@denx.de>
64118 Date: Sat May 5 18:23:11 2007 +0200
64119
64120 Coding stylke cleanup; update CHANGELOG.
64121
64122 Signed-off-by: Wolfgang Denk <wd@denx.de>
64123
64124 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
64125 Author: Wolfgang Denk <wd@denx.de>
64126 Date: Sat May 5 18:05:02 2007 +0200
64127
64128 Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
64129
64130 Signed-off-by: Wolfgang Denk <wd@denx.de>
64131
64132 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
64133 Author: Wolfgang Denk <wd@denx.de>
64134 Date: Sat May 5 17:15:50 2007 +0200
64135
64136 Make "file" command happy with some config.mk files; update CHANGELOG
64137
64138 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
64139 Author: Jeffrey Mann <mannj@embeddedplanet.com>
64140 Date: Sat May 5 08:32:14 2007 +0200
64141
64142 ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
64143
64144 The AMCC Secquoia board has been changed in a new revision from using a
64145 33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
64146 indicates the difference. This patch reads that bit and uses the correct
64147 clock speed for the board. This code is backward compatable will all
64148 prior boards. All prior boards will be read as 33.000.
64149
64150 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
64151 Signed-off-by: Stefan Roese <sr@denx.de>
64152
64153 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
64154 Author: Stefan Roese <sr@denx.de>
64155 Date: Sat May 5 08:29:01 2007 +0200
64156
64157 ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
64158
64159 Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
64160 for the 4k NAND boot image so define bus_frequency to 133MHz here
64161 which is save for the refresh counter setup.
64162
64163 Signed-off-by: Stefan Roese <sr@denx.de>
64164
64165 commit 2f550ab976405300f5b07bf2890800840d0aa05f
64166 Author: Timur Tabi <timur@freescale.com>
64167 Date: Sat May 5 08:12:30 2007 +0200
64168
64169 5xxx: write MAC address to mac-address and local-mac-address
64170
64171 Some device trees have a mac-address property, some have local-mac-address,
64172 and some have both. To support all of these device trees, ftp_cpu_setup()
64173 should write the MAC address to mac-address and local-mac-address, if they
64174 exist.
64175
64176 Signed-off-by: Timur Tabi <timur@freescale.com>
64177 Acked-by: Grant Likely <grant.likely@secretlab.ca>
64178
64179 commit a79886590593ba1d667c840caa4940c61639f18f
64180 Author: Thomas Knobloch <knobloch@siemens.com>
64181 Date: Sat May 5 07:04:42 2007 +0200
64182
64183 NAND: Wrong calculation of page number in nand_block_bad()
64184
64185 In case that there is no memory based bad block table available the
64186 function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
64187 nand_block_bad() directly. When parameter 'getchip' is set to zero,
64188 nand_block_bad() will not right shift the offset to calculate the
64189 correct page number.
64190
64191 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
64192 Signed-off-by: Stefan Roese <sr@denx.de>
64193
64194 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
64195 Author: Wolfgang Denk <wd@denx.de>
64196 Date: Fri May 4 10:02:33 2007 +0200
64197
64198 Fix initrd length corruption in bootm command.
64199
64200 When using FDT Images, the length of an inital ramdisk was
64201 overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
64202
64203 Patches by Timur Tabi & Johns Daniel.
64204
64205 Signed-off-by: Wolfgang Denk <wd@denx.de>
64206
64207 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
64208 Author: Kim Phillips <kim.phillips@freescale.com>
64209 Date: Thu May 3 19:43:52 2007 -0500
64210
64211 mpc83xx: fix trivial error in MAKEALL
64212
64213 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64214
64215 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
64216 Author: Wolfgang Denk <wd@denx.de>
64217 Date: Thu May 3 16:34:41 2007 +0200
64218
64219 Update board configuration for STX GP3SSA board:
64220
64221 Enable hush shell, environment in flash rather in EEPROM,
64222 more user-friendly default environment, etc.
64223 The simple EEPROM environment can be selected easily in the board
64224 config file.
64225
64226 Signed-off-by: Wolfgang Denk <wd@denx.de>
64227
64228 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
64229 Author: Wolfgang Denk <wd@denx.de>
64230 Date: Tue Apr 24 14:37:49 2007 +0200
64231
64232 Cleanup STX GP3SSA code; fix build and compile problems.
64233
64234 commit 35171dc04e028ecacc23ad916a66295472555dbf
64235 Author: Dan Malek <dan@embeddedalley.com>
64236 Date: Fri Jan 5 09:15:34 2007 +0100
64237
64238 Add support for STX GP3SSA (stxssa) Board
64239
64240 Signed-off-by Dan Malek, <dan@embeddedalley.com>
64241
64242 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
64243 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
64244 Date: Wed May 2 13:31:53 2007 +0200
64245
64246 macb: Don't restart autonegotiation if we already have link
64247
64248 Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
64249 link is already up.
64250
64251 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64252
64253 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
64254 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
64255 Date: Wed May 2 13:22:38 2007 +0200
64256
64257 macb: Introduce a few barriers when dealing with DMA descriptors
64258
64259 There were a few theoretical possibilities that the compiler might
64260 optimize away DMA descriptor reads and/or writes and thus cause
64261 synchronization problems with the hardware. Insert barriers where
64262 we depend on reads/writes actually hitting memory.
64263
64264 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64265
64266 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
64267 Author: Andy Fleming <afleming@freescale.com>
64268 Date: Sat Feb 24 01:08:13 2007 -0600
64269
64270 Cleaned up some 85xx PCI bugs
64271
64272 * Cleaned up the CDS PCI Config Tables and added NULL entries to
64273 the end
64274 * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
64275 * Fixed 85xx PCI code to assign powar region sizes based on the
64276 config values (rather than hard-coding them)
64277 * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
64278
64279 Signed-off-by: Andy Fleming <afleming@freescale.com>
64280
64281 commit 6743105988fc44d5b0d30388c790607835aae7a6
64282 Author: Andy Fleming <afleming@freescale.com>
64283 Date: Mon Apr 23 02:54:25 2007 -0500
64284
64285 Add support for the 8568 MDS board
64286
64287 This included some changes to common files:
64288 * Add 8568 processor SVR to various places
64289 * Add support for setting the qe bus-frequency value in the dts
64290 * Add the 8568MDS target to the Makefile
64291
64292 Signed-off-by: Andy Fleming <afleming@freescale.com>
64293
64294 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
64295 Author: David Updegraff <dave@cray.com>
64296 Date: Fri Apr 20 14:34:48 2007 -0500
64297
64298 Add support for treating unknown PHYs as generic PHYs.
64299
64300 When bringing up u-boot on new boards, PHY support sometimes gets
64301 neglected. Most PHYs don't really need any special support,
64302 though. By adding a generic entry that always matches if nothing
64303 else does, we can provide support for "unsupported" PHYs for the
64304 tsec.
64305
64306 The generic PHY driver supports most PHYs, including gigabit.
64307
64308 Signed-off-by: David Updegraff <dave@cray.com>
64309 Signed-off-by: Andy Fleming <afleming@freescale.com>
64310
64311 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
64312 Author: James Yang <James.Yang@freescale.com>
64313 Date: Wed Feb 7 15:28:04 2007 -0600
64314
64315 Conditionalize 8641 Rev1.0 MCM workarounds
64316
64317 Signed-off-by: James Yang <James.Yang@freescale.com>
64318 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64319
64320 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
64321 Author: Timur Tabi <timur@freescale.com>
64322 Date: Mon Apr 30 13:59:50 2007 -0500
64323
64324 Fix memory initialization on MPC8349E-mITX
64325
64326 Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
64327 This allows ddr->sdram_clk_cntl to be properly initialized. This is necessary
64328 on some ITX boards, notably those with a revision 3.1 CPU.
64329
64330 Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
64331 ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
64332
64333 Signed-off-by: Timur Tabi <timur@freescale.com>
64334 Acked-by: Michael Benedict <MBenedict@twacs.com>
64335 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64336
64337 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
64338 Author: Kim Phillips <kim.phillips@freescale.com>
64339 Date: Mon Apr 30 15:26:21 2007 -0500
64340
64341 mpc83xx: replace elaborate boottime verbosity with 'clocks' command
64342
64343 and fix CPU: to align with Board: display text.
64344
64345 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64346
64347 commit c1ab82669d9525998c34e802a12cad662723f22a
64348 Author: James Yang <James.Yang@freescale.com>
64349 Date: Fri Mar 16 13:02:53 2007 -0500
64350
64351 Rewrote picos_to_clk() to avoid rounding errors.
64352 Clarified that conversion is to DRAM clocks rather than platform clocks.
64353 Made function static to spd_sdram.c.
64354
64355 Signed-off-by: James Yang <James.Yang@freescale.com>
64356 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64357
64358 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
64359 Author: Stefan Roese <sr@denx.de>
64360 Date: Sun Apr 29 14:13:01 2007 +0200
64361
64362 ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
64363
64364 Signed-off-by: Stefan Roese <sr@denx.de>
64365
64366 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
64367 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
64368 Date: Sun Apr 29 14:01:54 2007 +0200
64369
64370 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
64371
64372 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
64373 message. Use PVR to distinguish between the two variants, and print proper CPU
64374 information.
64375
64376 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
64377 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
64378 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64379
64380 commit 5c5d3242935cf3543af01142627494434834cf98
64381 Author: Kim Phillips <kim.phillips@freescale.com>
64382 Date: Wed Apr 25 12:34:38 2007 -0500
64383
64384 mpc83xx: minor fixups for 8313rdb introduction
64385
64386 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
64387 Author: Ladislav Michl <ladis@linux-mips.org>
64388 Date: Wed Apr 25 16:01:26 2007 +0200
64389
64390 [PATCH] simplify silent console
64391
64392 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
64393 Acked-by: Stefan Roese <sr@denx.de>
64394
64395 commit 144876a380f5756f57412caf74c1d6dc201dd796
64396 Author: Michal Simek <monstr@monstr.eu>
64397 Date: Tue Apr 24 23:01:02 2007 +0200
64398
64399 [PATCH] MTD partition support, JFFS2 support
64400
64401 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
64402 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64403 Date: Tue Apr 24 14:03:45 2007 +0200
64404
64405 ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
64406
64407 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64408
64409 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
64410 Author: Andy Fleming <afleming@freescale.com>
64411 Date: Mon Apr 23 02:37:47 2007 -0500
64412
64413 Reworked 85xx speed detection code
64414
64415 Changed the code to read the registers and calculate the clock
64416 rates, rather than using a "switch" statement.
64417
64418 Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
64419
64420 Signed-off-by: Andy Fleming <afleming@freescale.com>
64421
64422 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
64423 Author: Andy Fleming <afleming@freescale.com>
64424 Date: Mon Apr 23 02:24:28 2007 -0500
64425
64426 Enable 8544 support
64427
64428 * Add support to the Makefile
64429 * Add 8544 configuration support to the tsec driver
64430 * Add 8544 SVR numbers to processor.h
64431
64432 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64433 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64434
64435 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
64436 Author: Andy Fleming <afleming@freescale.com>
64437 Date: Fri Feb 23 17:12:25 2007 -0600
64438
64439 Support 1G size on 8548
64440
64441 e500v2 and newer cores support 1G page sizes.
64442
64443 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64444 Signed-off-by: Andy Fleming <afleming@freescale.com>
64445
64446 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
64447 Author: Andy Fleming <afleming@freescale.com>
64448 Date: Fri Feb 23 17:11:16 2007 -0600
64449
64450 Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
64451
64452 The other pagesz constants use one letter to specify order of
64453 magnitude. Also change the one reference to it in mpc8548cds/init.S
64454
64455 Signed-off-by: Andy Fleming <afleming@freescale.com>
64456
64457 commit 1f9a318cea14272edd10d63739e2d326c90f430e
64458 Author: Andy Fleming <afleming@freescale.com>
64459 Date: Fri Feb 23 16:28:46 2007 -0600
64460
64461 Only set ddrioovcr for 8548 rev1.
64462
64463 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64464 Signed-off-by: Andy Fleming <afleming@freescale.com>
64465
64466 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
64467 Author: Andy Fleming <afleming@freescale.com>
64468 Date: Sat Feb 24 01:16:45 2007 -0600
64469
64470 Tweak DDR ECC error counter
64471
64472 Enable single-bit error counter when memory was cleared by ddr controller.
64473
64474 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64475 Signed-off-by: Andy Fleming <afleming@freescale.com>
64476
64477 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
64478 Author: Timur Tabi <timur@freescale.com>
64479 Date: Mon Feb 12 13:34:55 2007 -0600
64480
64481 85xx: write MAC address to mac-address and local-mac-address
64482
64483 Some device trees have a mac-address property, some have local-mac-address,
64484 and some have both. To support all of these device trees, ftp_cpu_setup()
64485 should write the MAC address to mac-address and local-mac-address, if they
64486 exist.
64487
64488 Signed-off-by: Timur Tabi <timur@freescale.com>
64489
64490 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
64491 Author: Andy Fleming <afleming@freescale.com>
64492 Date: Mon Apr 23 01:44:44 2007 -0500
64493
64494 Some 85xx cpu cleanups
64495
64496 * Cleaned up the TSR[WIS] clearing
64497 * Cleaned up DMA initialization
64498
64499 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64500 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64501 Acked-by: Andy Fleming <afleming@freescale.com>
64502
64503 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
64504 Author: Andy Fleming <afleming@freescale.com>
64505 Date: Mon Apr 23 01:32:22 2007 -0500
64506
64507 Add cpu support for the 8544
64508
64509 Recognize new SVR values, and add a few register definitions
64510
64511 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64512 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64513 Acked-by: Andy Fleming <afleming@freescale.com>
64514
64515 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
64516 Author: Jon Loeliger <jdl@freescale.com>
64517 Date: Wed Apr 11 16:51:02 2007 -0500
64518
64519 Add MPC8544DS basic port board files.
64520
64521 Add board port under new board/freescale directory
64522 structure and reuse existing PIXIS FPGA support there.
64523
64524 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64525 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64526
64527 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
64528 Author: Jon Loeliger <jdl@freescale.com>
64529 Date: Wed Apr 11 16:50:57 2007 -0500
64530
64531 Add MPC8544DS main configuration file.
64532
64533 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64534 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64535
64536 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
64537 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
64538 Date: Wed Dec 27 22:07:15 2006 +0300
64539
64540 Fix PCI I/O space mapping on Freescale MPC85x0ADS
64541
64542 The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
64543 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
64544 describing the local address window used for the PCI I/O space accesses -- fix
64545 this and carry over the necessary changes into the MPC8560ADS code since the
64546 PCI I/O space mapping was also broken for this board (by the earlier commit
64547 087454609e47295443af793a282cddcd91a5f49c). Add the comments clarifying how
64548 the PCI I/O space must be mapped to all the MPC85xx board config. headers.
64549
64550 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
64551
64552 board/mpc8540ads/init.S | 4 ++--
64553 board/mpc8560ads/init.S | 4 ++--
64554 include/configs/MPC8540ADS.h | 5 ++---
64555 include/configs/MPC8541CDS.h | 2 +-
64556 include/configs/MPC8548CDS.h | 2 +-
64557 include/configs/MPC8560ADS.h | 8 ++++----
64558 6 files changed, 12 insertions(+), 13 deletions(-)
64559
64560 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
64561 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
64562 Date: Tue Dec 5 16:42:30 2006 +0800
64563
64564 u-boot: Fix e500 v2 core reset bug
64565
64566 The following patch fixes the e500 v2 core reset bug.
64567 For e500 v2 core, a new reset control register is added to reset the
64568 processor.
64569
64570 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
64571
64572 commit 63247a5acd58032e6cf33f525bc3923b467bac88
64573 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
64574 Date: Wed Dec 20 11:01:00 2006 +0800
64575
64576 u-boot: v2: Remove the fixed TLB and LAW entrynubmer
64577
64578 Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
64579 entry number to control the loop. This can reduce the potential risk
64580 for the 85xx processor increasing its TLB adn LAW entry number.
64581
64582 Signed-off-by: Swarthout Edward <swarthout@freescale.com>
64583 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
64584
64585 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
64586 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
64587 Date: Mon Dec 18 17:01:04 2006 +0800
64588
64589 u-boot: Fix the 85xxcds tsec bug
64590
64591 Fix the 85xxcds tsec bug.
64592 When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
64593
64594 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
64595
64596 commit 7337b237ffc4aaf1b9467024fe472a880d852598
64597 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
64598 Date: Fri Dec 15 14:43:31 2006 +0800
64599
64600 u-boot: Fix CPU2 errata on MPC8548CDS board
64601
64602 This patch apply workaround of CPU2 errata on MPC8548CDS board.
64603
64604 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
64605
64606 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
64607 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
64608 Date: Mon Dec 18 16:25:15 2006 +0800
64609
64610 u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
64611
64612 This patch disables MPC8548CDS 2T_TIMING for DDR by default.
64613
64614 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
64615
64616 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
64617 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
64618 Date: Thu Dec 14 14:14:55 2006 +0800
64619
64620 u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
64621
64622 Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
64623 board.
64624 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
64625
64626 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
64627 Author: Scott Wood <scottwood@freescale.com>
64628 Date: Mon Apr 16 14:54:15 2007 -0500
64629
64630 mpc83xx: Add MPC8313ERDB support.
64631
64632 Signed-off-by: Scott Wood <scottwood@freescale.com>
64633
64634 commit 49ea3b6eafe606285ae4d5c378026153dde53200
64635 Author: Scott Wood <scottwood@freescale.com>
64636 Date: Mon Apr 16 14:34:21 2007 -0500
64637
64638 mpc83xx: Add generic PCI setup code.
64639
64640 Board code can now request the generic setup code rather than having to
64641 copy-and-paste it for themselves. Boards should be converted to use this
64642 once they're tested with it.
64643
64644 Signed-off-by: Scott Wood <scottwood@freescale.com>
64645
64646 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
64647 Author: Scott Wood <scottwood@freescale.com>
64648 Date: Mon Apr 16 14:34:19 2007 -0500
64649
64650 mpc83xx: Add 831x support to speed.c.
64651
64652 Signed-off-by: Scott Wood <scottwood@freescale.com>
64653
64654 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
64655 Author: Scott Wood <scottwood@freescale.com>
64656 Date: Mon Apr 16 14:34:18 2007 -0500
64657
64658 mpc83xx: Add 831x support to global_data.h
64659
64660 Signed-off-by: Scott Wood <scottwood@freescale.com>
64661
64662 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
64663 Author: Scott Wood <scottwood@freescale.com>
64664 Date: Mon Apr 16 14:34:16 2007 -0500
64665
64666 mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
64667
64668 Rather than misleadingly define PVR_83xx as the specific type of 83xx
64669 being built for, the PVR of each core revision is defined. checkcpu() now
64670 prints the core that it detects, rather than aborting if it doesn't find
64671 what it thinks it wants.
64672
64673 Signed-off-by: Scott Wood <scottwood@freescale.com>
64674
64675 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
64676 Author: Scott Wood <scottwood@freescale.com>
64677 Date: Mon Apr 16 14:34:15 2007 -0500
64678
64679 mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
64680
64681 Signed-off-by: Scott Wood <scottwood@freescale.com>
64682
64683 commit d87c57b201b4572d16f1b642998faa00c9912b16
64684 Author: Scott Wood <scottwood@freescale.com>
64685 Date: Mon Apr 16 14:31:55 2007 -0500
64686
64687 mpc83xx: Add register definitions for MPC831x.
64688
64689 Signed-off-by: Scott Wood <scottwood@freescale.com>
64690
64691 commit 7fc4c71a143be8666d70803fb25ae60379c95622
64692 Author: Stefan Roese <sr@denx.de>
64693 Date: Mon Apr 23 15:39:59 2007 +0200
64694
64695 Fix file mode
64696
64697 Signed-off-by: Stefan Roese <sr@denx.de>
64698
64699 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
64700 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
64701 Date: Mon Apr 23 15:30:39 2007 +0200
64702
64703 [PATCH] Avoid assigning PCI resources from zero address
64704
64705 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
64706 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
64707 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
64708 sentence about "0" being considered an invalid address) -- so, use a reasonable
64709 starting value of 0x1000 (that's what the most Linux archs are using).
64710
64711 Alternatively, one might have fixed the calls to pci_set_region() individually
64712 (some code even seems to have taken care of this issue) but that would have
64713 been a lot more work. :-)
64714
64715 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
64716 Acked-by: Stefan Roese <sr@denx.de>
64717
64718 commit afb903a2eb9436baa9270ccc0c27082d86497d89
64719 Author: Jeffrey Mann <mannj@embeddedplanet.com>
64720 Date: Mon Apr 23 14:00:11 2007 +0200
64721
64722 [patch] setenv(...) can delete environmentalvariables
64723
64724 update setenv() function so that entering a NULL value for the
64725 variable's value will delete the environmental variable
64726
64727 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
64728 Acked-by: Stefan Roese <sr@denx.de>
64729
64730 commit 36f104e5caa747d568eff26b369565af57c2ffa6
64731 Author: Mike Frysinger <vapier@gentoo.org>
64732 Date: Mon Apr 23 13:54:24 2007 +0200
64733
64734 [patch] use unsigned char in smc91111 driver for mac
64735
64736 the v_mac variable in the smc91111 driver is declared as a signed char ...
64737 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
64738 because when it gets printed out, you get a display like:
64739 0xFFFFFFE0 and that's no good
64740
64741 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
64742
64743 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
64744 Author: Rodolfo Giometti <giometti@enneenne.com>
64745 Date: Mon Apr 23 13:10:52 2007 +0200
64746
64747 USB: (Another) delay for crappy USB keys.
64748
64749 Some USB keys are slow in giving back an answer when the Root HUB
64750 enables power lines.
64751
64752 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
64753
64754 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
64755 Author: Stefan Roese <sr@denx.de>
64756 Date: Mon Apr 23 12:00:22 2007 +0200
64757
64758 Remove BOARDLIBS usage completely
64759
64760 Signed-off-by: Stefan Roese <sr@denx.de>
64761
64762 commit 32556443840f127170e4baa8bdd5b567039f6c36
64763 Author: Michal Simek <monstr@monstr.eu>
64764 Date: Sat Apr 21 21:07:22 2007 +0200
64765
64766 [PATCH] SystemACE support for Microblaze
64767
64768 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
64769 Author: Michal Simek <monstr@monstr.eu>
64770 Date: Sat Apr 21 21:02:40 2007 +0200
64771
64772 16bit read/write little endian
64773
64774 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
64775 Author: Michal Simek <monstr@monstr.eu>
64776 Date: Sat Apr 21 20:53:31 2007 +0200
64777
64778 Change ML401 parameters - Xilinx BSP
64779
64780 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
64781 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
64782 Date: Wed Feb 28 05:37:29 2007 -0600
64783
64784 mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
64785
64786 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64787
64788 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
64789 Author: Zhang Wei <wei.zhang@freescale.com>
64790 Date: Fri Jan 19 10:42:37 2007 +0800
64791
64792 Enable LAWs for MPC8641 PCI-Ex2.
64793
64794 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
64795 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64796
64797 commit bd7851ce1e1f140665b520026abf1042968b1102
64798 Author: Jon Loeliger <jdl@freescale.com>
64799 Date: Fri Apr 20 14:12:26 2007 -0500
64800
64801 mpc86xx; Write MAC address to mac-address and local-mac-address
64802
64803 Some device trees have a mac-address property, some have local-mac-address,
64804 and some have both. To support all of these device trees, ftp_cpu_setup()
64805 should write the MAC address to mac-address and local-mac-address, if they
64806 exist.
64807
64808 Signed-off-by: Timur Tabi <timur@freescale.com>
64809 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64810
64811 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
64812 Author: Jon Loeliger <jdl@freescale.com>
64813 Date: Fri Apr 20 14:11:38 2007 -0500
64814
64815 mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
64816
64817 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64818 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64819
64820 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
64821 Author: Wolfgang Denk <wd@denx.de>
64822 Date: Fri Apr 20 17:43:28 2007 +0200
64823
64824 Cleanup compiler warnings, update CHANGELOG
64825
64826 Signed-off-by: Wolfgang Denk <wd@denx.de>
64827
64828 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
64829 Author: Detlev Zundel <dzu@denx.de>
64830 Date: Fri Apr 20 12:01:47 2007 +0200
64831
64832 Fix breakage of NC650 board with respect to nand support.
64833
64834 Signed-off-by: Detlev Zundel <dzu@denx.de>
64835
64836 commit 39f23cd90947639ac278a18ff277ec786b5ac167
64837 Author: Domen Puncer <domen.puncer@telargo.com>
64838 Date: Fri Apr 20 11:13:16 2007 +0200
64839
64840 [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
64841
64842 G2 core reference manual says decrementer and time base
64843 are decreasing/increasing once every 4 bus clock cycles.
64844 Lets fix it, so time in Linux won't run twice as fast
64845
64846 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
64847 Acked-by: Grant Likely <grant.likely@secretlab.ca>
64848
64849 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
64850 Author: Gerald Van Baren <vanbaren@cideas.com>
64851 Date: Thu Apr 19 23:14:39 2007 -0400
64852
64853 Fix serious pointer bug with bootm and reserve map.
64854
64855 What was suppose to be a stack variable was declared as a pointer,
64856 overwriting random memory.
64857 Also moved the libfdt.a requirement into the main Makefile. That is
64858 The U-Boot Way.
64859
64860 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
64861 Author: Stefan Roese <sr@denx.de>
64862 Date: Thu Apr 19 09:53:52 2007 +0200
64863
64864 ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
64865
64866 Previous versions used full wait states for the chip select #1 which
64867 is connected to the Xilinix SystemACE controller on the AMCC Katmai
64868 evaluation board. This leads to really slow access and therefore low
64869 performance. This patch now sets up the chip select a lot faster
64870 resulting in much better read/write performance of the Linux driver.
64871
64872 Signed-off-by: Stefan Roese <sr@denx.de>
64873
64874 commit 37837828d89084879bee2f2b8c7c68d4695940df
64875 Author: Wolfgang Denk <wd@denx.de>
64876 Date: Wed Apr 18 17:49:29 2007 +0200
64877
64878 Clenaup, update CHANGELOG
64879
64880 Signed-off-by: Wolfgang Denk <wd@denx.de>
64881
64882 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
64883 Author: Wolfgang Denk <wd@denx.de>
64884 Date: Wed Apr 18 17:20:58 2007 +0200
64885
64886 Update CHANGELOG
64887
64888 Signed-off-by: Wolfgang Denk <wd@denx.de>
64889
64890 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
64891 Author: Wolfgang Denk <wd@denx.de>
64892 Date: Wed Apr 18 17:07:26 2007 +0200
64893
64894 Cleanup, update CHANGELOG
64895
64896 Sigend-off-by: Wolfgang Denk <wd@denx.de>
64897
64898 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
64899 Author: Wolfgang Denk <wd@denx.de>
64900 Date: Wed Apr 18 16:17:46 2007 +0200
64901
64902 Update CHANGELOG
64903
64904 commit ad4eb555671d97f96dc56eab55103b1f86874b01
64905 Author: Wolfgang Denk <wd@denx.de>
64906 Date: Wed Apr 18 14:30:39 2007 +0200
64907
64908 MCC200 board: remove warning which is obsolete after PSoC firmware changes
64909
64910 Signed-off-by: Wolfgang Denk <wd@denx.de>
64911
64912 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
64913 Author: Domen Puncer <domen.puncer@telargo.com>
64914 Date: Wed Apr 18 12:11:05 2007 +0200
64915
64916 [PATCH] icecube/lite5200b: document wakeup from low-power support
64917
64918 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
64919
64920 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
64921 Author: Stefan Roese <sr@denx.de>
64922 Date: Wed Apr 18 12:07:47 2007 +0200
64923
64924 ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
64925
64926 Signed-off-by: Stefan Roese <sr@denx.de>
64927
64928 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
64929 Author: Stefan Roese <sr@denx.de>
64930 Date: Wed Apr 18 12:05:59 2007 +0200
64931
64932 ppc4xx: Add output for bootrom location to 405EZ ports
64933
64934 Now 405EZ ports also show upon bootup from which boot device
64935 they are configured to boot:
64936
64937 U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
64938
64939 CPU: AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
64940 Bootstrap Option E - Boot ROM Location EBC (32 bits)
64941 16 kB I-Cache 16 kB D-Cache
64942 Board: Acadia - AMCC PPC405EZ Evaluation Board
64943
64944 Signed-off-by: Stefan Roese <sr@denx.de>
64945
64946 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
64947 Author: Peter Pearse <peter.pearse@arm.com>
64948 Date: Tue Apr 17 13:30:33 2007 +0100
64949
64950 Move ppearse to ARM board list
64951 Add Konstantin Kletschke for scb9328.
64952 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
64953
64954 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
64955 Author: Domen Puncer <domen.puncer@telargo.com>
64956 Date: Mon Apr 16 14:00:13 2007 +0200
64957
64958 [PATCH] icecube/lite5200b: wakeup from low-power support
64959
64960 U-Boot part of Lite5200b low power mode support.
64961 Puts SDRAM out of self-refresh and transfers control to
64962 address saved at physical 0x0.
64963
64964 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
64965 Acked-by: Grant Likely <grant.likely@secretlab.ca>
64966
64967 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
64968 Author: Gerald Van Baren <vanbaren@cideas.com>
64969 Date: Sun Apr 15 13:54:26 2007 -0400
64970
64971 Fix the ft_cpu_setup() property settings.
64972
64973 Use "setter" functions instead of flags, cleaner and more flexible.
64974 It also fixes the problem noted by Timur Tabi that the ethernet MAC
64975 addresses were all being set incorrectly to the same MAC address.
64976
64977 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
64978 Author: Gerald Van Baren <vanbaren@cideas.com>
64979 Date: Sat Apr 14 22:51:24 2007 -0400
64980
64981 Improve the bootm command for CONFIG_OF_LIBFDT
64982
64983 In bootm, create the "/chosen" node only if it doesn't already exist
64984 (better matches the previous behavior).
64985 Update for proper reserved memory map handling for initrd.
64986
64987 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
64988 Author: Gerald Van Baren <vanbaren@cideas.com>
64989 Date: Sat Apr 14 22:46:41 2007 -0400
64990
64991 Add some utilities to manipulate the reserved memory map.
64992
64993 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
64994 Author: Wolfgang Denk <wd@denx.de>
64995 Date: Sat Apr 14 21:16:54 2007 +0200
64996
64997 Update CHANGELOG
64998
64999 commit 8e6875183cdca91c134408d119d4abcd48ef6856
65000 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65001 Date: Sun Dec 17 18:56:46 2006 +0100
65002
65003 AVR32: Enable MMC support
65004
65005 Set up the portmux for the MMC interface and enable the MMC driver
65006 along with support for DOS partitions, ext2 and FAT filesystems.
65007
65008 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65009
65010 commit fc26c97bb6df41b4a95662c34054fe912387bf38
65011 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65012 Date: Fri Jan 20 10:03:53 2006 +0100
65013
65014 Atmel MCI driver
65015
65016 Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
65017
65018 The AT91 ARM-based CPUs use basically the same hardware, so it should
65019 be possible to share this driver, but no effort has been made so far.
65020
65021 Hardware documentation can be found in the AT32AP7000 data sheet,
65022 which can be downloaded from
65023
65024 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
65025
65026 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65027
65028 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
65029 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65030 Date: Sun Dec 17 18:55:37 2006 +0100
65031
65032 AVR32: Add clk and gpio infrastructure for mmci
65033
65034 Implement functions for configuring the mmci pins, as well as
65035 functions for getting the clock rate of the mmci controller.
65036
65037 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65038
65039 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
65040 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65041 Date: Sun Dec 17 18:53:56 2006 +0100
65042
65043 Enable partition support with MMC
65044
65045 Include implementations of init_part() and get_partition_info() when
65046 CONFIG_MMC is set.
65047
65048 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65049
65050 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
65051 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65052 Date: Sun Dec 17 17:14:30 2006 +0100
65053
65054 AVR32: Enable networking
65055
65056 Implement MACB initialization for AVR32 and ATSTK1000, and turn
65057 everything on, including the MACB driver.
65058
65059 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65060
65061 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
65062 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65063 Date: Fri Jan 20 10:03:34 2006 +0100
65064
65065 Atmel MACB ethernet driver
65066
65067 Driver for the Atmel MACB on-chip ethernet controller.
65068
65069 This driver has been tested on the ATSTK1000 board with a AT32AP7000
65070 CPU. It should probably work on AT91SAM926x as well with some minor
65071 modifications.
65072
65073 Hardware documentation can be found in the AT32AP7000 data sheet,
65074 which can be downloaded from
65075
65076 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
65077
65078 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65079
65080 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
65081 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65082 Date: Sun Dec 17 16:56:14 2006 +0100
65083
65084 AVR32: Add clk and gpio infrastructure for macb0 and macb1
65085
65086 Implement functions for configuring the macb0 and macb1 pins, as
65087 well as functions for getting the clock rate of the various
65088 busses the macb ethernet controllers are connected to.
65089
65090 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65091
65092 commit d5acb95b16a0a74c643524342c3437e765426d05
65093 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65094 Date: Sun Dec 17 15:39:15 2006 +0100
65095
65096 AVR32: Implement simple DMA memory allocator
65097
65098 Implement dma_alloc_coherent() which returns cache-aligned
65099 uncacheable memory.
65100
65101 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65102
65103 commit 91975b0fea773c9e681fea8cf3349669f27685ee
65104 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65105 Date: Sun Dec 17 15:46:02 2006 +0100
65106
65107 Import <linux/mii.h> from the Linux kernel
65108
65109 Instead of creating yet another set of MII register definitions
65110 in the macb driver, here's a complete set of definitions for everyone
65111 to use.
65112
65113 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65114
65115 commit 1b804b229556a4d862da93c0ec94e79419364b2c
65116 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65117 Date: Wed Mar 21 19:47:36 2007 +0100
65118
65119 AVR32: Include more commands for ATSTK1000
65120
65121 Include the imi, imls and jffs commands sets by default on ATSTK1000.
65122 Also define CONFIG_BOOTARGS to something more useful, define
65123 CONFIG_BOOTCOMMAND and enable autoboot by default.
65124
65125 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65126
65127 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
65128 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65129 Date: Wed Mar 21 19:44:48 2007 +0100
65130
65131 AVR32: Provide a definition of struct stat
65132
65133 Copy the definition of struct stat from the Linux kernel.
65134
65135 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65136
65137 commit 12f099c08167a7a51aeee623bc16dafd0841271c
65138 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65139 Date: Sun Dec 17 14:46:06 2006 +0100
65140
65141 AVR32: Use initdram() instead of board_init_memories()
65142
65143 Conform to the "standard" interface and use initdram() instead of
65144 board_init_memories() on AVR32. This enables us to get rid of the
65145 sdram_size member of the global_data struct as well.
65146
65147 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65148
65149 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
65150 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65151 Date: Mon Nov 20 15:53:10 2006 +0100
65152
65153 AVR32: Relocate u-boot to SDRAM
65154
65155 Relocate the u-boot image into SDRAM like everyone else does. This
65156 means that we can handle much larger .data and .bss than we used to.
65157
65158 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65159
65160 commit df548d3c3e2bbc40258713167859ffc2ce99a900
65161 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65162 Date: Sun Nov 19 18:06:53 2006 +0100
65163
65164 AVR32: Resource management rewrite
65165
65166 Rewrite the resource management code (i.e. I/O memory, clock gating,
65167 gpio) so it doesn't depend on any global state. This is necessary
65168 because this code is heavily used before relocation to RAM, so we
65169 can't write to any global variables.
65170
65171 As an added bonus, this makes u-boot's memory footprint a bit smaller,
65172 although some functionality has been left out; all clocks are enabled
65173 all the time, and there's no checking for gpio line conflicts.
65174
65175 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65176
65177 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
65178 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65179 Date: Sat Nov 18 18:01:13 2006 +0100
65180
65181 AVR32: Clean up memory-map.h for at32ap7000
65182
65183 Convert spaces to tabs (must have missed this one last time around),
65184 sort the entries by address and group them together by bus
65185 connectivity.
65186
65187 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65188
65189 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
65190 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65191 Date: Sat Nov 18 17:32:31 2006 +0100
65192
65193 AVR32: Build position-independent u-boot
65194
65195 Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
65196 position independent. This will make relocation a lot easier.
65197
65198 -mno-init-got means that gcc shouldn't emit code to load the GOT
65199 address into r6 in every function prologue. We do it once and for
65200 all in the early startup assembly code, so enabling this option
65201 makes u-boot a bit faster and smaller.
65202
65203 The assembly parts have always been position-independent, so no code
65204 changes should be necessary.
65205
65206 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65207
65208 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
65209 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65210 Date: Sat Nov 18 17:24:31 2006 +0100
65211
65212 AVR32: Use avr32-linux- cross-compilation prefix by default
65213
65214 It doesn't really matter which toolchain you use to compile u-boot,
65215 but the avr32-linux one is probably what most people have installed.
65216
65217 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65218
65219 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
65220 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
65221 Date: Sat Nov 18 17:15:30 2006 +0100
65222
65223 AVR32: Split start_u_boot into board_init_f and board_init_r
65224
65225 Split the avr32 initialization code into a function to run before
65226 relocation, board_init_f and a function to run after relocation,
65227 board_init_r. For now, board_init_f simply calls board_init_r
65228 at the end.
65229
65230 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65231
65232 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
65233 Author: Heiko Schocher <hs@pollux.denx.de>
65234 Date: Sat Apr 14 05:26:48 2007 +0200
65235
65236 [Fix] Set the LED status register on the UC101 for the LXT971 PHY.
65237 clear the Display after reset.
65238
65239 Signed-off-by: Heiko Schocher <hs@denx.de>
65240
65241 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
65242 Author: Denis Peter <d.peter@mpl.ch>
65243 Date: Fri Apr 13 09:13:33 2007 +0200
65244
65245 [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
65246
65247 Fix bug introduced by "Fix get_partition_info() parameter error in all
65248 other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
65249 to use diskboot or scsiboot form another device than 0.
65250
65251 Signed-off-by: Denis Peter <d.peter@mpl.ch>
65252
65253 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
65254 Author: Greg Lopp <lopp@pobox.com>
65255 Date: Fri Apr 13 08:02:24 2007 +0200
65256
65257 [PATCH] Fix use of "void *" for block dev read/write buffer pointers
65258
65259 Signed-of-by: Greg Lopp <lopp@pobox.com>
65260 Acked-by: Grant Likely <grant.likely@secretlab.ca>
65261
65262 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
65263 Author: Xie Xiaobo <r63061@freescale.com>
65264 Date: Fri Mar 9 19:08:25 2007 +0800
65265
65266 Fix two bugs for MPC83xx DDR2 controller SPD Init
65267
65268 There are a few bugs in the cpu/mpc83xx/spd_sdram.c
65269 the first bug is that the picos_to_clk routine introduces a huge
65270 rounding error in 83xx.
65271 the second bug is that the mode register write recovery field is
65272 tWR-1, not tWR >> 1.
65273
65274 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
65275 Author: Jeffrey Mann <mannj@embeddedplanet.com>
65276 Date: Thu Apr 12 14:15:59 2007 +0200
65277
65278 ppc4xx: Fix i2c divisor calcularion for PPC4xx
65279
65280 This patch fixes changes the i2c_init(...) function to use the function
65281 get_OPB_freq() rather than calculating the OPB speed by
65282 sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
65283 specific per processor. The prior method was not and so was calculating
65284 the wrong speed for some PPC4xx processors.
65285
65286 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
65287 Signed-off-by: Stefan Roese <sr@denx.de>
65288
65289 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
65290 Author: Wolfgang Denk <wd@denx.de>
65291 Date: Wed Apr 11 17:25:01 2007 +0200
65292
65293 Update CHANGELOG
65294
65295 Signed-off-by: Wolfgang Denk <wd@denx.de>
65296
65297 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
65298 Author: Wolfgang Denk <wd@denx.de>
65299 Date: Wed Apr 11 17:22:55 2007 +0200
65300
65301 Update for SC3 board
65302
65303 * Make IDE timeout configurable through ide_reset_timeout variable.
65304 * Use Newline as "password" string
65305 * Use just a single partition in NAND flash
65306
65307 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
65308 Author: Haiying Wang <haiying.wang@freescale.com>
65309 Date: Mon Jan 22 12:37:30 2007 -0600
65310
65311 Add PIXIS FPGA support for MPC8641HPCN board.
65312
65313 Move the 8641HPCN's PIXIS code to the new directory
65314 board/freescale/common/ as it will be shared by
65315 future boards not in the same processor family.
65316
65317 Write a "pixis_reset" command that utilizes the FPGA
65318 reset sequencer to support alternate soft-reset options
65319 such as using the "alternate" flash bank, enabling
65320 the watch dog, or choosing different CPU frequencies.
65321
65322 Add documentation for the pixis_reset to README.mpc8641hpcn.
65323
65324 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
65325 Signed-off-by: Jon Loeliger <jdl@freescale.com>
65326
65327 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
65328 Author: Gerald Van Baren <vanbaren@cideas.com>
65329 Date: Fri Apr 6 14:19:43 2007 -0400
65330
65331 Moved fdt command support code to fdt_support.c
65332
65333 ...in preparation for improving the bootm command's handling of fdt blobs.
65334 Also cleaned up some coding sloppiness.
65335
65336 commit 6679f9299534e488a171a9bb8f9bb891de247aab
65337 Author: Gerald Van Baren <vanbaren@cideas.com>
65338 Date: Fri Apr 6 14:17:14 2007 -0400
65339
65340 libfdt: Make fdt_check_header() public
65341
65342 Changed _fdt_check_header() to fdt_check_header() and made it part of
65343 the interface - it is a useful routine.
65344
65345 Also did some asthetics cleanup to the include files (headers).
65346
65347 commit c0707ce65677650b5ceab0500ee50ae5168afef2
65348 Author: Aubrey Li <aubrey.adi@gmail.com>
65349 Date: Thu Apr 5 18:34:06 2007 +0800
65350
65351 [Blackfin][PATCH] Kill off a bunch of common local prototypes
65352
65353 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
65354 Author: Aubrey Li <aubrey.adi@gmail.com>
65355 Date: Thu Apr 5 18:33:04 2007 +0800
65356
65357 [Blackfin][PATCH] Fix dynamic CPLB generation issue
65358
65359 commit 0445e3a264251d75b1be45ef713c70726a2952f0
65360 Author: Aubrey Li <aubrey.adi@gmail.com>
65361 Date: Thu Apr 5 18:31:47 2007 +0800
65362
65363 [Blackfin][PATCH] minior cleanup
65364
65365 commit 155fd766573981090e638b493d5857562151862e
65366 Author: Aubrey Li <aubrey.adi@gmail.com>
65367 Date: Thu Apr 5 18:31:18 2007 +0800
65368
65369 [Blackfin][PATCH] Fix copyright and update license
65370
65371 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
65372 Author: Aubrey Li <aubrey.adi@gmail.com>
65373 Date: Thu Apr 5 18:30:25 2007 +0800
65374
65375 [Blackfin][PATCH] Add BF537 EMAC driver initialization
65376
65377 commit 889256e8604e0c68db1d866d720894dffede9df6
65378 Author: Aubrey Li <aubrey.adi@gmail.com>
65379 Date: Thu Apr 5 18:29:55 2007 +0800
65380
65381 [Blackfin][PATCH] call real the system synchronize instruction
65382
65383 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
65384 Author: Aubrey Li <aubrey.adi@gmail.com>
65385 Date: Thu Apr 5 18:29:17 2007 +0800
65386
65387 [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
65388
65389 commit dfeeab2cd680df047e68e723b246adf6f33bb556
65390 Author: Aubrey Li <aubrey.adi@gmail.com>
65391 Date: Thu Apr 5 18:28:34 2007 +0800
65392
65393 [Blackfin][PATCH]: fix flash unaligned copy issue
65394
65395 commit 443feb740584e406efa203af909fe2926608e8d5
65396 Author: Igor Marnat <marny@rambler.ru>
65397 Date: Wed Mar 21 09:55:01 2007 +0300
65398
65399 Update usage of 'nc' in README.NetConsole
65400
65401 Added information about usage of NetConsole on systems where the -l and -p
65402 switches are mutually exclusive.
65403
65404 Signed-off-by: Igor Marnat <marny@rambler.ru>
65405 Signed-off-by: Ben Warren <bwarren@qstreams.com>
65406
65407 commit 31c98a88228021b314c89ebb8104fb6473da4471
65408 Author: Wolfgang Denk <wd@denx.de>
65409 Date: Wed Apr 4 02:09:30 2007 +0200
65410
65411 Minor coding style cleanup.
65412
65413 commit 94abd7c0583ebe01e799b25f451201deeaab550d
65414 Author: Wolfgang Denk <wd@denx.de>
65415 Date: Wed Apr 4 01:49:15 2007 +0200
65416
65417 Minor cleanup.
65418
65419 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
65420 Author: Rodolfo Giometti <giometti@enneenne.com>
65421 Date: Tue Apr 3 14:27:18 2007 +0200
65422
65423 Support for the Philips ISP116x HCD (Host Controller Driver)
65424
65425 Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
65426
65427 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
65428 Author: Markus Klotzbuecher <mk@denx.de>
65429 Date: Tue Apr 3 14:27:08 2007 +0200
65430
65431 USB: cleanup monahans usb support. Remove dead code.
65432
65433 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65434
65435 commit a65c5768e5537530bd1780af3d3fddc3113a163c
65436 Author: Stefan Roese <sr@denx.de>
65437 Date: Mon Apr 2 10:09:30 2007 +0200
65438
65439 ppc4xx: Change SysACE address on Katmai
65440
65441 With this new base address of the Xilinx SystemACE controller
65442 the Linux driver will be easier to adapt, since it can now be
65443 mapped via the "normal" ioremap() call.
65444
65445 Signed-off-by: Stefan Roese <sr@denx.de>
65446
65447 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
65448 Author: Gerald Van Baren <vanbaren@cideas.com>
65449 Date: Sat Mar 31 14:30:53 2007 -0400
65450
65451 Fix some minor whitespace violations.
65452
65453 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
65454 Author: Gerald Van Baren <vanbaren@cideas.com>
65455 Date: Sat Mar 31 12:23:51 2007 -0400
65456
65457 Add a flattened device tree (fdt) command (2 of 2)
65458
65459 Modifications to the existing code to support the new fdt command.
65460
65461 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
65462 Author: Gerald Van Baren <vanbaren@cideas.com>
65463 Date: Sat Mar 31 12:22:10 2007 -0400
65464
65465 Add a flattened device tree (fdt) command (1 of 2)
65466
65467 The fdt command uses David Gibson's libfdt library to manipulate as well
65468 as print the flattened device tree. This patch is the new command,
65469 the second part is the modifications to the existing code.
65470
65471 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
65472 Author: Gerald Van Baren <vanbaren@cideas.com>
65473 Date: Sat Mar 31 12:13:43 2007 -0400
65474
65475 libfdt: Enhanced and published fdt_next_tag()
65476
65477 Enhanced the formerly private function _fdt_next_tag() to allow stepping
65478 through the tree, used to produce a human-readable dump, and made
65479 it part of the published interface.
65480 Also added some comments.
65481
65482 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
65483 Author: Gerald Van Baren <vanbaren@cideas.com>
65484 Date: Sat Mar 31 12:05:39 2007 -0400
65485
65486 libfdt: Customizations for use by u-boot.
65487
65488 Changes to David Gibson's original source to fit into u-boot's
65489 environment. No functionality changes.
65490
65491 commit 35748177c64a4a83a00057e93bb33e40278a2a96
65492 Author: Gerald Van Baren <vanbaren@cideas.com>
65493 Date: Sat Mar 31 12:00:56 2007 -0400
65494
65495 libfdt: Import libfdt source (2 of 2)
65496
65497 This adds the applicable libfdt source files (unmodified) and a README
65498 to explain where the source came from.
65499
65500 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
65501 Author: Gerald Van Baren <vanbaren@cideas.com>
65502 Date: Sat Mar 31 11:59:59 2007 -0400
65503
65504 libfdt: Import libfdt source (1 of 2)
65505
65506 This adds the applicable libfdt source files (unmodified) and a README
65507 to explain where the source came from.
65508
65509 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
65510 Author: Stefan Roese <sr@denx.de>
65511 Date: Sat Mar 31 13:16:23 2007 +0200
65512
65513 ppc4xx: Update Katmai bootstrap command
65514
65515 Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
65516 is selected.
65517
65518 Signed-off-by: Stefan Roese <sr@denx.de>
65519
65520 commit cabee756a6532986729477c3cc1ea16ef8517ad2
65521 Author: Stefan Roese <sr@denx.de>
65522 Date: Sat Mar 31 13:15:06 2007 +0200
65523
65524 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
65525
65526 Additional RAM information is now printed upon powerup, like
65527 DDR2 frequency and CAS latency.
65528
65529 Signed-off-by: Stefan Roese <sr@denx.de>
65530
65531 commit 60723803431ac75cad085690789e433d5ab9174e
65532 Author: Stefan Roese <sr@denx.de>
65533 Date: Sat Mar 31 08:48:36 2007 +0200
65534
65535 ppc4xx: Change Yucca config file to support ECC
65536
65537 With the updated 44x DDR2 driver the Yucca board now supports
65538 ECC generation and checking.
65539
65540 Signed-off-by: Stefan Roese <sr@denx.de>
65541
65542 commit 490e5730c674b20d708b783a2c5ffd7208f83873
65543 Author: Stefan Roese <sr@denx.de>
65544 Date: Sat Mar 31 08:47:34 2007 +0200
65545
65546 ppc4xx: Fix "bootstrap" command for Katmai board
65547
65548 The board specific "bootstrap" command is now fixed and can
65549 be used for the AMCC Katmai board to configure different
65550 CPU/PLB/OPB frequencies.
65551
65552 Signed-off-by: Stefan Roese <sr@denx.de>
65553
65554 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
65555 Author: Stefan Roese <sr@denx.de>
65556 Date: Sat Mar 31 08:46:08 2007 +0200
65557
65558 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
65559
65560 Fix a bug in the auto calibration routine. This driver now runs
65561 more reliable with the tested modules. It's also tested with
65562 167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
65563
65564 Signed-off-by: Stefan Roese <sr@denx.de>
65565
65566 commit 342cd097be1e7affe82f42ab3da220959a699e64
65567 Author: Michal Simek <monstr@monstr.eu>
65568 Date: Fri Mar 30 22:52:09 2007 +0200
65569
65570 [PATCH] Clean include dependence
65571
65572 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
65573 Author: Michal Simek <monstr@monstr.eu>
65574 Date: Fri Mar 30 22:42:45 2007 +0200
65575
65576 [CLEAN] Remove inefficient Suzaku code
65577
65578 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
65579 Author: Stefan Roese <sr@denx.de>
65580 Date: Wed Mar 28 15:03:16 2007 +0200
65581
65582 Merge some AMCC make targets to keep the top-level Makefile smaller
65583
65584 Signed-off-by: Stefan Roese <sr@denx.de>
65585
65586 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
65587 Author: Stefan Roese <sr@denx.de>
65588 Date: Wed Mar 28 14:52:12 2007 +0200
65589
65590 i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
65591
65592 The "old" i2c commands (iprobe, imd...) are now compiled in again,
65593 even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
65594 config option.
65595
65596 Signed-off-by: Stefan Roese <sr@denx.de>
65597
65598 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
65599 Author: Michal Simek <monstr@monstr.eu>
65600 Date: Tue Mar 27 00:32:16 2007 +0200
65601
65602 PATCH: Resolve GPL license problem
65603
65604 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
65605 Author: Rodolfo Giometti <giometti@enneenne.com>
65606 Date: Mon Mar 26 12:03:36 2007 +0200
65607
65608 PXA: pxa27x USB OHCI support
65609
65610 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
65611
65612 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
65613 Author: Markus Klotzbuecher <mk@denx.de>
65614 Date: Mon Mar 26 11:21:05 2007 +0200
65615
65616 USB: remove the S3C24X0_merge #define, which was introduced while
65617 merging OHCI drivers.
65618
65619 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65620
65621 commit 1798049522f594013aea29457d46794298c6ae15
65622 Author: Michal Simek <root@monstr.eu>
65623 Date: Mon Mar 26 01:39:07 2007 +0200
65624
65625 Support for XUPV2P board
65626 Reset support
65627 BSP autoconfig support
65628
65629 commit 0d974d5297349504a2ddfa09314be573b5df320a
65630 Author: Stefan Roese <sr@denx.de>
65631 Date: Sat Mar 24 15:57:09 2007 +0100
65632
65633 [PATCH] Add 4xx GPIO functions
65634
65635 This patch adds some 4xx GPIO functions. It also moves some of the
65636 common code and defines into a common 4xx GPIO header file.
65637
65638 Signed-off-by: Stefan Roese <sr@denx.de>
65639
65640 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
65641 Author: Stefan Roese <sr@denx.de>
65642 Date: Sat Mar 24 15:55:58 2007 +0100
65643
65644 [PATCH] Small Sequoia cleanup
65645
65646 Signed-off-by: Stefan Roese <sr@denx.de>
65647
65648 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
65649 Author: Stefan Roese <sr@denx.de>
65650 Date: Sat Mar 24 15:45:34 2007 +0100
65651
65652 [PATCH] Clean up 40EZ/Acadia support
65653
65654 This patch cleans up all the open issue of the preliminary
65655 Acadia support.
65656
65657 Signed-off-by: Stefan Roese <sr@denx.de>
65658
65659 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
65660 Author: Jon Loeliger <jdl@freescale.com>
65661 Date: Tue Dec 12 11:02:20 2006 -0600
65662
65663 Fix 8641HPCN problem with ld version 2.16
65664
65665 (Dot outside sections problem).
65666
65667 This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
65668
65669 Signed-off-by: Jon Loeliger <jdl@freescale.com>
65670
65671 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
65672 Author: Haiying Wang <haiying.wang@freescale.com>
65673 Date: Thu Dec 7 10:35:55 2006 -0600
65674
65675 Set Rev 2.x 86xx PIC in mixed mode.
65676
65677 Prevent false interrupt from hanging Linux as MSR[EE] is set
65678 to enable interrupts by changing the PIC out of the default
65679 pass through mode into mixed mode.
65680
65681 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
65682 Signed-off-by: Jon Loeliger <jdl@freescale.com>
65683
65684 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
65685 Author: Jason Jin <jason.jin@freescale.com>
65686 Date: Thu Dec 7 10:32:35 2006 -0600
65687
65688 Add flash cmd function to 8641HPCN ramboot
65689
65690 Also fixes some commmand for 8641 HPCN ramboot case.
65691
65692 Signed-off-by: Jason Jin <jason.jin@freescale.com>
65693 Signed-off-by: Jon Loeliger <jdl@freescale.com>
65694
65695 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
65696 Author: Ed Swarthout <ed.swarthout@freescale.com>
65697 Date: Thu Dec 7 10:34:14 2006 -0600
65698
65699 Add support for 8641 Rev 2 silicon.
65700
65701 Without this patch, I am unable to get to the prompt on rev 2 silicon.
65702 Only set ddrioovcr for rev1.
65703
65704 Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
65705 Signed-off-by: Jon Loeliger <jdl@freescale.com>
65706
65707 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
65708 Author: Wolfgang Denk <wd@denx.de>
65709 Date: Thu Mar 22 00:13:12 2007 +0100
65710
65711 Code cleanup / re-insert previous Copyright entries.
65712
65713 Signed-off-by: Wolfgang Denk <wd@denx.de>
65714
65715 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
65716 Author: Wolfgang Denk <wd@denx.de>
65717 Date: Wed Mar 21 23:26:15 2007 +0100
65718
65719 Code cleanup. Update CHANGELOG
65720
65721 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
65722 Author: Stefan Roese <sr@denx.de>
65723 Date: Wed Mar 21 14:54:29 2007 +0100
65724
65725 ppc4xx: Fix file mode of include/configs/acadia.h
65726
65727 Signed-off-by: Stefan Roese <sr@denx.de>
65728
65729 commit d5f4614c9350d9333e575100fb250aab774d0258
65730 Author: Markus Klotzbuecher <mk@denx.de>
65731 Date: Wed Mar 21 14:41:46 2007 +0100
65732
65733 SPC1920: fix small clock routing bug
65734
65735 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65736
65737 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
65738 Author: Stefan Roese <sr@denx.de>
65739 Date: Wed Mar 21 13:39:57 2007 +0100
65740
65741 [PATCH] Add AMCC Acadia (405EZ) eval board support
65742
65743 This patch adds support for the new AMCC Acadia eval board.
65744
65745 Please note that this Acadia/405EZ support is still in a beta stage.
65746 Still lot's of cleanup needed but we need a preliminary release now.
65747
65748 Signed-off-by: Stefan Roese <sr@denx.de>
65749
65750 commit e01bd218b00af73499331a1a701625a852cd286f
65751 Author: Stefan Roese <sr@denx.de>
65752 Date: Wed Mar 21 13:38:59 2007 +0100
65753
65754 [PATCH] Add AMCC PPC405EZ support
65755
65756 This patch adds support for the new AMCC 405EZ PPC. It is in
65757 preparation for the AMCC Acadia board support.
65758
65759 Please note that this Acadia/405EZ support is still in a beta stage.
65760 Still lot's of cleanup needed but we need a preliminary release now.
65761
65762 Signed-off-by: Stefan Roese <sr@denx.de>
65763
65764 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
65765 Author: Heiko Schocher <hs@pollux.denx.de>
65766 Date: Wed Mar 21 08:45:17 2007 +0100
65767
65768 [PATCH] TQM8272: dont change the bits given from the HRCW
65769 for the SIUMCR and BCR Register.
65770 Fix the calculation for the EEprom Size
65771
65772 Signed-off-by: Heiko Schocher <hs@denx.de>
65773
65774 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
65775 Author: Aubrey Li <aubrey.adi@gmail.com>
65776 Date: Tue Mar 20 18:16:24 2007 +0800
65777
65778 [Blackfin][PATCH] Add BF561 EZKIT board support
65779
65780 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
65781 Author: Aubrey Li <aubrey.adi@gmail.com>
65782 Date: Mon Mar 19 22:55:58 2007 +0800
65783
65784 [Blackfin][PATCH] minor cleanup
65785
65786 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
65787 Author: Wolfgang Denk <wd@denx.de>
65788 Date: Mon Mar 19 13:10:08 2007 +0100
65789
65790 Remove obsoleted POST files.
65791
65792 Signed-off-by: Wolfgang Denk <wd@denx.de>
65793
65794 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
65795 Author: Aubrey Li <aubrey.adi@gmail.com>
65796 Date: Mon Mar 19 01:26:11 2007 +0800
65797
65798 [PATCH] Add flash chip M29W320ET/B support
65799
65800 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
65801 Author: Aubrey Li <aubrey.adi@gmail.com>
65802 Date: Mon Mar 19 01:24:52 2007 +0800
65803
65804 [Blackfin][PATCH] Add BF537 stamp board support
65805
65806 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
65807 Author: Stefan Roese <sr@denx.de>
65808 Date: Fri Mar 16 21:11:42 2007 +0100
65809
65810 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
65811
65812 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
65813 DDR memory are dynamically programmed matching the total size
65814 of the equipped memory (DIMM modules).
65815
65816 Signed-off-by: Stefan Roese <sr@denx.de>
65817
65818 commit 76d1466f918b881cda2d259254761e73885093c2
65819 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65820 Date: Tue Mar 13 13:38:05 2007 +0100
65821
65822 [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
65823 boards in terms of unification.
65824
65825 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65826
65827 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
65828 Author: Wolfgang Denk <wd@denx.de>
65829 Date: Tue Mar 13 16:05:55 2007 +0100
65830
65831 Make SC3 board build with 'make O='; use 'addcons' consistently
65832 (SC3 and Jupiter used to use 'addcon' instead).
65833
65834 Signed-off-by: Wolfgang Denk wd@denx.de
65835
65836 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
65837 Author: Heiko Schocher <hs@pollux.denx.de>
65838 Date: Tue Mar 13 09:40:59 2007 +0100
65839
65840 [PATCH] update board config for jupiter Board:
65841 added Hush Shell,
65842 CONFIG_CMDLINE_EDITING,
65843 CFG_ENV_ADDR_REDUND activated
65844
65845 Signed-off-by: Heiko Schocher <hs@denx.de>
65846
65847 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
65848 Author: Aubrey Li <aubrey.adi@gmail.com>
65849 Date: Mon Mar 12 12:11:55 2007 +0800
65850
65851 [Blackfin][PATCH] minor cleanup
65852
65853 commit bfa5754a58477ac917d21527cd0f079d87cf188e
65854 Author: Aubrey Li <aubrey.adi@gmail.com>
65855 Date: Mon Mar 12 01:42:06 2007 +0800
65856
65857 [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
65858
65859 commit 8440bb14581a294375c34b91b42512f9753d1130
65860 Author: Aubrey Li <aubrey.adi@gmail.com>
65861 Date: Mon Mar 12 00:25:14 2007 +0800
65862
65863 [Blackfin][PATCH] code cleanup
65864
65865 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
65866 Author: Michal Simek <monstr@monstr.eu>
65867 Date: Sun Mar 11 13:48:24 2007 +0100
65868
65869 [Microblaze][PATCH] part 2
65870 timer support
65871 interrupt controller support
65872 flash support
65873 ethernet support
65874 cache support
65875 board information support
65876 env support
65877 booting image support
65878
65879 adding support for Xilinx ML401
65880
65881 commit 76316a318de91f6184e7c22a10e02d275ade2441
65882 Author: Michal Simek <monstr@monstr.eu>
65883 Date: Sun Mar 11 13:42:58 2007 +0100
65884
65885 [Microblaze][PATCH]
65886 timer support
65887 interrupt controller support
65888 flash support
65889 ethernet support
65890 cache support
65891 board information support
65892 env support
65893 booting image support
65894
65895 adding support for Xilinx ML401
65896
65897 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
65898 Author: Aubrey Li <aubrey.adi@gmail.com>
65899 Date: Sat Mar 10 23:49:29 2007 +0800
65900
65901 [Blackfin][PATCH] code cleanup
65902
65903 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
65904 Author: Aubrey.Li <aubrey.adi@gmail.com>
65905 Date: Fri Mar 9 13:40:56 2007 +0800
65906
65907 [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
65908
65909 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
65910 Author: Aubrey.Li <aubrey.adi@gmail.com>
65911 Date: Fri Mar 9 13:38:44 2007 +0800
65912
65913 [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
65914
65915 commit 992423ab43c2bcf6b704853bd00af77450915e20
65916 Author: Stefan Roese <sr@denx.de>
65917 Date: Thu Mar 8 23:00:08 2007 +0100
65918
65919 ppc4xx: Fix file mode of sequoia.c
65920
65921 Signed-off-by: Stefan Roese <sr@denx.de>
65922
65923 commit eb92f613556800f7483666db09d9a237ad911d4a
65924 Author: Wolfgang Denk <wd@pollux.denx.de>
65925 Date: Thu Mar 8 22:52:51 2007 +0100
65926
65927 Minor cleanup.
65928
65929 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
65930 Author: John Otken john@softadvances.com <john@softadvances.com>
65931 Date: Thu Mar 8 09:39:48 2007 -0600
65932
65933 ppc4xx: Clear Sequoia/Rainier security engine reset bits
65934
65935 Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
65936
65937 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
65938 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65939 Date: Thu Mar 8 16:26:52 2007 +0100
65940
65941 [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
65942
65943 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65944
65945 commit d9fc703246840c4b268debf48c334ba55c597dc0
65946 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65947 Date: Thu Mar 8 16:25:47 2007 +0100
65948
65949 [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
65950
65951 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65952
65953 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
65954 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65955 Date: Thu Mar 8 16:23:11 2007 +0100
65956
65957 [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
65958
65959 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65960
65961 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
65962 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65963 Date: Thu Mar 8 16:20:32 2007 +0100
65964
65965 [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
65966
65967 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65968
65969 commit f9fc6a5852a6335840882fa2111925010eea1abe
65970 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65971 Date: Wed Mar 7 15:32:01 2007 +0100
65972
65973 fixed ethernet phy configuration for plu405 board
65974
65975 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65976
65977 commit 769104c9356594deb2092e204a39c05b33202d6c
65978 Author: Wolfgang Denk <wd@pollux.denx.de>
65979 Date: Thu Mar 8 21:49:27 2007 +0100
65980
65981 Minor cleanup
65982
65983 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
65984 Author: Stefan Roese <sr@denx.de>
65985 Date: Thu Mar 8 10:13:16 2007 +0100
65986
65987 [PATCH] Update AMCC Luan 440SP eval board support
65988
65989 The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
65990 inititializition. This includes DDR auto calibration and support
65991 for different DIMM modules, instead of the fixed setup used in
65992 the earlier version.
65993
65994 This patch also enables the cache in FLASH for the startup
65995 phase of U-Boot (while running from FLASH). After relocating to
65996 SDRAM the cache is disabled again. This will speed up the boot
65997 process, especially the SDRAM setup, since there are some loops
65998 for memory testing (auto calibration).
65999
66000 Signed-off-by: Stefan Roese <sr@denx.de>
66001
66002 commit 2f5df47351910a2936c7741cf111855829200943
66003 Author: Stefan Roese <sr@denx.de>
66004 Date: Thu Mar 8 10:10:18 2007 +0100
66005
66006 [PATCH] Update AMCC Yucca 440SPe eval board support
66007
66008 The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
66009 inititializition. This includes DDR auto calibration and support
66010 for different DIMM modules, instead of the fixed setup used in
66011 the earlier version.
66012
66013 Signed-off-by: Stefan Roese <sr@denx.de>
66014
66015 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
66016 Author: Stefan Roese <sr@denx.de>
66017 Date: Thu Mar 8 10:07:18 2007 +0100
66018
66019 ppc4xx: Small AMCC Katmai 440SPe update
66020
66021 Signed-off-by: Stefan Roese <sr@denx.de>
66022
66023 commit df294497479b1dca6dd86318b2a912f72fede0df
66024 Author: Stefan Roese <sr@denx.de>
66025 Date: Thu Mar 8 10:06:09 2007 +0100
66026
66027 ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
66028
66029 Signed-off-by: Stefan Roese <sr@denx.de>
66030
66031 commit 83853178bd36bca6f0f8f1331476620c84a587fc
66032 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66033 Date: Wed Mar 7 12:14:50 2007 -0600
66034
66035 net - Support ping reply when processing net-loop
66036
66037 Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
66038
66039 This permits the ping command to test the phy interface when the phy
66040 is put in loopback mode (typically by setting register 0 bit 14).
66041
66042 It also allows the port to respond to an external ping when u-boot is
66043 processing some other net command (such as tftp). This is useful when
66044 tftp appears to hang.
66045
66046 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66047 Signed-off-by: Ben Warren <bwarren@qstreams.com>
66048
66049 commit fa1aef15bcd47736687be1af544506e90fba545d
66050 Author: Stefan Roese <sr@denx.de>
66051 Date: Wed Mar 7 16:43:00 2007 +0100
66052
66053 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
66054
66055 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
66056 DDR memory are dynamically programmed matching the total size
66057 of the equipped memory (DIMM modules).
66058
66059 Signed-off-by: Stefan Roese <sr@denx.de>
66060
66061 commit e2ebe696818939e2b974628be9c921ea3fe9de13
66062 Author: Stefan Roese <sr@denx.de>
66063 Date: Wed Mar 7 16:39:36 2007 +0100
66064
66065 [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
66066
66067 This patch fixes a problem that occurs when 2 DIMM's are
66068 used. This problem was first spotted and fixed by Gerald Jackson
66069 <gerald.jackson@reaonixsecurity.com> but this patch fixes the
66070 problem in a little more clever way.
66071
66072 This patch also adds the nice functionality to dynamically
66073 create the TLB entries for the SDRAM (tlb.c). So we should
66074 never run into such problems with wrong (too short) TLB
66075 initialization again on these platforms.
66076
66077 As this feature is new to the "old" 44x SPD DDR driver, it
66078 has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
66079
66080 Signed-off-by: Stefan Roese <sr@denx.de>
66081
66082 commit 39218433983417b9df087976a79e3f80dd5e83d6
66083 Author: Wolfgang Denk <wd@denx.de>
66084 Date: Wed Mar 7 16:33:44 2007 +0100
66085
66086 UC101: fix compiler warnings
66087
66088 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
66089 Author: Wolfgang Denk <wd@pollux.denx.de>
66090 Date: Wed Mar 7 16:19:46 2007 +0100
66091
66092 HMI1001: fix build error, cleanup compiler warnings.
66093
66094 commit ad5bb451ade552c44bef9119d907929ebc2c126f
66095 Author: Wolfgang Denk <wd@pollux.denx.de>
66096 Date: Tue Mar 6 18:08:43 2007 +0100
66097
66098 Restructure POST directory to support of other CPUs, boards, etc.
66099
66100 commit a5284efd125967675b2e9c6ef7b95832268ad360
66101 Author: Wolfgang Denk <wd@pollux.denx.de>
66102 Date: Tue Mar 6 18:01:47 2007 +0100
66103
66104 Fix HOSTARCH handling.
66105 Patch by Mike Frysinger, Mar 05 2007
66106
66107 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
66108 Author: Stefan Roese <sr@denx.de>
66109 Date: Tue Mar 6 07:47:04 2007 +0100
66110
66111 [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
66112
66113 As provided by the AMCC applications team, this patch optimizes the
66114 DDR2 setup for 166MHz bus speed. The values provided are also save
66115 to use on a "normal" 133MHz PLB bus system. Only the refresh counter
66116 setup has to be adjusted as done in this patch.
66117
66118 For this the NAND booting version had to include the "speed.c" file
66119 from the cpu/ppc4xx directory. With this addition the NAND SPL image
66120 will just fit into the 4kbytes of program space. gcc version 4.x as
66121 provided with ELDK 4.x is needed to generate this optimized code.
66122
66123 Signed-off-by: Stefan Roese <sr@denx.de>
66124
66125 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
66126 Author: Wolfgang Denk <wd@pollux.denx.de>
66127 Date: Sun Mar 4 01:36:05 2007 +0100
66128
66129 Some code cleanup.
66130
66131 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
66132 Author: Kim Phillips <kim.phillips@freescale.com>
66133 Date: Wed Feb 28 00:02:04 2007 -0600
66134
66135 mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
66136
66137 (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
66138
66139 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
66140 Author: Kumar Gala <galak@kernel.crashing.org>
66141 Date: Tue Feb 27 23:51:42 2007 -0600
66142
66143 mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
66144
66145 The config value for:
66146 * CFG_ACR_PIPE_DEP
66147 * CFG_ACR_RPTCNT
66148 * CFG_SPCR_TSEC1EP
66149 * CFG_SPCR_TSEC2EP
66150 * CFG_SCCR_TSEC1CM
66151 * CFG_SCCR_TSEC2CM
66152
66153 Were not being used when setting the appropriate register
66154
66155 Added:
66156 * CFG_SCCR_USBMPHCM
66157 * CFG_SCCR_USBDRCM
66158 * CFG_SCCR_PCICM
66159 * CFG_SCCR_ENCCM
66160
66161 To allow full config of the SCCR.
66162
66163 Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
66164 that were just bogus.
66165
66166 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66167
66168 commit d51b3cf371cd441030460ef19d36b2924c361b1a
66169 Author: Kim Phillips <kim.phillips@freescale.com>
66170 Date: Thu Feb 22 20:06:57 2007 -0600
66171
66172 mpc83xx: update [local-]mac-address properties on UEC based devices
66173
66174 8360 and 832x weren't updating their [local-]mac-address
66175 properties. This patch fixes that.
66176
66177 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66178
66179 commit 61f4f912acbe60776c5e00df1ec94094ce672957
66180 Author: Timur Tabi <timur@freescale.com>
66181 Date: Tue Feb 13 10:41:42 2007 -0600
66182
66183 mpc83xx: write MAC address to mac-address and local-mac-address
66184
66185 Some device trees have a mac-address property, some have local-mac-address,
66186 and some have both. To support all of these device trees, this patch
66187 updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
66188 This function already updates local-mac-address.
66189
66190 Signed-off-by: Timur Tabi <timur@freescale.com>
66191
66192 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
66193 Author: Kim Phillips <kim.phillips@freescale.com>
66194 Date: Tue Feb 27 18:41:08 2007 -0600
66195
66196 mpc83xx: add command line editing by default
66197
66198 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
66199 Author: Kim Phillips <kim.phillips@freescale.com>
66200 Date: Wed Feb 14 19:50:53 2007 -0600
66201
66202 mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
66203
66204 Disable G1TXCLK, G2TXCLK h/w buffers. This patch
66205 fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
66206
66207 Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
66208
66209 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66210 Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
66211
66212 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
66213 Author: Xie Xiaobo <r63061@freescale.com>
66214 Date: Wed Feb 14 18:27:17 2007 +0800
66215
66216 mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
66217
66218 The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
66219 it pass DDR/DDR2 compliance tests.
66220
66221 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
66222
66223 commit b110f40bd180c6b560276589beedf753e97c46ce
66224 Author: Xie Xiaobo <r63061@freescale.com>
66225 Date: Wed Feb 14 18:27:06 2007 +0800
66226
66227 mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
66228
66229 MPC8360E rev2.0 have new spridr,and PVR value,
66230 The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
66231
66232 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
66233
66234 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
66235 Author: Xie Xiaobo <r63061@freescale.com>
66236 Date: Wed Feb 14 18:26:44 2007 +0800
66237
66238 mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
66239
66240 MPC8349E rev3.1 have new spridr,and PVR value,
66241 The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
66242
66243 Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
66244
66245 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
66246 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
66247 Date: Wed Jan 31 11:04:19 2007 +0100
66248
66249 mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
66250
66251 Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
66252 which is used to se if an slave will ACK after receiving its address.
66253
66254 Correct i2c probing to use this method as the old method could upset
66255 a slave as it wrote a data byte to it.
66256
66257 Add a small delay in i2c_init() to let the controller
66258 shutdown any ongoing I2C activity.
66259
66260 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
66261
66262 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
66263 Author: Timur Tabi <timur@freescale.com>
66264 Date: Wed Jan 31 15:54:29 2007 -0600
66265
66266 mpc83xx: Add support for the MPC8349E-mITX-GP
66267
66268 Add support for the MPC8349E-mITX-GP, a stripped-down version of the
66269 MPC8349E-mITX. Bonus features include support for low-boot (BMS bit in
66270 HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
66271
66272 Signed-off-by: Timur Tabi <timur@freescale.com>
66273
66274 commit fab16807adad350f618024350c6950165c247c72
66275 Author: Timur Tabi <timur@freescale.com>
66276 Date: Wed Jan 31 15:54:20 2007 -0600
66277
66278 mpc83xx: Delete sdram_init() for MPC8349E-mITX
66279
66280 There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
66281 never does anything. This patch deletes it.
66282
66283 Signed-off-by: Timur Tabi <timur@freescale.com>
66284
66285 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
66286 Author: Dave Liu <daveliu@freescale.com>
66287 Date: Fri Jan 19 10:43:26 2007 +0800
66288
66289 mpc83xx: Fix the LAW1/3 bug
66290
66291 The patch solves the alignment problem of the local bus access windows to
66292 render accessible the memory bank and PHY registers of UPC 1 (starting at
66293 0xf801 0000). What we actually did was to adjust the sizes of the bus
66294 access windows so that the base address alignment requirement would be met.
66295
66296 Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
66297 Signed-off-by: Gridish Shlomi <gridish@freescale.com>
66298 Signed-off-by: Dave Liu <daveliu@freescale.com>
66299
66300 commit 97c4b397dce236a7318b304667bf89e59d08b17c
66301 Author: Kim Phillips <kim.phillips@freescale.com>
66302 Date: Tue Jan 30 16:15:31 2007 -0600
66303
66304 mpc83xx: don't hang if watchdog configured on 8360, 832x
66305
66306 don't hang if watchdog configured on 8360, 832x
66307
66308 The watchdog programming model is the same across all 83xx devices;
66309 make the code reflect that.
66310
66311 commit b70047478570e371ce7223be342ce98afea0f7d6
66312 Author: Kim Phillips <kim.phillips@freescale.com>
66313 Date: Tue Jan 30 16:15:21 2007 -0600
66314
66315 mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
66316
66317 protect memcpy to bad address if a local-mac-address is missing from dt
66318
66319 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
66320 Author: Kim Phillips <kim.phillips@freescale.com>
66321 Date: Tue Jan 30 16:15:04 2007 -0600
66322
66323 mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
66324
66325 make 8360 default environment fdt be 8360 (not 8349)
66326
66327 commit a28899c910024a0226331df07207b1038c300c93
66328 Author: Emilian Medve <Emilian.Medve@freescale.com>
66329 Date: Tue Jan 30 16:14:50 2007 -0600
66330
66331 mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
66332
66333 The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
66334 be used for busy-waiting since it strips the 'volatile' property from
66335 the bd variable. gcc3 was working by pure luck.
66336
66337 This is a follow on patch to "Fix the UEC driver bug of QE"
66338
66339 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
66340 Author: Kumar Gala <galak@kernel.crashing.org>
66341 Date: Tue Jan 30 14:08:30 2007 -0600
66342
66343 mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
66344
66345 The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
66346 MPC834X class processors. Change the protections from CONFIG_MPC8349 to
66347 CONFIG_MPC834X so they are more generic.
66348
66349 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66350
66351 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
66352 Author: Kim Phillips <kim.phillips@freescale.com>
66353 Date: Thu Jan 25 13:40:55 2007 -0600
66354
66355 mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
66356
66357 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
66358 Author: Kim Phillips <kim.phillips@freescale.com>
66359 Date: Wed Jan 24 17:18:37 2007 -0600
66360
66361 mpc83xx: sort Makefile targets
66362
66363 reordered targets alphabetically
66364
66365 commit 91e25769771c1164ed63ffca0add49f934ae3343
66366 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
66367 Date: Tue Jan 16 11:38:14 2007 -0500
66368
66369 mpc83xx: U-Boot support for Wind River SBC8349
66370
66371 I've redone the SBC8349 support to match git-current, which
66372 incorporates all the MPC834x updates from Freescale since the 1.1.6
66373 release, including the DDR changes.
66374
66375 I've kept all the SBC8349 files as parallel as possible to the
66376 MPC8349EMDS ones for ease of maintenance and to allow for easy
66377 inspection of what was changed to support this board. Hence the SBC8349
66378 U-Boot has FDT support and everything else that the MPC8349EMDS has.
66379
66380 Fortunately the Freescale updates added support for boards using CS0,
66381 but I had to change spd_sdram.c to allow for board specific settings for
66382 the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
66383 default if the board doesn't specify a value.)
66384
66385 Hopefully this should be mergeable as-is and require no whitespace
66386 cleanups or similar, but if something doesn't measure up then let me
66387 know and I'll fix it.
66388
66389 Thanks,
66390 Paul.
66391
66392 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
66393 Author: Sam Song <samsongshu@yahoo.com.cn>
66394 Date: Thu Dec 14 19:03:21 2006 +0800
66395
66396 mpc83xx: Remove a redundant semicolon in mpc8349itx.c
66397
66398 A redundant semicolon existed in mpc8349itx.c
66399 should be removed.
66400
66401 Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
66402
66403 commit f35f358241c549be3f75cfe2eaa642914275b7ba
66404 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
66405 Date: Wed Dec 6 21:23:55 2006 -0500
66406
66407 mpc83xx: Put the version (and magic) after the HRCW.
66408
66409 Put the version (and magic) after the HRCW. This puts it in a fixed
66410 location in flash, not at the start of flash but as close as we can get.
66411
66412 Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
66413
66414 commit 48aecd969171a6e99a55fae04933857787f9a5bd
66415 Author: Dave Liu <r63238@freescale.com>
66416 Date: Thu Dec 7 21:14:51 2006 +0800
66417
66418 mpc83xx: Add the MPC832XEMDS board readme
66419
66420 Add the MPC832XEMDS board readme
66421
66422 Signed-off-by: Dave Liu <daveliu@freescale.com>
66423
66424 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
66425 Author: Dave Liu <r63238@freescale.com>
66426 Date: Thu Dec 7 21:13:15 2006 +0800
66427
66428 mpc83xx: Add support for the MPC832XEMDS board
66429
66430 This patch supports DUART, ETH3/4 and PCI etc.
66431
66432 Signed-off-by: Dave Liu <daveliu@freescale.com>
66433
66434 commit e080313c32322e15ab5a18eb896a252858c57284
66435 Author: Dave Liu <r63238@freescale.com>
66436 Date: Thu Dec 7 21:11:58 2006 +0800
66437
66438 mpc83xx: streamline the 83xx immr head file
66439
66440 For better format and style, I streamlined the 83xx head files,
66441 including immap_83xx.h and mpc83xx.h. In the old head files, 1)
66442 duplicated macro definition appear in the both files; 2) the structure
66443 of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
66444 macro definition put inside the each structure. So, I cleaned up the
66445 structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
66446 moved the macro definition to mpc83xx.h, Just like MPC8260.
66447
66448 CHANGELOG
66449
66450 *streamline the 83xx immr head file
66451
66452 Signed-off-by: Dave Liu <daveliu@freescale.com>
66453
66454 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
66455 Author: Dave Liu <r63238@freescale.com>
66456 Date: Wed Dec 6 11:38:17 2006 +0800
66457
66458 mpc83xx: Fix the UEC driver bug of QE
66459
66460 The patch prevents the GCC tool chain from striping useful code for
66461 optimization. It will make UEC ethernet driver workable, Otherwise the
66462 UEC will fail in tx when you are using gcc4.x. but the driver can work
66463 when using gcc3.4.3.
66464
66465 CHANGELOG
66466
66467 *Prevent the GCC from striping code for optimization, Otherwise the UEC
66468 will tx failed when you are using gcc4.x.
66469
66470 Signed-off-by: Dave Liu <daveliu@freescale.com>
66471
66472 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
66473 Author: Stefan Roese <sr@denx.de>
66474 Date: Thu Mar 1 21:11:36 2007 +0100
66475
66476 [PATCH] Update AMCC Katmai 440SPe eval board support
66477
66478 This patch updates the recently added Katmai board support. The biggest
66479 change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
66480 driver.
66481
66482 Please note, that still some problems are left with some memory
66483 configurations. See the driver for more details.
66484
66485 Signed-off-by: Stefan Roese <sr@denx.de>
66486
66487 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
66488 Author: Stefan Roese <sr@denx.de>
66489 Date: Thu Mar 1 07:03:25 2007 +0100
66490
66491 [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
66492
66493 Signed-off-by: Stefan Roese <sr@denx.de>
66494
66495 commit ccbc7036648e465697ca298ba51e0e76dda352a0
66496 Author: Wolfgang Denk <wd@pollux.denx.de>
66497 Date: Wed Feb 28 01:28:53 2007 +0100
66498
66499 SC3: fix typo in default environment
66500
66501 commit e344568b1b46af85ec32d815586f91bc115d6223
66502 Author: Sergei Poselenov <sposelenov@emcraft.com>
66503 Date: Tue Feb 27 20:15:30 2007 +0300
66504
66505 MCC200: Fixes for update procedure
66506
66507 - fix logic error in image type handling
66508 - make sure file system images (cramfs etc.) get stored in flash
66509 with image header stripped so they can be mounted through MTD
66510
66511 commit 743571145b37182757d4e688a77860b36ee77573
66512 Author: Wolfgang Denk <wd@pollux.denx.de>
66513 Date: Tue Feb 27 14:26:04 2007 +0100
66514
66515 Minor code cleanup.
66516
66517 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
66518 Author: Sergei Poselenov <sposelenov@emcraft.com>
66519 Date: Tue Feb 27 12:40:16 2007 +0300
66520
66521 MCC200 update - add LCD Progress Indicator
66522
66523 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
66524 Author: Stefan Roese <sr@denx.de>
66525 Date: Thu Feb 22 07:43:34 2007 +0100
66526
66527 [PATCH] get_dev() now unconditionally uses manual relocation
66528
66529 Since the relocation fix is not included yet and we're not sure how
66530 it will be added, this patch removes code that required relocation
66531 to be fixed for now.
66532
66533 Signed-off-by: Stefan Roese <sr@denx.de>
66534
66535 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
66536 Author: Stefan Roese <sr@denx.de>
66537 Date: Thu Feb 22 07:40:23 2007 +0100
66538
66539 [PATCH] Change systemace driver to select 8 & 16bit mode
66540
66541 As suggested by Grant Likely this patch enables the Xilinx SystemACE
66542 driver to select 8 or 16bit mode upon startup.
66543
66544 Signed-off-by: Stefan Roese <sr@denx.de>
66545
66546 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
66547 Author: Haiying Wang <Haiying.Wang@freescale.com>
66548 Date: Wed Feb 21 16:52:31 2007 +0100
66549
66550 [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
66551
66552 Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
66553 is fully finished. The sync() is defined in each CPU's io.h file. For
66554 those CPUs which do not need sync for now, a dummy sync() is defined in
66555 their io.h as well.
66556
66557 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
66558
66559 commit da04995c7dc6772013a9a0dc5c767f190c402478
66560 Author: Stefan Roese <sr@denx.de>
66561 Date: Wed Feb 21 13:44:34 2007 +0100
66562
66563 [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
66564
66565 Signed-off-by: Stefan Roese <sr@denx.de>
66566
66567 commit 751bb57107d78978ae08e697c3deba816f5be091
66568 Author: Stefan Roese <sr@denx.de>
66569 Date: Tue Feb 20 13:21:57 2007 +0100
66570
66571 [PATCH] Fix relocation problem with "new" get_dev() function
66572
66573 This patch enables the "new" get_dev() function for block devices
66574 introduced by Grant Likely to be used on systems that still suffer
66575 from the relocation problems (manual relocation neede because of
66576 problems with linker script).
66577
66578 Hopefully we can resolve this relocation issue soon for all platform
66579 so we don't need this additional code anymore.
66580
66581 Signed-off-by: Stefan Roese <sr@denx.de>
66582
66583 commit d93e2212f962668b3dce091ff5edc33f2347fe37
66584 Author: Stefan Roese <sr@denx.de>
66585 Date: Tue Feb 20 13:17:42 2007 +0100
66586
66587 [PATCH] Update SystemACE driver for 16bit access
66588
66589 This patch removes some problems when the Xilinx SystemACE driver
66590 is used with 16bit access on an big endian platform (like the
66591 AMCC Katmai).
66592
66593 Signed-off-by: Stefan Roese <sr@denx.de>
66594
66595 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
66596 Author: Stefan Roese <sr@denx.de>
66597 Date: Tue Feb 20 13:15:40 2007 +0100
66598
66599 [PATCH] Clean up Katmai (440SPe) linker script
66600
66601 Signed-off-by: Stefan Roese <sr@denx.de>
66602
66603 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
66604 Author: Stefan Roese <sr@denx.de>
66605 Date: Tue Feb 20 10:57:08 2007 +0100
66606
66607 [PATCH] Add support for the AMCC Katmai (440SPe) eval board
66608
66609 Signed-off-by: Stefan Roese <sr@denx.de>
66610
66611 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
66612 Author: Stefan Roese <sr@denx.de>
66613 Date: Tue Feb 20 10:51:26 2007 +0100
66614
66615 [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
66616
66617 This patch switches to the desired I2C bus when the date/dtt
66618 commands are called. This can be configured using the
66619 CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
66620
66621 Signed-off-by: Stefan Roese <sr@denx.de>
66622
66623 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
66624 Author: Stefan Roese <sr@denx.de>
66625 Date: Tue Feb 20 10:43:34 2007 +0100
66626
66627 [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
66628
66629 This patch adds support for the DDR2 controller used on the
66630 440SP and 440SPe. It is tested on the Katmai (440SPe) eval
66631 board and works fine with the following DIMM modules:
66632
66633 - Corsair CM2X512-5400C4 (512MByte per DIMM)
66634 - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
66635 - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
66636
66637 This patch also adds the nice functionality to dynamically
66638 create the TLB entries for the SDRAM (tlb.c). So we should
66639 never run into such problems with wrong (too short) TLB
66640 initialization again on these platforms.
66641
66642 Signed-off-by: Stefan Roese <sr@denx.de>
66643
66644 commit 36d830c9830379045f5daa9f542ac1c990c70068
66645 Author: Stefan Roese <sr@denx.de>
66646 Date: Tue Feb 20 10:35:42 2007 +0100
66647
66648 [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
66649
66650 Since the existing 4xx SPD SDRAM initialization routines for the
66651 405 SDRAM controller and the 440 DDR controller don't have much in
66652 common this patch splits both drivers into different files.
66653
66654 This is in preparation for the 440 DDR2 controller support (440SP/e).
66655
66656 Signed-off-by: Stefan Roese <sr@denx.de>
66657
66658 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
66659 Author: Stefan Roese <sr@denx.de>
66660 Date: Tue Feb 20 10:27:08 2007 +0100
66661
66662 [PATCH] PPC4xx: Add support for multiple I2C busses
66663
66664 This patch adds support for multiple I2C busses on the PPC4xx
66665 platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
66666 to make use of this feature.
66667
66668 It also merges the 405 and 440 i2c header files into one common
66669 file 4xx_i2c.h.
66670
66671 Also the 4xx i2c reset procedure is reworked since I experienced
66672 some problems with the first access on the 440SPe Katmai board.
66673
66674 Signed-off-by: Stefan Roese <sr@denx.de>
66675
66676 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
66677 Author: Grant Likely <grant.likely@secretlab.ca>
66678 Date: Tue Feb 20 09:05:45 2007 +0100
66679
66680 [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
66681
66682 Block device read/write is anonymous data; there is no need to use a
66683 typed pointer. void * is fine. Also add a hook for block_read functions
66684
66685 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66686
66687 commit 53758fa20e935cc87eeb0519ed365df753a6f289
66688 Author: Grant Likely <grant.likely@secretlab.ca>
66689 Date: Tue Feb 20 09:05:38 2007 +0100
66690
66691 [PATCH 8_9] Add block_write hook to block_dev_desc_t
66692
66693 Preparation for future patches which support block device writing
66694
66695 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66696
66697 commit f4852ebe6ca946a509667eb68be42026f837be76
66698 Author: Grant Likely <grant.likely@secretlab.ca>
66699 Date: Tue Feb 20 09:05:31 2007 +0100
66700
66701 [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
66702
66703 Register read/write does not need to be wrapped in a full function. The
66704 patch replaces them with macros.
66705
66706 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66707
66708 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
66709 Author: Grant Likely <grant.likely@secretlab.ca>
66710 Date: Tue Feb 20 09:05:23 2007 +0100
66711
66712 [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
66713
66714 The code in this file is not a command; it is a device driver. Put it in
66715 the correct place. There are zero functional changes in this patch, it
66716 only moves the file.
66717
66718 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66719
66720 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
66721 Author: Grant Likely <grant.likely@secretlab.ca>
66722 Date: Tue Feb 20 09:05:16 2007 +0100
66723
66724 [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
66725
66726 This patch is in preparation of additional changes to the sysace driver.
66727 May as well take this opportunity to fixup the inconsistent whitespace since
66728 this file is about to undergo major changes anyway.
66729
66730 There are zero functional changes in this patch. It only cleans up the
66731 the whitespace.
66732
66733 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66734
66735 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
66736 Author: Grant Likely <grant.likely@secretlab.ca>
66737 Date: Tue Feb 20 09:05:07 2007 +0100
66738
66739 [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
66740
66741 isprint is already defined in ctype.c
66742
66743 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66744
66745 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
66746 Author: Grant Likely <grant.likely@secretlab.ca>
66747 Date: Tue Feb 20 09:05:00 2007 +0100
66748
66749 [PATCH 3_9] Move buffer print code from md command to common function
66750
66751 Printing a buffer is a darn useful thing. Move the buffer print code
66752 into print_buffer() in lib_generic/
66753
66754 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66755
66756 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
66757 Author: Grant Likely <grant.likely@secretlab.ca>
66758 Date: Tue Feb 20 09:04:52 2007 +0100
66759
66760 [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
66761
66762 Change the xilinx device drivers and board code to include config.h
66763 instead of xparameters.h directly. config.h always includes the
66764 correct xparameters file. This change reduces the posibility of
66765 including the wrong file when adding a new xilinx board port
66766
66767 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66768
66769 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
66770 Author: Grant Likely <grant.likely@secretlab.ca>
66771 Date: Tue Feb 20 09:04:34 2007 +0100
66772
66773 [PATCH 1_4] Merge common get_dev() routines for block devices
66774
66775 Each of the filesystem drivers duplicate the get_dev routine. This change
66776 merges them into a single function in part.c
66777
66778 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66779
66780 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
66781 Author: Wolfgang Denk <wd@pollux.denx.de>
66782 Date: Mon Feb 19 23:09:51 2007 +0100
66783
66784 MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
66785 as root file system images.
66786
66787 commit 489c696ae7211218961d159e43e722d74c36fcbc
66788 Author: Sergei Poselenov <sposelenov@emcraft.com>
66789 Date: Wed Feb 14 14:30:28 2007 +0300
66790
66791 MCC200: Extensions to Software Update Mechanism
66792
66793 Update / extend Software Update Mechanism for MCC200 board:
66794
66795 - Add support for rootfs image added. The environment variables
66796 "rootfs_st" and "rootfs_nd" can be used to override the default
66797 values of the image start and end.
66798 - Remove excessive key check code.
66799 - Code cleanup.
66800
66801 commit 4be23a12f23f1372634edc3215137b09768b7949
66802 Author: Stefan Roese <sr@denx.de>
66803 Date: Mon Feb 19 08:23:15 2007 +0100
66804
66805 [PATCH] Update Sequoia EBC configuration (NOR FLASH)
66806
66807 As spotted by Matthias Fuchs, the READY input should not be
66808 enabled for the NOR FLASH on the Sequoia board.
66809
66810 Signed-off-by: Stefan Roese <sr@denx.de>
66811
66812 commit 2605e90bf676d48123afe5719a846d2b52b24aac
66813 Author: Heiko Schocher <hs@pollux.denx.de>
66814 Date: Fri Feb 16 07:57:42 2007 +0100
66815
66816 [PATCH] Added support for the jupiter board.
66817
66818 Signed-off-by: Heiko Schocher <hs@denx.de>
66819
66820 commit 497d012e5be0194e1084073d0081eb1a844796b2
66821 Author: Gary Jennejohn <garyj@pollux.denx.de>
66822 Date: Mon Feb 12 13:11:50 2007 +0100
66823
66824 LPC2292: patch from Siemens.
66825
66826 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
66827 Author: Stefan Roese <sr@denx.de>
66828 Date: Sat Feb 10 08:49:31 2007 +0100
66829
66830 [PATCH] Add missing p3mx.h file to repository (ups)
66831
66832 Signed-off-by: Stefan Roese <sr@denx.de>
66833
66834 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
66835 Author: Bartlomiej Sieka <tur@semihalf.com>
66836 Date: Fri Feb 9 10:45:42 2007 +0100
66837
66838 [Motion-PRO] Preliminary support for the Motion-PRO board.
66839
66840 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
66841 Author: Stefan Roese <sr@denx.de>
66842 Date: Wed Feb 7 16:51:08 2007 +0100
66843
66844 [PATCH] Update some AMCC 4xx board config files (set initrd_high)
66845
66846 Some boards that can have more than 768MBytes of SDRAM need to
66847 set "initrd_high", so that the initrd can be accessed by the
66848 Linux kernel.
66849
66850 Signed-off-by: Stefan Roese <sr@denx.de>
66851
66852 commit 7372ca68227930d03cffa548310524cad5b96733
66853 Author: Stefan Roese <sr@denx.de>
66854 Date: Fri Feb 2 12:44:22 2007 +0100
66855
66856 [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
66857
66858 Previously the strapping DCR/SDR was read to determine if the internal PCI
66859 arbiter is enabled or not. This strapping bit can be overridden, so now
66860 the current status is read from the correct DCR/SDR register.
66861
66862 Signed-off-by: Stefan Roese <sr@denx.de>
66863
66864 commit 2aa54f651a42d198673318f07a20c89a43e4d197
66865 Author: Stefan Roese <sr@denx.de>
66866 Date: Fri Feb 2 12:42:08 2007 +0100
66867
66868 [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
66869
66870 Signed-off-by: Stefan Roese <sr@denx.de>
66871
66872 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
66873 Author: Stefan Roese <sr@denx.de>
66874 Date: Thu Feb 1 13:22:41 2007 +0100
66875
66876 [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
66877
66878 When PCI PNP is enabled the pci pnp configuration routine is called
66879 which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
66880 problems with some PCI cards. For now disable the PCI PNP configuration.
66881
66882 Signed-off-by: Stefan Roese <sr@denx.de>
66883
66884 commit 2902fadade3be7659467e8d074048c6b7068f5c0
66885 Author: Stefan Roese <sr@denx.de>
66886 Date: Wed Jan 31 16:56:10 2007 +0100
66887
66888 [PATCH] Update 440EPx/440GRx cpu detection
66889
66890 Signed-off-by: Stefan Roese <sr@denx.de>
66891
66892 commit d5ea287b02a6945c3977410e364a879dd1a555c8
66893 Author: Stefan Roese <sr@denx.de>
66894 Date: Wed Jan 31 16:38:04 2007 +0100
66895
66896 [PATCH] Update esd cpci5200 files
66897
66898 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
66899
66900 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
66901 Author: Stefan Roese <sr@denx.de>
66902 Date: Wed Jan 31 16:37:34 2007 +0100
66903
66904 [PATCH] Add support for esd mecp5200 board
66905
66906 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
66907
66908 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
66909 Author: Stefan Roese <sr@denx.de>
66910 Date: Wed Jan 31 12:38:50 2007 +0100
66911
66912 [PATCH] Remove unneccessary yellowstone board config file
66913
66914 Signed-off-by: Stefan Roese <sr@denx.de>
66915
66916 commit e802594b6fa1b166308820c276b96dc0d7cc731c
66917 Author: Stefan Roese <sr@denx.de>
66918 Date: Tue Jan 30 17:06:10 2007 +0100
66919
66920 [PATCH] Update Sequoia (440EPx) config file
66921
66922 The config file now handles the 2nd target, the Rainier (440GRx)
66923 evaluation board better. Additionally the PPC input clock was
66924 adjusted to match the correct value of 33.0 MHz.
66925
66926 Signed-off-by: Stefan Roese <sr@denx.de>
66927
66928 commit 700200c67e73b83751418abe7815840dca8fd6cb
66929 Author: Stefan Roese <sr@denx.de>
66930 Date: Tue Jan 30 17:04:19 2007 +0100
66931
66932 [PATCH] Merge Yosemite & Yellowstone board ports
66933
66934 Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
66935 share one config file and all board specific files. This way we
66936 don't have to maintain two different sets of files for nearly
66937 identical boards.
66938
66939 Signed-off-by: Stefan Roese <sr@denx.de>
66940
66941 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
66942 Author: Stefan Roese <sr@denx.de>
66943 Date: Tue Jan 30 15:01:49 2007 +0100
66944
66945 [PATCH] Update Prodrive SCPU (PDNB3 variant) board
66946
66947 SCPU doesn't use redundant environment in flash.
66948
66949 Signed-off-by: Stefan Roese <sr@denx.de>
66950
66951 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
66952 Author: Stefan Roese <sr@denx.de>
66953 Date: Tue Jan 30 12:51:07 2007 +0100
66954
66955 [PATCH] alpr: Update alpr board config file
66956
66957 Signed-off-by: Stefan Roese <sr@denx.de>
66958
66959 commit f8db84f132b1e335f20f96138a1f09ed97b08664
66960 Author: Wolfgang Denk <wd@pollux.denx.de>
66961 Date: Tue Jan 30 00:50:40 2007 +0100
66962
66963 LPC2292 SODIMM port coding style cleanup.
66964
66965 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
66966 Author: Gary Jennejohn <garyj@pollux.denx.de>
66967 Date: Wed Jan 24 12:16:56 2007 +0100
66968
66969 Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
66970
66971 commit 2daf046ba627f85f44195815778140039636244e
66972 Author: Bartlomiej Sieka <tur@semihalf.com>
66973 Date: Tue Jan 23 17:22:06 2007 +0100
66974
66975 [iDMR] Add MTD and JFFS2 support, also add default partition definition.
66976
66977 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
66978 Author: Bartlomiej Sieka <tur@semihalf.com>
66979 Date: Tue Jan 23 14:21:14 2007 +0100
66980
66981 [iDMR] Flash driver on initialisation write-protects some sectors,
66982 currently sectors 0-3. Sector 3 does not need to be protected, though
66983 (U-boot occupies sectors 0-1 and the environment sector 2). This commit
66984 fixes this, i.e., only sectors 0-2 are protected.
66985
66986 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
66987 Author: Bartlomiej Sieka <tur@semihalf.com>
66988 Date: Tue Jan 23 14:11:22 2007 +0100
66989
66990 [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
66991 "mii device" results in "Unexpected exception"). Fixing this properly
66992 requires some clean-up in the FEC drivers infrastructure for ColdFire, so
66993 this commit disables MII commads for now.
66994
66995 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
66996 Author: Bartlomiej Sieka <tur@semihalf.com>
66997 Date: Tue Jan 23 13:25:22 2007 +0100
66998
66999 [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
67000 Identification Register (CIR).
67001
67002 commit fdef388758506765d4d6a7155c8f1584c63ff581
67003 Author: roy zang <tie-fei.zang@freescale.com>
67004 Date: Mon Jan 22 13:19:21 2007 +0800
67005
67006 use CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
67007 The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
67008 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
67009 mpc7448hpc2 board.
67010
67011 commit a4012396645533aef218354eeba754dff0deace8
67012 Author: Wolfgang Denk <wd@pollux.denx.de>
67013 Date: Fri Jan 19 23:08:39 2007 +0100
67014
67015 Minor code cleanup.
67016
67017 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
67018 Author: Heiko Schocher <hs@pollux.denx.de>
67019 Date: Fri Jan 19 19:57:10 2007 +0100
67020
67021 [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
67022
67023 Signed-off-by: Heiko Schocher <hs@denx.de>
67024
67025 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
67026 Author: Heiko Schocher <hs@pollux.denx.de>
67027 Date: Fri Jan 19 18:05:26 2007 +0100
67028
67029 [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
67030 if you must swap the bytes between reading/writing.
67031 (Needed for the SC3 board)
67032
67033 Signed-off-by: Heiko Schocher <hs@denx.de>
67034
67035 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
67036 Author: Stefan Roese <sr@denx.de>
67037 Date: Thu Jan 18 16:05:47 2007 +0100
67038
67039 [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
67040
67041 Signed-off-by: Stefan Roese <sr@denx.de>
67042
67043 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
67044 Author: Stefan Roese <sr@denx.de>
67045 Date: Thu Jan 18 11:54:52 2007 +0100
67046
67047 [PATCH] Update Prodrive P3Mx support
67048
67049 Signed-off-by: Stefan Roese <sr@denx.de>
67050
67051 commit 34167a36c29ee946b727465db5c014746a08e978
67052 Author: Stefan Roese <sr@denx.de>
67053 Date: Thu Jan 18 11:48:10 2007 +0100
67054
67055 [PATCH] Add missing Taishan config file
67056
67057 Signed-off-by: Stefan Roese <sr@denx.de>
67058
67059 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
67060 Author: Heiko Schocher <hs@pollux.denx.de>
67061 Date: Thu Jan 18 11:28:51 2007 +0100
67062
67063 [PATCH] Fix: Compilerwarnings for SC3 board.
67064 The EBC Configuration Register is now by CFG_EBC_CFG definable
67065 Added JFFS2 support for the SC3 board.
67066
67067 Signed-off-by: Heiko Schocher <hs@denx.de>
67068
67069 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
67070 Author: Stefan Roese <sr@denx.de>
67071 Date: Thu Jan 18 10:25:34 2007 +0100
67072
67073 [PATCH] Add support for AMCC Taishan PPC440GX eval board
67074
67075 Signed-off-by: Stefan Roese <sr@denx.de>
67076
67077 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
67078 Author: Wolfgang Denk <wd@pollux.denx.de>
67079 Date: Tue Jan 16 18:30:50 2007 +0100
67080
67081 Raname solidcard3 into sc3; add redundant env for sc3
67082
67083 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
67084 Author: Wolfgang Denk <wd@pollux.denx.de>
67085 Date: Tue Jan 16 12:46:35 2007 +0100
67086
67087 Update default environment for Solidcard3
67088
67089 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
67090 Author: Stefan Roese <sr@denx.de>
67091 Date: Mon Jan 15 09:46:29 2007 +0100
67092
67093 [PATCH] Fix 440SPe rev B detection from previous patch
67094
67095 Signed-off-by: Stefan Roese <sr@denx.de>
67096
67097 commit a443d31410c571ee8f970da819a44d698fdd6b1f
67098 Author: Heiko Schocher <hs@pollux.denx.de>
67099 Date: Sun Jan 14 13:35:31 2007 +0100
67100
67101 [FIX] correct I2C Writes for the LM81 Sensor.
67102
67103 Signed-off-by: Heiko Schocher <hs@denx.de>
67104
67105 commit 0bba5452835f19a61204edcda3a58112fd8e2208
67106 Author: Wolfgang Denk <wd@pollux.denx.de>
67107 Date: Sat Jan 13 11:17:10 2007 +0100
67108
67109 Undo commit 3033ebb2: reset command does not take any arguments
67110
67111 Haiying Wang's modification to the reset command was broken, undo it.
67112
67113 Signed-off-by: Wolfgang Denk <wd@denx.de>
67114
67115 commit 95981778cff0038fd9941044d6a3eda810e33258
67116 Author: Stefan Roese <sr@denx.de>
67117 Date: Sat Jan 13 08:01:03 2007 +0100
67118
67119 [PATCH] Update 440SP(e) cpu revisions
67120
67121 Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
67122
67123 Signed-off-by: Stefan Roese <sr@denx.de>
67124
67125 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
67126 Author: Stefan Roese <sr@denx.de>
67127 Date: Sat Jan 13 07:59:56 2007 +0100
67128
67129 [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
67130
67131 Now the board revision and the current PCI bus speed are printed after
67132 the board message.
67133
67134 Also the EBC initialising is now done via defines in the board config
67135 file.
67136
67137 Signed-off-by: Stefan Roese <sr@denx.de>
67138
67139 commit 36adff362c2c0141ff8a810d42a7e478f779130f
67140 Author: Stefan Roese <sr@denx.de>
67141 Date: Sat Jan 13 07:59:19 2007 +0100
67142
67143 [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
67144
67145 Now the board revision and the current PCI bus speed are printed after
67146 the board message.
67147
67148 Also the EBC initialising is now done via defines in the board config
67149 file.
67150
67151 Signed-off-by: Stefan Roese <sr@denx.de>
67152
67153 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
67154 Author: Stefan Roese <sr@denx.de>
67155 Date: Sat Jan 13 07:57:51 2007 +0100
67156
67157 [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
67158
67159 Now the board revision and the current PCI bus speed are printed after
67160 the board message.
67161
67162 Signed-off-by: Stefan Roese <sr@denx.de>
67163
67164 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
67165 Author: Heiko Schocher <hs@pollux.denx.de>
67166 Date: Thu Jan 11 15:44:44 2007 +0100
67167
67168 Added support for the SOLIDCARD III board from Eurodesign
67169
67170 Signed-off-by: Heiko Schocher <hs@denx.de>
67171
67172 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
67173 Author: Reinhard Thies <Reinhard.Thies@web.de>
67174 Date: Wed Jan 10 14:41:14 2007 +0100
67175
67176 Adjusted default environment for cam5200 board.
67177
67178 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
67179 Author: Wolfgang Denk <wd@pollux.denx.de>
67180 Date: Wed Jan 10 15:35:52 2007 +0100
67181
67182 Update CHANGELOG
67183
67184 commit 787fa15860a57833e50bd30555079a9cd4e519b8
67185 Author: Wolfgang Denk <wd@pollux.denx.de>
67186 Date: Wed Jan 10 01:28:39 2007 +0100
67187
67188 Fix auto_update for MCC200 board.
67189
67190 The invocation of do_auto_update() is moved to the end of the
67191 misc_init_r() function, after the flash mappings have been
67192 initialized. Please find attached a patch that implements that
67193 change.
67194
67195 Also correct the decoding of the keypad status. With this update, the
67196 key that will trigger the update is Column 2, Row 2.
67197
67198 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
67199 Author: Marian Balakowicz <m8@semihalf.com>
67200 Date: Wed Jan 10 00:26:15 2007 +0100
67201
67202 CAM5200 flash driver modifications:
67203 - use CFI driver (replaces custom flash driver) for main 'cam5200' target
67204 - add second build target 'cam5200_niosflash' which still uses custom driver
67205
67206 commit 67fea022fa957f59653b5238c7496f80a6b70432
67207 Author: Markus Klotzbuecher <mk@denx.de>
67208 Date: Tue Jan 9 16:02:48 2007 +0100
67209
67210 SPC1920: cleanup memory contoller setup
67211
67212 commit 8fc2102faa23593c80381437c09f7745a14deb40
67213 Author: Markus Klotzbuecher <mk@denx.de>
67214 Date: Tue Jan 9 14:57:14 2007 +0100
67215
67216 Fix the cpu speed setup to work with all boards.
67217
67218 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
67219 Author: Markus Klotzbuecher <mk@denx.de>
67220 Date: Tue Jan 9 14:57:13 2007 +0100
67221
67222 SPC1920: add support for the FM18L08 Ramtron FRAM
67223
67224 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
67225 Author: Markus Klotzbuecher <mk@denx.de>
67226 Date: Tue Jan 9 14:57:13 2007 +0100
67227
67228 SPC1920: update the HPI register addresses to work with the second
67229 generation of hardware
67230
67231 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
67232 Author: Markus Klotzbuecher <mk@creamnet.de>
67233 Date: Tue Jan 9 14:57:13 2007 +0100
67234
67235 Miscellanious spc1920 related cleanups
67236
67237 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
67238 Author: Markus Klotzbuecher <mk@denx.de>
67239 Date: Tue Jan 9 14:57:12 2007 +0100
67240
67241 SPC1920 GO/NOGO led should be set to color red in U-Boot
67242
67243 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
67244 Author: Markus Klotzbuecher <mk@creamnet.de>
67245 Date: Tue Jan 9 14:57:12 2007 +0100
67246
67247 Add support for the DS3231 RTC
67248
67249 commit 8139567b60d678584b05f0718a681f2047c5e14f
67250 Author: Markus Klotzbuecher <mk@creamnet.de>
67251 Date: Tue Jan 9 14:57:11 2007 +0100
67252
67253 SMC1 uses external CLK4 instead of BRG on spc1920
67254
67255 commit d8d9de1a02fbd880b613d607143d1f57342affc7
67256 Author: Markus Klotzbuecher <mk@creamnet.de>
67257 Date: Tue Jan 9 14:57:10 2007 +0100
67258
67259 Update the SPC1920 CMB PLD driver
67260
67261 commit 3f34f869162750e5e999fd140f884f5de952bcfe
67262 Author: Markus Klotzbuecher <mk@creamnet.de>
67263 Date: Tue Jan 9 14:57:10 2007 +0100
67264
67265 Add / enable I2C support on the spc1920 board
67266
67267 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
67268 Author: Markus Klotzbuecher <mk@creamnet.de>
67269 Date: Tue Jan 9 14:57:10 2007 +0100
67270
67271 Add support for the tms320671x host port interface (HPI)
67272
67273 commit f4eb54529bb3664c3a562e488b460fe075f79d67
67274 Author: Wolfgang Denk <wd@pollux.denx.de>
67275 Date: Sun Jan 7 00:13:11 2007 +0100
67276
67277 Prepare for release 1.2.0
67278
67279 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
67280 Author: Stefan Roese <sr@denx.de>
67281 Date: Sat Jan 6 15:58:09 2007 +0100
67282
67283 [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
67284
67285 This patch fixes a problem with an incorrect setup for the refresh
67286 timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
67287
67288 Signed-off-by: Stefan Roese <sr@denx.de>
67289
67290 commit f16c1da9577f06c5fc08651a4065537407de4635
67291 Author: Stefan Roese <sr@denx.de>
67292 Date: Sat Jan 6 15:56:13 2007 +0100
67293
67294 [PATCH] Update ALPR board files
67295
67296 This update brings the ALPR board support to the newest version.
67297 It also fixes a problem with the NAND driver.
67298
67299 Signed-off-by: Stefan Roese <sr@denx.de>
67300
67301 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
67302 Author: Stefan Roese <sr@denx.de>
67303 Date: Fri Jan 5 11:46:05 2007 +0100
67304
67305 [PATCH] nand: Fix problem with oobsize calculation
67306
67307 Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
67308
67309 The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
67310 returns a 0x15. In the code fragment below bits [1:0] determine the
67311 page size, it is ANDed via "(extid & 0x3)" then shifted out. The
67312 next field is also ANDed with 0x3. However this is a one bit field
67313 as defined in the Hynix and Samsung parts in the 4th ID byte that
67314 determins the oobsize, not a two bit field. It works on Samsung as
67315 bits[3:2] are 01. However for the Hynix there is a 11 in these two
67316 bits, so the oob size gets messed up.
67317
67318 I checked the correct linux code and the suggested fix from Brian is
67319 also available in the linux nand mtd driver.
67320
67321 Signed-off-by: Stefan Roese <sr@denx.de>
67322
67323 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
67324 Author: Stefan Roese <sr@denx.de>
67325 Date: Fri Jan 5 10:40:36 2007 +0100
67326
67327 [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
67328
67329 This fix will make the MAL burst disabling patch for the Linux
67330 EMAC driver obsolete.
67331
67332 Signed-off-by: Stefan Roese <sr@denx.de>
67333
67334 commit 023889838282b6237b401664f22dd22dfba2c066
67335 Author: Stefan Roese <sr@denx.de>
67336 Date: Fri Jan 5 10:38:05 2007 +0100
67337
67338 [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
67339
67340 This code will optimize the DDR2 controller setup on a board specific
67341 basis.
67342
67343 Note: This code doesn't work right now on the NAND booting image for the
67344 Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
67345
67346 Signed-off-by: Stefan Roese <sr@denx.de>
67347
67348 commit cce4acbb68398634b8d011ed7bb0d12269c84230
67349 Author: Bartlomiej Sieka <tur@semihalf.com>
67350 Date: Thu Dec 28 19:08:21 2006 +0100
67351
67352 Few V38B changes:
67353 - fix a typo in V38B config file
67354 - move watchdog initialisation earlier in the boot process
67355 - add "wdt=off" to default kernel command line (disables kernel watchdog)
67356
67357 commit 92eb729bad876725aeea908d2addba0800620840
67358 Author: Wolfgang Denk <wd@pollux.denx.de>
67359 Date: Wed Dec 27 01:26:13 2006 +0100
67360
67361 Fix bug in adaption of Stefano Babic's CFI driver patch.
67362
67363 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
67364 Author: Wolfgang Denk <wd@pollux.denx.de>
67365 Date: Sun Dec 24 01:42:57 2006 +0100
67366
67367 Minor code cleanup.
67368
67369 commit d784fdb05900ada3686d5778783e1fb328e9fb66
67370 Author: Stefano Babic <sbabic@denx.de>
67371 Date: Tue Dec 12 00:22:42 2006 +0100
67372
67373 Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
67374
67375 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
67376 Author: Stefan Roese <sr@denx.de>
67377 Date: Fri Dec 22 14:29:40 2006 +0100
67378
67379 [PATCH] Fix sequoia flash autodetection (finally correct)
67380
67381 Now 32MByte and 64MByte FLASH is know to work and other
67382 configurations should work too.
67383
67384 Signed-off-by: Stefan Roese <sr@denx.de>
67385
67386 commit 82e5236a8b719543643fd26d5827938ab2b94818
67387 Author: Wolfgang Denk <wd@pollux.denx.de>
67388 Date: Fri Dec 22 10:30:26 2006 +0100
67389
67390 Minor code cleanup; update CHANGELOG.
67391
67392 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
67393 Author: Heiko Schocher <hs@pollux.denx.de>
67394 Date: Thu Dec 21 17:17:02 2006 +0100
67395
67396 Added support for the TQM8272 board from TQ
67397
67398 Signed-off-by: Heiko Schocher <hs@denx.de>
67399
67400 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
67401 Author: Heiko Schocher <hs@pollux.denx.de>
67402 Date: Thu Dec 21 16:14:48 2006 +0100
67403
67404 [PATCH] Add support for the UC101 board from MAN.
67405
67406 Signed-off-by: Heiko Schocher <hs@denx.de>
67407
67408 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
67409 Author: Bartlomiej Sieka <tur@semihalf.com>
67410 Date: Wed Dec 20 00:29:43 2006 +0100
67411
67412 Fix to make the baudrate changes immediate for the MCF52x2 family.
67413
67414 commit daa6e418bcc0c717752e8de939c213c790286096
67415 Author: Bartlomiej Sieka <tur@semihalf.com>
67416 Date: Wed Dec 20 00:27:32 2006 +0100
67417
67418 Preliminary support for the iDMR board (ColdFire).
67419
67420 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
67421 Author: Andrei Safronov <safronov@pollux.denx.de>
67422 Date: Fri Dec 8 16:23:08 2006 +0100
67423
67424 automatic update mechanism
67425
67426 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
67427 Author: roy zang <tie-fei.zang@freescale.com>
67428 Date: Mon Dec 4 17:56:59 2006 +0800
67429
67430 Slight code clean up.
67431 Add comments, delete duplicate define and remove spaces.
67432 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
67433
67434 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
67435 Author: roy zang <tie-fei.zang@freescale.com>
67436 Date: Mon Dec 4 17:54:21 2006 +0800
67437
67438 Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
67439 multiplier table can not refect the real PLL clock behavior of these
67440 processors. Please refer to the hardware specification for detailed
67441 information of the corresponding processors.
67442 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
67443
67444 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
67445 Author: roy zang <tie-fei.zang@freescale.com>
67446 Date: Mon Dec 4 14:46:23 2006 +0800
67447
67448 Remove the static MAC address, ip address, server ip, netmask and
67449 gateway ip for network setting.
67450 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
67451
67452 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
67453 Author: roy zang <tie-fei.zang@freescale.com>
67454 Date: Mon Dec 4 14:33:08 2006 +0800
67455
67456 Remove the duplicate memory test code for mpc744ihpc2 board.
67457 If a memory test is needed, please use the functions in
67458 post/memory.c or memtest command.
67459 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
67460
67461 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
67462 Author: roy zang <tie-fei.zang@freescale.com>
67463 Date: Fri Dec 1 19:01:25 2006 +0800
67464
67465 Fix the exception occuring in RAM table search issue.
67466 The original search_one_table() function code can only processes the search
67467 for the exception occurring in FLASH/ROM, because the exception and fixup
67468 table usually locate in FLASH. If the exception address is also in
67469 FLASH, it will be OK.
67470 If the exception occurs in RAM, after the u-boot relocation, a
67471 relocation offset should be added.
67472
67473 clean up the code in cpu/74xx_7xx/cpu.c
67474
67475 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
67476
67477 commit ee311214e0d216f904feea269599d0934bf71f23
67478 Author: roy zang <tie-fei.zang@freescale.com>
67479 Date: Fri Dec 1 11:47:36 2006 +0800
67480
67481 Clean up the code according to codestyle:
67482 (1) remove some C++ comments.
67483 (2) remove trailing white space.
67484 (3) remove trailing empty line.
67485 (4) Indentation by table.
67486 (5) remove {} in one line condition.
67487 (6) add space before '(' in function call.
67488 Remove some weird printf () output.
67489 Add necessary comments.
67490 Modified Makefile to support building in a separate directory.
67491
67492 commit dd520bf314c7add4183c5191692180f576f96b60
67493 Author: Wolfgang Denk <wd@pollux.denx.de>
67494 Date: Thu Nov 30 18:02:20 2006 +0100
67495
67496 Code cleanup.
67497
67498 commit 8d9a8610b8256331132227e9e6585c6bd5742787
67499 Author: Wolfgang Denk <wd@pollux.denx.de>
67500 Date: Thu Nov 30 01:54:07 2006 +0100
67501
67502 Code cleanup. Update CHANGELOG.
67503
67504 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
67505 Author: Grant Likely <grant.likely@secretlab.ca>
67506 Date: Wed Nov 29 16:23:42 2006 +0100
67507
67508 [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
67509
67510 The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
67511 not the XLB frequency.
67512
67513 This patch depends on the previous patches for MPC52xx device tree support
67514
67515 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
67516 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
67517
67518 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
67519 Author: Stefan Roese <sr@denx.de>
67520 Date: Wed Nov 29 15:42:37 2006 +0100
67521
67522 [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
67523
67524 This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
67525 and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
67526 quite similar and share the same board directory "prodrive/p3mx"
67527 and the same config file "p3mx.h".
67528
67529 Signed-off-by: Stefan Roese <sr@denx.de>
67530
67531 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
67532 Author: Stefan Roese <sr@denx.de>
67533 Date: Wed Nov 29 12:53:15 2006 +0100
67534
67535 [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
67536
67537 In the bootvx command the load address was only read from the env
67538 variable "loadaddr" and not optionally passed as paramter as described
67539 in the help. This is fixed with this patch. The behaviour is now the
67540 same as in the bootelf command.
67541
67542 Signed-off-by: Stefan Roese <sr@denx.de>
67543
67544 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
67545 Author: Stefan Roese <sr@denx.de>
67546 Date: Wed Nov 29 12:03:57 2006 +0100
67547
67548 [PATCH] include/ppc440.h minor error affecting interrupts
67549
67550 Fixed include/ppc440.c for UIC address Bug
67551
67552 Corrects bug affecting the addresses for the universal interrupt
67553 controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
67554
67555 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
67556 Signed-off-by: Stefan Roese <sr@denx.de>
67557
67558 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
67559 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
67560 Date: Tue Nov 28 16:17:27 2006 -0600
67561
67562 Make fsl-i2c not conflict with SOFT I2C
67563
67564 Signed-off-by: Timur Tabi <timur@freescale.com>
67565
67566 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
67567 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
67568 Date: Tue Nov 28 16:17:18 2006 -0600
67569
67570 Fix I2C master address initialization.
67571
67572 Signed-off-by: Timur Tabi <timur@freescale.com>
67573
67574 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
67575 Author: Kim Phillips <kim.phillips@freescale.com>
67576 Date: Tue Nov 28 23:31:19 2006 -0600
67577
67578 Assign maintainers for mpc8349emds and mpc8360emds
67579
67580 Dave for mpc8360emds, and me for mpc8349emds.
67581
67582 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
67583 Author: Kim Phillips <kim.phillips@freescale.com>
67584 Date: Tue Nov 28 23:28:33 2006 -0600
67585
67586 Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
67587
67588 give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
67589 since they are passed by reference to ucc_get_cmxucr_reg and assigned.
67590
67591 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
67592 Author: Timur Tabi <timur@freescale.com>
67593 Date: Tue Nov 28 12:09:35 2006 -0600
67594
67595 mpc83xx: Miscellaneous code style fixes
67596
67597 Implement various code style fixes and similar changes.
67598
67599 Signed-off-by: Timur Tabi <timur@freescale.com>
67600
67601 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
67602 Author: Stefan Roese <sr@denx.de>
67603 Date: Tue Nov 28 17:55:49 2006 +0100
67604
67605 [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
67606
67607 This patch adds the code and configuration necessary to boot with an
67608 arch/powerpc Linux kernel.
67609
67610 Signed-off-by: Grant Likely <grant.likely@gmail.com>
67611 Acked-by: Jon Loeliger <jdl@freescale.com>
67612
67613 commit e732faec95a83cb468b4850ae807c8301dde8f6a
67614 Author: Stefan Roese <sr@denx.de>
67615 Date: Tue Nov 28 16:09:24 2006 +0100
67616
67617 [PATCH] PPC4xx: 440SP Rev. C detection added
67618
67619 Signed-off-by: Stefan Roese <sr@denx.de>
67620
67621 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
67622 Author: Stefan Roese <sr@denx.de>
67623 Date: Tue Nov 28 11:04:45 2006 +0100
67624
67625 [PATCH] nand: Fix patch merge problem
67626
67627 Signed-off-by: Stefan Roese <sr@denx.de>
67628
67629 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
67630 Author: Stefan Roese <sr@denx.de>
67631 Date: Tue Nov 28 11:04:45 2006 +0100
67632
67633 [PATCH] nand: Fix patch merge problem
67634
67635 Signed-off-by: Stefan Roese <sr@denx.de>
67636
67637 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
67638 Author: Wolfgang Denk <wd@pollux.denx.de>
67639 Date: Mon Nov 27 22:53:53 2006 +0100
67640
67641 Update CHANGELOG
67642
67643 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
67644 Author: Stefan Roese <sr@denx.de>
67645 Date: Mon Nov 27 17:43:25 2006 +0100
67646
67647 [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
67648
67649 Patch below corrects the setting of the zmiifer register, it was
67650 overwritting the register rather than ORing the settings.
67651
67652 Signed-off-by: Neil Wilson <NWilson@airspan.com>
67653 Signed-off-by: Stefan Roese <sr@denx.de>
67654
67655 commit d1a72545296800b7e219f93104ad5836f0003d66
67656 Author: Stefan Roese <sr@denx.de>
67657 Date: Mon Nov 27 17:34:10 2006 +0100
67658
67659 [PATCH] Select NAND embedded environment from board configuration
67660
67661 The current NAND Bootloader setup forces the environment
67662 variables to be in line with the bootloader. This change
67663 enables the configuration to be made in the board include
67664 file instead so that it can be individually enabled.
67665
67666 Signed-off-by: Nick Spence <nick.spence@freescale.com>
67667 Signed-off-by: Stefan Roese <sr@denx.de>
67668
67669 commit 15784862857c3c2214498defcfed84ff137fb81e
67670 Author: Stefan Roese <sr@denx.de>
67671 Date: Mon Nov 27 17:22:19 2006 +0100
67672
67673 [PATCH] nand_wait() timeout fixes
67674
67675 Two fixes for the nand_wait() function in
67676 drivers/nand/nand_base.c:
67677
67678 1. Use correct timeouts. The original timeouts in Linux
67679 source are 400ms and 20ms not 40s and 20s
67680
67681 2. Return correct error value in case of timeout. 0 is
67682 interpreted as OK.
67683
67684 Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
67685 Signed-off-by: Stefan Roese <sr@denx.de>
67686
67687 commit da5553b095bf04f4f109ad7e565dae3aba47b230
67688 Author: Stefan Roese <sr@denx.de>
67689 Date: Mon Nov 27 17:04:06 2006 +0100
67690
67691 [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
67692
67693 This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
67694 arguments to bootm. It removes the getenv("disable_of") test that used
67695 to be used for this purpose.
67696
67697 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
67698 Acked-by: Jon Loeliger <jdl@freescale.com>
67699
67700 commit a9398e018593782c5fa7d0741955fc1256b34c1e
67701 Author: Wolfgang Denk <wd@pollux.denx.de>
67702 Date: Mon Nov 27 15:32:42 2006 +0100
67703
67704 Minor code cleanup. Update CHANGELOG.
67705
67706 commit 1729b92cde575476684bffe819d0b7791b57bff2
67707 Author: Stefan Roese <sr@denx.de>
67708 Date: Mon Nov 27 14:52:04 2006 +0100
67709
67710 [PATCH] 4xx: Fix problem with board specific reset code (now for real)
67711
67712 Signed-off-by: Stefan Roese <sr@denx.de>
67713
67714 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
67715 Author: Stefan Roese <sr@denx.de>
67716 Date: Mon Nov 27 14:49:51 2006 +0100
67717
67718 [PATCH] alpr: remove unused board specific flash driver
67719
67720 Signed-off-by: Stefan Roese <sr@denx.de>
67721
67722 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
67723 Author: Stefan Roese <sr@denx.de>
67724 Date: Mon Nov 27 14:48:41 2006 +0100
67725
67726 [PATCH] 4xx: Fix problem with board specific reset code
67727
67728 Signed-off-by: Stefan Roese <sr@denx.de>
67729
67730 commit ec0c2ec725aec9524a177a77ce75559e644a931a
67731 Author: Stefan Roese <sr@denx.de>
67732 Date: Mon Nov 27 14:46:06 2006 +0100
67733
67734 [PATCH] Remove testing 4xx enet PHY setup
67735
67736 Signed-off-by: Stefan Roese <sr@denx.de>
67737
67738 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
67739 Author: Stefan Roese <sr@denx.de>
67740 Date: Mon Nov 27 14:12:17 2006 +0100
67741
67742 [PATCH] Update Prodrive ALPR board support (440GX)
67743
67744 Signed-off-by: Stefan Roese <sr@denx.de>
67745
67746 commit 58b485776698c3d71ec5a215e392123b4c15afa3
67747 Author: Markus Klotzbuecher <mk@denx.de>
67748 Date: Mon Nov 27 11:51:21 2006 +0100
67749
67750 Add a small README with information on the generic ohci driver.
67751
67752 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
67753 Author: Markus Klotzbuecher <mk@denx.de>
67754 Date: Mon Nov 27 11:46:46 2006 +0100
67755
67756 Fix some endianness issues related to the generic ohci driver
67757
67758 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
67759 Author: Markus Klotzbuecher <mk@denx.de>
67760 Date: Mon Nov 27 11:44:58 2006 +0100
67761
67762 Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
67763 to choose between the old and the generic OHCI drivers.
67764
67765 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
67766 Author: Markus Klotzbuecher <mk@denx.de>
67767 Date: Mon Nov 27 11:43:09 2006 +0100
67768
67769 Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
67770 and adapted board configs TQM5200 and yosemite accordingly. This commit
67771 also makes the maximum number of root hub ports configurable
67772 (CFG_USB_OHCI_MAX_ROOT_PORTS).
67773
67774 commit 78d620ebb5871d252270dedfad60c6568993b780
67775 Author: Wolfgang Denk <wd@atlas.denx.de>
67776 Date: Thu Nov 23 22:58:58 2006 +0100
67777
67778 Updates for TQM5200 modules:
67779 - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
67780 - simplify "udate" definitions
67781
67782 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
67783 Author: Stefan Roese <sr@denx.de>
67784 Date: Wed Nov 22 13:20:50 2006 +0100
67785
67786 [PATCH] PPC4xx start.S: Fix for processor errata
67787
67788 Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
67789 errata 1.12: 440_33 by moving patch up in code.
67790
67791 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
67792 Signed-off-by: Stefan Roese <sr@denx.de>
67793
67794 commit 4ef6251403f637841000e0fef9e832aa01339822
67795 Author: Stefan Roese <sr@denx.de>
67796 Date: Mon Nov 20 20:39:52 2006 +0100
67797
67798 [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
67799
67800 Signed-off-by: Stefan Roese <sr@denx.de>
67801
67802 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
67803 Author: Wolfgang Denk <wd@pollux.denx.de>
67804 Date: Mon Nov 20 10:28:30 2006 +0100
67805
67806 Update CHANGELOG
67807
67808 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
67809 Author: Stefan Roese <sr@denx.de>
67810 Date: Mon Nov 13 13:55:24 2006 +0100
67811
67812 [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
67813
67814 * Adds support for AMD command set Top Boot flash geometry reversal
67815 * Adds support for reading JEDEC Manufacturer ID and Device ID
67816 * Adds support for displaying command set, manufacturer id and
67817 device ids (flinfo)
67818 * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
67819 * Removes outdated change history (refer to git log instead)
67820
67821 Signed-off-by: Tolunay Orkun <listmember@orkun.us>
67822 Signed-off-by: Stefan Roese <sr@denx.de>
67823
67824 commit b21b511d4c50408f4853f46f06b601272196223f
67825 Author: Wolfgang Denk <wd@pollux.denx.de>
67826 Date: Sun Nov 12 21:13:23 2006 +0100
67827
67828 Update CHANGELOG
67829
67830 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
67831 Author: Bartlomiej Sieka <tur@semihalf.com>
67832 Date: Sat Nov 11 22:48:22 2006 +0100
67833
67834 Disable the watchdog in the default config for the V38B board.
67835
67836 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
67837 Author: Bartlomiej Sieka <tur@semihalf.com>
67838 Date: Sat Nov 11 22:43:00 2006 +0100
67839
67840 Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
67841 group is enabled for USB earlier (in cpu_init_f() instead of
67842 usb_lowlevel_init()).
67843
67844 commit 91650b3e4de688038d4f71279c44858e3e2c6870
67845 Author: Wolfgang Denk <wd@pollux.denx.de>
67846 Date: Mon Nov 6 17:06:36 2006 +0100
67847
67848 Sequential accesses to non-existent memory must be synchronized,
67849 at least on G2 cores.
67850
67851 This fixes get_ram_size() problems on MPC5200 Rev. B boards.
67852
67853 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
67854 Author: Timur Tabi <timur@freescale.com>
67855 Date: Fri Nov 3 19:15:00 2006 -0600
67856
67857 mpc83xx: Update 83xx to use fsl_i2c.c
67858
67859 Update the 83xx tree to use I2C support in drivers/fsl_i2c.c. Delete
67860 cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
67861 Added multiple I2C bus support to fsl_i2c.c.
67862
67863 Signed-off-by: Timur Tabi <timur@freescale.com>
67864
67865 commit d239d74b1c937984bc519083a8e7de373a390f06
67866 Author: Timur Tabi <timur@freescale.com>
67867 Date: Fri Nov 3 12:00:28 2006 -0600
67868
67869 mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
67870
67871 Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
67872 tree matches the other 8xxx trees.
67873
67874 Signed-off-by: Timur Tabi <timur@freescale.com>
67875
67876 commit f7fb2e703ec9688541416962724adff70a7322cb
67877 Author: Kim Phillips <kim.phillips@freescale.com>
67878 Date: Thu Nov 2 19:47:11 2006 -0600
67879
67880 mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
67881
67882 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
67883 Author: Dave Liu <daveliu@freescale.com>
67884 Date: Thu Nov 2 18:05:50 2006 -0600
67885
67886 mpc83xx: Fix the incorrect dcbz operation
67887
67888 The 834x rev1.x silicon has one CPU5 errata.
67889
67890 The issue is when the data cache locked with
67891 HID0[DLOCK], the dcbz instruction looks like no-op inst.
67892
67893 The right behavior of the data cache is when the data cache
67894 Locked with HID0[DLOCK], the dcbz instruction allocates
67895 new tags in cache.
67896
67897 The 834x rev3.0 and later and 8360 have not this bug inside.
67898
67899 So, when 834x rev3.0/8360 are working with ECC, the dcbz
67900 instruction will corrupt the stack in cache, the processor will
67901 checkstop reset.
67902
67903 However, the 834x rev1.x can work with ECC with these code,
67904 because the sillicon has this cache bug. The dcbz will not
67905 corrupt the stack in cache.
67906 Really, it is the fault code running on fault sillicon.
67907
67908 This patch fix the incorrect dcbz operation. Instead of
67909 CPU FP writing to initialise the ECC.
67910
67911 CHANGELOG:
67912 * Fix the incorrect dcbz operation instead of CPU FP
67913 writing to initialise the ECC memory. Otherwise, it
67914 will corrupt the stack in cache, The processor will checkstop
67915 reset.
67916
67917 Signed-off-by: Dave Liu <daveliu@freescale.com>
67918
67919 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
67920 Author: Kim Phillips <kim.phillips@freescale.com>
67921 Date: Wed Nov 1 00:10:40 2006 -0600
67922
67923 mpc83xx: add OF_FLAT_TREE bits to 83xx boards
67924
67925 add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
67926 STDOUT_PATH configuration bits to mpc8349emds,
67927 mpc8349itx, and mpc8360emds board code.
67928
67929 redo environment to use bootm with the fdtaddr
67930 for booting ARCH=powerpc kernels by default,
67931 and provide default fdtaddr values.
67932
67933 commit 48041365b3420589ad464ebc7752e0053538b729
67934 Author: Kim Phillips <kim.phillips@freescale.com>
67935 Date: Wed Nov 1 00:07:25 2006 -0600
67936
67937 mpc83xx: change ft code to modify local-mac-address property
67938
67939 Update 83xx OF code to update local-mac-address properties
67940 for ethernet instead of the obsolete 'address' property.
67941
67942 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
67943 Author: Timur Tabi <timur@freescale.com>
67944 Date: Tue Oct 31 21:23:16 2006 -0600
67945
67946 mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
67947
67948 This patch also adds an improved I2C set_speed(), which handles all clock
67949 frequencies.
67950
67951 Signed-off-by: Timur Tabi <timur@freescale.com>
67952
67953 commit ac4b5622ce050b5ee1e154b98df630d778661632
67954 Author: Dave Liu <daveliu@freescale.com>
67955 Date: Tue Oct 31 19:54:59 2006 -0600
67956
67957 mpc83xx: add the README.mpc8360emds
67958
67959 add doc/README.mpc8360emds to accompany the new board support
67960
67961 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
67962 Author: Dave Liu <daveliu@freescale.com>
67963 Date: Fri Nov 3 12:11:15 2006 -0600
67964
67965 mpc83xx: add QE ethernet support
67966
67967 this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
67968
67969 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
67970 Author: Dave Liu <daveliu@freescale.com>
67971 Date: Fri Nov 3 19:33:44 2006 -0600
67972
67973 mpc83xx: Add MPC8360EMDS basic board support
67974
67975 Add support for the Freescale MPC8360EMDS board.
67976 Includes DDR, DUART, Local Bus, PCI.
67977
67978 commit 23892e49352de74f7fac36ff90bb1be143d195e3
67979 Author: Dave Liu <daveliu@freescale.com>
67980 Date: Tue Oct 31 19:30:40 2006 -0600
67981
67982 mpc83xx: add the QUICC Engine (QE) immap file
67983
67984 common QE immap file. Also required for 8360.
67985
67986 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
67987 Author: Dave Liu <daveliu@freescale.com>
67988 Date: Tue Oct 31 19:25:38 2006 -0600
67989
67990 mpc83xx: Add 8360 specifics to 83xx immap
67991
67992 Mainly add QE device dependencies, with appropriate 8360 protection.
67993 Lindent also run.
67994
67995 commit 988833324a7fda482c8ac3ca23eb539f8232e404
67996 Author: Timur Tabi <timur@freescale.com>
67997 Date: Tue Oct 31 19:14:41 2006 -0600
67998
67999 mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
68000
68001 PREREQUISITE PATCHES:
68002
68003 * This patch can only be applied after the following patches have been applied:
68004
68005 1) DNX#2006092142000015 "Add support for the MPC8349E-mITX 1/2"
68006 2) DNX#2006092142000024 "Add support for the MPC8349E-mITX 2/2"
68007
68008 CHANGELOG:
68009
68010 * For the 8349E-mITX, fix some size values in pci_init_board(), enable
68011 the clock for the 2nd USB board (Linux kernel will hang otherwise),
68012 and fix the CONFIG_BOOTARGS macro.
68013
68014 Signed-off-by: Timur Tabi <timur@freescale.com>
68015
68016 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
68017 Author: Timur Tabi <timur@freescale.com>
68018 Date: Tue Oct 31 18:44:42 2006 -0600
68019
68020 mpc83xx: Add support for the MPC8349E-mITX
68021
68022 PREREQUISITE PATCHES:
68023
68024 * This patch can only be applied after the following patches have been applied:
68025
68026 1) DNX#2006090742000024 "Add support for multiple I2C buses"
68027 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
68028 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
68029 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
68030 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
68031
68032 CHANGELOG:
68033
68034 * Add support for the Freescale MPC8349E-mITX reference design platform.
68035 The second TSEC (Vitesse 7385 switch) is not supported at this time.
68036
68037 Signed-off-by: Timur Tabi <timur@freescale.com>
68038
68039 commit 183da6d9b446cc12123455844ad1187e2375626f
68040 Author: Ben Warren <bwarren@qstreams.com>
68041 Date: Tue Sep 12 10:15:53 2006 -0400
68042
68043 Additional MPC8349 support for multibus i2c
68044
68045 Hello,
68046
68047 Here is a patch for a file that was accidentally left out of a previous
68048 attempt.
68049
68050 It accompanies the patch with ticket DNX#2006090742000024
68051
68052 CHANGELOG:
68053 Change PCI initialization to use new multi-bus I2C API.
68054
68055 regards,
68056 Ben
68057
68058 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
68059 Author: Ben Warren <bwarren@qstreams.com>
68060 Date: Thu Sep 7 16:51:04 2006 -0400
68061
68062 Multi-bus I2C implementation of MPC834x
68063
68064 Hello,
68065
68066 Attached is a patch implementing multiple I2C buses on the MPC834x CPU
68067 family and the MPC8349EMDS board in particular.
68068 This patch requires Patch 1 (Add support for multiple I2C buses).
68069 Testing was performed on a 533MHz board.
68070
68071 /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
68072
68073 Signed-off-by: Ben Warren <bwarren@qstreams.com>
68074
68075 CHANGELOG:
68076 Implemented driver-level code to support two I2C buses on the
68077 MPC834x CPU family and the MPC8349EMDS board. Available I2C bus speeds
68078 are 50kHz, 100kHz and 400kHz on each bus.
68079
68080 regards,
68081 Ben
68082
68083 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
68084 Author: Ben Warren <bwarren@qstreams.com>
68085 Date: Thu Sep 7 16:50:54 2006 -0400
68086
68087 Add support for multiple I2C buses
68088
68089 Hello,
68090
68091 Attached is a patch providing support for multiple I2C buses at the
68092 command level. The second part of the patch includes an implementation
68093 for the MPC834x CPU and MPC8349EMDS board.
68094
68095 /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
68096
68097 Signed-off-by: Ben Warren <bwarren@qstreams.com>
68098
68099 Overview:
68100
68101 1. Include new 'i2c' command (based on USB implementation) using
68102 CONFIG_I2C_CMD_TREE.
68103
68104 2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS. Note that
68105 the commands to change bus number and speed are only available under the
68106 new 'i2c' command mentioned in the first bullet.
68107
68108 3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
68109 systems. When CONFIG_I2C_MULTI_BUS is used, this option takes the form
68110 of an array of bus-device pairs. Otherwise, it is an array of uchar.
68111
68112 CHANGELOG:
68113 Added new 'i2c' master command for all I2C interaction. This is
68114 conditionally compiled with CONFIG_I2C_CMD_TREE. New commands added for
68115 setting I2C bus speed as well as changing the active bus if the board
68116 has more than one (conditionally compiled with
68117 CONFIG_I2C_MULTI_BUS). Updated NOPROBE logic to handle multiple buses.
68118 Updated README.
68119
68120 regards,
68121 Ben
68122
68123 commit bed85caf872714ebf53013967a695c9d63acfc68
68124 Author: Timur Tabi <timur@freescale.com>
68125 Date: Tue Oct 31 18:13:36 2006 -0600
68126
68127 mpc83xx: Add support for Errata DDR6 on MPC 834x systems
68128
68129 CHANGELOG:
68130
68131 * Errata DDR6, which affects all current MPC 834x processors, lists changes
68132 required to maintain compatibility with various types of DDR memory. This
68133 patch implements those changes.
68134
68135 Signed-off-by: Timur Tabi <timur@freescale.com>
68136
68137 commit afd6e470f639883002c7c59d562690a5cb0f4865
68138 Author: Timur Tabi <timur@freescale.com>
68139 Date: Wed Oct 25 18:45:23 2006 -0500
68140
68141 mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
68142
68143 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
68144 Author: Timur Tabi <timur@freescale.com>
68145 Date: Tue Aug 22 17:07:00 2006 -0500
68146
68147 mpc83xx: Add support for variable flash memory sizes on 83xx systems
68148
68149 CHANGELOG:
68150
68151 * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
68152 window registers, instead of using a hard-coded value of 8MB.
68153
68154 Signed-off-by: Timur Tabi <timur@freescale.com>
68155
68156 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
68157 Author: Tanya Jiang <tanya.jiang@freescale.com>
68158 Date: Thu Aug 3 18:38:13 2006 +0800
68159
68160 mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
68161
68162 Unified TQM834x variable names with 83xx and consolidated macro
68163 in preparation for the 8360 and other upcoming 83xx devices.
68164
68165 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
68166
68167 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
68168 Author: Dave Liu <daveliu@freescale.com>
68169 Date: Wed Oct 25 14:41:21 2006 -0500
68170
68171 mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
68172
68173 Incorporated the common unified variable names and the changes in preparation
68174 for releasing mpc8360 patches.
68175
68176 Signed-off-by: Dave Liu <daveliu@freescale.com>
68177
68178 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
68179 Author: Tanya Jiang <tanya.jiang@freescale.com>
68180 Date: Thu Aug 3 18:36:02 2006 +0800
68181
68182 mpc83xx: Fix missing build for mpc8349emds pci.c
68183
68184 Make pci build for mpc8349emds
68185
68186 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
68187
68188 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
68189 Author: Tanya Jiang <tanya.jiang@freescale.com>
68190 Date: Thu Aug 3 18:39:49 2006 +0800
68191
68192 mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
68193
68194 Removed unused file resetvec.S for mpc83xx cpu
68195
68196 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
68197
68198 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
68199 Author: Nick Spence <Nick.Spence@freescale.com>
68200 Date: Sat Sep 30 00:32:59 2006 -0700
68201
68202 NAND Flash verify across block boundaries
68203
68204 This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
68205 defined
68206 and the write crosses a block boundary. The pointer to the verification
68207 buffer (bufstart) is not being updated to reflect the starting of the
68208 new
68209 block so the verification of the second block fails.
68210
68211 CHANGELOG:
68212
68213 * Fix NAND FLASH page verification across block boundaries
68214
68215 commit f484dc791a3932537213c43c654cc1295c64b84c
68216 Author: Nick Spence <nick.spence@freescale.com>
68217 Date: Thu Sep 7 07:39:46 2006 -0700
68218
68219 Added RGMII support to the TSECs and Marvell 881111 Phy
68220
68221 Added a phy initialization to adjust the RGMII RX and TX timing
68222 Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
68223
68224 Signed-off-by: Nick Spence <nick.spence@freescale.com>
68225
68226 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
68227 Author: roy zang <tie-fei.zang@freescale.com>
68228 Date: Fri Nov 3 13:10:00 2006 +0800
68229
68230 Remove some unused CFG define.
68231 undef CFG_DRAM_TEST
68232
68233 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
68234 Author: roy zang <tie-fei.zang@freescale.com>
68235 Date: Fri Nov 3 13:07:36 2006 +0800
68236
68237 Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
68238 Both work. 0xFF000000 seems more reasonable.
68239
68240 commit c59200443072353044aa4bf737a5a60f9a9af231
68241 Author: Wolfgang Denk <wd@pollux.denx.de>
68242 Date: Thu Nov 2 15:15:01 2006 +0100
68243
68244 Release U-Boot 1.1.6
68245
68246 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
68247 Author: roy zang <tie-fei.zang@freescale.com>
68248 Date: Thu Nov 2 19:14:48 2006 +0800
68249
68250 This patch comes from Yuli's posted patch on 8/8/2006
68251 titled "CFI Driver Little-Endian write Issue".
68252
68253 http://sourceforge.net/mailarchive/message.php?msg_id=36311999
68254
68255 If that patch applied, please discard this one.
68256 Until now , I do not see his patch is applied. So please apply this one.
68257
68258 Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
68259 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68260
68261 commit b825f158e449e1e9cf74c08e572955e122394c96
68262 Author: roy zang <tie-fei.zang@freescale.com>
68263 Date: Thu Nov 2 19:12:31 2006 +0800
68264
68265 Tsi108 on chip i2c support.
68266
68267 The i2c Interface provides a master-only, serial interface that can be
68268 used for initializing Tsi108/Tsi109 registers from an EEPROM after a
68269 device reset.
68270
68271 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
68272 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68273
68274 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
68275 Author: roy zang <tie-fei.zang@freescale.com>
68276 Date: Thu Nov 2 19:11:06 2006 +0800
68277
68278 Tsi108 on chip pci controller support.
68279
68280 If there is no pci card, the tsi108/109 pci configure read will
68281 cause a machine check exception to the processor. PCI error should
68282 also be cleared after the read.
68283
68284 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
68285 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68286
68287 commit d1927cee977126e547ceeba23e4f978f377cfb8f
68288 Author: roy zang <tie-fei.zang@freescale.com>
68289 Date: Thu Nov 2 19:08:55 2006 +0800
68290
68291 Tundra tsi108 on chip Ethernet controller support.
68292
68293 The following is a brief description of the Ethernet controller:
68294 The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
68295 Gigabit Ethernet ports,E0 and E1. It uses a single Management interface
68296 to manage the two physical connection devices (PHYs). Each Ethernet port
68297 has its own statistics monitor that tracks and reports key interface
68298 statistics. Each port supports a 256-entry hash table for address
68299 filtering. In addition, each port is bridged to the Switch Fabric
68300 through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
68301
68302 Each Ethernet port also has a pair of internal Ethernet DMA channels to
68303 support the transmit and receive data flows. The Ethernet DMA channels
68304 use descriptors set up in memory, the memory map of the device, and
68305 access via the Switch Fabric. The Ethernet Controller?s DMA arbiter
68306 handles arbitration for the Switch Fabric. The Controller also
68307 has a register businterface for register accesses and status monitor
68308 control.
68309
68310 The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
68311 modes. The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
68312 The GMII and TBI modes are used to connect with Gigabit PMDs. Internal
68313 data flows to and from the Ethernet Controller through the Switch Fabric.
68314
68315 Each Ethernet port uses its transmit and receive DMA channels to manage
68316 data flows through buffer descriptors that are predefined by the
68317 system (the descriptors can exist anywhere in the system memory map).
68318 These descriptors are data structures that point to buffers filled
68319 with data ready to transmit over Ethernet, or they point to empty
68320 buffers ready to receive data from Ethernet.
68321
68322 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
68323 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68324
68325 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
68326 Author: roy zang <tie-fei.zang@freescale.com>
68327 Date: Thu Nov 2 19:01:33 2006 +0800
68328
68329 Tundra tsi108 header file.
68330
68331 The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
68332 PowerPC processors that offers numerous system interconnect options for
68333 embedded application designers. The Tsi108 can interconnect 60x or
68334 MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
68335 and Flash. Provided the macro define for tsi108 chip.
68336
68337 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
68338 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68339
68340 commit 87c4db09699c6b89176b31004afcb83eb1585d47
68341 Author: roy zang <tie-fei.zang@freescale.com>
68342 Date: Thu Nov 2 18:59:15 2006 +0800
68343
68344 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
68345 mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
68346
68347 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
68348 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68349
68350 commit 27801b8ab11c61b577e45742a515bb3b23b80241
68351 Author: roy zang <tie-fei.zang@freescale.com>
68352 Date: Thu Nov 2 18:57:21 2006 +0800
68353
68354 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
68355 Make ,config.mk and link file for the mpc7448hpc2 board.
68356
68357 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
68358 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68359
68360 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
68361 Author: roy zang <tie-fei.zang@freescale.com>
68362 Date: Thu Nov 2 18:55:04 2006 +0800
68363
68364 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
68365 The mpc7448hpc2 board support header file.
68366
68367 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
68368 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68369
68370 commit 625bb5ddb50b243f931262ca8c46956409471917
68371 Author: roy zang <tie-fei.zang@freescale.com>
68372 Date: Thu Nov 2 18:52:21 2006 +0800
68373
68374 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
68375 The mpc7448hpc2 board support low level assemble language init code.
68376
68377 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
68378 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68379
68380 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
68381 Author: roy zang <tie-fei.zang@freescale.com>
68382 Date: Thu Nov 2 18:49:51 2006 +0800
68383
68384 General code modification for mpc7448hpc2 board support.
68385 1. Add 7447A and 7448 processor support.
68386 2. Add the following flags.
68387
68388 CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
68389 (such as by switch on board), this flag should be set.
68390
68391 CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
68392 relocates to RAM, this flag should be set.
68393
68394 CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
68395 system hang in exception, this flag should be set.
68396
68397 There is a design issue for tsi108/109 pci configure read. When pci scan
68398 the slots, if there is no pci card, the tsi108/9 will cause a machine
68399 check exception for mpc7448 processor.
68400
68401 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
68402 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68403
68404 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
68405 Author: roy zang <tie-fei.zang@freescale.com>
68406 Date: Thu Nov 2 18:34:47 2006 +0800
68407
68408 Add README file for mpc7448hpc2 board.
68409 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68410
68411 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
68412 Author: Bartlomiej Sieka <tur@semihalf.com>
68413 Date: Wed Nov 1 02:04:38 2006 +0100
68414
68415 Finish up support for MarelV38B board
68416 - add watchdog support
68417 - enable GPIO_WKUP_7 pin for input
68418 - code cleanup
68419
68420 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
68421 Author: Bartlomiej Sieka <tur@semihalf.com>
68422 Date: Wed Nov 1 01:45:46 2006 +0100
68423
68424 - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
68425 * remove warnings when compiling ethaddr.c
68426 * adjust linker script (fixes a crash resulting from incorrect
68427 definition of __u_boot_cmd_start)
68428 - Some MarelV38B code cleanup.
68429
68430 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
68431 Author: Bartlomiej Sieka <tur@semihalf.com>
68432 Date: Wed Nov 1 01:38:16 2006 +0100
68433
68434 - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
68435 MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
68436 Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
68437 MPC5XXX_WU_GPIO_DATA_O for affected boards.
68438
68439 - Add defintions for some MPC5XXX GPIO pins.
68440
68441 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
68442 Author: Bartlomiej Sieka <tur@semihalf.com>
68443 Date: Wed Nov 1 01:34:29 2006 +0100
68444
68445 Changed MarelV38B board make target to lowercase. Config file cleanup.
68446
68447 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
68448 Author: Wolfgang Denk <wd@pollux.denx.de>
68449 Date: Sun Oct 29 01:03:51 2006 +0200
68450
68451 Automatically adjust ARFLAGS so "make -s" is really silent.
68452
68453 commit fae684e89844856383bdf101440889557df3e6b1
68454 Author: Stefan Roese <sr@denx.de>
68455 Date: Sat Oct 28 16:45:00 2006 +0200
68456
68457 [PATCH] omap925.c: Remove unused functions
68458
68459 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
68460 Signed-off-by: Stefan Roese <sr@denx.de>
68461
68462 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
68463 Author: Stefan Roese <sr@denx.de>
68464 Date: Sat Oct 28 17:12:58 2006 +0200
68465
68466 [PATCH] Add some missing machtypes for netstar & voiceblue boards
68467
68468 Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
68469 numbers in code.
68470
68471 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
68472 Signed-off-by: Stefan Roese <sr@denx.de>
68473
68474 commit 856f054410cef52d868feb330168b2a4c4091328
68475 Author: Stefan Roese <sr@denx.de>
68476 Date: Sat Oct 28 15:55:52 2006 +0200
68477
68478 [PATCH] NAND: Partition name support added to NAND subsystem
68479
68480 chpart, nboot and NAND subsystem related commands now accept also partition
68481 name to specify offset.
68482
68483 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
68484 Signed-off-by: Stefan Roese <sr@denx.de>
68485
68486 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
68487 Author: Wolfgang Denk <wd@pollux.denx.de>
68488 Date: Sat Oct 28 02:29:44 2006 +0200
68489
68490 Update CHANGELOG.
68491
68492 commit 2751a95abd1b96911081c357e96a12fa97b40dee
68493 Author: Wolfgang Denk <wd@pollux.denx.de>
68494 Date: Sat Oct 28 02:29:14 2006 +0200
68495
68496 Enable commandline editing and hush shell on all TQM boards.
68497
68498 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
68499 Author: Wolfgang Denk <wd@pollux.denx.de>
68500 Date: Sat Oct 28 02:28:02 2006 +0200
68501
68502 README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
68503
68504 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
68505 Author: Wolfgang Denk <wd@denx.de>
68506 Date: Sat Oct 28 01:14:32 2006 +0200
68507
68508 Check for illegal character '=' in environment variable names.
68509
68510 Make sure the string passed as variable name does not contain a '='
68511 character. This not only prevents the common error or typing
68512 "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
68513 also closes a backdoor which allowed to delete write-protected
68514 environment variables, for example by using "setenv ethaddr=".
68515
68516 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
68517 Author: Wolfgang Denk <wd@pollux.denx.de>
68518 Date: Sat Oct 28 00:38:39 2006 +0200
68519
68520 Minor code cleanup.
68521
68522 commit e11887a77d81077416a2d1c5e0354916fee8c034
68523 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
68524 Date: Thu Oct 26 17:55:31 2006 +0200
68525
68526 Don't pass any debug options directly to the assembler
68527
68528 When passing the -g option to gcc, gcc automatically selects a
68529 suitable --g<format> option to pass on to the assembler.
68530 Thus, there's no point in forcing a specific debug option on the
68531 assembler using the -Wa mechanism.
68532
68533 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
68534
68535 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
68536 Author: Jon Loeliger <jdl@freescale.com>
68537 Date: Fri Oct 27 07:47:22 2006 -0500
68538
68539 MPC86xx: Cleaned up unused and conditionally used local variables.
68540
68541 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68542
68543 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
68544 Author: Wolfgang Denk <wd@pollux.denx.de>
68545 Date: Fri Oct 27 11:55:21 2006 +0200
68546
68547 Fix "ar" flags in some Makefiles to allow for silent "make -s"
68548
68549 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
68550 Author: Ben Warren <bwarren@qstreams.com>
68551 Date: Thu Oct 26 14:38:25 2006 -0400
68552
68553 Fix TSEC driver (now for real): avoid crashes if PHY is not attached
68554 to a TSEC (e.g. a switch is connected via RMII) or
68555 if the PHY is defective/incorrectly configured.
68556
68557 Signed-off-by: Ben Warren <bwarren@qstreams.com>
68558
68559 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
68560 Author: Ben Warren <bwarren@qstreams.com>
68561 Date: Thu Oct 26 14:38:25 2006 -0400
68562
68563 Fix TSEC driver: avoid crashes if PHY is not attached
68564 to a TSEC (e.g. a switch is connected via RMII) or
68565 if the PHY is defective/incorrectly configured.
68566
68567 Signed-off-by: Ben Warren <bwarren@qstreams.com>
68568
68569 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
68570 Author: Wolfgang Denk <wd@pollux.denx.de>
68571 Date: Thu Oct 26 16:24:31 2006 +0200
68572
68573 Code cleanup.
68574
68575 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
68576 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
68577 Date: Wed Oct 25 15:48:59 2006 +0200
68578
68579 Finish up support for the ATSTK1000/ATSTK1002 boards
68580
68581 Add atstk1002_config target to Makefile and move the AVR32 section
68582 down below Blackfin so that it doesn't end up in the middle of
68583 MIPS.
68584
68585 Drop the autogenerated linker script thing for now. Will have to
68586 revisit how to handle chips with different flash and RAM layout
68587 later.
68588
68589 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
68590
68591 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
68592 Author: Kumar Gala <galak@kernel.crashing.org>
68593 Date: Tue Oct 24 23:47:37 2006 -0500
68594
68595 Added support for Multi-Image files that contain a device tree
68596
68597 If a Multi-Image file contains a third image we try to use it as a
68598 device tree. The device tree image is assumed to be uncompressed in the
68599 image file. We automatically allocate space for the device tree in memory
68600 and provide an 8k pad to allow more than a reasonable amount of growth.
68601
68602 Additionally, a device tree that was contained in flash will now automatically
68603 get copied to system memory as part of boot. Previously an error was
68604 reported if one tried to boot a device tree that was in flash.
68605
68606 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
68607
68608 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
68609 Author: Wolfgang Denk <wd@denx.de>
68610 Date: Tue Oct 24 21:35:55 2006 +0200
68611
68612 Switch to automatically generated CHANGELOG file.
68613 (use "make CHANGELOG" to update it from time to time)
68614
68615 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
68616 Author: Stefan Roese <sr@denx.de>
68617 Date: Tue Oct 24 18:06:48 2006 +0200
68618
68619 Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
68620 Patch by Stefan Roese, 24 Oct 2006
68621
68622 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
68623 Author: Wolfgang Denk <wd@pollux.denx.de>
68624 Date: Tue Oct 24 17:24:55 2006 +0200
68625
68626 Merge with /home/wd/git/u-boot/master
68627
68628 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
68629 Author: Wolfgang Denk <wd@pollux.denx.de>
68630 Date: Tue Oct 24 15:32:57 2006 +0200
68631
68632 Code cleanup
68633
68634 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
68635 Author: Wolfgang Denk <wd@pollux.denx.de>
68636 Date: Tue Oct 24 14:51:36 2006 +0200
68637
68638 Move atstk1000 files into vendor specific directory.
68639 Patch by Haavard Skinnemoen, 12 Sep 2006
68640
68641 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
68642 Author: Wolfgang Denk <wd@pollux.denx.de>
68643 Date: Tue Oct 24 14:42:37 2006 +0200
68644
68645 Add ATSTK1000 and ATSTK1002 board support
68646 Patch by Haavard Skinnemoen, 06 Sep 2006
68647
68648 This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
68649 daughterboard.
68650
68651 ATSTK1000 is a full-featured development board for AT32AP CPUs. It
68652 has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
68653 and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
68654 CompactFlash cards. For more information, please see this page:
68655
68656 http://www.atmel.com/dyn/products/tools.asp?family_id=682
68657
68658 The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
68659 AT32AP7000 chip.
68660
68661 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
68662
68663 commit f93ae788c3640fcde5db383471d45548ff4060d0
68664 Author: Wolfgang Denk <wd@pollux.denx.de>
68665 Date: Tue Oct 24 14:31:24 2006 +0200
68666
68667 Add common serial driver for Atmel AT32 and AT91 chips
68668 Patch by Haavard Skinnemoen, 06 Sep 2006
68669
68670 This is a first attempt at creating a common serial driver for Atmel
68671 chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
68672 be possible to support AT91RM9200 and other ARM-based chips with some
68673 minor modifications.
68674
68675 There's nothing fundamentally AVR32-specific in this driver, but it
68676 does use some features which are currently only defined for the
68677 AT32AP CPU port:
68678 * pm_get_clock_freq: Obtain the clock frequency of a given domain
68679 * gd->console_uart: A "struct device" containing information about
68680 register mappings, gpio resources and clocks associated with the
68681 UART device.
68682
68683 For more information about these features, please see the "AT32AP
68684 CPU" patch.
68685
68686 commit 72a087e04705c26cad982879ebd06b5281bf825a
68687 Author: Wolfgang Denk <wd@pollux.denx.de>
68688 Date: Tue Oct 24 14:27:35 2006 +0200
68689
68690 Add AT32AP CPU and AT32AP7000 SoC support
68691 Patch by Haavard Skinnemoen, 06 Sep 2006
68692
68693 This patch adds support for the AT32AP CPU family and the AT32AP7000
68694 chip, which is the first chip implementing the AVR32 architecture.
68695
68696 The AT32AP CPU core is a high-performance implementation featuring a
68697 7-stage pipeline, separate instruction- and data caches, and a MMU.
68698 For more information, please see the "AVR32 AP Technical Reference":
68699
68700 http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
68701
68702 In addition to this, the AT32AP7000 chip comes with a large set of
68703 integrated peripherals, many of which are shared with the AT91 series
68704 of ARM-based microcontrollers from Atmel. Full data sheet is
68705 available here:
68706
68707 http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
68708
68709 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
68710
68711 commit 7b64fef33c66be648826c0ff9758298ef13d0604
68712 Author: Wolfgang Denk <wd@pollux.denx.de>
68713 Date: Tue Oct 24 14:21:16 2006 +0200
68714
68715 Add AVR32 architecture support
68716 Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
68717
68718 This patch adds common infrastructure code for the Atmel AVR32
68719 architecture. See doc/README.AVR32 for details.
68720
68721 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
68722
68723 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
68724 Author: Wolfgang Denk <wd@pollux.denx.de>
68725 Date: Tue Oct 24 13:57:33 2006 +0200
68726
68727 Use -g instead of -gstabs in AFLAGS_DEBUG
68728 Patch by Haavard Skinnemoen, 30 Aug 2006
68729
68730 In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
68731 matter what the target's preferred debugging format is. This patch
68732 simply replaces -gstabs with -g, so that the default debugging format
68733 for the architecture is used.
68734
68735 commit 965829872169c2996023840d98e1d85ad148d629
68736 Author: Wolfgang Denk <wd@pollux.denx.de>
68737 Date: Tue Oct 24 13:55:18 2006 +0200
68738
68739 Fix/workaround broken dependency handling with make 3.81
68740 Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
68741
68742 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
68743 Author: Marian Balakowicz <m8@semihalf.com>
68744 Date: Mon Oct 23 22:17:05 2006 +0200
68745
68746 Fix sequoia separate object direcory building problems.
68747
68748 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
68749 Author: Jon Loeliger <jdl@freescale.com>
68750 Date: Fri Oct 20 17:16:35 2006 -0500
68751
68752 Use generic I2C register block on 85xx and 86xx.
68753
68754 Replace private IMMAP I2C structures with generic reg block
68755 and allow 86xx to have multiple I2C device busses.
68756
68757 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68758
68759 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
68760 Author: Jon Loeliger <jdl@freescale.com>
68761 Date: Fri Oct 20 15:54:34 2006 -0500
68762
68763 Fix compilation warnings on a few 85xx boards.
68764
68765 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68766
68767 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
68768 Author: Jon Loeliger <jdl@freescale.com>
68769 Date: Fri Oct 20 15:50:15 2006 -0500
68770
68771 Converted all 85xx boards to use a common FSL I2C driver.
68772 Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
68773 And removed hard i2c path from a few u-boot.lds scipts too.
68774 Minor whitespace cleanups along the way.
68775
68776 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68777
68778 commit 4d45f69e362b05892c9e92a7907e5820995612aa
68779 Author: Jon Loeliger <jdl@freescale.com>
68780 Date: Thu Oct 19 12:02:24 2006 -0500
68781
68782 Rewrite a series of goto statements as a sequences of
68783 conditional expressions instead.
68784
68785 Use consistent return code 0/-1 for good/bad indicators.
68786
68787 Include one fewer file if the driver isn't used at all.
68788
68789 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68790
68791 commit 7237c033b02fe295880435f1eb80819a0c987532
68792 Author: Jon Loeliger <jdl@freescale.com>
68793 Date: Thu Oct 19 11:02:16 2006 -0500
68794
68795 Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
68796
68797 in an effort to begin to unify the umpteen FSL I2C drivers that
68798 are all otherwise very similar.
68799
68800 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68801
68802 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
68803 Author: Jon Loeliger <jdl@freescale.com>
68804 Date: Thu Oct 19 11:33:52 2006 -0500
68805
68806 * Fix a bunch of compiler warnings for gcc 4.0
68807
68808 Signed-off-by: Matthew McClintock <msm@freescale.com>
68809
68810 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
68811 Author: Stefan Roese <sr@denx.de>
68812 Date: Tue Oct 17 06:14:31 2006 +0200
68813
68814 Add monitor functions for indirect access to PPC440 DCR's
68815 Patch by Leonid Baryudin, 12 Oct 2006
68816
68817 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
68818 Author: Jon Loeliger <jdl@freescale.com>
68819 Date: Fri Oct 13 16:47:53 2006 -0500
68820
68821 Fixed leading whitespace issues.
68822 Removed spurious LAWAR thing.
68823
68824 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68825
68826 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
68827 Author: Jon Loeliger <jdl@freescale.com>
68828 Date: Thu Oct 12 10:42:36 2006 -0500
68829
68830 Remove unneeded include files and local variable.
68831
68832 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68833
68834 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
68835 Author: Grant Likely <grant.likely@secretlab.ca>
68836 Date: Tue Oct 10 00:23:32 2006 -0600
68837
68838 Fix possible uninitialized variable compiler warning.
68839
68840 When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
68841 do_bootm_linux() may be uninitialized. There is no possibility in the
68842 current code that len will get used uninitialized, but this fix follows
68843 the existing convention of setting both len and data to zero at the same
68844 time.
68845
68846 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68847
68848 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
68849 Author: Matthew McClintock <msm@freescale.com>
68850 Date: Wed Oct 11 15:13:01 2006 -0500
68851
68852 * Fix a bunch of compiler warnings for gcc 4.0
68853
68854 Signed-off-by: Matthew McClintock <msm@freescale.com>
68855
68856 commit bf651baa365e5447246aad6a633ccd667cf24a39
68857 Author: Jon Loeliger <jdl@freescale.com>
68858 Date: Wed Oct 11 10:10:43 2006 -0500
68859
68860 Move "ar" flags to config.mk to allow for silent "make -s"
68861
68862 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
68863 Author: Jon Loeliger <jdl@freescale.com>
68864 Date: Tue Oct 10 17:19:03 2006 -0500
68865
68866 Coding style changes to remove local varible blocks
68867 and reformat a bit nicer.
68868
68869 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
68870 Author: Jon Loeliger <jdl@freescale.com>
68871 Date: Tue Oct 10 17:16:04 2006 -0500
68872
68873 Fix whitespace issues.
68874
68875 commit 7b382b7125f2397cce63253df62f183e3dfa2770
68876 Author: Jon Loeliger <jdl@freescale.com>
68877 Date: Tue Oct 10 17:14:45 2006 -0500
68878
68879 Fix whitespace issues.
68880
68881 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
68882 Author: Jon Loeliger <jdl@freescale.com>
68883 Date: Tue Oct 10 17:06:53 2006 -0500
68884
68885 Fix whitespace issues.
68886
68887 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
68888 Author: Jon Loeliger <jdl@freescale.com>
68889 Date: Tue Oct 10 17:03:43 2006 -0500
68890
68891 Ran lindent and cleaned up whitespace issues.
68892 Format for 80-columns too.
68893
68894 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
68895 Author: Jon Loeliger <jdl@freescale.com>
68896 Date: Tue Oct 10 17:02:22 2006 -0500
68897
68898 Fix whitespace and 80-col issues.
68899
68900 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
68901 Author: Stefan Roese <sr@denx.de>
68902 Date: Sat Oct 7 11:36:51 2006 +0200
68903
68904 CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
68905 Patch by Stefan Roese, 07 Oct 2006
68906
68907 commit 5bc528fa4da751d472397b308137238a6465afd2
68908 Author: Stefan Roese <sr@denx.de>
68909 Date: Sat Oct 7 11:35:25 2006 +0200
68910
68911 Update ALPR code (NAND support working now)
68912 Patch by Stefan Roese, 07 Oct 2006
68913
68914 commit 77d5034847d328753b80c46b83f960a14a26f40e
68915 Author: Stefan Roese <sr@denx.de>
68916 Date: Sat Oct 7 11:33:03 2006 +0200
68917
68918 Remove compile warnings in fpga code
68919 Patch by Stefan Roese, 07 Oct 2006
68920
68921 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
68922 Author: Stefan Roese <sr@denx.de>
68923 Date: Sat Oct 7 11:30:52 2006 +0200
68924
68925 Add CONFIG_BOARD_RESET to configure board specific reset function
68926 Patch by Stefan Roese, 07 Oct 2006
68927
68928 commit f55df18187e7a45cb73fec4370d12135e6691ae1
68929 Author: John Traill <john.traill@freescale.com>
68930 Date: Fri Sep 29 08:23:12 2006 +0100
68931
68932 Fix missing tCycle/modfreq calculation.
68933
68934 Signed-off-by: John Traill <john.traill@freescale.com>
68935
68936 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
68937 Author: Andy Fleming <afleming@freescale.com>
68938 Date: Wed Sep 13 10:33:35 2006 -0500
68939
68940 Updated config headers to add default FDT-based booting
68941
68942 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
68943 Author: Andy Fleming <afleming@freescale.com>
68944 Date: Wed Sep 13 10:34:18 2006 -0500
68945
68946 Add support for eTSEC 3 & 4 on 8548 CDS
68947
68948 * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
68949 This will only work on rev 1.3 boards (but doesn't break older boards)
68950 * Cleaned up some comments to reflect the expanded role of tsec
68951 in other systems
68952
68953 commit 084d648b109c8984f83674043c1a7fa3885ef801
68954 Author: Andy Fleming <afleming@freescale.com>
68955 Date: Wed Sep 13 10:33:56 2006 -0500
68956
68957 Added code to support 2.6.18 PCI changes in u-boot
68958
68959 * Added code to swizzle the IRQ map for the PCI
68960
68961 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
68962 Author: Jon Loeliger <jdl@freescale.com>
68963 Date: Tue Sep 19 09:34:10 2006 -0500
68964
68965 Modified makefile for new build mechanism.
68966
68967 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68968
68969 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
68970 Author: Jon Loeliger <jdl@freescale.com>
68971 Date: Thu Sep 14 08:40:36 2006 -0500
68972
68973 Handle 86xx SVR values according to the new Reference Manual.
68974 Both 8641 and 8641D have SVR == 0x8090, and are distinguished
68975 by the byte in bits 16-23 instead.
68976 Thanks to Jason Jin for noticing.
68977
68978 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68979
68980 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
68981 Author: Zhang Wei <wei.zhang@freescale.com>
68982 Date: Mon Aug 28 14:25:31 2006 +0800
68983
68984 Fixed an OF-tree off-by-one bug when adding a new property name.
68985 This bug will cause the kernel booting to pause a long time.
68986
68987 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
68988 (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
68989
68990 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
68991 Author: Jon Loeliger <jdl@freescale.com>
68992 Date: Tue Aug 29 11:05:09 2006 -0500
68993
68994 Remove trailing empty lines.
68995
68996 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
68997 Author: Jon Loeliger <jdl@freescale.com>
68998 Date: Tue Aug 29 09:48:49 2006 -0500
68999
69000 Remove bogus msync and use volatile asm.
69001
69002 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
69003 Author: Jon Loeliger <jdl@freescale.com>
69004 Date: Tue Aug 29 08:17:14 2006 -0500
69005
69006 Add myself as maintainer for MPC8641HPCN.
69007
69008 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
69009 Author: Zhang Wei <wei.zhang@freescale.com>
69010 Date: Mon Aug 28 14:25:31 2006 +0800
69011
69012 Fixed an OF-tree off-by-one bug when adding a new property name.
69013 This bug will cause the kernel booting to pause a long time.
69014
69015 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
69016
69017 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
69018 Author: Haiying Wang <haiying.wang@freescale.com>
69019 Date: Fri Aug 25 14:38:34 2006 -0400
69020
69021 Change ramdiskaddr and dtbaddr
69022 Remove PEX fluff commands.
69023
69024 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
69025 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69026
69027 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
69028 Author: Matthew McClintock <msm@freescale.com>
69029 Date: Wed Aug 23 13:32:45 2006 -0500
69030
69031 * Another small fix for booting with disable_of
69032
69033 Signed-off-by: Matthew McClintock <msm@freescale.com>
69034
69035 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
69036 Author: Jon Loeliger <jdl@freescale.com>
69037 Date: Wed Aug 23 11:04:43 2006 -0500
69038
69039 Cleanup and lindent new AHCI driver.
69040
69041 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
69042 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
69043 Date: Wed Aug 23 19:15:12 2006 +0800
69044
69045 Add AHCI define and sata support for MPC8641HPCN board.
69046
69047 Signed-off-by:Jason Jin<jason.jin@freescale.com>
69048
69049 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
69050 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
69051 Date: Wed Aug 23 19:10:44 2006 +0800
69052
69053 Add AHCI support to u-boot
69054
69055 Add AHCI support in u-boot, enable the sata disk controllers which
69056 following the AHCI protocol.
69057
69058 Signed-off-by:Jason Jin<jason.jin@freescale.com>
69059
69060 commit d8ea2acf5f137cae99417df4f573d036ee384668
69061 Author: Zhang Wei <wei.zhang@freescale.com>
69062 Date: Wed Aug 23 17:54:32 2006 +0800
69063
69064 Add dtb boot-up parameter to default boot commands.
69065
69066 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
69067
69068 commit b93775c2036b99baa390ea425c4771895bbc63c4
69069 Author: Jon Loeliger <jdl@freescale.com>
69070 Date: Tue Aug 22 18:26:08 2006 -0500
69071
69072 Cleanup even more poorly introduced whitespace.
69073
69074 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
69075 Author: Jon Loeliger <jdl@freescale.com>
69076 Date: Tue Aug 22 18:07:00 2006 -0500
69077
69078 Cleanup more poorly introduced whitespace.
69079
69080 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
69081 Author: Jon Loeliger <jdl@freescale.com>
69082 Date: Tue Aug 22 17:54:05 2006 -0500
69083
69084 Cleanup poorly introduced whitespace.
69085
69086 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
69087 Author: Jon Loeliger <jdl@freescale.com>
69088 Date: Tue Aug 22 12:25:27 2006 -0500
69089
69090 General indent and whitespace cleanups.
69091
69092 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
69093 Author: Jon Loeliger <jdl@freescale.com>
69094 Date: Tue Aug 22 12:06:18 2006 -0500
69095
69096 General indent and whitespace cleanups.
69097
69098 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
69099 Author: Jon Loeliger <jdl@freescale.com>
69100 Date: Tue Aug 22 10:42:21 2006 -0500
69101
69102 Cleanup compiler warnings.
69103
69104 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
69105 Author: Matthew McClintock <msm@freescale.com>
69106 Date: Tue Aug 22 09:31:59 2006 -0500
69107
69108 Fix disable_of booting
69109
69110 Signed-off-by: Matthew McClintock <msm@freescale.com>
69111
69112 commit 87a449c8ac396420cb24260f717ea9e6faa82047
69113 Author: Matthew McClintock <msm@freescale.com>
69114 Date: Tue Aug 22 09:23:55 2006 -0500
69115
69116 Support for FDT in uImage format, error when using FDT from flash
69117
69118 Signed-off-by: Matthew McClintock <msm@freescale.com>
69119
69120 commit 75c299c38369d01addd5e054b8a16217b70f4a86
69121 Author: Haiying Wang <haiying.wang@freescale.com>
69122 Date: Tue Aug 15 15:12:55 2006 -0400
69123
69124 Unlock cache before kernel starts up for MPC86xx
69125
69126 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
69127 Author: Haiying Wang <haiying.wang@freescale.com>
69128 Date: Tue Aug 15 15:13:15 2006 -0400
69129
69130 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
69131
69132 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
69133 Author: Haiying Wang <haiying.wang@freescale.com>
69134 Date: Tue Aug 15 15:12:55 2006 -0400
69135
69136 Unlock cache before kernel starts up for MPC86xx
69137
69138 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
69139 Author: Haiying Wang <haiying.wang@freescale.com>
69140 Date: Tue Aug 15 15:13:15 2006 -0400
69141
69142 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
69143
69144 commit 86c8e17f25e972a7e272950a0735fad84e082b88
69145 Author: Matthew McClintock <msm@freescale.com>
69146 Date: Wed Aug 16 13:59:47 2006 -0500
69147
69148 * Fix disable_of booting
69149
69150 Signed-off-by: Matthew McClintock <msm@freescale.com>
69151
69152 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
69153 Author: Matthew McClintock <msm@freescale.com>
69154 Date: Wed Aug 16 10:54:09 2006 -0500
69155
69156 * Support for FDT in uImage format, error when using FDT from flash
69157
69158 Signed-off-by: Matthew McClintock <msm@freescale.com>
69159
69160 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
69161 Author: Stefan Roese <sr@denx.de>
69162 Date: Tue Aug 15 14:22:35 2006 +0200
69163
69164 Add initial support for the ALPR board from Prodrive
69165 NAND needs some additional testing
69166 Patch by Heiko Schocher, 15 Aug 2006
69167
69168 commit f0ff4692ff3372dec55074a8eb444943ab095abb
69169 Author: Stefan Roese <sr@denx.de>
69170 Date: Tue Aug 15 14:15:51 2006 +0200
69171
69172 Add FPGA Altera Cyclone 2 support
69173 Patch by Heiko Schocher, 15 Aug 2006
69174
69175 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
69176 Author: Jon Loeliger <jdl@freescale.com>
69177 Date: Mon Aug 14 15:33:38 2006 -0500
69178
69179 Fix BAT0 to actually be cacheable, non-guarded as documented.
69180
69181 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69182
69183 commit 40bc83559db5745681909fd7382ae509567e116d
69184 Author: Jon Loeliger <jdl@freescale.com>
69185 Date: Wed Aug 9 15:32:16 2006 -0500
69186
69187 Removed MPC8641HPCN DTS source file from build.
69188 It is no longer linked into U-Boot; its sources are
69189 now located in the kernel tree.
69190
69191 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69192
69193 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
69194 Author: Matthew McClintock <msm@freescale.com>
69195 Date: Wed Jun 28 10:47:03 2006 -0500
69196
69197 * Switched default PCI speed for 8540 ADS back to 33MHz
69198
69199 * Added comments and a printf to warn that PCI-X won't
69200 work at 33MHz
69201 Patch by Andy Fleming 17-Mar-2006
69202
69203 Signed-off-by: Andy Fleming <afleming@freescale.com>
69204
69205 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
69206 Author: Matthew McClintock <msm@freescale.com>
69207 Date: Wed Jun 28 10:46:35 2006 -0500
69208
69209 * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
69210
69211 Signed-off-by: Andy Fleming <afleming@freescale.com>
69212
69213 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
69214 Author: Matthew McClintock <msm@freescale.com>
69215 Date: Wed Jun 28 10:46:13 2006 -0500
69216
69217 * Added VIA configuration table
69218
69219 * Added support for PCI2 on CDS
69220 Patch by Andy Fleming 17-Mar-2006
69221
69222 Signed-off-by: Andy Fleming <afleming@freescale.com>
69223
69224 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
69225 Author: Matthew McClintock <msm@freescale.com>
69226 Date: Wed Jun 28 10:45:41 2006 -0500
69227
69228 * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
69229
69230 Signed-off-by: Andy Fleming <afleming@freescale.com>
69231
69232 commit 97074ed9655309b64231bc2cee69fe85399f8055
69233 Author: Matthew McClintock <msm@freescale.com>
69234 Date: Wed Jun 28 10:45:17 2006 -0500
69235
69236 * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
69237
69238 Signed-off-by: Andy Fleming <afleming@freescale.com>
69239
69240 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
69241 Author: Matthew McClintock <msm@freescale.com>
69242 Date: Wed Jun 28 10:44:49 2006 -0500
69243
69244 * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
69245
69246 Signed-off-by: Andy Fleming <afleming@freescale.com>
69247
69248 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
69249 Author: Matthew McClintock <msm@freescale.com>
69250 Date: Wed Jun 28 10:44:23 2006 -0500
69251
69252 * 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
69253
69254 Signed-off-by: Andy Fleming <afleming@freescale.com>
69255
69256 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
69257 Author: Matthew McClintock <msm@freescale.com>
69258 Date: Wed Jun 28 10:43:36 2006 -0500
69259
69260 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
69261
69262 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69263
69264 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
69265 Author: Matthew McClintock <msm@freescale.com>
69266 Date: Wed Jun 28 10:43:00 2006 -0500
69267
69268 * 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
69269
69270 commit 5498d90312aad9f6bdbf047986027c35b03cd163
69271 Author: Matthew McClintock <msm@freescale.com>
69272 Date: Wed Jun 28 10:42:24 2006 -0500
69273
69274 * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
69275
69276 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
69277 Author: Matthew McClintock <msm@freescale.com>
69278 Date: Wed Jun 28 10:41:37 2006 -0500
69279
69280 * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
69281
69282 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
69283 Author: John Traill <john.traill@freescale.com>
69284 Date: Wed Aug 9 14:33:50 2006 +0100
69285
69286 Add Rapidio support for the MPC8641HPCN
69287
69288 Signed-off-by: John Traill <john.traill@freescale.com>
69289
69290 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
69291 Author: John Traill <john.traill@freescale.com>
69292 Date: Tue Aug 8 11:32:43 2006 +0100
69293
69294 Fix caslat calculation
69295
69296 Signed-off-by: John Traill <john.traill@freescale.com>
69297
69298 commit 709d3073e74153278e7904a70819bbef7df50e1a
69299 Author: Jon Loeliger <jdl@freescale.com>
69300 Date: Thu Aug 3 16:17:56 2006 -0500
69301
69302 Convert to mac-address in ethernet nodes.
69303
69304 commit 71748af833ca1017edf1415be376366ff2937d17
69305 Author: Haiying Wang <haiying.wang@freescale.com>
69306 Date: Fri Jul 28 12:41:35 2006 -0400
69307
69308 Correct the irq value of DUART2
69309
69310 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
69311 Author: Haiying Wang <haiying.wang@freescale.com>
69312 Date: Fri Jul 28 12:41:41 2006 -0400
69313
69314 Change the space size of PEX IO in README
69315
69316 commit 239db37c94f7a92941c4465feceb867c609241c5
69317 Author: Haiying Wang <haiying.wang@freescale.com>
69318 Date: Fri Jul 28 12:41:18 2006 -0400
69319
69320 Move get_board_sys_clk to board directory
69321
69322 commit 492900b985439fbce1a118afde1e35def870db03
69323 Author: John Traill <john.traill@freescale.com>
69324 Date: Fri Jul 28 09:03:54 2006 +0100
69325
69326 Fix 8641HPCN pollution
69327
69328 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
69329 Author: John Traill <john.traill@freescale.com>
69330 Date: Fri Jul 28 08:16:06 2006 +0100
69331
69332 Fix 8641HPCN timebase
69333
69334 commit c86360b830f1eecd7a72208575dde4f57879faea
69335 Author: Zhang Wei <wei.zhang@freescale.com>
69336 Date: Fri Jul 28 00:01:34 2006 +0800
69337
69338 Fixed OF device tree of mpc86xxhpcn board.
69339
69340 The changes works in with kernel irq mapping rework.
69341
69342 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
69343
69344 commit bea3f28d285942bf3f7ab339ce85178ded544225
69345 Author: Haiying Wang <haiying.wang@freescale.com>
69346 Date: Wed Jul 12 10:48:05 2006 -0400
69347
69348 Add support for reading and writing mac addresses to or from ID EEPROM.
69349
69350 Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
69351 With attached patch, we can use command "mac/mac read/mac save/"
69352 to read and write EEPROM under u-boot prompt.
69353
69354 U-boot will calculate the checksum of EEPROM while bootup,
69355 if it is right, then u-boot will check whether the mac address
69356 of eTSEC0/1/2/3 is availalbe (non-zero).
69357
69358 If there is mac address availabe in EEPROM, u-boot will use it,
69359 otherewise, u-boot will use the mac address defined in
69360 MPC8641HPCN.h. This matches the requirement to set unique mac address
69361 for each TSEC port.
69362
69363 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
69364 Signed-off-by: York Sun <yorksun@freescale.com>
69365
69366 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
69367 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
69368 Date: Thu Jul 13 10:35:10 2006 -0500
69369
69370 Fixed initrd issue by define big RAM
69371
69372 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
69373
69374 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
69375 Author: Jason Jin <Jason.jin@freescale.com>
69376 Date: Fri Jul 7 10:01:45 2006 -0500
69377
69378 We made a u-boot patch to fix the hang up issue
69379 when booting filesystem from ramdisk.
69380
69381 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
69382
69383 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
69384 Author: Matthew McClintock <msm@freescale.com>
69385 Date: Wed Jun 28 10:47:03 2006 -0500
69386
69387 * Switched default PCI speed for 8540 ADS back to 33MHz
69388 * Added comments and a printf to warn that PCI-X won't
69389 work at 33MHz
69390 Patch by Andy Fleming 17-Mar-2006
69391
69392 Signed-off-by: Andy Fleming <afleming@freescale.com>
69393
69394 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
69395 Author: Matthew McClintock <msm@freescale.com>
69396 Date: Wed Jun 28 10:46:35 2006 -0500
69397
69398 * Fixed a bug where 8555 PCI code used the old variable and
69399 function names
69400 Patch by Andy Fleming 17-Mar-2006
69401
69402 Signed-off-by: Andy Fleming <afleming@freescale.com>
69403
69404 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
69405 Author: Matthew McClintock <msm@freescale.com>
69406 Date: Wed Jun 28 10:46:13 2006 -0500
69407
69408 * Added VIA configuration table
69409 * Added support for PCI2 on CDS
69410 Patch by Andy Fleming 17-Mar-2006
69411
69412 Signed-off-by: Andy Fleming <afleming@freescale.com>
69413
69414 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
69415 Author: Matthew McClintock <msm@freescale.com>
69416 Date: Wed Jun 28 10:45:41 2006 -0500
69417
69418 * Fixed PCI memory definitions
69419 Patch by Andy Fleming 17-Mar-2006
69420
69421 Signed-off-by: Andy Fleming <afleming@freescale.com>
69422
69423 commit 087454609e47295443af793a282cddcd91a5f49c
69424 Author: Matthew McClintock <msm@freescale.com>
69425 Date: Wed Jun 28 10:45:17 2006 -0500
69426
69427 * Added support for initializing second PCI bus on 85xx
69428 Patch by Andy Fleming 17-Mar-2006
69429
69430 Signed-off-by: Andy Fleming <afleming@freescale.com>
69431
69432 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
69433 Author: Matthew McClintock <msm@freescale.com>
69434 Date: Wed Jun 28 10:44:49 2006 -0500
69435
69436 * Added PCI-X #defines for PCI-X initialization
69437 Patch by Andy Fleming on 17-Mar-2006
69438
69439 Signed-off-by: Andy Fleming <afleming@freescale.com>
69440
69441 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
69442 Author: Matthew McClintock <msm@freescale.com>
69443 Date: Wed Jun 28 10:44:23 2006 -0500
69444
69445 * Made sure the code which disables prefetch for PCI devices
69446 sets the size of the prefetch region to 0
69447 Patch by Andy Fleming on 17-Mar-2006
69448
69449 Signed-off-by: Andy Fleming <afleming@freescale.com>
69450
69451 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
69452 Author: Matthew McClintock <msm@freescale.com>
69453 Date: Wed Jun 28 10:43:36 2006 -0500
69454
69455 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
69456 Patch by Jon Loeliger 17-Jan-2006
69457
69458 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69459
69460 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
69461 Author: Matthew McClintock <msm@freescale.com>
69462 Date: Wed Jun 28 10:43:00 2006 -0500
69463
69464 * Removed the oftree.dts for stxxtx in light of the changes
69465 to the flat device tree handling code
69466 Patch by Matthew McClintock 26-June-2006
69467
69468 commit 1b380ec225665e73959677f3893dc658c5925e05
69469 Author: Matthew McClintock <msm@freescale.com>
69470 Date: Wed Jun 28 10:42:24 2006 -0500
69471
69472 * Patch to modify ft_build.c to update flat device trees in place
69473 Patch by Matthew McClintock 26-June-2006
69474
69475 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
69476 Author: Matthew McClintock <msm@freescale.com>
69477 Date: Wed Jun 28 10:41:37 2006 -0500
69478
69479 * Modify bootm command to support booting with flat device trees
69480 Patch by Matthew McClintock 26-June-2006
69481
69482 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
69483 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
69484 Date: Wed Jun 28 08:43:56 2006 -0500
69485
69486 Change Id to symbolic name for RTL8139
69487
69488 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
69489
69490 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
69491 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
69492 Date: Tue Jun 27 18:12:10 2006 +0800
69493
69494 Fix RTL8139 in big endian
69495
69496 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
69497 signed-off-by: Wei Zhang <wei.zhang@freescale.com>
69498
69499 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
69500 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
69501 Date: Tue Jun 27 18:12:23 2006 +0800
69502
69503 Fix Tsec bug when no link
69504
69505 When tftp a non-exist file from the tftp server, u-boot will check
69506 the link of all eth port. The original file will return wrong link
69507 state on the no link ports.
69508
69509 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
69510
69511 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
69512 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
69513 Date: Tue Jun 27 18:12:02 2006 +0800
69514
69515 Fix bug for io_bar size during pci scan
69516
69517 During the pci scan process, Some devices return bar_reponse with the
69518 highest bytes 0, such as the pci bridge in uli1575 return bar_response
69519 with 0xffffff, So the bar_size should be manually set under 64K.
69520
69521 Signed-off-by: Jason Jin <jason.jin@freescale.com>
69522
69523 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
69524 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
69525 Date: Tue Jun 27 18:11:54 2006 +0800
69526
69527 Enable PCIE1 for MPC8641HPCN board
69528
69529 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
69530
69531 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
69532 Author: Wolfgang Denk <wd@pollux.denx.de>
69533 Date: Mon Jun 26 11:06:00 2006 +0200
69534
69535 More code cleanup
69536
69537 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
69538 Author: Jon Loeliger <jdl@freescale.com>
69539 Date: Thu Jun 22 08:51:46 2006 -0500
69540
69541 Fix bug in 8641hpcn reset command with no args.
69542
69543 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
69544 Acked-by: Jon Loeliger <jdl@freescale.com>
69545
69546 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
69547 Author: Zhang Wei <wei.zhang@freescale.com>
69548 Date: Tue Jun 20 17:47:15 2006 +0800
69549
69550 Reworked IRQ mapping in OF-tree.
69551
69552 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
69553 Author: Jon Loeliger <jdl@freescale.com>
69554 Date: Thu Jun 15 21:33:37 2006 -0500
69555
69556 Do not enable address translation on secondary CPUs.
69557 Do not set up BATs on secondary CPUs. Let Linux do the nasty.
69558
69559 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69560
69561 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
69562 Author: Wolfgang Denk <wd@pollux.denx.de>
69563 Date: Wed Jun 14 18:14:56 2006 +0200
69564
69565 Code cleanup
69566
69567 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
69568 Author: Wolfgang Denk <wd@pollux.denx.de>
69569 Date: Wed Jun 14 17:45:53 2006 +0200
69570
69571 Various USB related patches
69572 - Add support for mpc8xx USB device.
69573 - Add support for Common Device Class - Abstract Control Model USB console.
69574 - Add support for flow control in USB slave devices.
69575 - Add support for switching between gserial and cdc_acm using environment.
69576 - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
69577 - Update usbcore slightly to ease host enumeration.
69578 - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
69579 - Add AdderUSB_config as a defconfig to enable usage of the USB console
69580 by default with the Adder87x U-Boot port.
69581 Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
69582
69583 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
69584 Author: Jon Loeliger <jdl@jdl.com>
69585 Date: Wed Jun 7 10:53:55 2006 -0500
69586
69587 Fix a get_board_sys_clk() use-before-def warning.
69588
69589 Signed-off-by: Jon Loeliger <jdl@jdl.com>
69590
69591 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
69592 Author: Jon Loeliger <jdl@jdl.com>
69593 Date: Wed Jun 7 10:52:49 2006 -0500
69594
69595 Allow DTC path to be passed in.
69596
69597 Signed-off-by: Jon Loeliger <jdl@jdl.com>
69598
69599 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
69600 Author: Haiying Wang <haiying.wang@freescale.com>
69601 Date: Tue Jun 6 16:54:29 2006 -0400
69602
69603 Modify the IRQ of DUART2
69604
69605 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
69606 Author: Jon Loeliger <jdl@jdl.com>
69607 Date: Wed May 31 13:55:35 2006 -0500
69608
69609 Review cleanups.
69610
69611 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69612
69613 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
69614 Author: Jon Loeliger <jdl@jdl.com>
69615 Date: Wed May 31 12:44:44 2006 -0500
69616
69617 White space cleanup.
69618 Some 80-column cleanups.
69619 Convert printf() to puts() where possible.
69620 Use #include "spd_sdram.h" as needed.
69621 Enhanced reset command usage message a bit.
69622
69623 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69624
69625 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
69626 Author: Jon Loeliger <jdl@jdl.com>
69627 Date: Wed May 31 11:39:34 2006 -0500
69628
69629 Removed unneeded local_bus_init() from 8641HPCN board.
69630
69631 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69632
69633 commit 4d3d729c16c392d2982d3266b659d333c927697d
69634 Author: Jon Loeliger <jdl@jdl.com>
69635 Date: Wed May 31 11:24:28 2006 -0500
69636
69637 Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
69638
69639 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69640
69641 commit b2a941de060350ad15878d8219825f4950e9bb8e
69642 Author: Jon Loeliger <jdl@jdl.com>
69643 Date: Wed May 31 10:07:28 2006 -0500
69644
69645 Remove dead debug code.
69646
69647 Signed-off-by: Jon Loeliger <jdl@jdl.com>
69648
69649 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
69650 Author: Jon Loeliger <jdl@freescale.com>
69651 Date: Tue May 30 17:47:00 2006 -0500
69652
69653 Move mpc86xx PIXIS code to board directory
69654
69655 First cut at moving the PIXIS platform code out of
69656 the 86xx cpu directory and into board/mpc8641hpcn
69657 where it belongs.
69658
69659 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69660
69661 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
69662 Author: Markus Klotzbuecher <mk@denx.de>
69663 Date: Tue May 30 16:56:14 2006 +0200
69664
69665 Support generic OHCI support for the s3c24x0 cpu.
69666
69667 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
69668 Author: Haiying Wang <Haiying.Wang@freescale.com>
69669 Date: Tue May 30 09:10:32 2006 -0500
69670
69671 Improve "reset" command's interaction with watchdog.
69672
69673 "reset altbank" will reset another bank WITHOUT watch dog timer enabled
69674 "reset altbank wd" will reset another bank WITH watch dog enabled
69675 "diswd" will disable watch dog after u-boot boots up successfully
69676
69677 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
69678
69679 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
69680 Author: Haiying Wang <Haiying.Wang@freescale.com>
69681 Date: Tue May 30 08:51:19 2006 -0500
69682
69683 Fix two SDRAM setup bugs.
69684
69685 Fix ECC setup bug.
69686 Enable 1T/2T based on number of DIMMs present.
69687
69688 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
69689
69690 commit d11fec5015334deb2010e36ce00bb118cc5429a5
69691 Author: Haiying Wang <Haiying.Wang@freescale.com>
69692 Date: Fri May 26 10:24:48 2006 -0500
69693
69694 Add first draft of the MPC8641HPCN doc/README.
69695
69696 Signed-off-by: Jon Loeliger <jdl@jdl.com>
69697
69698 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
69699 Author: Haiying Wang <Haiying.Wang@freescale.com>
69700 Date: Fri May 26 10:13:04 2006 -0500
69701
69702 Added pci@8000 block.
69703 Updated ethernet interrupt mappings (moved up 48).
69704 Cleaned up a few comments.
69705
69706 Signed-off-by: Jon Loeliger <jdl@jdl.com>
69707
69708 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
69709 Author: Haiying Wang <Haiying.Wang@freescale.com>
69710 Date: Fri May 26 10:01:16 2006 -0500
69711
69712 Allow args on reset command.
69713
69714 Signed-off-by: Jon Loeliger <jdl@jdl.com>
69715
69716 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
69717 Author: Markus Klotzbuecher <mk@denx.de>
69718 Date: Tue May 23 13:38:35 2006 +0200
69719
69720 Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
69721 fixes to the latter.
69722
69723 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
69724 Author: Markus Klotzbuecher <mk@denx.de>
69725 Date: Tue May 23 10:33:11 2006 +0200
69726
69727 More cleanup for the delta board and the generic usb_ohci driver. Added
69728 CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
69729 initialization and cleanup hooks respectively.
69730
69731 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
69732 Author: Markus Klotzbuecher <mk@denx.de>
69733 Date: Mon May 22 16:33:54 2006 +0200
69734
69735 This patch adds USB storage support for the delta board. This is the first
69736 board to make use of a generic OHCI driver, that calls hooks for board
69737 dependant initialization.
69738
69739 commit 14e37081ff3cac7ebe6e93836523429853b6b292
69740 Author: Jon Loeliger <jdl@jdl.com>
69741 Date: Fri May 19 13:28:39 2006 -0500
69742
69743 Change arbitration to round-robin for SMP linux.
69744
69745 commit 9a655876e5995be80f49054e2509500e871e4d3a
69746 Author: Jon Loeliger <jdl@jdl.com>
69747 Date: Fri May 19 13:26:34 2006 -0500
69748
69749 Enable dual DDR controllers and interleaving.
69750
69751 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
69752 Author: Jon Loeliger <jdl@jdl.com>
69753 Date: Fri May 19 13:22:44 2006 -0500
69754
69755 Update 86xx address map and LAWBARs.
69756
69757 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
69758 Author: Jon Loeliger <jdl@jdl.com>
69759 Date: Fri May 19 13:14:15 2006 -0500
69760
69761 Remove L2 Cache invalidate polling.
69762
69763 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
69764 Author: Jon Loeliger <jdl@jdl.com>
69765 Date: Fri May 19 12:33:09 2006 -0500
69766
69767 Enable 2nd CPU and I2C.
69768
69769 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
69770 Author: Jon Loeliger <jdl@freescale.com>
69771 Date: Mon May 15 07:26:56 2006 -0500
69772
69773 Update interrupt mapping.
69774
69775 commit 6cfea33477b04b63ed47386ed1629529484c33ba
69776 Author: Haiying Wang <Haiying.Wang@freescale.com>
69777 Date: Wed May 10 09:38:06 2006 -0500
69778
69779 Remove unneeded INIT_RAM_LOCK cache twiddling.
69780 Correctly tracks r29 as global data pointer now.
69781
69782 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
69783
69784 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
69785 Author: Jon Loeliger <jdl@freescale.com>
69786 Date: Wed May 10 09:33:07 2006 -0500
69787
69788 Remove unnecessary flash.c file.
69789
69790 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
69791 Author: Jon Loeliger <jdl@freescale.com>
69792 Date: Tue May 9 08:23:49 2006 -0500
69793
69794 Get MPC8641HPCN flash images working.
69795
69796 Enable the CFI driver.
69797 Remove bogus LAWBAR7 cruft.
69798 Use correct TEXT_BASE, Fixup load script.
69799 Enable SPD EEPROM during DDR setup.
69800 Use generic RFC 1918 IP addresses by default.
69801
69802 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
69803 Author: Jon Loeliger <jdl@freescale.com>
69804 Date: Thu Apr 27 10:15:16 2006 -0500
69805
69806 Cleanup whitespaces and style issues.
69807 Removed //-style comments.
69808 Use 80-column lines.
69809 Remove trailing whitespace.
69810 Remove dead code and debug cruft.
69811
69812 commit a2320a6bf8113a09544c42d160d10ac69d049a03
69813 Author: Jon Loeliger <jdl@freescale.com>
69814 Date: Thu Apr 27 08:22:39 2006 -0500
69815
69816 Revert bad PCI prefetch limit change.
69817
69818 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
69819 Author: Jon Loeliger <jdl@freescale.com>
69820 Date: Wed Apr 26 17:58:56 2006 -0500
69821
69822 Initial support for MPC8641 HPCN board.