blob: 9af36c123bf2f8d3e61ece675f752b1be22eb7d3 [file] [log] [blame]
Wolfgang Denkaced78d2008-12-16 23:48:27 +01001commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
2Author: Wolfgang Denk <wd@denx.de>
3Date: Tue Dec 16 23:13:46 2008 +0100
4
5 include/configs/at91cap9adk.h: fix typo.
6
7 Signed-off-by: Wolfgang Denk <wd@denx.de>
8
9commit 45ca04f2377361593151d2d4da51f8ba4832d233
10Author: Wolfgang Denk <wd@denx.de>
11Date: Tue Dec 16 22:32:25 2008 +0100
12
13 board/trab/memory.c: Fix compile problems.
14
15 Apply changes from commit 44b4dbed to board/trab/memory.c, too.
16
17 Actually we'd need a major cleanup here - as it turns out,
18 board/trab/memory.c is more or less a verbatim copy of
19 post/drivers/memory.c ... but then, trab is EOL anyway,r
20 so this is not worth the effort.
21
22 Signed-off-by: Wolfgang Denk <wd@denx.de>
23
24commit 584eedab66d0828f2d571a24b10526c4e65f547b
25Author: Ilya Yanok <yanok@emcraft.com>
26Date: Thu Dec 11 05:51:57 2008 +0300
27
28 jffs2: include <linux/mtd/compat.h> instead of defining own min_t
29
30 Include <linux/mtd/compat.h> header for min_t definition instead of
31 providing our own one. Removes warnings in case of OneNAND support
32 enabled.
33
34 Although I thinks it's a bit silly to include <linux/mtd/compat.h>
35 just for min_t...
36
37 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
38 Acked-by: Stefan Roese <sr@denx.de>
39
40commit b1ffecec37b57a59c139042267faac458e5324e9
41Author: Becky Bruce <beckyb@kernel.crashing.org>
42Date: Wed Dec 3 23:04:37 2008 -0600
43
44 powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
45
46 Casting a pointer to a phys_addr_t when it's an unsigned long long
47 on a 32-bit system without first casting to a non-pointer type
48 generates a compiler warning. Fix this.
49
50 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
51
52commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
53Author: Wolfgang Denk <wd@denx.de>
54Date: Tue Dec 16 16:22:50 2008 +0100
55
56 trab: make trab_fkt standalone code independent of libgcc
57
58 Use our own local functions in lib_arm/ instead.
59
60 Signed-off-by: Wolfgang Denk <wd@denx.de>
61
62commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
63Author: Wolfgang Denk <wd@denx.de>
64Date: Tue Dec 16 14:44:06 2008 +0100
65
66 post/Makefile: fix dependency problem with parallel builds
67
68 Parallel builds (using "make -jN") would occasionally fail with error
69 messages like
70 ppc_4xxFP-objdump: string.o: File format not recognized
71 or
72 post/libpost.a(cpu.o): In function `cpu_post_test':
73 /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
74 or similar. We now make sure to run the 'postdeps" step before
75 attempting to build the specific POST libraries.
76
77 Signed-off-by: Wolfgang Denk <wd@denx.de>
78
79commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
80Author: Wolfgang Denk <wd@denx.de>
81Date: Tue Dec 16 14:41:02 2008 +0100
82
83 Makefile: fix dependency problem with parallel builds
84
85 Parallel builds (using "make -jN") would occasionally fail with error
86 messages like
87 include/autoconf.mk:212: *** missing separator. Stop.
88 Line numbers and affected boards were changing. Obviously some
89 Makefiles included autoconf.mk while it was still being written to.
90 As a fix, we now write to a temporary file first and then rename it,
91 so that it is really ready to use as soon as it appears.
92
93 Signed-off-by: Wolfgang Denk <wd@denx.de>
94
95commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
96Author: Wolfgang Denk <wd@denx.de>
97Date: Tue Dec 16 01:02:17 2008 +0100
98
99 Coding style cleanup, update CHANGELOG.
100
101 Signed-off-by: Wolfgang Denk <wd@denx.de>
102
Wolfgang Denk455ae7e2008-12-16 01:02:17 +0100103commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
104Author: Mike Frysinger <vapier@gentoo.org>
105Date: Thu Dec 11 18:39:08 2008 -0500
106
107 spi/stmicro: fix debug() display of cmd
108
109 The stmicro_wait_ready() func tries to show the actual opcode that was sent
110 to the device, but instead it displays the array pointer. Fix it to pull
111 out the opcode from the start of the array.
112
113 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
114
115commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
116Author: Mike Frysinger <vapier@gentoo.org>
117Date: Thu Dec 11 06:23:37 2008 -0500
118
119 env_sf: support embedded environments
120
121 If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
122 size is larger than the env size, then it means the env is embedded in a
123 block. So we have to save/restore the part of the sector which is not the
124 environment. Previously, saving the environment in SPI flash in this
125 setup would probably brick the board as the rest of the sector tends to
126 contain actual U-Boot data/code.
127
128 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
129 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
130
131commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
132Author: Timur Tabi <timur@freescale.com>
133Date: Wed Dec 3 11:28:30 2008 -0600
134
135 i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
136
137 All implementations of the functions i2c_reg_read() and
138 i2c_reg_write() are identical. We can save space and simplify the
139 code by converting these functions into inlines and putting them in
140 i2c.h.
141
142 Signed-off-by: Timur Tabi <timur@freescale.com>
143 Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
144
145commit e39cd81c44740d7355d277ed3d38536cbe1e003d
146Author: Dave Liu <daveliu@freescale.com>
147Date: Fri Dec 5 15:36:14 2008 +0800
148
149 lib_ppc: rework the flush_cache
150
151 - It is possible to miss flush/invalidate the last
152 cache line, we fix it at here.
153 - add the volatile and memory clobber.
154
155 They are pointed by Scott Wood.
156
157 Signed-off-by: Dave Liu <daveliu@freescale.com>
158
159commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
160Author: Kumar Gala <galak@kernel.crashing.org>
161Date: Sat Dec 13 17:20:28 2008 -0600
162
163 Introduce addr_map library
164
165 Add a library that helps in translating between virtual and physical
166 addresses. This library can be useful as a simple means to implement
167 map_physmem() and virt_to_phys() for platforms that need functionality
168 beyond the simple 1:1 mapping.
169
170 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
171
172commit 65e43a10631537dcb92c302d36301a12308216c3
173Author: Kumar Gala <galak@kernel.crashing.org>
174Date: Sat Dec 13 17:20:27 2008 -0600
175
176 Introduce virt_to_phys()
177
178 virt_to_phys() returns the physical address given a virtual. In most
179 cases this will be just the input value as the vast majority of
180 systems run in a 1:1 mode.
181
182 However in systems that are not running this way it should report the
183 physical address or ~0 if no mapping exists for the given virtual
184 address.
185
186 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
187
188commit 45845301af3de8675c1f7bbc815c6de35452605a
189Author: Yuri Tikhonov <yur@emcraft.com>
190Date: Sun Dec 7 22:12:50 2008 +0100
191
192 POST Make: fix the sub-dir dependencies missing.
193
194 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
195
196commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
197Author: Martin Michlmayr <tbm@cyrius.com>
198Date: Wed Aug 6 14:44:05 2008 +0300
199
200 Fix a typo in fw_env.config
201
202 Reported-by: Martin Michlmayr <tbm@cyrius.com>
203 Signed-off-by: Wolfgang Denk <wd@denx.de>
204
205commit ba490b7761c62b549c222a9723e532dc801a3899
206Author: Peter Tyser <ptyser@xes-inc.com>
207Date: Mon Dec 1 16:22:45 2008 -0600
208
209 Remove unused CONFIG_ADDR_STREAMING defines
210
211 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
212
213commit d16da93430520d3e46c1ab52eedacf36ab7a2311
214Author: Peter Tyser <ptyser@xes-inc.com>
215Date: Mon Nov 24 11:54:47 2008 -0600
216
217 cmd_mem: Remove unused variable
218
219 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
220
221commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
222Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
223Date: Sun Dec 14 10:29:39 2008 +0100
224
225 Fix new found CFG_
226
227 Also fix some minor typos.
228
229 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
230 Signed-off-by: Wolfgang Denk <wd@denx.de>
231
232commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
233Author: Sergei Poselenov <sposelenov@emcraft.com>
234Date: Fri Sep 19 12:07:34 2008 +0200
235
236 Remove compiler warning: target CPU does not support interworking
237
238 This warning is issued by modern ARM-EABI GCC on non-thumb targets.
239
240 Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
241 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
242
243commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
244Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
245Date: Mon Nov 24 13:33:51 2008 +0100
246
247 Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
248
249 FDT support is used for both FIT style images and for architectures
250 that can pass a fdt blob to an OS (ppc, m68k, sparc).
251
252 For other architectures and boards which do not pass a fdt blob to an
253 OS but want to use the new uImage format, we just need FIT support.
254
255 Now we can have the 4 following configurations :
256
257 1) FIT only CONFIG_FIT
258 2) fdt blob only CONFIG_OF_LIBFDT
259 3) both CONFIG_OF_LIBFDT & CONFIG_FIT
260 4) none none
261
262 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
263
264commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
265Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
266Date: Wed Dec 10 15:13:32 2008 +0100
267
268 ppc4xx: Disable EEPROM write access on PMC440 boards
269
270 This patch disables EEPROM wrtie access by default on PMC440 board.
271
272 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
273
274commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
275Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
276Date: Wed Dec 10 15:12:56 2008 +0100
277
278 ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
279
280 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
281
282commit 71fa0714fe5134bc8718c38d5261d267e88582ba
283Author: Stefan Roese <sr@denx.de>
284Date: Tue Nov 18 16:36:12 2008 +0100
285
286 MIPS: Flush data cache upon relocation
287
288 This patch now adds a flush to the data cache upon relocation. The
289 current implementation is missing this. Only a comment states that it
290 should be done. So let's really do it now.
291
292 Signed-off-by: Stefan Roese <sr@denx.de>
293 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
294
295commit 44174343688dba32571a34550dba08971c65fef1
296Author: Stefan Roese <sr@denx.de>
297Date: Tue Nov 18 16:36:22 2008 +0100
298
299 MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
300
301 This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
302 enables support for boards where the lowlevel initialization is
303 already done when U-Boot runs (e.g. via OnChip ROM).
304
305 This will be used in the upcoming VCTH board support.
306
307 Signed-off-by: Stefan Roese <sr@denx.de>
308 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
309
310commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
311Author: Stefan Roese <sr@denx.de>
312Date: Wed Nov 12 13:18:02 2008 +0100
313
314 MIPS: Add board_early_init_f() to init_sequence
315
316 This patch adds the board_early_init_f() call to the MIPS init
317 sequence. A weak dummy implementation is also added which can be
318 overridden by a board specific version.
319
320 This will be used by the upcoming VCTH board support.
321
322 Signed-off-by: Stefan Roese <sr@denx.de>
323 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
324
325commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
326Author: Stefan Roese <sr@denx.de>
327Date: Wed Nov 12 13:18:19 2008 +0100
328
329 MIPS: Add onenand_init() to board.c and move nand_init()
330
331 This patch adds a call to onenand_init() for OneNAND support and moves
332 the nand_init() call to an earlier place, so that the environment can
333 be used from NAND and OneNAND.
334
335 Signed-off-by: Stefan Roese <sr@denx.de>
336 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
337
338commit d8bbc51c7ba9b737a20984333d19fe28a3526431
339Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
340Date: Tue Dec 9 11:32:46 2008 +0900
341
342 sh: Update sh2/sh2a timer
343
344 Renesas SH2/SH2A timer broken.
345 This patch fix timer function.
346
347 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
348 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
349
350commit a319f1496210117b73198e3d889ffffaf6825d00
351Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
352Date: Fri Dec 5 07:27:37 2008 +0100
353
354 sh: r2dplus fix register access
355
356 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
357 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
358
359commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
360Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
361Date: Tue Dec 2 07:40:03 2008 +0100
362
363 sh: r2dplus/lowlevel_init: coding style fix
364
365 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
366 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
367
368commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
369Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
370Date: Tue Nov 25 11:05:19 2008 +0900
371
372 sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
373
374 SH4 is different a value of CACHE_OC_NUM_ENTRIES and
375 CACHE_OC_WAY_SHIFT every CPU.
376 This patch corrects these values.
377
378 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
379 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
380
381commit e9d5f35497885b3c65d494d09a525d443dcccd3b
382Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
383Date: Thu Nov 20 16:44:42 2008 +0900
384
385 sh: Update sh timer function
386
387 Change to write/readX function and fix timer problem.
388
389 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
390 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
391
392commit b81786cff476c41e332eaeb679158f6527cd67d4
393Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
394Date: Tue Nov 4 11:58:58 2008 +0900
395
396 sh: Migo-R: Update BSC value
397
398 A value of BSC CS4 was wrong, Fixed it.
399
400 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
401 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
402
403commit 5783758fd260a02f44566ad8f29f899565cd0403
404Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
405Date: Mon Nov 17 16:52:09 2008 +0900
406
407 sh: Update ms7722se board config
408
409 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
410 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
411
412commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
413Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
414Date: Mon Nov 17 16:53:09 2008 +0900
415
416 sh: Update SuperH serial driver
417
418 The address of SCFSR register is wrong at SH7720/SH7721.
419 This patch fix this.
420
421 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
422 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
423
424commit 9a1d3557dcd47365c12eeab584b822e57d994352
425Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
426Date: Tue Nov 11 22:20:15 2008 +0100
427
428 sh: fix rsk7203 and MigoR out of tree build
429
430 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
431 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
432
433commit 1951f847f0a851853871b613ad7cf21a5242226c
434Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
435Date: Wed Dec 10 14:41:25 2008 +0100
436
437 ppc4xx: Update TEXT_BASE for CPCI405 boards
438
439 This patch fixes building U-Boot for CPCI405 boards.
440
441 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
442 Signed-off-by: Stefan Roese <sr@denx.de>
443
444commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
445Author: Stefan Roese <sr@denx.de>
446Date: Tue Dec 9 20:08:01 2008 +0100
447
448 ppc4xx: Remove some features from ALPR to fit into 256k again
449
450 Signed-off-by: Stefan Roese <sr@denx.de>
451
452commit 3b089e4f889a2902449d55e081c886ae607cae89
453Author: Stefan Roese <sr@denx.de>
454Date: Wed Dec 10 10:32:59 2008 +0100
455
456 UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
457
458 With this patch we set the type back to NONE upon failing UBI partition
459 initialization. Otherwise further calls to the UBI subsystem would try
460 to really access the non-existing UBI partition.
461
462 Thanks to Michael Lawnick for pointing this out.
463
464 Signed-off-by: Stefan Roese <sr@denx.de>
465
466commit 817329351639a8895cd9b87b33aeff043f3d5a44
467Author: Stefan Roese <sr@denx.de>
468Date: Wed Dec 10 10:28:33 2008 +0100
469
470 UBI: Return -ENOMEM upon failing malloc
471
472 Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
473 failing malloc().
474
475 Signed-off-by: Stefan Roese <sr@denx.de>
476
477commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
478Author: Ben Warren <biggerbadderben@gmail.com>
479Date: Tue Dec 9 23:34:15 2008 -0800
480
481 Fix compile error in building MBX860T.
482
483 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
484
485commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
486Author: Michal Simek <monstr@monstr.eu>
487Date: Tue Nov 25 11:42:20 2008 +0100
488
489 microblaze: Remove XUPV2P board
490
491 ---
492
493 Microblaze platforms use generic settings and to have
494 many platforms is confusing that's why I decided to remove this
495 platform from U-BOOT. ml401 tree is sufficient for covering
496 all Microblaze platforms.
497
498 This change will go through microblaze custodian tree.
499
500commit 99ba6f353582720defff6e6e6761dc455a207d31
501Author: Michal Simek <monstr@monstr.eu>
502Date: Mon Nov 24 18:25:41 2008 +0100
503
504 microblaze: Remove CONFIG_LIBFDT due to error in common files
505
506commit e7d591e823a991513833af7030468409e25a3b13
507Author: Michal Simek <monstr@monstr.eu>
508Date: Mon Nov 24 11:43:00 2008 +0100
509
510 microblaze: Fix ml401 uart16550 setting
511
512 Signed-off-by: Michal Simek <monstr@monstr.eu>
513
514commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
515Author: Michal Simek <monstr@monstr.eu>
516Date: Mon Nov 24 11:38:22 2008 +0100
517
518 microblaze: Set up relocation is done
519
520commit bcb6dd9187d4b23c748704767bd12d20c829e996
521Author: Mike Frysinger <vapier@gentoo.org>
522Date: Tue Dec 9 23:20:31 2008 -0500
523
524 tools/netconsole: new script for working with netconsole over UDP
525
526 While the doc/README.NetConsole does have a snippet for people to
527 create their own netcat script, it's a lot easier to make a simple
528 dedicated script and tell people to use it.
529
530 Also spruce it up a bit to make it user friendly.
531
532 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
533
534commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
535Author: Sonic Zhang <Sonic.Zhang@analog.com>
536Date: Tue Dec 9 23:20:18 2008 -0500
537
538 fs/fat: handle FAT on SATA
539
540 The FAT file system driver should also handle FAT on SATA devices.
541
542 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
543 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
544
545commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
546Author: Jerry Van Baren <gvb.uboot@gmail.com>
547Date: Mon Nov 24 08:15:02 2008 -0500
548
549 libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
550
551 Compiling U-Boot in an old OS environment (RedHat-7.3 :-) gives the
552 following warnings from FDT:
553
554 include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
555 /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
556
557 Fix: Protect the definition of uintptr_t when compiling on the host
558 system.
559
560 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
561
562commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
563Author: Graeme Russ <graeme.russ@gmail.com>
564Date: Sat Nov 22 08:43:29 2008 +1100
565
566 Moved sc520 PCI definitions to stand-alone file
567
568 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
569
570commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
571Author: Graeme Russ <graeme.russ@gmail.com>
572Date: Sat Nov 22 08:43:21 2008 +1100
573
574 Fixed path to sc520 SSI include file
575
576 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
577
578commit d4f70da544c33db3e4fce6473dea4ecca4322545
579Author: Graeme Russ <graeme.russ@gmail.com>
580Date: Fri Nov 21 06:28:05 2008 +1100
581
582 Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
583
584 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
585
586commit c034075a713b60e654c64e88e87da29440f31bb4
587Author: Stefan Roese <sr@denx.de>
588Date: Wed Nov 12 13:30:10 2008 +0100
589
590 serial: Add vcth UART driver
591
592 This patch adds the UART driver for the upcoming VCTH board support.
593
594 Signed-off-by: Stefan Roese <sr@denx.de>
595
596commit 142a80ffc3b537a9c45acd2444a42a77f147c602
597Author: Ilya Yanok <yanok@emcraft.com>
598Date: Thu Nov 13 19:49:36 2008 +0300
599
600 jffs2: cache data_crc results
601
602 As we moved data_crc() invocation from jffs2_1pass_build_lists() to
603 jffs2_1pass_read_inode() data_crc is going to be calculated on each
604 inode access. This patch adds caching of data_crc() results. There
605 is no significant improvement in speed (because of flash access
606 caching added in previous patch I think, crc in RAM is really fast)
607 but this patch impacts memory usage -- every b_node structure uses
608 12 bytes instead of 8.
609
610 Signed-off-by: Alexey Neyman <avn@emcraft.com>
611 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
612
613commit 9b7076229ec6a958bd835ab70745f7676297ce82
614Author: Ilya Yanok <yanok@emcraft.com>
615Date: Thu Nov 13 19:49:35 2008 +0300
616
617 jffs2: summary support
618
619 This patch adds support for reading fs information from summary
620 node instead of scanning full eraseblock.
621
622 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
623
624commit 70741004dc28946cd82c7af6789c4ddb3fc94526
625Author: Ilya Yanok <yanok@emcraft.com>
626Date: Thu Nov 13 19:49:34 2008 +0300
627
628 jffs2: add buffer to cache flash accesses
629
630 With this patch JFFS2 code allocates memory buffer of max_totlen size
631 (size of the largest node, calculated during scan time) and uses it to
632 store entire node. Speeds up loading. If malloc fails we use old ways
633 to do things.
634
635 Signed-off-by: Alexey Neyman <avn@emcraft.com>
636 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
637
638commit 8a36d31f72411144ac0412ee7e1880e801acd754
639Author: Ilya Yanok <yanok@emcraft.com>
640Date: Thu Nov 13 19:49:33 2008 +0300
641
642 jffs2: rewrite jffs2 scanning code based on Linux one
643
644 Rewrites jffs2_1pass_build_lists() function in style of Linux's
645 jffs2_scan_medium() and jffs2_scan_eraseblock().
646 This includes:
647 - Caching flash acceses
648 - Smart dealing with free space
649
650 Signed-off-by: Alexey Neyman <avn@emcraft.com>
651 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
652
653commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
654Author: Ilya Yanok <yanok@emcraft.com>
655Date: Thu Nov 13 19:49:32 2008 +0300
656
657 jffs2: add sector_size field to part_info structure
658
659 This patch adds sector_size field to part_info structure (used
660 by new JFFS2 code).
661
662 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
663
664commit f73846956778a7dfee83403ef9747aff77198848
665Author: Ilya Yanok <yanok@emcraft.com>
666Date: Thu Nov 13 19:49:31 2008 +0300
667
668 jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
669
670 We need to update i_version inside cycle to find really latest version
671 inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
672 dump_inode() instead of calling expensive jffs2_1pass_read_inode().
673
674 Signed-off-by: Alexey Neyman <avn@emcraft.com>
675 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
676
677commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
678Author: Wolfgang Denk <wd@denx.de>
679Date: Tue Dec 9 23:13:51 2008 +0100
680
681 evb64260: fix "cast to pointer from integer of different size" warnings
682
683 Signed-off-by: Wolfgang Denk <wd@denx.de>
684
685commit d2776827315c3d469b8cb4cec14d58877798daa2
686Author: Stefan Althoefer <stefan.althoefer@web.de>
687Date: Sun Dec 7 19:39:11 2008 +0100
688
689 USB: descriptor handling
690
691 Hi,
692
693 I found a bug when working with the u-boot USB subsystem on IXP425 processor
694 (big endian Xscale aka ARMv5).
695 I recognized that the second usb_endpoint_descriptor of the attached memory
696 stick was corrupted.
697
698 The reason for this are the packed structures below (either u-boot and
699 u-boot-usb):
700
701 --------------
702 /* Endpoint descriptor */
703 struct usb_endpoint_descriptor {
704 unsigned char bLength;
705 unsigned char bDescriptorType;
706 unsigned char bEndpointAddress;
707 unsigned char bmAttributes;
708 unsigned short wMaxPacketSize;
709 unsigned char bInterval;
710 unsigned char bRefresh;
711 unsigned char bSynchAddress;
712
713 } __attribute__ ((packed));
714 /* Interface descriptor */
715 struct usb_interface_descriptor {
716 unsigned char bLength;
717 unsigned char bDescriptorType;
718 unsigned char bInterfaceNumber;
719 unsigned char bAlternateSetting;
720 unsigned char bNumEndpoints;
721 unsigned char bInterfaceClass;
722 unsigned char bInterfaceSubClass;
723 unsigned char bInterfaceProtocol;
724 unsigned char iInterface;
725
726 unsigned char no_of_ep;
727 unsigned char num_altsetting;
728 unsigned char act_altsetting;
729 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
730 } __attribute__ ((packed));
731 ------------
732
733 As usb_endpoint_descriptor is only 7byte in length, the start of all
734 odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
735 of these structures also not word aligned.
736
737 ARMv5 Architecture however does not support non-aligned multibyte
738 data type (see A2.8 of ARM Architecture Reference Manual).
739
740 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
741 Signed-off-by: Remy Böhmer <linux@bohmer.net>
742
743commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
744Author: Kumar Gala <galak@kernel.crashing.org>
745Date: Tue Dec 9 10:27:33 2008 -0600
746
747 drivers/fsl_pci_init: Fix compile warning
748
749 fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
750 fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
751
752 The check only makes sense if we are CONFIG_PHYS_64BIT
753
754 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
755
756commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
757Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
758Date: Sun Dec 7 09:45:35 2008 +0100
759
760 usbtty/omap: update to current API
761
762 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
763 Signed-off-by: Remy Böhmer <linux@bohmer.net>
764
765commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
766Author: Anatolij Gustschin <agust@denx.de>
767Date: Tue Dec 9 17:52:05 2008 +0100
768
769 video: fix FADS823 and RRvision compiling issues
770
771 Since commit 561858ee building for FADS823 and RRvision
772 doesn't work. Let's include version.h and timestamp.h
773 unconditionally to fix the problem.
774
775 Signed-off-by: Anatolij Gustschin <agust@denx.de>
776
777commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
778Author: Stefan Roese <sr@denx.de>
779Date: Tue Dec 2 10:53:47 2008 +0100
780
781 UBI: Fix size parsing in "ubi create"
782
783 Signed-off-by: Stefan Roese <sr@denx.de>
784
785commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
786Author: Stefan Roese <sr@denx.de>
787Date: Thu Nov 27 14:07:09 2008 +0100
788
789 UBI: Enable re-initializing of the "ubi part" command
790
791 With this patch now, the user can call "ubi part" multiple times to
792 re-connect the UBI device to another MTD partition.
793
794 Signed-off-by: Stefan Roese <sr@denx.de>
795
796commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
797Author: Stefan Roese <sr@denx.de>
798Date: Thu Nov 27 14:05:15 2008 +0100
799
800 MTD: Fix problem based on non-working relocation (list head mtd_partitions)
801
802 Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
803 first call of add_mtd_partitions(). Otherwise this won't work on platforms
804 where the relocation is broken (like MIPS or PPC).
805
806 Signed-off-by: Stefan Roese <sr@denx.de>
807
808commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
809Author: Trent Piepho <tpiepho@freescale.com>
810Date: Wed Nov 12 17:29:48 2008 -0800
811
812 Section name should be ".data", not "data"
813
814 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
815 Signed-off-by: Wolfgang Denk <wd@denx.de>
816
817commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
818Author: Wolfgang Denk <wd@denx.de>
819Date: Tue Dec 9 00:39:08 2008 +0100
820
821 MAKEALL: Automatically use parallel builds
822
823 Add logic to the MAKEALL script to determine the number of CPU cores
824 on the system, and run a parallel build if there is more than one.
825 Usually this significantrly accelerates builds.
826
827 Allow to manually adjust the number of parallel make jobs by using
828 the "BUILD_NCPUS" environment variable.
829
830 Signed-off-by: Wolfgang Denk <wd@denx.de>
831
832commit 268405fa7c44156c5192a70779920c70906af8d6
833Author: Wolfgang Denk <wd@denx.de>
834Date: Tue Dec 9 00:24:30 2008 +0100
835
836 vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
837
838 Signed-off-by: Wolfgang Denk <wd@denx.de>
839
840commit 153176a9414120ca1736f3cc4951623d6e14e6af
841Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
842Date: Tue Nov 11 06:08:59 2008 +0100
843
844 avr32/bootm: remove unused variable 'ret'
845
846 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
847 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
848
849commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
850Author: Peter Tyser <ptyser@xes-inc.com>
851Date: Wed Nov 12 13:06:48 2008 -0600
852
853 Remove unneeded CONFIG_SHELL references
854
855 Make should be using the bash shell by default which makes
856 CONFIG_SHELL unnecessary
857
858 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
859
860commit cf7a7b99794bac936899819b95539be1dbd71708
861Author: Peter Tyser <ptyser@xes-inc.com>
862Date: Wed Nov 12 12:33:20 2008 -0600
863
864 Use bash for default GNU Make shell application
865
866 Some Make script commands rely on bash-specific features like brace
867 expansion, so default to bash for the SHELL variable with a fallback
868 to the standard sh shell
869
870 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
871
872commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
873Author: Heiko Schocher <hs@denx.de>
874Date: Wed Nov 12 09:50:45 2008 +0100
875
876 jffs2: rename devices_init () in common/jffs2.c
877
878 rename devices_init () in common/jffs2.c to
879 jffs2_devices_init (), because there is also a
880 devices_init () in common/devices.c.
881
882 Signed-off-by: Heiko Schocher <hs@denx.de>
883
884commit af5eb847a10f1037590001355d88bab3fe7be48b
885Author: Daniel Hellstrom <daniel@gaisler.com>
886Date: Mon Nov 10 12:46:20 2008 +0000
887
888 SPARC: Fixed compiler error introduced by commit c160a9544743
889
890 This patch fixes a build error for the SPARC platform. It was
891 introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
892
893 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
894
895commit 4c60259899aa00f59db0d936b8807f9a26411c0f
896Author: Gary Jennejohn <garyj@denx.de>
897Date: Sun Nov 9 12:50:59 2008 +0100
898
899 mgsuvd add the board-specific part of the HDLC driver
900
901 Signed-off-by: Gary Jennejohn <garyj@denx.de>
902
903commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
904Author: Gary Jennejohn <garyj@denx.de>
905Date: Sun Nov 9 12:45:03 2008 +0100
906
907 mgcoge add the board-specific part of the HDLC driver
908
909 Signed-off-by: Gary Jennejohn <garyj@denx.de>
910
911commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
912Author: Gary Jennejohn <garyj@denx.de>
913Date: Sun Nov 9 12:36:15 2008 +0100
914
915 keymile add the common parts of the HDLC driver
916
917 This implements the ICN protocol used across the backplane and is
918 needed by all the keymile boards.
919
920 Signed-off-by: Gary Jennejohn <garyj@denx.de>
921
922commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
923Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
924Date: Fri Nov 7 22:46:22 2008 +0100
925
926 drivers/bios_emulator: Move conditional compilation to Makefile
927
928 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
929
930commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
931Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
932Date: Thu Nov 6 14:01:51 2008 -0500
933
934 common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
935
936 Corrected endian order printing for compact flash serial number.
937
938 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
939
940commit 16a28ef219c27423a1ef502f19070c4d375079b8
941Author: Gary Jennejohn <garyj@denx.de>
942Date: Thu Nov 6 15:04:23 2008 +0100
943
944 IOMUX: Add console multiplexing support.
945
946 Modifications to support console multiplexing. This is controlled using
947 CONFIG_SYS_CONSOLE_MUX in the board configuration file.
948
949 This allows a user to specify multiple console devices in the environment
950 with a command like this: setenv stdin serial,nc. As a result, the user can
951 enter text on both the serial and netconsole interfaces.
952
953 All devices - stdin, stdout and stderr - can be set in this manner.
954
955 1) common/iomux.c and include/iomux.h contain the environment setting
956 implementation.
957 2) doc/README.iomux contains a somewhat more detailed description.
958 3) The implementation in (1) is called from common/cmd_nvedit.c to
959 handle setenv and from common/console.c to handle initialization of
960 input/output devices at boot time.
961 4) common/console.c also contains the code needed to poll multiple console
962 devices for input and send output to all devices registered for output.
963 5) include/common.h includes iomux.h and common/Makefile generates iomux.o
964 when CONFIG_SYS_CONSOLE_MUX is set.
965
966 Signed-off-by: Gary Jennejohn <garyj@denx.de>
967
968commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
969Author: Mike Frysinger <vapier@gentoo.org>
970Date: Tue Nov 4 16:03:46 2008 -0500
971
972 strings: use puts() rather than printf()
973
974 When running `strings` on really long strings, the stack tends to get
975 smashed due to printf(). Switch to puts() instead since we're only passing
976 the data through.
977
978 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
979
980commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
981Author: Niklaus Giger <niklaus.giger@member.fsf.org>
982Date: Mon Nov 3 22:16:18 2008 +0100
983
984 Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
985
986 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
987
988commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
989Author: Niklaus Giger <niklaus.giger@member.fsf.org>
990Date: Mon Nov 3 22:15:34 2008 +0100
991
992 cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
993
994 - fix size too small by one in sprintf
995 - changed old (pre 2004) device name ibmEmac to emac
996 - boot device may be overriden in board config
997 - servername may be defined in board config
998 - additional parameters may be defined in board config
999 - fixed some line wrappings
1000 - replaced redundant MAX define by max
1001
1002 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
1003
1004commit e9084b23d16102f44ace24379a1c0c352497ef80
1005Author: Niklaus Giger <niklaus.giger@member.fsf.org>
1006Date: Mon Nov 3 22:14:36 2008 +0100
1007
1008 Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
1009
1010 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
1011
1012commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
1013Author: Niklaus Giger <niklaus.giger@member.fsf.org>
1014Date: Mon Nov 3 22:13:47 2008 +0100
1015
1016 README: Document CONFIG_SYS parameters for vxworks
1017
1018 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
1019
1020commit ace514837cac656e29c37a19569cb8ea83071126
1021Author: Peter Tyser <ptyser@xes-inc.com>
1022Date: Fri Oct 31 11:12:38 2008 -0500
1023
1024 lcd: Let the board code show board-specific info cleanup
1025
1026 remove unneeded version.h from lcd.c
1027
1028 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1029 Signed-off-by: Wolfgang Denk <wd@denx.de>
1030
1031commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
1032Author: Peter Tyser <ptyser@xes-inc.com>
1033Date: Mon Nov 3 09:30:59 2008 -0600
1034
1035 Update U-Boot's build timestamp on every compile
1036
1037 Use the GNU 'date' command to auto-generate a new U-Boot
1038 timestamp on every compile.
1039
1040 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1041
1042commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
1043Author: Remy Bohmer <linux@bohmer.net>
1044Date: Thu Dec 4 22:25:57 2008 +0100
1045
1046 Remove redundant armv4 flag from arm926ejs compile flags
1047
1048 Currently the arm926ejs tree has the armv4 option set during compilation.
1049 This flag does not belong here because a arm926 CPU is always a armv5 CPU.
1050
1051 Signed-off-by: Remy Bohmer <linux@bohmer.net>
1052
1053commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
1054Author: Nicolas Ferre <nicolas.ferre@atmel.com>
1055Date: Sat Dec 6 13:11:14 2008 +0100
1056
1057 at91: Choose environment variables location within make config target
1058
1059 This patch adds the possiblity to choose the media where the environment will
1060 be located. This allow to choose this fundamental configuration without editing
1061 config files.
1062
1063 Documentation file added.
1064
1065 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
1066 Acked-by: Stelian Pop <stelian@popies.net>
1067 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1068
1069commit 1450c4a6682378567030414a9f1198c39b7730c7
1070Author: Anatolij Gustschin <agust@denx.de>
1071Date: Mon Nov 3 15:30:34 2008 +0100
1072
1073 lwmon, tqm8xx: Fix build errors
1074
1075 Commit 6b59e03e0237a40a2305ea385defdfd92000978b
1076 lcd: Let the board code show board-specific info
1077
1078 introduced some bugs which prevent U-Boot building
1079 for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
1080 be defined in the board configuration.
1081
1082 Also "LCD enabled" building for TQM823L doesn't work
1083 since this commit.
1084
1085 This patch fixes above-mentioned issues.
1086
1087 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1088
1089commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
1090Author: Mike Frysinger <vapier@gentoo.org>
1091Date: Sun Nov 2 01:18:18 2008 -0400
1092
1093 ignore .gdb_history files
1094
1095 When using gdb, history files will often get generated. So ignore them.
1096
1097 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1098
1099commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
1100Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1101Date: Fri Oct 31 12:26:55 2008 +0100
1102
1103 FPGA: move fpga drivers to drivers/fpga
1104
1105 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1106
1107commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
1108Author: Peter Tyser <ptyser@xes-inc.com>
1109Date: Mon Dec 1 16:29:38 2008 -0600
1110
1111 net: Fix TftpStart() ip:filename bug
1112
1113 The TftpStart() function modifies the 'BootFile'
1114 string when 'BootFile' contains both an IP address
1115 and filename (eg 1.2.3.4:/path/file). This causes
1116 subsequent calls to TftpStart to incorrectly parse
1117 the TFTP filename and server IP address to use.
1118 For example:
1119
1120 => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
1121 Speed: 100, half duplex
1122 Using eTSEC1 device
1123 TFTP from server 10.52.0.62; our IP address is 10.52.253.79
1124 ^^^^^^^^^^ CORRECT
1125 Filename '/home/ptyser/non_existant'.
1126 ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
1127 Load address: 0x100000
1128 Loading: *
1129 TFTP error: 'File not found' (1)
1130 Starting again
1131
1132 eTSEC2: No link.
1133 Speed: 100, half duplex
1134 Using eTSEC1 device
1135 TFTP from server 10.52.0.33; our IP address is 10.52.253.79
1136 ^^^^^^^^^^ WRONG
1137 Filename '10.52.0.62'.
1138 ^^^^^^^^^^ WRONG
1139 Load address: 0x100000
1140 Loading: *
1141 TFTP error: 'File not found' (1)
1142 Starting again
1143
1144 TftpStart() was modified to not modify the 'BootFile' string.
1145
1146 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1147 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1148
1149commit d32c5be50bf0600bfdc54223ef341ee9c63db445
1150Author: Peter Tyser <ptyser@xes-inc.com>
1151Date: Mon Dec 1 16:26:21 2008 -0600
1152
1153 net: Add additional IP fragmentation check
1154
1155 Ignore IP packets which have the "more fragments" flag bit
1156 set. This flag indicates the IP packet is fragmented and
1157 must be ignored by U-Boot.
1158
1159 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1160 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1161
1162commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
1163Author: Peter Tyser <ptyser@xes-inc.com>
1164Date: Mon Dec 1 16:26:20 2008 -0600
1165
1166 net: Define IP flag field values
1167
1168 These defines were pulled from the "Add simple
1169 IP/UDP fragmentation support" patch from Frank
1170 Haverkamp <haver@vnet.ibm.com>.
1171
1172 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1173 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1174
1175commit 23afaba65ec5206757e589ef334a8b38168c045f
1176Author: Anatolij Gustschin <agust@denx.de>
1177Date: Tue Dec 2 10:31:04 2008 +0100
1178
1179 net: tsec: Fix Marvell 88E1121R phy init
1180
1181 This patch tries to ensure that phy interrupt pin
1182 won't be asserted after booting. We experienced
1183 following issues with current 88E1121R phy init:
1184
1185 Marvell 88E1121R phy can be hardware-configured
1186 to share MDC/MDIO and interrupt pins for both ports
1187 P0 and P1 (e.g. as configured on socrates board).
1188 Port 0 interrupt pin will be shared by both ports
1189 in such configuration. After booting Linux and
1190 configuring eth0 interface, port 0 phy interrupts
1191 are enabled. After rebooting without proper eth0
1192 interface shutdown port 0 phy interrupts remain
1193 enabled so any change on port 0 (link status, etc.)
1194 cause assertion of the interrupt. Now booting Linux
1195 and configuring eth1 interface will cause permanent
1196 phy interrupt storm as the registered phy 1 interrupt
1197 handler doesn't acknowledge phy 0 interrupts. This
1198 of course should be fixed in Linux driver too.
1199
1200 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1201 Acked-by: Andy Fleming <afleming@freescale.com>
1202 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1203
1204commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
1205Author: Peter Tyser <ptyser@xes-inc.com>
1206Date: Tue Dec 2 12:59:51 2008 -0600
1207
1208 net: Fix download command parsing
1209
1210 When CONFIG_SYS_HUSH_PARSER is defined network download
1211 commands with 1 argument in the format 'tftp "/path/file"'
1212 do not work as expected. The hush command parser strips
1213 the quotes from "/path/file" which causes the network
1214 commands to interpret "/path/file" as an address
1215 instead of the intended filename.
1216
1217 The previous check for a leading quote in netboot_common()
1218 was replaced with a check which ensures only valid
1219 numbers are treated as addresses.
1220
1221 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1222 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1223
1224commit 3c2c2f427905040c1513d0c51d637689cba48346
1225Author: Remy Bohmer <linux@bohmer.net>
1226Date: Thu Nov 27 22:30:27 2008 +0100
1227
1228 Remove non-ascii characters from fat code
1229
1230 This code contains some non-ascii characters in comment lines and code.
1231 Most editors do not display those characters properly and editing those
1232 files results always in diffs at these places which are usually not required
1233 to be changed at all. This is error prone.
1234
1235 So, remove those weird characters and replace them by normal C-style
1236 equivalents for which the proper defines were already in the header.
1237
1238 Signed-off-by: Remy Bohmer <linux@bohmer.net>
1239
1240commit dc889e865356497d3e495570118c2245ebce2631
1241Author: Dave Liu <daveliu@freescale.com>
1242Date: Fri Nov 28 20:16:58 2008 +0800
1243
1244 85xx: fix the wrong DDR settings for MPC8572DS
1245
1246 The default DDR freq is 400MHz or 800M data rate,
1247 the old settings is pure wrong for the default case.
1248
1249 Signed-off-by: Dave Liu <daveliu@freescale.com>
1250 Acked-by: Andy Fleming <afleming@freescale.com>
1251
1252commit 9df59533f77de2829b4b66e5b7620e04edaa391c
1253Author: Kumar Gala <galak@kernel.crashing.org>
1254Date: Mon Nov 24 10:29:26 2008 -0600
1255
1256 85xx: init gd as early as possible
1257
1258 Moved up the initialization of GD so C code like set_tlb() can use
1259 gd->flags to determine if we've relocated or not in the future.
1260
1261 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1262 Acked-by: Andy Fleming <afleming@freescale.com>
1263
1264commit aed461af81012a398a205e9be67ab37667491838
1265Author: Kumar Gala <galak@kernel.crashing.org>
1266Date: Mon Nov 24 10:29:25 2008 -0600
1267
1268 85xx: Fix relocation of CCSRBAR
1269
1270 If the virtual address for CCSRBAR is the same after relocation but
1271 the physical address is changing we'd end up having two TLB entries with
1272 the same VA. Instead we new us the new CCSRBAR virt address + 4k as a
1273 temp virt address to access the old CCSRBAR to relocate it.
1274
1275 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1276 Acked-by: Andy Fleming <afleming@freescale.com>
1277
1278commit ea154a1781135d822eedee7567cc156089eae93c
1279Author: Kumar Gala <galak@kernel.crashing.org>
1280Date: Mon Nov 24 10:25:14 2008 -0600
1281
1282 FSL: Moved BR_PHYS_ADDR for localbus to common header
1283
1284 The BR_PHYS_ADDR macro is useful on all machines that have local bus
1285 which is pretty much all 83xx/85xx/86xx chips.
1286
1287 Additionally most 85xx & 86xx will need it if they want to support
1288 36-bit physical addresses.
1289
1290 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1291 Acked-by: Andy Fleming <afleming@freescale.com>
1292
1293commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
1294Author: Peter Tyser <ptyser@xes-inc.com>
1295Date: Mon Dec 1 13:47:12 2008 -0600
1296
1297 85xx: Add PORDEVSR_PCI1 define
1298
1299 Add define used to determine if PCI1 interface is in PCI or PCIX mode.
1300
1301 Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
1302
1303 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1304 Signed-off-by: Andy Fleming <afleming@freescale.com>
1305
1306commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
1307Author: Becky Bruce <becky.bruce@freescale.com>
1308Date: Fri Nov 21 19:24:22 2008 -0600
1309
1310 drivers/fsl_pci_init: Fix inbound window mapping bug
1311
1312 The current code will cause the creation of a 4GB window
1313 starting at 0 if we have more than 4GB of RAM installed,
1314 which overlaps with PCI_MEM space and causes pci_bus_to_phys()
1315 to return erroneous information. Limit the size to 4GB - 1;
1316 which causes the code to create one 2GB and one 1GB window
1317 instead.
1318
1319 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1320 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1321 Acked-by: Andy Fleming <afleming@freescale.com>
1322
1323commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
1324Author: Jon Loeliger <jdl@freescale.com>
1325Date: Thu Nov 20 15:36:48 2008 -0600
1326
1327 Removed unused CONFIG_L1_INIT_RAM symbol.
1328
1329 Prevent further viral propogation of the unused
1330 symbol CONFIG_L1_INIT_RAM by just removing it.
1331
1332 Signed-off-by: Jon Loeliger <jdl@freescale.com>
1333 Acked-by: Andy Fleming <afleming@freescale.com>
1334
1335commit 7008d26a40a76f90cae5824c812cfed449fb97b8
1336Author: Ed Swarthout <Ed.Swarthout@freescale.com>
1337Date: Wed Oct 29 09:21:44 2008 -0500
1338
1339 fsl ddr skip interleaving if not supported.
1340
1341 Removed while(1) hang if memctl_intlv_ctl is set wrong.
1342 Remove embedded tabs from strings.
1343
1344 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
1345 Acked-by: Kumar Gala <galak@kernel.crashing.org>
1346 Acked-by: Andy Fleming <afleming@freescale.com>
1347
1348commit dd332e18d082de75eca3fc2c7c778f5d4571a096
1349Author: Anatolij Gustschin <agust@denx.de>
1350Date: Thu Nov 13 18:08:57 2008 +0100
1351
1352 85xx: socrates: fix DDR SDRAM tlb entry configuration
1353
1354 since commit be0bd8234b9777ecd63c4c686f72af070d886517
1355 tlb entry for socrates DDR SDRAM will be reconfigured
1356 by setup_ddr_tlbs() from initdram() causing an
1357 inconsistency with previously configured DDR SDRAM tlb
1358 entry from tlb_table:
1359
1360 socrates>l2cam 7 9
1361 IDX PID EPN SIZE V TS RPN U0-U3 WIMGE UUUSSS
1362 7 : 00 00000000 256MB V 0 -> 0_00000000 0000 -I-G- ---RWX
1363 8 : 00 00000000 256MB V 0 -> 0_00000000 0000 ----- ---RWX
1364 9 : 00 10000000 256MB V 0 -> 0_10000000 0000 ----- ---RWX
1365
1366 This patch makes the presence of the DDR SDRAM tlb entry in
1367 the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
1368 inconsistency.
1369
1370 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1371 Acked-by: Andy Fleming <afleming@freescale.com>
1372
1373commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
1374Author: Peter Tyser <ptyser@xes-inc.com>
1375Date: Tue Nov 11 10:17:10 2008 -0600
1376
1377 85xx: Add CPU 2 errata workaround to all 8548 boards
1378
1379 All mpc8548-based boards should implement the suggested workaround
1380 to CPU 2 errata. Without the workaround, its possible for the
1381 8548's core to hang while executing a msync or mbar 0 instruction
1382 and a snoopable transaction from an I/O master tagged to make
1383 quick forward progress is present.
1384
1385 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1386 Acked-by: Andy Fleming <afleming@freescale.com>
1387
1388commit e57f0fa1333cdf3ca36110aac2900712a5f82976
1389Author: Dave Liu <daveliu@freescale.com>
1390Date: Tue Oct 28 17:53:45 2008 +0800
1391
1392 85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
1393
1394 we need TLB entry for DDR at !SPD case.
1395
1396 Signed-off-by: Dave Liu <daveliu@freescale.com>
1397 Acked-by: Andy Fleming <afleming@freescale.com>
1398
1399commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
1400Author: Dave Liu <daveliu@freescale.com>
1401Date: Tue Oct 28 17:53:38 2008 +0800
1402
1403 85xx: remove the unused ddr_enable_ecc in the board file
1404
1405 The DDR controller of 8548/8544/8568/8572/8536 processors
1406 have the ECC data init feature, and the new DDR code is
1407 using the feature, and we don't need the way with DMA to
1408 init memory any more.
1409
1410 Signed-off-by: Dave Liu <daveliu@freescale.com>
1411 Acked-by: Andy Fleming <afleming@freescale.com>
1412
1413commit 4a129a57d923f7c15aa1f567028a80a32d66a100
1414Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1415Date: Sun Nov 30 19:36:53 2008 +0100
1416
1417 at91rm9200dk: Fix typo
1418
1419 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1420
1421commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
1422Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1423Date: Sun Nov 30 19:36:50 2008 +0100
1424
1425 AT91: remove non supported board AT91RM9200DF macro
1426
1427 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1428
1429commit bd876772ee04095e5dd943d97515a1f14bad4b1c
1430Author: Ilko Iliev <iliev@ronetix.at>
1431Date: Tue Dec 2 17:27:54 2008 +0100
1432
1433 mtd/dataflash.c: fix a problem with the last partition
1434
1435 This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
1436 partition can be defined to use the area to the end of dataflash size.
1437 Now it is possible to have only one dataflash partition from 0 to the end
1438 of of dataflash size.
1439
1440 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
1441
1442commit 03f797793b124dccaae145b977d15d6cb9e74504
1443Author: Ilko Iliev <iliev@ronetix.at>
1444Date: Tue Dec 2 17:20:17 2008 +0100
1445
1446 fix some coding style violations.
1447
1448 This patch fix some coding style violations.
1449
1450 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
1451
1452commit 5e46b1e54112f4b7fd5185665e571510132c12a7
1453Author: Stefan Roese <sr@denx.de>
1454Date: Thu Nov 27 14:11:37 2008 +0100
1455
1456 OneNAND: Add missing mtd info struct before calling onenand_erase()
1457
1458 Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
1459 for use in UBI) via CONFIG_MTD_PARTITIONS.
1460
1461 Signed-off-by: Stefan Roese <sr@denx.de>
1462 Signed-off-by: Scott Wood <scottwood@freescale.com>
1463
1464commit 29382d4064fbaff5daacff4c3209370fa5713966
1465Author: Becky Bruce <becky.bruce@freescale.com>
1466Date: Thu Nov 20 16:43:52 2008 -0600
1467
1468 mpc8641: Fix error in README
1469
1470 I made some updates to the code that didn't make it into the
1471 README - fix this
1472
1473 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
1474
1475commit 801a194616d95e6fc426a176d9615ccbf9876c7f
1476Author: Jon Loeliger <jdl@freescale.com>
1477Date: Thu Nov 20 12:01:02 2008 -0600
1478
1479 Removed unused CONFIG_L1_INIT_RAM symbol.
1480
1481 Prevent further viral propogation of the unused
1482 symbol CONFIG_L1_INIT_RAM by just removing it.
1483
1484 Signed-off-by: Jon Loeliger <jdl@freescale.com>
1485
1486commit f698738e46cb461e28c2d58228bb34a2fcf5a475
1487Author: Jon Loeliger <jdl@freescale.com>
1488Date: Thu Nov 20 14:02:56 2008 -0600
1489
1490 86xx: Fix non-64-bit compilation problems.
1491
1492 Introducing 64-bit (36-bit) support for the MPC8641HPCN
1493 failed to accomodate the other two 86xx boards.
1494 Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
1495 CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
1496 with nominal 32-bit values.
1497
1498 Signed-off-by: Jon Loeliger <jdl@freescale.com>
1499 Acked-by: Becky Bruce <becky.bruce@freescale.com>
1500
1501commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
1502Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
1503Date: Wed Nov 26 17:40:37 2008 +0100
1504
1505 Remove obsolete command (apply afte USB style patch, 80 chars strict)
1506
1507 Remove USB obsolete commmand
1508
1509 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
1510 Signed-off-by: Remy Böhmer <linux@bohmer.net>
1511
1512commit de39f8c19d7c12017248c49d432dcb81db68f724
1513Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
1514Date: Wed Nov 26 17:41:34 2008 +0100
1515
1516 USB style patch, 80 chars strict
1517
1518 USB Code style patch
1519
1520 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
1521 Signed-off-by: Remy Böhmer <linux@bohmer.net>
1522
1523commit d10c5a87cb8affbb4d35a311370316d4383d598e
1524Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1525Date: Fri Nov 7 22:46:21 2008 +0100
1526
1527 drivers/usb: Move conditional compilation to Makefile
1528
1529 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1530 Signed-off-by: Remy Böhmer <linux@bohmer.net>
1531
1532commit 2077e348c2a84901022ad95311b47b70361e6daa
1533Author: Scott Wood <scottwood@freescale.com>
1534Date: Tue Nov 25 10:47:02 2008 -0600
1535
1536 NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
1537
1538 This caused the operation to be needlessly repeated if there were
1539 no bad blocks and no errors.
1540
1541 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
1542 Signed-off-by: Scott Wood <scottwood@freescale.com>
1543
1544commit 89295028e7d8f7a524f485328279d72fdb102385
1545Author: Michal Simek <monstr@monstr.eu>
1546Date: Mon Nov 24 12:09:50 2008 +0100
1547
1548 ppc4xx: ml300 remove Xilinx BSP from ml300 folder
1549
1550 This BSP should be outside u-boot source tree.
1551 The second reason is that xilinx ppc405 was moved to generic platform.
1552
1553 Signed-off-by: Michal Simek <monstr@monstr.eu>
1554 Signed-off-by: Stefan Roese <sr@denx.de>
1555
1556commit 24eea623d4974a169026a975ba12fb23d48154b1
1557Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1558Date: Mon Nov 24 15:11:10 2008 +0100
1559
1560 ppc4xx: Remove unused features
1561
1562 This patch disables some unused features from the PCI405 configuration
1563 to keep U-Boot image size below 192k.
1564
1565 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1566 Signed-off-by: Stefan Roese <sr@denx.de>
1567
1568commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
1569Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1570Date: Mon Nov 24 15:11:09 2008 +0100
1571
1572 ppc4xx: Use correct io accessors for PCI405
1573
1574 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1575 Signed-off-by: Stefan Roese <sr@denx.de>
1576
1577commit 348c849d86a6f0785752b9bc497a34658713d1d1
1578Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1579Date: Mon Nov 24 15:11:08 2008 +0100
1580
1581 ppc4xx: Remove unused code from PCI405 code
1582
1583 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1584 Signed-off-by: Stefan Roese <sr@denx.de>
1585
1586commit 58c696eed839af894e0265064669c402dc28b371
1587Author: Wolfgang Denk <wd@xpert.denx.de>
1588Date: Mon Nov 24 21:50:59 2008 +0100
1589
1590 AT91RM9200DK: fix broken boot from NOR flash
1591
1592 Signed-off-by: Wolfgang Denk <wd@denx.de>
1593
1594commit 8052352f20b33bef8f9872fc983eac73d4693c38
1595Author: Jens Scharsig <esw@bus-elektronik.de>
1596Date: Tue Nov 18 10:48:46 2008 +0100
1597
1598 at91rm9200: fix broken boot from nor flash
1599
1600 This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
1601 CONFIG_AT91RM9200 is defined and nor preloader is used.
1602
1603 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
1604
1605commit 25ea652e907516a283b38237e83712a918f125d7
1606Author: Piotr Ziecik <kosmo@semihalf.com>
1607Date: Mon Nov 17 15:58:00 2008 +0100
1608
1609 UBI: Add proof-of-concept CFI flash support
1610
1611 With this patch UBI can be used on CFI flash chips.
1612
1613 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
1614 Signed-off-by: Stefan Roese <sr@denx.de>
1615
1616commit e6a7edbc1778d27431ac663b40a71dafa5d20578
1617Author: Piotr Ziecik <kosmo@semihalf.com>
1618Date: Mon Nov 17 15:57:59 2008 +0100
1619
1620 mtd: Remove a printf() from add_mtd_device().
1621
1622 Remove a printf() from add_mtd_device(), which produces spurious output.
1623
1624 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
1625 Signed-off-by: Stefan Roese <sr@denx.de>
1626
1627commit 91809ed51d8327a8dbbf29aa98a091154c282171
1628Author: Piotr Ziecik <kosmo@semihalf.com>
1629Date: Mon Nov 17 15:57:58 2008 +0100
1630
1631 cfi-mtd: Add cfi-mtd driver.
1632
1633 Add cfi-mtd driver, which exports CFI flash to MTD layer.
1634 This allows CFI flash devices to be used from MTD layer.
1635
1636 Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
1637 option. Initialization is done by calling cfi_mtd_init() from
1638 flash_init().
1639
1640 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
1641 Signed-off-by: Stefan Roese <sr@denx.de>
1642
1643commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
1644Author: Piotr Ziecik <kosmo@semihalf.com>
1645Date: Mon Nov 17 15:49:32 2008 +0100
1646
1647 cfi_flash: Add interface for flash verbosity control
1648
1649 Add interface for flash verbosity control. It allows
1650 to disable output from low-level flash API. It is useful
1651 when calling these low-level functions from context other
1652 than flash commands (for example the MTD/CFI interface
1653 implmentation).
1654
1655 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
1656 Signed-off-by: Stefan Roese <sr@denx.de>
1657
1658commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
1659Author: Piotr Ziecik <kosmo@semihalf.com>
1660Date: Thu Nov 20 15:17:38 2008 +0100
1661
1662 cfi_flash: Export flash_sector_size() function.
1663
1664 Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
1665 so that it can be used in the upcoming cfi-mtd driver.
1666
1667 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
1668 Signed-off-by: Stefan Roese <sr@denx.de>
1669
1670commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
1671Author: Stefan Roese <sr@denx.de>
1672Date: Mon Nov 17 14:45:22 2008 +0100
1673
1674 cfi_flash: Make all flash access functions weak
1675
1676 This patch defines all flash access functions as weak so that
1677 they can be overridden by board specific versions.
1678
1679 This will be used by the upcoming VCTH board support where the NOR
1680 FLASH unfortunately can't be accessed memory-mapped. Special
1681 accessor functions are needed here.
1682
1683 To enable this weak functions you need to define
1684 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
1685 Otherwise the "old" default functions will be used resulting
1686 in smaller code.
1687
1688 Signed-off-by: Stefan Roese <sr@denx.de>
1689 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1690
1691commit a5c4067017631d903e1afa6ad615f0ce19fea517
1692Author: Stefan Roese <sr@denx.de>
1693Date: Mon Nov 24 08:31:16 2008 +0100
1694
1695 UBI: Change parsing of size in commands to default to hex
1696
1697 Currently the size parameters of the UBI commands (e.g. "ubi write") are
1698 decoded as decimal instead of hex as default. This patch now interprets
1699 all these values consistantly as hex, as all other standard U-Boot commands
1700 do.
1701
1702 Signed-off-by: Stefan Roese <sr@denx.de>
1703
1704commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
1705Author: Stefan Roese <sr@denx.de>
1706Date: Fri Nov 21 13:06:06 2008 +0100
1707
1708 ppc4xx: ML2 shouldn't include the 4xx EMAC driver
1709
1710 Signed-off-by: Stefan Roese <sr@denx.de>
1711
1712commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
1713Author: Yuri Tikhonov <yur@emcraft.com>
1714Date: Fri Nov 14 16:19:19 2008 +0300
1715
1716 ppc4xx: katmai: Change default config
1717
1718 This patch enables support for EXT2, and increases the
1719 CONFIG_SYS_BOOTMAPSZ size for the default configuration
1720 of the katmai boards to use them as the RAID-reference
1721 AMCC setups.
1722
1723 EXT2 enabling allows one to boot kernels from the EXT2
1724 formatted Compact Flash cards.
1725
1726 CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
1727 Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
1728 the memory area with DTB file (which is placed at the
1729 end of the bootmap area) will turn out to be overlapped
1730 with the BSS segment of the 256KB kernel, and zeroed
1731 in early_init() of Linux.
1732
1733 Actually, increasing of the bootmap size could be done
1734 via setting of the bootm_size U-Boot variable, but it looks
1735 like the current U-Boot implementation have some bootm_size-
1736 related functionality lost. In many places through the U-Boot
1737 code the CONFIG_SYS_BOOTMAPSZ definition is used directly
1738 (instead of trying to read the corresponding value from the
1739 environment). The same is truth for the boot_jump_linux()
1740 function in lib_ppc/bootm.c, where U-Boot transfers control
1741 to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
1742 value to the booting kernel.
1743
1744 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
1745 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
1746 Signed-off-by: Stefan Roese <sr@denx.de>
1747
1748commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
1749Author: Dave Mitchell <dmitch71@gmail.com>
1750Date: Thu Nov 20 14:09:50 2008 -0600
1751
1752 ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
1753
1754 Expanded OCM TLB to allow access to 64K OCM as well as 256K of
1755 internal SRAM.
1756
1757 Adjusted internal SRAM initialization to match updated user
1758 manual recommendation.
1759
1760 OCM & ISRAM are now mapped as follows:
1761 physical virtual size
1762 ISRAM 0x4_0000_0000 0xE300_0000 256k
1763 OCM 0x4_0004_0000 0xE304_0000 64k
1764
1765 A single TLB was used for this mapping.
1766
1767 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
1768 Signed-off-by: Stefan Roese <sr@denx.de>
1769
1770commit b14ca4b61a681f75f3125676e09d7ce6af66e927
1771Author: Dave Mitchell <dmitch71@gmail.com>
1772Date: Thu Nov 20 14:00:49 2008 -0600
1773
1774 ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
1775
1776 Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
1777 L2 cache DCRs from ppc440.h to this new header.
1778
1779 Also converted these DCR defines from lowercase to uppercase and
1780 modified referencing modules to use them.
1781
1782 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
1783 Signed-off-by: Stefan Roese <sr@denx.de>
1784
1785commit 711e2b2af820d21d9931d4cf8057d3894600fd54
1786Author: Steven A. Falco <sfalco@harris.com>
1787Date: Thu Nov 20 14:37:57 2008 -0500
1788
1789 ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
1790
1791 The definitions of bits in SDR_CFG are incorrect, and not used within
1792 U-Boot. Therefore, they can be removed.
1793
1794 The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
1795 and are unused, so they can be removed too.
1796
1797 A definition for SDR0_DDRCFG is added.
1798
1799 Signed-off-by: Steven A. Falco <sfalco@harris.com>
1800 Signed-off-by: Stefan Roese <sr@denx.de>
1801
1802commit e23c7c95a96eb0f068efe5c532215a10a1512a95
1803Author: Dirk Behme <dirk.behme@gmail.com>
1804Date: Mon Nov 10 20:15:25 2008 +0100
1805
1806 ARM: OMAP: Convert IO macros
1807
1808 Convert IO macros to readx/writex.
1809
1810 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
1811
1812commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
1813Author: Ilko Iliev <iliev@ronetix.at>
1814Date: Sun Nov 9 15:53:14 2008 +0100
1815
1816 lib_arm: do_bootm_linux() - correct a small mistake
1817
1818 This patch corrects a small bug in the "if" condition:
1819 the parameter "flag" is 0 and the "if" condition is always true.
1820 The result is - the boom command doesn't start the kernel.
1821 Affected targets: all arm based.
1822
1823 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
1824
1825commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
1826Author: Stelian Pop <stelian@popies.net>
1827Date: Sun Nov 9 00:14:46 2008 +0100
1828
1829 AT91: Enable PLLB for USB
1830
1831 At least some (old ?) versions of the AT91Bootstrap do not set up the
1832 PLLB correctly to 48 MHz in order to make USB host function correctly.
1833
1834 This patch sets up the PLLB to the same values Linux uses, and makes USB
1835 work ok on the following CPUs:
1836 - AT91CAP9
1837 - AT91SAM9260
1838 - AT91SAM9263
1839
1840 This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
1841 the relevant AT91CAP9/AT91SAM9 atmel boards.
1842
1843 Signed-off-by: Stelian Pop <stelian@popies.net>
1844 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1845
1846commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
1847Author: Stelian Pop <stelian@popies.net>
1848Date: Fri Nov 7 13:55:14 2008 +0100
1849
1850 AT91: Use AT91_CPU_CLOCK in displays
1851
1852 Introduce AT91_CPU_CLOCK and use it for displaying the CPU
1853 speed in the LCD driver.
1854
1855 Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
1856 corresponding board clocks.
1857
1858 Signed-off-by: Stelian Pop <stelian@popies.net>
1859
1860commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
1861Author: Stefan Roese <sr@denx.de>
1862Date: Thu Nov 20 11:46:20 2008 +0100
1863
1864 ppc4xx: Clear all potentially pending exceptions in MCSR
1865
1866 This is needed on Canyonlands which still has an exception pending
1867 while running relocate_code(). This leads to a failure after trap_init()
1868 is moved to the top of board_init_r().
1869
1870 Signed-off-by: Stefan Roese <sr@denx.de>
1871
1872commit facdad5f2602e899a01746916beddbf9e856b5ee
1873Author: Heiko Schocher <hs@denx.de>
1874Date: Wed Nov 19 10:10:30 2008 +0100
1875
1876 powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
1877
1878 Signed-off-by: Heiko Schocher <hs@denx.de>
1879 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1880
1881commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
1882Author: Howard Gregory <Greg.Howard@freescale.com>
1883Date: Tue Nov 4 14:55:33 2008 +0800
1884
1885 mpc83xx: Improve the performance of DDR memory
1886
1887 modify the CAS timings. my understanding is that these
1888 settings decrease various wait times in the DDR interface.
1889 Because these wait times are in clock cycles, and the DDR
1890 clock on the 8315 RDB runs slower than on some other 83xx
1891 platforms, we can dial down these values without a problem,
1892 thereby decreasing the latency of memory a little.
1893
1894 Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
1895 Signed-off-by: Dave Liu <daveliu@freescale.com>
1896 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1897
1898commit 8000b086b33a5a81f3f390f37e178db7956dc08b
1899Author: Kyungmin Park <kyungmin.park@samsung.com>
1900Date: Fri Oct 24 14:55:33 2008 +0200
1901
1902 ARM: Add Apollon UBI support
1903
1904 To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
1905 macro.
1906
1907 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1908 Signed-off-by: Stefan Roese <sr@denx.de>
1909
1910commit 694a0b3f1c0accd0de94b89555155d69f8022824
1911Author: Kyungmin Park <kyungmin.park@samsung.com>
1912Date: Wed Nov 19 11:47:05 2008 +0100
1913
1914 UBI: Add UBI command support
1915
1916 This patch adds these UBI commands:
1917
1918 ubi part [nand|onenand] [part] - Show or set current partition
1919 ubi info [l[ayout]] -Display volume and UBI layout information
1920 ubi create[vol] volume [size] [type] - Create volume name with size
1921 ubi write[vol] address volume size - Write volume from address with size
1922 ubi read[vol] address volume [size] - Read volume to address with size
1923 ubi remove[vol] volume - Remove volume
1924
1925 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1926 Signed-off-by: Stefan Roese <sr@denx.de>
1927
1928commit 58be3a1056d88c6d05f3e914389282807e69923a
1929Author: Kyungmin Park <kyungmin.park@samsung.com>
1930Date: Wed Nov 19 16:38:24 2008 +0100
1931
1932 UBI: Add basic UBI support to U-Boot (Part 8/8)
1933
1934 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
1935 It's based on the Linux UBI version and basically has a "OS"
1936 translation wrapper that defines most Linux specific calls
1937 (spin_lock() etc.) into no-ops. Some source code parts have been
1938 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
1939 this version with the Linux version and simplifies future UBI
1940 ports/bug-fixes from the Linux version.
1941
1942 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1943 Signed-off-by: Stefan Roese <sr@denx.de>
1944
1945commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
1946Author: Kyungmin Park <kyungmin.park@samsung.com>
1947Date: Wed Nov 19 16:36:36 2008 +0100
1948
1949 UBI: Add basic UBI support to U-Boot (Part 7/8)
1950
1951 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
1952 It's based on the Linux UBI version and basically has a "OS"
1953 translation wrapper that defines most Linux specific calls
1954 (spin_lock() etc.) into no-ops. Some source code parts have been
1955 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
1956 this version with the Linux version and simplifies future UBI
1957 ports/bug-fixes from the Linux version.
1958
1959 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1960 Signed-off-by: Stefan Roese <sr@denx.de>
1961
1962commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
1963Author: Kyungmin Park <kyungmin.park@samsung.com>
1964Date: Wed Nov 19 16:32:36 2008 +0100
1965
1966 UBI: Add basic UBI support to U-Boot (Part 6/8)
1967
1968 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
1969 It's based on the Linux UBI version and basically has a "OS"
1970 translation wrapper that defines most Linux specific calls
1971 (spin_lock() etc.) into no-ops. Some source code parts have been
1972 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
1973 this version with the Linux version and simplifies future UBI
1974 ports/bug-fixes from the Linux version.
1975
1976 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1977 Signed-off-by: Stefan Roese <sr@denx.de>
1978
1979commit c91a719daa331b5856109313371e4ece5ec06d96
1980Author: Kyungmin Park <kyungmin.park@samsung.com>
1981Date: Wed Nov 19 16:28:06 2008 +0100
1982
1983 UBI: Add basic UBI support to U-Boot (Part 5/8)
1984
1985 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
1986 It's based on the Linux UBI version and basically has a "OS"
1987 translation wrapper that defines most Linux specific calls
1988 (spin_lock() etc.) into no-ops. Some source code parts have been
1989 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
1990 this version with the Linux version and simplifies future UBI
1991 ports/bug-fixes from the Linux version.
1992
1993 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1994 Signed-off-by: Stefan Roese <sr@denx.de>
1995
1996commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
1997Author: Kyungmin Park <kyungmin.park@samsung.com>
1998Date: Wed Nov 19 16:27:23 2008 +0100
1999
2000 UBI: Add basic UBI support to U-Boot (Part 4/8)
2001
2002 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
2003 It's based on the Linux UBI version and basically has a "OS"
2004 translation wrapper that defines most Linux specific calls
2005 (spin_lock() etc.) into no-ops. Some source code parts have been
2006 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
2007 this version with the Linux version and simplifies future UBI
2008 ports/bug-fixes from the Linux version.
2009
2010 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2011 Signed-off-by: Stefan Roese <sr@denx.de>
2012
2013commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
2014Author: Kyungmin Park <kyungmin.park@samsung.com>
2015Date: Wed Nov 19 16:26:54 2008 +0100
2016
2017 UBI: Add basic UBI support to U-Boot (Part 3/8)
2018
2019 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
2020 It's based on the Linux UBI version and basically has a "OS"
2021 translation wrapper that defines most Linux specific calls
2022 (spin_lock() etc.) into no-ops. Some source code parts have been
2023 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
2024 this version with the Linux version and simplifies future UBI
2025 ports/bug-fixes from the Linux version.
2026
2027 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2028 Signed-off-by: Stefan Roese <sr@denx.de>
2029
2030commit 961df83361aff9a14f226214224eb8a06e05ba24
2031Author: Kyungmin Park <kyungmin.park@samsung.com>
2032Date: Wed Nov 19 16:25:44 2008 +0100
2033
2034 UBI: Add basic UBI support to U-Boot (Part 2/8)
2035
2036 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
2037 It's based on the Linux UBI version and basically has a "OS"
2038 translation wrapper that defines most Linux specific calls
2039 (spin_lock() etc.) into no-ops. Some source code parts have been
2040 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
2041 this version with the Linux version and simplifies future UBI
2042 ports/bug-fixes from the Linux version.
2043
2044 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2045 Signed-off-by: Stefan Roese <sr@denx.de>
2046
2047commit f399d4a281713d5ef2d764f05d545fe61e3bd569
2048Author: Kyungmin Park <kyungmin.park@samsung.com>
2049Date: Wed Nov 19 16:23:06 2008 +0100
2050
2051 UBI: Add basic UBI support to U-Boot (Part 1/8)
2052
2053 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
2054 It's based on the Linux UBI version and basically has a "OS"
2055 translation wrapper that defines most Linux specific calls
2056 (spin_lock() etc.) into no-ops. Some source code parts have been
2057 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
2058 this version with the Linux version and simplifies future UBI
2059 ports/bug-fixes from the Linux version.
2060
2061 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2062 Signed-off-by: Stefan Roese <sr@denx.de>
2063
2064commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
2065Author: Kyungmin Park <kyungmin.park@samsung.com>
2066Date: Wed Nov 19 16:20:36 2008 +0100
2067
2068 MTD: Add MTD paritioning infrastructure
2069
2070 This MTD part infrastructure will be used by the upcoming
2071 UBI support.
2072
2073 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2074 Signed-off-by: Stefan Roese <sr@denx.de>
2075
2076commit 9b827cf1720acda2473afa516956eab6f7cca9a1
2077Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
2078Date: Thu Oct 16 22:54:03 2008 +0530
2079
2080 Align end of bss by 4 bytes
2081
2082 Most of the bss initialization loop increments 4 bytes
2083 at a time. And the loop end is checked for an 'equal'
2084 condition. Make the bss end address aligned by 4, so
2085 that the loop will end as expected.
2086
2087 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
2088 Signed-off-by: Wolfgang Denk <wd@denx.de>
2089
2090commit 3f510db522d160179dff3ddcce9b18f6241c2c24
2091Author: Becky Bruce <becky.bruce@freescale.com>
2092Date: Mon Nov 10 19:45:35 2008 -0600
2093
2094 mpc8641: fix address-cells default in old .dts detection
2095
2096 address-cells defaults to 2, not 1; so in the unlikely
2097 event that it isn't specified, this patch is required
2098 for correct operation.
2099
2100 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2101
2102commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
2103Author: Becky Bruce <becky.bruce@freescale.com>
2104Date: Fri Oct 31 17:14:39 2008 -0500
2105
2106 lib_ppc: Move trap_init to occur earlier
2107
2108 Doing trap_init immediately once we're running from RAM
2109 means we're no longer dependent on the physical location of
2110 the flash on non-BookE platforms. Before trap_init, those
2111 platforms switch to real mode and go to 0xfff00100 on exception.
2112 After the switch, they go to 0x00000100 This makes it easier to
2113 move the flash location.
2114
2115 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2116
2117commit d52082b12c6e545705a19433a2f4142526536189
2118Author: Becky Bruce <becky.bruce@freescale.com>
2119Date: Fri Nov 7 13:46:19 2008 -0600
2120
2121 mpc8641: Try to detect old .dts files
2122
2123 Since we've changed the memory map of the board, be nice and
2124 add some checking to try to catch out-of-date .dts files. We do
2125 this by checking the CCSRBAR location in the .dts and comparing
2126 it to the CCSRBAR location in u-boot. If they don't match, a
2127 warning msg is printed. This isn't foolproof, but it's simple and
2128 will catch most of the cases where an out-of-date .dts is present,
2129 including all of the cases where a new u-boot is used with an old
2130 standard MPC8641 .dts file as supplied with Linux.
2131
2132 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2133
2134commit 8db0400a27839f91c047dcb83f4a0f09e054a180
2135Author: Becky Bruce <becky.bruce@freescale.com>
2136Date: Thu Nov 6 13:04:09 2008 -0600
2137
2138 toplevel Makefile: Add MPC8641HPCN_36BIT target
2139
2140 This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
2141
2142 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2143
2144commit 3111d32c494e8251b90917447796a7206b757e1e
2145Author: Becky Bruce <becky.bruce@freescale.com>
2146Date: Thu Nov 6 17:37:35 2008 -0600
2147
2148 mpc8641: Support 36-bit physical addressing
2149
2150 This patch creates a memory map with all the devices
2151 in 36-bit physical space, in addition to the 32-bit map.
2152 The CCSR relocation is moved (again, sorry) to
2153 allow for the physical address to be 36 bits - this
2154 requires translation to be enabled. With 36-bit physical
2155 addressing enabled, we are no longer running with VA=PA
2156 translations. This means we have to distinguish between
2157 the two in the config file. The existing region name is
2158 used to indicate the virtual address, and a _PHYS variety
2159 is created to represent the physical address.
2160
2161 Large physical addressing is not enabled by default.
2162 Set CONFIG_PHYS_64BIT in the config file to turn this on.
2163
2164 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2165
2166commit c759a01a0022de9378a3a761f49786f87684c916
2167Author: Becky Bruce <becky.bruce@freescale.com>
2168Date: Thu Nov 6 17:36:04 2008 -0600
2169
2170 mpc8641: Change 32-bit memory map
2171
2172 The memory map on the 8641hpcn is modified to look more like
2173 the 85xx boards; this is a step towards a more standardized
2174 layout going forward. As part of this change, we now relocate
2175 the flash.
2176
2177 The regions for some of the mappings were far larger than they
2178 needed to be. I have reduced the mappings to match the
2179 actual sizes supported by the hardware.
2180
2181 In addition I have removed the comments at the head
2182 of the BAT blocks in the config file, rather than updating
2183 them. These get horribly out of date, and it's a simple
2184 matter to look at the defines to see what they are set to
2185 since everything is right here in the same file.
2186
2187 Documentation has been changed to reflect the new map, as this
2188 change is user visible, and affects the OS which runs post-uboot.
2189
2190 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2191
2192commit bf9a8c34309ed9276258295db9e9212aabb2531a
2193Author: Becky Bruce <becky.bruce@freescale.com>
2194Date: Wed Nov 5 14:55:35 2008 -0600
2195
2196 mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
2197
2198 We define CONFIG_MONITOR_BASE_EARLY to define the initial location
2199 of the bootpage in flash. Use this to create an early mapping
2200 definition for the FLASH, and change the early_bats code to use this.
2201
2202 This change facilitates the relocation of the flash since the early
2203 mappings are no longer tied to the final location of the flash.
2204
2205 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2206
2207commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
2208Author: Becky Bruce <becky.bruce@freescale.com>
2209Date: Wed Nov 5 14:55:34 2008 -0600
2210
2211 mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
2212
2213 Using a mtmsr/blr means that you have to be executing at the
2214 same virtual address once you enable translation. This is
2215 unnecessarily restrictive, and is not really how this is
2216 usually done. Change it to use the more common mtspr SRR0/SRR1
2217 and rfi method.
2218
2219 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2220
2221commit 6bf98b1362f0cb237620355ed3e6762fff82388d
2222Author: Becky Bruce <becky.bruce@freescale.com>
2223Date: Wed Nov 5 14:55:33 2008 -0600
2224
2225 mpc8641: make DIAG_ADDR == FLASH_BASE
2226
2227 Currently, that's what it is, but it's hardcoded.
2228
2229 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2230
2231commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
2232Author: Becky Bruce <becky.bruce@freescale.com>
2233Date: Wed Nov 5 14:55:32 2008 -0600
2234
2235 mpc8641: Drop imaginary second flash bank, map 8MB
2236
2237 There's a lot of setup and foo for the second flash
2238 bank. The problem is, this board doesn't actually have one.
2239 Clean this up. Also, the flash is 8M in size. Get rid
2240 of the confusing aliased overmapping, and just map 8M.
2241
2242 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2243
2244commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
2245Author: Becky Bruce <becky.bruce@freescale.com>
2246Date: Wed Nov 5 14:55:31 2008 -0600
2247
2248 mpc8641: only define CONFIG_ENV_SIZE once
2249
2250 It's currently defined twice inside in an if/else block, but
2251 both halves set the same value. Move the define outside
2252 the if.
2253
2254 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2255
2256commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
2257Author: Becky Bruce <becky.bruce@freescale.com>
2258Date: Wed Nov 5 14:55:30 2008 -0600
2259
2260 mpc86xx: Move setup_bats into cpu_init_f
2261
2262 In order to later allow for a physical relocation of the
2263 flash, setup_bats, which sets up the final BAT mapping
2264 for the board, needs to happen *after* init_laws().
2265 Otherwise, there will be no window programmed for the flash
2266 at the new physical location at the point when we change
2267 the mmu translation.
2268
2269 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2270
2271commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
2272Author: Becky Bruce <becky.bruce@freescale.com>
2273Date: Wed Nov 5 14:55:29 2008 -0600
2274
2275 mpc8641: Remove extra "0" from BR2 define
2276
2277 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2278
2279commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
2280Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
2281Date: Thu Oct 23 09:08:18 2008 -0400
2282
2283 drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
2284
2285 Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
2286 This adds support for PHY-less MAC connections to the UEC.
2287
2288 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
2289 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2290
2291commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
2292Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2293Date: Thu Oct 23 16:27:24 2008 +0000
2294
2295 ColdFire: Add mii driver in drivers/net
2296
2297 All CF platforms' mii.c are consolidated into one
2298
2299 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2300 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2301
2302commit 25a859066b3af1070eb69f12022113c0a91bd813
2303Author: Ben Warren <biggerbadderben@gmail.com>
2304Date: Mon Oct 27 23:53:17 2008 -0700
2305
2306 Moved initialization of PPC4xx EMAC to cpu_eth_init()
2307
2308 Removed initialization of the driver from net/eth.c
2309
2310 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2311 Acked-by: Stefan Roese <sr@denx.de>
2312
2313commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
2314Author: Ben Warren <biggerbadderben@gmail.com>
2315Date: Sun Nov 9 21:29:23 2008 -0800
2316
2317 Moved PPC4xx EMAC driver to drivers/net
2318
2319 Also changed path in all linker scripts that reference this driver
2320
2321 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2322 Acked-by: Stefan Roese <sr@denx.de>
2323
2324commit 96e21f86e8266ed40759e5495ee461265d7f6d28
2325Author: Ben Warren <biggerbadderben@gmail.com>
2326Date: Mon Oct 27 23:50:15 2008 -0700
2327
2328 Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
2329
2330 All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
2331
2332 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2333 Acked-by: Stefan Roese <sr@denx.de>
2334
2335commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
2336Author: Ben Warren <biggerbadderben@gmail.com>
2337Date: Thu Oct 23 22:02:49 2008 -0700
2338
2339 Moved initialization of MPC8XX SCC to cpu_eth_init()
2340
2341 Removed initialization of the driver from net/eth.c
2342
2343 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2344
2345commit a9bec96d6359ac9f90a852962bf3040cad9e0256
2346Author: Ben Warren <biggerbadderben@gmail.com>
2347Date: Wed Oct 22 23:47:51 2008 -0700
2348
2349 Moved initialization of MPC8220 FEC to cpu_eth_init()
2350
2351 Removed initialization of the driver from net/eth.c
2352
2353 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2354
2355commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
2356Author: Ben Warren <biggerbadderben@gmail.com>
2357Date: Wed Oct 22 23:32:48 2008 -0700
2358
2359 Moved initialization of QE Ethernet controller to cpu_eth_init()
2360
2361 Removed initialization of the driver from net/eth.c
2362
2363 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2364
2365commit 3456a148276d5494b53ee40242efb6462d163504
2366Author: Ben Warren <biggerbadderben@gmail.com>
2367Date: Wed Oct 22 23:20:29 2008 -0700
2368
2369 Moved initialization of FCC Ethernet controller to cpu_eth_init
2370
2371 Affected boards:
2372 Several MPC8xx boards
2373 Several MPC8260/MPC8272 boards
2374 Several MPC85xx boards
2375
2376 Removed initialization of the driver from net/eth.c
2377
2378 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2379
2380commit 62e15b497f5c6334c059512678c8db7940ae4c61
2381Author: Ben Warren <biggerbadderben@gmail.com>
2382Date: Thu Oct 30 22:15:35 2008 -0700
2383
2384 Fix typo in cpu/mpc85xx/cpu.c
2385
2386 CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
2387
2388 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2389
2390commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
2391Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2392Date: Sun Oct 19 12:08:50 2008 +0900
2393
2394 net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
2395
2396 This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
2397 as a part of ongoing eth_initialize cleanup work. The function ret value
2398 is also fixed as it should be negative on fail.
2399
2400 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2401 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2402
2403commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
2404Author: Ben Warren <biggerbadderben@gmail.com>
2405Date: Fri Sep 5 01:55:22 2008 -0400
2406
2407 Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
2408
2409 Also, removed the driver initialization from net/eth.c
2410
2411 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2412
2413commit f2a7806fc23e82d30c8548911369e0c530607354
2414Author: Clive Stubbings <uboot@xentech.co.uk>
2415Date: Mon Oct 27 15:05:00 2008 +0000
2416
2417 xilinx_emaclite buffer overrun
2418
2419 Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
2420 PKTSIZE_ALIGN bytes long.
2421
2422 Acked-by: Michal Simek <monstr@monstr.eu>
2423
2424 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2425
2426commit 0115b1953718a2969f6469d3d5da51ba11e12d42
2427Author: richardretanubun <richardretanubun@ruggedcom.com>
2428Date: Fri Sep 26 08:59:12 2008 -0400
2429
2430 NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
2431
2432 The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
2433 This patch makes these function use the devname argument that is passed in to
2434 allow access to the phy registers of other devices in devlist[].
2435
2436 Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
2437
2438 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2439
2440commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
2441Author: richardretanubun <richardretanubun@ruggedcom.com>
2442Date: Mon Oct 6 15:31:43 2008 -0400
2443
2444 Adds two more ethernet interface to 83xx
2445
2446 Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
2447 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
2448 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2449
2450commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
2451Author: Stelian Pop <stelian@popies.net>
2452Date: Fri Nov 7 13:54:31 2008 +0100
2453
2454 AT91: Replace AT91_BASE_EMAC by the board specific values.
2455
2456 AT91_BASE_EMAC is never used outside the board specific files,
2457 so replace its usage by the board specific AT91xxx_BASE_EMAC.
2458
2459 Signed-off-by: Stelian Pop <stelian@popies.net>
2460 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2461
2462commit c91e17affa175ce06afa89b04752301eb4a61666
2463Author: Stelian Pop <stelian@popies.net>
2464Date: Fri Nov 7 12:09:21 2008 +0100
2465
2466 AT91: Replace (undefined) AT91_ID_US* by the board specific values.
2467
2468 AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
2469 Since they are never used outside the board specific files, they can
2470 be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
2471 AT91xxx_ID_US2.
2472
2473 Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
2474
2475 Signed-off-by: Stelian Pop <stelian@popies.net>
2476 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2477
2478commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
2479Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2480Date: Sat Nov 1 10:47:59 2008 +0100
2481
2482 Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
2483
2484 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2485
2486commit 1079432e04ccf71aa3684181186182cd63512f19
2487Author: Sergey Lapin <slapin@ossfans.org>
2488Date: Fri Oct 31 12:28:43 2008 +0100
2489
2490 Custom AFEB9260 board support
2491
2492 This patch provides support for AFEB9260 board, a product of
2493 OpenSource hardware and software. Some commertial projects
2494 are made with this design. A board is basically AT91SAM9260-EK
2495 with some modifications and different peripherals and different
2496 parts used. Main purpose of this project is to gain experience in
2497 hardware design.
2498 More info: http://groups.google.com/group/arm9fpga-evolution-board
2499 (In Russian only, sorry).
2500 Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
2501
2502 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
2503
2504commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
2505Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
2506Date: Tue Oct 21 13:17:16 2008 +0900
2507
2508 Change to use "do_div" macro
2509
2510 Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
2511
2512commit e352495318d8056a00faa21b633b3e4374bfbf52
2513Author: Roman Mashak <romez777@gmail.com>
2514Date: Wed Oct 22 16:00:26 2008 -0400
2515
2516 ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
2517
2518 OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
2519 It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
2520
2521 Signed-off-by: Roman Mashak <romez777@gmail.com>
2522
2523commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
2524Author: Roman Mashak <romez777@gmail.com>
2525Date: Tue Oct 21 03:01:41 2008 -0700
2526
2527 ARM/Versatile port: Removed unused functions
2528
2529 Removal of never used functions.
2530
2531 Signed-off-by: Roman Mashak <romez777@gmail.com>
2532
2533commit 1266df887781c779deaf6d05eea2ef90a470cb34
2534Author: Becky Bruce <becky.bruce@freescale.com>
2535Date: Mon Nov 3 15:44:01 2008 -0600
2536
2537 powerpc: change 86xx SMP boot method
2538
2539 We put the bootpg for the secondary cpus into memory and use
2540 BPTR to get to it. This is a step towards converting to the
2541 ePAPR boot methodology. Also, the code is written to
2542 deal properly with more than 4GB of RAM.
2543
2544 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2545
2546commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
2547Author: Becky Bruce <becky.bruce@freescale.com>
2548Date: Fri Oct 31 17:13:49 2008 -0500
2549
2550 8641HPCN: Config file cleanup
2551
2552 There are several items in the config file that were hardcoded
2553 but that should really be based on other config options, since
2554 the regions are contiguous and depend on being so. This cleans
2555 that up a bit. Also, add BR_PHYS_ADDR() macro to convert
2556 addresses into the proper format for BR registers.
2557
2558 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2559
2560commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
2561Author: Becky Bruce <becky.bruce@freescale.com>
2562Date: Fri Oct 31 17:13:32 2008 -0500
2563
2564 86xx: Make dram_size a phys_size_t
2565
2566 It's currently a long and should be phys_size_t.
2567
2568 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2569
2570commit 104992fc541302a6bac74448e01e7fdad20abca0
2571Author: Becky Bruce <becky.bruce@freescale.com>
2572Date: Sun Nov 2 18:19:32 2008 -0600
2573
2574 powerpc 86xx: Handle CCSR relocation earlier
2575
2576 Currently, the CCSR gets relocated while translation is
2577 enabled, meaning we need 2 BAT translations to get to both the
2578 old location and the new location. Also, the DEFAULT
2579 CCSR location has a dependency on the BAT that maps the
2580 FLASH region. Moving the relocation removes this unnecessary
2581 dependency. This makes it easier and more intutive to
2582 modify the board's memory map.
2583
2584 Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
2585 BAT for CCSR space.
2586
2587 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2588
2589commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
2590Author: Becky Bruce <becky.bruce@freescale.com>
2591Date: Fri Oct 31 17:14:14 2008 -0500
2592
2593 mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
2594
2595 You can't actually have both, and with some coming changes to
2596 change the memory map for the board and support 36-bit physical,
2597 we need the extra BAT that is being consumed by having both.
2598
2599 I also make non-PCI configs build cleanly, for the sake of sanity.
2600
2601 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2602
2603commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
2604Author: Becky Bruce <becky.bruce@freescale.com>
2605Date: Fri Oct 31 17:14:00 2008 -0500
2606
2607 mpc8641: Stop supporting non-PCI_PNP configs
2608
2609 We don't actually ever do this, remove the code so we
2610 can stop maintaining it.
2611
2612 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2613
2614commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
2615Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2616Date: Fri Oct 24 12:59:12 2008 +0000
2617
2618 ColdFire: Fix M5329EVB and M5373EVB nand issue
2619
2620 Fix compilation issue caused by a few mismatches.
2621 Provide proper nand chip select enable/disable in
2622 nand_hwcontrol() rather than in board_nand_init()
2623 just enable once. Remove redundant local nand driver
2624 functions - nand_read_byte(), nand_write_byte() and
2625 nand_dev_ready() to use common nand driver.
2626
2627 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2628
2629commit 1b2708442224a551a0b865b52710306333888932
2630Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2631Date: Wed Oct 22 11:55:30 2008 +0000
2632
2633 ColdFire: Fix compilation error
2634
2635 The error was caused by the change for strmhz() in cpu.c.
2636 A few of them were one extra close parenthesis.
2637
2638 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2639
2640commit 536e7dac16769954915a484e682a2efb28699133
2641Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2642Date: Wed Oct 22 11:38:21 2008 +0000
2643
2644 ColdFire: Add MCF5301x CPU and M53017EVB support
2645
2646 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2647
2648commit a21d0c2cc9add8894d971ab791f4032f077db817
2649Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2650Date: Tue Oct 21 15:37:02 2008 +0000
2651
2652 ColdFire: Add SBF support for M52277EVB
2653
2654 Add serial boot support
2655
2656 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2657
2658commit b202816c61042c183fe67d097a5893b0f2dafba0
2659Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2660Date: Tue Oct 21 14:19:26 2008 +0000
2661
2662 ColdFire: Use CFI driver for M5272C3
2663
2664 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2665
2666commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
2667Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2668Date: Tue Oct 21 13:47:54 2008 +0000
2669
2670 ColdFire: Relocate FEC's GPIO and mii functions protocols
2671
2672 Place FEC pin assignments in cpu_init.c from platform's
2673 mii.c
2674
2675 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2676
2677commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
2678Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2679Date: Tue Oct 21 12:15:44 2008 +0000
2680
2681 ColdFire: Remove platforms mii.c file
2682
2683 Will use mcfmii.c driver in drivers/net rather than
2684 keep creating new mii.c for each future platform.
2685 Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
2686 M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
2687 M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
2688 mii.c
2689
2690 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2691
2692commit 012522fef3b382469125beb46a315ab4dee02fb0
2693Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2694Date: Tue Oct 21 10:03:07 2008 +0000
2695
2696 ColdFire: Modules header files cleanup
2697
2698 Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
2699 MDHA, SKHA, INTC, and FlexBus structures and
2700 definitions in immap_5xxx.h to more unify modules
2701 header files. Append DSPI support for m547x_8x.
2702 SSI cleanup. Remove USB Host structure from immap_539.h.
2703 Apply changes to use FlexBus structures in mcf52x2's
2704 cpu_init.c and platform configuration files.
2705
2706 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2707
2708commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
2709Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2710Date: Tue Oct 21 08:52:36 2008 +0000
2711
2712 ColdFire: Remove linker file
2713
2714 Each different build for M54455EVB and M5235EVB will
2715 create a u-boot.lds linker file. It is redundant to
2716 keep the u-boot.lds
2717
2718 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2719
2720commit 0829323073c505556ed5f5073f91adb504584d45
2721Author: Peter Tyser <ptyser@xes-inc.com>
2722Date: Fri Oct 31 11:26:44 2008 -0500
2723
2724 ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
2725
2726 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2727
2728commit a80b21d5127583171d6e9bc7f722947641898012
2729Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2730Date: Fri Oct 31 12:12:12 2008 +0100
2731
2732 common/Makefile: create others group for non core, environment and command files
2733
2734 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2735
2736commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
2737Author: Wolfgang Denk <wd@denx.de>
2738Date: Fri Oct 31 01:13:37 2008 +0100
2739
2740 TQM8260: use CFI flash driver instead of custom driver.
2741
2742 Signed-off-by: Wolfgang Denk <wd@denx.de>
2743
2744commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
2745Author: Andy Fleming <afleming@freescale.com>
2746Date: Thu Oct 30 17:35:30 2008 -0500
2747
2748 Consolidate MAX/MIN definitions
2749
2750 There were several, now there is one (two if you count the lower-case
2751 versions).
2752
2753 Signed-off-by: Andy Fleming <afleming@freescale.com>
2754
2755commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
2756Author: Heiko Schocher <hs@denx.de>
2757Date: Thu Oct 30 09:23:09 2008 +0100
2758
2759 mgsuvd: remove unused defines in config file.
2760
2761 Signed-off-by: Heiko Schocher <hs@denx.de>
2762
2763commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
2764Author: Wolfgang Denk <wd@denx.de>
2765Date: Sun Nov 2 16:14:22 2008 +0100
2766
2767 Coding Style cleanup, update CHANGELOG
2768
2769 Signed-off-by: Wolfgang Denk <wd@denx.de>
2770
Wolfgang Denk3cbd8232008-11-02 16:14:22 +01002771commit a47f957ab523019992fdef857af01bd71c58a4da
2772Author: Alessandro Rubini <rubini-list@gnudd.com>
2773Date: Fri Oct 31 22:33:21 2008 +0100
2774
2775 NAND: Allow NAND and OneNAND to coexist
2776
2777 This removes in nand.h code that is verbatim duplicated from bbm.h,
2778 including directly bbm.h in nand.h. The previous state of affairs
2779 prevented compiling code for a board hosting both NAND and OneNAND chips.
2780
2781 Reported-by: Scott Wood <scottwood@freescale.com>
2782 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2783 Signed-off-by: Scott Wood <scottwood@freescale.com>
2784
2785commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
2786Author: Scott Wood <scottwood@freescale.com>
2787Date: Fri Oct 31 13:51:12 2008 -0500
2788
2789 JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
2790
2791 Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
2792 Signed-off-by: Scott Wood <scottwood@freescale.com>
2793
2794commit c57fc28947e248fb03c49a28b467686299895055
2795Author: Jason Jin <Jason.Jin@freescale.com>
2796Date: Fri Oct 31 05:07:04 2008 -0500
2797
2798 NAND: Add NAND support for MPC8536DS board
2799
2800 This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
2801 for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
2802 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
2803
2804 Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
2805 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2806 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2807
2808commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
2809Author: Haiying Wang <Haiying.Wang@freescale.com>
2810Date: Fri Oct 31 05:06:14 2008 -0500
2811
2812 NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
2813
2814 CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
2815
2816 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2817 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2818
2819commit 51b572a801be57790fe26adaa530210e7fba59cc
2820Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2821Date: Fri Oct 24 10:49:48 2008 +0900
2822
2823 sh: rsk7203: Moved rsk7203 board to board/renesas
2824
2825 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2826
2827commit 58453b00b3ebb26aaa901210023f99504a90bb00
2828Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2829Date: Fri Oct 24 10:48:31 2008 +0900
2830
2831 sh: MigoR: Moved MigoR board to board/renesas
2832
2833 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2834
2835commit c1da2a22817ba85b437afa2f4e715e658b219fd1
2836Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2837Date: Fri Oct 24 10:39:44 2008 +0900
2838
2839 sh: r2dplus: Moved r2dplus board to board/renesas
2840
2841 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2842
2843commit 78385bf2359d828184d0b3649f7ae6b933420000
2844Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2845Date: Fri Oct 24 10:36:13 2008 +0900
2846
2847 sh: sh7763rdp: Moved sh7763rdp board to board/renesas
2848
2849 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2850
2851commit c6525d459c350bfc246ea7826456af77e1e314eb
2852Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2853Date: Fri Oct 24 10:35:19 2008 +0900
2854
2855 sh: sh7785lcr: Moved sh7785lcr board to board/renesas
2856
2857 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2858
2859commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
2860Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2861Date: Fri Oct 24 10:34:21 2008 +0900
2862
2863 sh: r7780mp: Moved r7780mp board to board/renesas
2864
2865 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2866
2867commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
2868Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2869Date: Fri Oct 24 10:32:14 2008 +0900
2870
2871 sh: ap325rxa: Moved ap325rxa board to board/renesas
2872
2873 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2874
2875commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
2876Author: Wolfgang Denk <wd@xpert.denx.de>
2877Date: Fri Oct 31 01:12:28 2008 +0100
2878
2879 CFI Driver: Fix "flash not ready" problem
2880
2881 This patch fixes a problem on systems where the NOR flash is attached
2882 to a 64 bit bus. The toggle bit detection in flash_toggle() is based
2883 on the assumption that the same flash address is read twice without
2884 any other interjacent flash accesses. However, on 32 bit systems the
2885 function flash_read64() [as currently implemented] does not perform
2886 an atomic 64 bit read - instead, this is broken down into two 32 bit
2887 read accesses on addresses "addr" and "addr + 4". So instead of
2888 reading a 64 bit value twice from "addr", we see a sequence of 4 32
2889 bit reads from "addr", "addr + 4", "addr", and "addr + 4". The
2890 consequence is that flash_toggle() fails to work.
2891
2892 This patch implements a simple, but somewhat ugly solution, as it
2893 avoids the use of flash_read64() in this critical place (by breaking
2894 it down manually into 32 bit read operations) instead of rewriting
2895 flash_read64() such to perform atomic 64 bit reads as one could
2896 expect. However, such a rewrite would require the use of floating
2897 point load operations, which becomes pretty complex:
2898
2899 save MSR;
2900 set Floating Point Enable bit in MSR;
2901 use "lfd" instruction to perform atomic 64 bit read;
2902 use "stfd" to store value to temporary variable on stack;
2903 load u64 value from temporary variable;
2904 restore saved MSR;
2905 return u64 value;
2906
2907 The benefit-cost ratio of such an implementation was considered too
2908 bad to actually attempt this, especially as we can expect that such
2909 an implementation would not only have a bigger memory footprint but
2910 also cause a performance degradation.
2911
2912 Signed-off-by: Wolfgang Denk <wd@denx.de>
2913 Signed-off-by: Stefan Roese <sr@denx.de>
2914
2915commit cdd4fe63b094d4b767f12ff241d72566b461ee61
2916Author: Stefan Roese <sr@denx.de>
2917Date: Fri Oct 31 10:48:08 2008 +0100
2918
2919 ppc4xx: Fix spelling error in MAINTAINERS file
2920
2921 Signed-off-by: Stefan Roese <sr@denx.de>
2922
2923commit be270798900b75ad9c47c7b79c72f70441196c56
2924Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2925Date: Tue Oct 28 13:37:00 2008 +0100
2926
2927 ppc4xx: Update PMC440 board support
2928
2929 This patch brings PMC440 board support up to date:
2930
2931 - fix GPIO configuration
2932 - add misc_init_f()
2933 - use better values for usbact variable
2934 - fix USB 2.0 phy reset sequence
2935 - shrink BAR2 to save PCI address space
2936 - add FDT support
2937
2938 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2939 Signed-off-by: Stefan Roese <sr@denx.de>
2940
2941commit 75183b1a7fc04206d9779d13f16e03853d7e965d
2942Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2943Date: Tue Oct 28 13:36:59 2008 +0100
2944
2945 ppc4xx: Fix PMC440 BSP commands
2946
2947 This patch fixes the PMC440 BSP commands painit and selfreset
2948
2949 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2950 Signed-off-by: Stefan Roese <sr@denx.de>
2951
2952commit 76b565b69f886d5ae748db65e44f464b0e70d41a
2953Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2954Date: Tue Oct 28 13:36:58 2008 +0100
2955
2956 ppc4xx: Update PMC440 board configuration
2957
2958 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2959 Signed-off-by: Stefan Roese <sr@denx.de>
2960
2961commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
2962Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2963Date: Tue Oct 28 13:36:57 2008 +0100
2964
2965 ppc4xx: Fix esd loadpci command
2966
2967 This patch fixes esd's loadpci command when not all
2968 memory on adapter boards is accessable via PCI.
2969
2970 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2971 Signed-off-by: Stefan Roese <sr@denx.de>
2972
2973commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
2974Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2975Date: Tue Oct 28 13:36:56 2008 +0100
2976
2977 ppc4xx: Clean up PMC440 header
2978
2979 -Codingstyle cleanup
2980 -Remove unused GPIO define
2981
2982 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2983 Signed-off-by: Stefan Roese <sr@denx.de>
2984
2985commit 295133258a44f97a57fb2ec339aecfda11f4db95
2986Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2987Date: Tue Oct 28 13:36:55 2008 +0100
2988
2989 ppc4xx: Handle other board variant in PMC440 FPGA code
2990
2991 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2992 Signed-off-by: Stefan Roese <sr@denx.de>
2993
2994commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
2995Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
2996Date: Mon Oct 27 12:35:59 2008 +0100
2997
2998 ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
2999
3000 Xilinx ppc440 and ppc405 have many similarities. This patch merge the
3001 config files of both infrastuctures
3002
3003 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3004 Signed-off-by: Stefan Roese <sr@denx.de>
3005
3006commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
3007Author: Stefan Roese <sr@denx.de>
3008Date: Sat Oct 25 06:45:31 2008 +0200
3009
3010 ppc4xx: Correctly configure the GPIO pin muxing on Arches
3011
3012 Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
3013 pin multiplexing correctly
3014
3015 Signed-off-by: Stefan Roese <sr@denx.de>
3016
3017commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
3018Author: Bartlomiej Sieka <tur@semihalf.com>
3019Date: Thu Oct 30 23:22:04 2008 +0100
3020
3021 Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
3022
3023 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
3024
3025commit 4bc7deee9095f21e243b724ca3d634251c1d5432
3026Author: David Gibson <david@gibson.dropbear.id.au>
3027Date: Wed Oct 29 23:27:45 2008 -0500
3028
3029 libfdt: Fix bug in fdt_subnode_offset_namelen()
3030
3031 There's currently an off-by-one bug in fdt_subnode_offset_namelen()
3032 which causes it to keep searching after it's finished the subnodes of
3033 the given parent, and into the subnodes of siblings of the original
3034 node which come after it in the tree.
3035
3036 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
3037 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3038
3039commit f242a08871839eac081ba5b599af979f3a148a0d
3040Author: Peter Korsgaard <jacmet@sunsite.dk>
3041Date: Tue Oct 28 08:26:52 2008 +0100
3042
3043 fdt_resize(): ensure minimum padding
3044
3045 fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
3046 (16 bytes), so make sure that fdt_resize at least adds that much
3047 padding, no matter what the location or size of the fdt is.
3048
3049 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
3050 Acked-by: Andy Fleming <afleming@freescale.com>
3051
3052commit d685b74c64a38849f1a129b3ab846fbf67dd937e
3053Author: Dave Liu <daveliu@freescale.com>
3054Date: Thu Oct 23 21:59:35 2008 +0800
3055
3056 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
3057
3058 The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
3059
3060 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
3061
3062 This is needed in unlock_ram_in_cache() because it is called from C and
3063 will corrupt the small data area anchor that is kept in R2.
3064
3065 lock_ram_in_cache() is modified similarly as good coding practice, but
3066 is not called from C.
3067
3068 Signed-off-by: Nick Spence <nick.spence@freescale.com>
3069
3070 also, the r2 is used as global data pointer.
3071
3072 Signed-off-by: Dave Liu <daveliu@freescale.com>
3073
3074commit e053ab1903ccae6048ef759025b9f675bba91450
3075Author: Scott Wood <scottwood@freescale.com>
3076Date: Tue Oct 28 11:45:04 2008 -0500
3077
3078 mpc83xx pci: Round up memory size in inbound window.
3079
3080 The current calculation will fail to cover all memory if
3081 its size is not a power of two.
3082
3083 Signed-off-by: Scott Wood <scottwood@freescale.com>
3084 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3085
3086commit 1c671977dc81359628be27ac99c174e76e8069ba
3087Author: Dave Liu <daveliu@freescale.com>
3088Date: Thu Oct 23 21:19:13 2008 +0800
3089
3090 86xx: remove the unused definition
3091
3092 Signed-off-by: Dave Liu <daveliu@freescale.com>
3093
3094commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
3095Author: Dave Liu <daveliu@freescale.com>
3096Date: Tue Oct 28 17:47:49 2008 +0800
3097
3098 86xx: remove the redundant r2 global data pointer save
3099
3100 The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
3101 the another global data pointer save, but in fact the
3102 global data pointer will be initialized in the board_init_r,
3103 so remove it such as the 85xx/83xx family.
3104
3105 Signed-off-by: Dave Liu <daveliu@freescale.com>
3106 Acked-by: Kumar Gala <kumar.gala@freescale.com>
3107
3108commit bd888e9544419665334a6f47f81f34011cea38f3
3109Author: Dave Liu <daveliu@freescale.com>
3110Date: Tue Oct 28 17:47:41 2008 +0800
3111
3112 86xx: remove the unused code for 86xx family
3113
3114 I believe these code was copied from 74xx family, but for
3115 86xx, it is unused.
3116
3117 Signed-off-by: Dave Liu <daveliu@freescale.com>
3118 Acked-by: Kumar Gala <kumar.gala@freescale.com>
3119
3120commit 5ba1ef507402bc5e344dc374203792a40f222e8a
3121Author: Dave Liu <daveliu@freescale.com>
3122Date: Tue Oct 28 17:46:35 2008 +0800
3123
3124 86xx: remove the second DDR LAW setting for mpc8641hpcn
3125
3126 The DDR1 LAW will precedence the DDR2 LAW, so remove
3127 the second DDR LAW.
3128
3129 Signed-off-by: Dave Liu <daveliu@freescale.com>
3130 Acked-by: Becky Bruce <becky.bruce@freescale.com>
3131
3132commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
3133Author: Dave Liu <daveliu@freescale.com>
3134Date: Tue Oct 28 17:46:23 2008 +0800
3135
3136 86xx: remove the unused ddr_enable_ecc in the board file
3137
3138 The DDR controller of 86xx processors have the ECC data init
3139 feature, and the new DDR code is using the feature, we don't
3140 need the way with DMA to init memory again.
3141
3142 Signed-off-by: Dave Liu <daveliu@freescale.com>
3143 Acked-by: Kumar Gala <kumar.gala@freescale.com>
3144
3145commit dc2adad85bf580d65916c940683f6e9671e8a5dd
3146Author: Dave Liu <daveliu@freescale.com>
3147Date: Tue Oct 28 17:46:12 2008 +0800
3148
3149 86xx: Move the clear_tlbs before MMU turn on
3150
3151 We must invalidate TLBs before MMU turn on, but
3152 currently the code is not, if there are some stale
3153 TLB entry valid in the TLBs, it will cause strange
3154 issue.
3155
3156 Signed-off-by: Dave Liu <daveliu@freescale.com>
3157 Acked-by: Becky Bruce <becky.bruce@freescale.com>
3158
3159commit 5cdade07b118d07154cb882650f9778cecc8a87c
3160Author: Scott Wood <scottwood@freescale.com>
3161Date: Mon Oct 27 15:57:08 2008 -0500
3162
3163 mpc8313erdb: Document NAND boot.
3164
3165 Previously, the documentation claimed that NAND boot is not supported.
3166 This is no longer true.
3167
3168 Signed-off-by: Scott Wood <scottwood@freescale.com>
3169
3170commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
3171Author: Scott Wood <scottwood@freescale.com>
3172Date: Wed Oct 29 14:20:26 2008 -0500
3173
3174 NAND: Properly create JFFS2 cleanmarkers.
3175
3176 As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
3177 command is currently broken, and among other things causes all blocks
3178 to be marked bad.
3179
3180 This implements it properly using MTD_OOB_AUTO, along with some
3181 indentation fixes.
3182
3183 Signed-off-by: Scott Wood <scottwood@freescale.com>
3184
3185commit f7fe57c09866b44692d18c8cf22828bd137ec58d
3186Author: Scott Wood <scottwood@freescale.com>
3187Date: Wed Oct 29 13:42:41 2008 -0500
3188
3189 NAND fsl elbc: Set FMR[ECCM] based on page size.
3190
3191 Hardware expects ECCM 0 for small page and ECCM 1 for large page
3192 when booting from NAND, so use those defaults.
3193
3194 Signed-off-by: Scott Wood <scottwood@freescale.com>
3195
3196commit c013b74975dab0805ef6d369b013230c4e8a660d
3197Author: Haiying Wang <Haiying.Wang@freescale.com>
3198Date: Wed Oct 29 13:32:59 2008 -0400
3199
3200 NAND: Add support for MPC8572DS board
3201
3202 This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
3203 0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
3204 config file.
3205
3206 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
3207 make room for the increased code size with NAND enabled.
3208
3209 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
3210 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
3211 Signed-off-by: Scott Wood <scottwood@freescale.com>
3212
3213commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
3214Author: Haiying Wang <Haiying.Wang@freescale.com>
3215Date: Wed Oct 29 11:05:55 2008 -0400
3216
3217 Make Freescale local bus registers available for both 83xx and 85xx.
3218
3219 - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
3220 can be shared by both 83xx and 85xx
3221 - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
3222 files which use lbus83xx_t.
3223 - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
3224 85xx can share them.
3225
3226 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
3227 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
3228 Signed-off-by: Scott Wood <scottwood@freescale.com>
3229
3230commit 695c130e4bf75b444720ddfd83aca88f41c046cf
3231Author: Scott Wood <scottwood@freescale.com>
3232Date: Mon Oct 27 15:38:30 2008 -0500
3233
3234 NAND: Align right column of the shorthelp with other commands.
3235
3236 I accidentally broke this in when making consistent the partial
3237 alignment of the longhelp.
3238
3239 Signed-off-by: Scott Wood <scottwood@freescale.com>
3240
3241commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
3242Author: Karl Beldan <karl.beldan@gmail.com>
3243Date: Mon Sep 15 16:08:03 2008 +0200
3244
3245 NAND: Reset chip on power-up
3246
3247 Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
3248 The first command sent is NAND_CMD_READID.
3249 Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
3250 Tested with an MT29F4G08AAC.
3251
3252 Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
3253 Signed-off-by: Scott Wood <scottwood@freescale.com>
3254
3255commit c45912d8abc52de796b9059a58faf7c4166eab58
3256Author: Scott Wood <scottwood@freescale.com>
3257Date: Fri Oct 24 16:20:43 2008 -0500
3258
3259 NAND: sync with 2.6.27
3260
3261 This brings the core NAND code up to date with the Linux kernel.
3262
3263 Since there were several drivers in Linux as of the last update that are
3264 not in u-boot, I'm not bringing over new drivers that have been added
3265 since in the absence of an interested party.
3266
3267 I did not update OneNAND since it was recently synced by Kyungmin Park,
3268 and I'm not sure exactly what the common ancestor is.
3269
3270 Signed-off-by: Scott Wood <scottwood@freescale.com>
3271
3272commit b1d0db1805c3395149777e507b6da53410abac4e
3273Author: Kumar Gala <galak@kernel.crashing.org>
3274Date: Tue Oct 21 17:25:47 2008 -0500
3275
3276 bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
3277
3278 Added the ability to config out bootm support for Linux, NetBSD, RTEMS
3279
3280 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3281
3282commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
3283Author: Kumar Gala <galak@kernel.crashing.org>
3284Date: Tue Oct 21 17:25:46 2008 -0500
3285
3286 bootm: support subcommands in linux ppc bootm
3287
3288 Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
3289
3290 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3291
3292commit 49c3a861d11735838f1f1b11999ce433006dc919
3293Author: Kumar Gala <galak@kernel.crashing.org>
3294Date: Tue Oct 21 17:25:45 2008 -0500
3295
3296 bootm: Add subcommands
3297
3298 Add the ability to break the steps of the bootm command into several
3299 subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
3300
3301 This allows us to do things like manipulate device trees before
3302 they are passed to a booting kernel or setup memory for a secondary
3303 core in multicore situations.
3304
3305 Not all OS types support all subcommands (currently only start, loados,
3306 ramdisk, fdt, and go are supported).
3307
3308 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3309
3310commit be08315933537f061bc1ce61f33a29c56458bbad
3311Author: Kumar Gala <galak@kernel.crashing.org>
3312Date: Tue Oct 21 17:25:44 2008 -0500
3313
3314 bootm: Move to using a function pointer table for the boot os function
3315
3316 This removes a bit of code and makes it easier for the upcoming sub bootm
3317 command support to call into the proper OS specific handler.
3318
3319 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3320 Signed-off-by: Wolfgang Denk <wd@denx.de>
3321
3322commit a369f4a492fa2805d87775d27380f0eeaca35aa6
3323Author: Graeme Russ <graeme.russ@gmail.com>
3324Date: Mon Sep 29 23:03:14 2008 +1000
3325
3326 i386: Renamed show_boot_progress in assembler code
3327
3328 Renamed show_boot_progress in assembler init phase to
3329 show_boot_progress_asm to avoid link conflicts with C version
3330
3331 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
3332
3333commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
3334Author: Peter Tyser <ptyser@xes-inc.com>
3335Date: Mon Oct 27 16:42:00 2008 -0500
3336
3337 85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
3338
3339 The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
3340 processors have a 3-bit wide IO_SEL field but have the most
3341 significant bit is wired to 0 so this change should not affect
3342 them.
3343
3344 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3345
3346commit cd4251624205cb97104f6e32679dc7754934f711
3347Author: Becky Bruce <becky.bruce@freescale.com>
3348Date: Mon Oct 27 16:09:42 2008 -0500
3349
3350 powerpc: fix pci window initialization to work with > 4GB DRAM
3351
3352 The existing code has a few errors that need to be fixed in
3353 order to support large RAM sizes. Fix those, and add a
3354 comment to make it clearer.
3355
3356 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
3357 Acked-by: Kumar Gala <galak@kernel.crashing.org>
3358
3359commit 219542a1a66ca017b12860920714a9859b18a5d7
3360Author: Kumar Gala <galak@kernel.crashing.org>
3361Date: Mon Oct 27 13:16:20 2008 -0500
3362
3363 pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
3364
3365 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3366
3367commit 6b59e03e0237a40a2305ea385defdfd92000978b
3368Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3369Date: Mon Sep 1 16:21:22 2008 +0200
3370
3371 lcd: Let the board code show board-specific info
3372
3373 The information displayed when CONFIG_LCD_INFO is set is inherently
3374 board-specific, so it should be done by the board code. The current code
3375 dealing with this only handles two cases, and is already a horrible mess
3376 of #ifdeffery.
3377
3378 Yes, this duplicates some code, but it also allows boards to print more
3379 board-specific information; this used to be very difficult.
3380
3381 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3382 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3383
3384commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
3385Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3386Date: Mon Sep 1 16:21:21 2008 +0200
3387
3388 lcd: Set lcd_is_enabled before clearing the screen
3389
3390 This allows the logo/info rendering routines to use the regular
3391 lcd_putc/lcd_puts/lcd_printf calls.
3392
3393 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3394 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3395
3396commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
3397Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3398Date: Mon Sep 1 16:21:20 2008 +0200
3399
3400 lcd: Implement lcd_printf()
3401
3402 lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
3403 this by borrowing the lcd_printf() implementation from the cogent board
3404 code (which appears to use its own LCD framework.)
3405
3406 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3407 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3408
3409commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
3410Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3411Date: Mon Sep 1 16:21:19 2008 +0200
3412
3413 atmel_lcdfb: Straighten out funky vl_sync logic
3414
3415 If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
3416 otherwise we don't. WTF?
3417
3418 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3419 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3420
3421commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
3422Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3423Date: Mon Sep 1 16:21:18 2008 +0200
3424
3425 atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
3426
3427 atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
3428 includes a file that does, asm/arch/gpio.h, but this file doesn't
3429 include <asm/arch/hardware.h> like it's supposed to.
3430
3431 Add the missing include to asm/arch/gpio.h and remove the workaround
3432 from the atmel_lcdfb driver. This makes the driver compile on avr32.
3433
3434 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3435 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3436
3437commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
3438Author: Kumar Gala <galak@kernel.crashing.org>
3439Date: Wed Oct 22 14:38:55 2008 -0500
3440
3441 86xx: Convert all fsl_pci_init users to new APIs
3442
3443 Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
3444 fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
3445
3446 With these changes the board code is a bit smaller and we get dma-ranges
3447 set in the device tree for these boards.
3448
3449 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3450 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3451 Acked-by: Jon Loeliger <jdl@freescale.com>
3452
3453commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
3454Author: Kumar Gala <galak@kernel.crashing.org>
3455Date: Tue Oct 21 08:28:33 2008 -0500
3456
3457 85xx: Convert all fsl_pci_init users to new APIs
3458
3459 Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
3460 MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
3461 and ft_fsl_pci_setup().
3462
3463 With these changes the board code is a bit smaller and we get dma-ranges
3464 set in the device tree for these boards.
3465
3466 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3467 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3468
3469commit a2aab460727e5f674353a83a81000ef794bffcae
3470Author: Kumar Gala <galak@kernel.crashing.org>
3471Date: Thu Oct 23 00:01:06 2008 -0500
3472
3473 pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
3474
3475 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3476 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3477
3478commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
3479Author: Kumar Gala <galak@kernel.crashing.org>
3480Date: Wed Oct 22 14:06:24 2008 -0500
3481
3482 pci/fsl_pci_init: Add a common PCI inbound setup function
3483
3484 Add a common setup function that determines the pci_region(s) based
3485 on how much memory we have in the system.
3486
3487 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3488 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3489
3490commit 612ea01018a459234d54ed57ec6a5a244ce75678
3491Author: Kumar Gala <galak@kernel.crashing.org>
3492Date: Tue Oct 21 10:13:14 2008 -0500
3493
3494 pci/fsl_pci_init: Enable larger address and setting inbound windows properly
3495
3496 * PCI Inbound window was setup incorrectly. The PCI address and system
3497 address were swapped. The PCI address should be setting piwar/piwbear
3498 and the system address should be setting pitar.
3499
3500 * Removed masking of addresses to allow for system address to support
3501 system address & PCI address >32-bits
3502
3503 * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
3504
3505 * Respect the PCI_REGION_PREFETCH for inbound windows
3506
3507 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3508 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3509
3510commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
3511Author: Kumar Gala <galak@kernel.crashing.org>
3512Date: Wed Oct 22 23:33:56 2008 -0500
3513
3514 fdt: Added helper to set PCI dma-ranges property
3515
3516 Added fdt_pci_dma_ranges() that parses the pci_region info from the
3517 struct pci_controller and populates the dma-ranges based on it.
3518
3519 The max # of windws/dma-ranges we support is 3 since on embedded
3520 PowerPC based systems this is the max number of windows.
3521
3522 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3523 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3524
3525commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
3526Author: Kumar Gala <galak@kernel.crashing.org>
3527Date: Thu Oct 23 00:05:47 2008 -0500
3528
3529 fdt: Add fdt_getprop_u32_default helpers
3530
3531 Add helper functions to return find a node and return it's property
3532 or a default value.
3533
3534 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3535 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3536 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
3537
3538commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
3539Author: Kumar Gala <galak@kernel.crashing.org>
3540Date: Tue Oct 21 18:06:15 2008 -0500
3541
3542 86xx: Enable 64-bit PCI resources on all Freescale boards
3543
3544 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3545 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3546
3547commit 0151cbaccf4504821ecfde0217299bd740086bb6
3548Author: Kumar Gala <galak@kernel.crashing.org>
3549Date: Tue Oct 21 11:33:58 2008 -0500
3550
3551 85xx: Enable 64-bit PCI resources on all Freescale boards
3552
3553 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3554 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3555
3556commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
3557Author: Kumar Gala <galak@kernel.crashing.org>
3558Date: Tue Oct 21 08:36:08 2008 -0500
3559
3560 pci: Allow for PCI addresses to be 64-bit
3561
3562 PCI bus is inherently 64-bit. While not all system require access to
3563 the full 64-bit PCI address range some do. This allows those systems
3564 to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
3565
3566 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3567 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
3568 Acked-by: Wolfgang Denk <wd@denx.de>
3569
3570commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
3571Author: Dave Liu <daveliu@freescale.com>
3572Date: Thu Oct 23 21:18:53 2008 +0800
3573
3574 85xx: Fix the incorrect register used for DDR erratum1
3575
3576 The 8572 DDR erratum1:
3577 DDR controller may enter an illegal state when operating
3578 in 32-bit bus mode with 4-beat bursts.
3579
3580 Description:
3581 When operating with a 32-bit bus, it is recommended that
3582 DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
3583 This forces the DDR controller to use 4-beat bursts when
3584 communicating to the DRAMs. However, an issue exists that
3585 could lead to data corruption when the DDR controller is
3586 in 32-bit bus mode while using 4-beat bursts.
3587
3588 Projected Impact:
3589 If the DDR controller is operating in 32-bit bus mode with
3590 4-beat bursts, then the controller may enter into a bad state.
3591 All subsequent reads from memory is corrupted.
3592 Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
3593 Therefore, this erratum does not affect DDR3 mode.
3594
3595 Work Arounds:
3596 To work around this issue, software must set DEBUG_1[31] in
3597 DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
3598 and CCSRBAR offset + 0x6f00 for DDR_2).
3599
3600 Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
3601 as condition, but it should be DDR_SDRAM_CFG register.
3602
3603 Signed-off-by: Dave Liu <daveliu@freescale.com>
3604
3605commit d5b693090ed08d24c18491df9d8fc7387b2906f3
3606Author: Dave Liu <daveliu@freescale.com>
3607Date: Thu Oct 23 21:17:19 2008 +0800
3608
3609 85xx: remove unused config definition
3610
3611 Signed-off-by: Dave Liu <daveliu@freescale.com>
3612
3613commit 0f060c3bf82832331a509f2e5d2442539e7aad09
3614Author: Kumar Gala <galak@kernel.crashing.org>
3615Date: Thu Oct 23 01:47:38 2008 -0500
3616
3617 85xx: Add basic e500mc core support
3618
3619 Introduce CONFIG_E500MC to deal with the minor differences between
3620 e500v2 and e500mc.
3621
3622 * Certain fields of HID0/1 don't exist anymore on e500mc
3623 * Cache line size is 64-bytes on e500mc
3624 * reset value of PIR is different
3625
3626 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3627
3628commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
3629Author: Kumar Gala <galak@kernel.crashing.org>
3630Date: Thu Oct 23 01:47:37 2008 -0500
3631
3632 85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
3633
3634 Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
3635 e500mc's 64-byte cacheline properly when it gets added.
3636
3637 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3638
3639commit 5deb8022c3749faac30e9ad9694691e2442b5c93
3640Author: Georg Schardt <schardt@team-ctech.de>
3641Date: Fri Oct 24 13:51:52 2008 +0200
3642
3643 ppc4xx: New board avnet fx12 minimodul
3644
3645 This patch adds support for the avnet fx12 minimodul.
3646 It needs the "ppc4xx: Generic architecture for xilinx ppc405"
3647 patch from Ricardo.
3648
3649 Signed-off-by: Georg Schardt <schardt@team-ctech.de>
3650 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3651 Signed-off-by: Stefan Roese <sr@denx.de>
3652
3653commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
3654Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3655Date: Tue Oct 21 18:29:46 2008 +0200
3656
3657 ppc4xx: Generic architecture for xilinx ppc405(v3)
3658
3659 As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
3660 ppc440 boards, this patch presents a common architecture for all the
3661 xilinx ppc405 boards.
3662
3663 Any custom xilinx ppc405 board can be added very easily with no code
3664 duplicity.
3665
3666 This patch also adds a simple generic board, that can be used on almost
3667 any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
3668
3669 This patch is prepared to work with the latest version of EDK (10.1)
3670
3671 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3672 Signed-off-by: Stefan Roese <sr@denx.de>
3673
3674commit 485c00a57fab86f72a3769480c66bf1ca22e1459
3675Author: Stefan Roese <sr@denx.de>
3676Date: Fri Oct 24 08:56:09 2008 +0200
3677
3678 ppc4xx: Disable DDR2 autocalibration on Kilauea for now
3679
3680 Since the new autocalibration still has some problems on some Kilauea
3681 boards with 200MHz DDR2 frequency we disable the autocalibration and
3682 use the hardcoded values as done before. This seems to work reliably
3683 on all known DDR2 frequencies.
3684
3685 After the autocalibration issue is fixed we will enable it again.
3686
3687 Signed-off-by: Stefan Roese <sr@denx.de>
3688
3689commit f177f4250c729727b1629fa8d8d6556c999e9b8c
3690Author: Mike Frysinger <vapier@gentoo.org>
3691Date: Wed Apr 9 02:02:07 2008 -0400
3692
3693 Blackfin: fix up UART status bit handling
3694
3695 Some Blackfin UARTs are read-to-clear while others are write-to-clear.
3696 This can cause problems when we poll the LSR and then later try and handle
3697 any errors detected.
3698
3699 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3700
3701commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
3702Author: Mike Frysinger <vapier@gentoo.org>
3703Date: Sat Oct 11 20:42:17 2008 -0400
3704
3705 Blackfin: bf561-ezkit: drop redundant code
3706
3707 Common Blackfin code already announces CPU information.
3708
3709 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3710
3711commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
3712Author: Mike Frysinger <vapier@gentoo.org>
3713Date: Sat Oct 11 20:43:10 2008 -0400
3714
3715 Blackfin: bf561-ezkit: drop pointless USB code
3716
3717 The USB/LAN register settings are not actually used/needed in order to
3718 drive things from U-Boot, so drop the code.
3719
3720 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3721
3722commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
3723Author: Mike Frysinger <vapier@gentoo.org>
3724Date: Sat Oct 11 20:47:58 2008 -0400
3725
3726 Blackfin: linker scripts: force start.o and set initcode boundaries
3727
3728 Make sure that the start.o object is always the first object in our linker
3729 script regardless of configuration settings, and add some linker symbols
3730 so the ldr utility can properly locate the initcode when generating a LDR.
3731
3732 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3733
3734commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
3735Author: Mike Frysinger <vapier@gentoo.org>
3736Date: Sat Oct 11 21:19:39 2008 -0400
3737
3738 Blackfin: small cpu init optimization while setting interrupt mask
3739
3740 Use the sti instruction to set the initial interrupt mask rather than
3741 banging on the core IMASK MMR to save both space and time.
3742
3743 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3744
3745commit 960922291c9594acb575cec7e47d7bed9b58182c
3746Author: Mike Frysinger <vapier@gentoo.org>
3747Date: Sat Oct 11 21:18:10 2008 -0400
3748
3749 Blackfin: set initial stack correctly according to Blackfin ABI
3750
3751 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3752
3753commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
3754Author: Mike Frysinger <vapier@gentoo.org>
3755Date: Sun Apr 20 03:11:53 2008 -0400
3756
3757 Blackfin: make baud calculation more accurate
3758
3759 We should use the algorithm in the Linux kernel so that the UART divisor
3760 calculation is more accurate. It also fixes problems on some picky UARTs
3761 that have sampling anomalies.
3762
3763 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3764
3765commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
3766Author: Mike Frysinger <vapier@gentoo.org>
3767Date: Mon Oct 6 04:21:41 2008 -0400
3768
3769 Blackfin: decode hwerrcause/excause when crashing
3770
3771 Having to decode hwerrcause/excause values is a pain, so automate it.
3772
3773 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3774
3775commit 2de95bb20c488f20298df6881b700a5a757ee780
3776Author: Mike Frysinger <vapier@gentoo.org>
3777Date: Mon Oct 6 04:20:54 2008 -0400
3778
3779 Blackfin: fix register dump messages
3780
3781 Make sure we report RETI/IPEND correctly.
3782
3783 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3784
3785commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
3786Author: Mike Frysinger <vapier@gentoo.org>
3787Date: Mon Oct 6 04:19:34 2008 -0400
3788
3789 Blackfin: don't bother displaying reboot msg when crashing
3790
3791 The hang function already tells you to reboot, so no point in showing it
3792 twice.
3793
3794 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3795
3796commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
3797Author: Mike Frysinger <vapier@gentoo.org>
3798Date: Sun Jun 1 01:23:48 2008 -0400
3799
3800 Blackfin: enable support for nested interrupts
3801
3802 During cpu init, make sure we initialize the CEC properly so that
3803 interrupts can fire and be handled while U-Boot is running.
3804
3805 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3806
3807commit 39782727e185860faa4884c2b04e84cb33d1c6cf
3808Author: Mike Frysinger <vapier@gentoo.org>
3809Date: Mon Oct 6 03:55:25 2008 -0400
3810
3811 Blackfin: init NAND before relocating env
3812
3813 If booting out of NAND, we need to make sure we initialize it properly
3814 before attempting to relocate the environment.
3815
3816 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3817
3818commit 0f9a8819416ba40a53de50af148847a0e508f84d
3819Author: Mike Frysinger <vapier@gentoo.org>
3820Date: Thu Aug 7 18:40:13 2008 -0400
3821
3822 Blackfin: check cache bits, not cplb bits
3823
3824 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3825
3826commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
3827Author: Mike Frysinger <vapier@gentoo.org>
3828Date: Thu Aug 7 17:52:59 2008 -0400
3829
3830 Blackfin: drop unused cache flush code
3831
3832 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3833
3834commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
3835Author: Mike Frysinger <vapier@gentoo.org>
3836Date: Thu Aug 7 15:21:47 2008 -0400
3837
3838 Blackfin: unify cache handling code
3839
3840 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3841
3842commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
3843Author: Mike Frysinger <vapier@gentoo.org>
3844Date: Mon Oct 6 03:39:07 2008 -0400
3845
3846 Blackfin: only initialize the RTC when actually used
3847
3848 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3849
3850commit 621e579b812dd1a2e6777f7cbf6e55e736505823
3851Author: Mike Frysinger <vapier@gentoo.org>
3852Date: Mon Oct 6 03:44:33 2008 -0400
3853
3854 Blackfin: fix SWRST register definition
3855
3856 The SWRST register is a 16bit, not 32bit, register.
3857
3858 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3859
3860commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
3861Author: Mike Frysinger <vapier@gentoo.org>
3862Date: Thu Aug 7 18:54:57 2008 -0400
3863
3864 Blackfin: build with -fomit-frame-pointer
3865
3866 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3867
3868commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
3869Author: Mike Frysinger <vapier@gentoo.org>
3870Date: Thu Aug 7 17:50:26 2008 -0400
3871
3872 Blackfin: document some of the blackfin directories
3873
3874 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3875
3876commit e4337968e43698a68ba608369f46d4a4114111ca
3877Author: Mike Frysinger <vapier@gentoo.org>
3878Date: Thu Aug 7 15:16:56 2008 -0400
3879
3880 Blackfin: only enable hardware error irq by default
3881
3882 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3883
3884commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
3885Author: Mike Frysinger <vapier@gentoo.org>
3886Date: Thu Aug 7 13:36:43 2008 -0400
3887
3888 Blackfin: punt old unused mem_init.h header
3889
3890 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3891
3892commit bcc121a01608042066a19ab5bff5bcfb805bf406
3893Author: Mike Frysinger <vapier@gentoo.org>
3894Date: Thu Aug 7 13:18:55 2008 -0400
3895
3896 Blackfin: delete unused page_descriptor_table_size define
3897
3898 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3899
3900commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
3901Author: Mike Frysinger <vapier@gentoo.org>
3902Date: Thu Aug 7 13:17:03 2008 -0400
3903
3904 Blackfin: fix typo in boot mode comment and add NAND define
3905
3906 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3907
3908commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
3909Author: Ben Maan <moo@cow>
3910Date: Thu Aug 7 13:14:21 2008 -0400
3911
3912 Blackfin: fix port mux defines for BF54x
3913
3914 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3915
3916commit 0656ef2ba274910d31364fe022f6c7db0051660d
3917Author: Mike Frysinger <vapier@gentoo.org>
3918Date: Thu Aug 7 13:09:50 2008 -0400
3919
3920 Blackfin: update anomaly lists
3921
3922 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3923
3924commit 50ca95402876cf7bac4e2d4f7855f616a038763f
3925Author: Mike Frysinger <vapier@gentoo.org>
3926Date: Thu Aug 7 13:08:54 2008 -0400
3927
3928 Blackfin: unify DSPID/DBGSTAT MMR definitions
3929
3930 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3931
3932commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
3933Author: Wolfgang Denk <wd@denx.de>
3934Date: Tue Oct 21 15:53:51 2008 +0200
3935
3936 Fix strmhz(): avoid printing negative fractions
3937
3938 Signed-off-by: Wolfgang Denk <wd@denx.de>
3939
3940commit 4a7f6b750d8de543fdf8e58acd86745010054571
3941Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
3942Date: Fri Oct 17 08:55:51 2008 -0400
3943
3944 mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
3945
3946 This is done to allow other 83XX based platforms which also have UPM
3947 (e.g. 8360) to configure and use their UPM in u-boot.
3948
3949 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3950 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3951
3952commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
3953Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3954Date: Tue Oct 14 22:58:53 2008 +0400
3955
3956 mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
3957
3958 With this patch u-boot can fixup the dr_mode and phy_type properties
3959 for the Dual-Role USB controller.
3960
3961 While at it, also remove #ifdefs around includes, they are not needed.
3962
3963 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3964 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3965
3966commit b3379f3fd13969934c00097c05754e7a8990fd39
3967Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3968Date: Wed Oct 8 20:52:54 2008 +0400
3969
3970 mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
3971
3972 Though NAND chip is replaceable on the MPC837XE-MDS boards, the
3973 current settings don't work with the default chip on the board.
3974 Nevertheless Freescale's U-Boot sets the option register correctly,
3975 so I just dumped the register from the working u-boot. My guess is
3976 that the old settings were applicable for some pilot boards, not
3977 found in the production.
3978
3979 This patch also enables FSL ELBC driver so that we could access
3980 the NAND storage in the u-boot.
3981
3982 The NAND support costs about 45KB, so the u-boot no longer fits
3983 into two 128KB NOR flash sectors, thus we also have to adjust
3984 environment location: add another 128KB to the monitor length.
3985
3986 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3987
3988 It is due to hardware design and logic defect, that is the
3989 I/O[0:7] of NAND chip is connected to LAD[7:0], so when
3990 the NAND chip connected to nLCS3, you have to set up the
3991 OR3[BCTLD] = '1' for normal operation, otherwise it will have
3992 bus contention due to the pin 48/25 of U60 is enabled.
3993
3994 Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
3995 asserted upon access to the NAND chip, keep the default state.
3996
3997 Acked-by: Dave Liu <daveliu@freescale.com>
3998 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3999
4000commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
4001Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4002Date: Thu Oct 2 19:17:33 2008 +0400
4003
4004 mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
4005
4006 The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
4007 standalone or acting as a PCI agent. User's Guide says:
4008
4009 - When the CPLD recognizes its location on the PIB it automatically
4010 configures RCW to the PCI Host.
4011 - If the CPLD fails to recognize its location then it is automatically
4012 configured as an Agent and the PCI is configured to an external arbiter.
4013
4014 This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
4015 flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
4016 PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
4017 any arbiter bad things will happen (here the board hangs during any config
4018 space reads).
4019
4020 In this situation we must disable the PCI. And in case of anybody really
4021 want to use an external arbiter, we provide "pci_external_aribter"
4022 environment variable.
4023
4024 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4025 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4026
4027commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
4028Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4029Date: Thu Oct 2 18:32:25 2008 +0400
4030
4031 mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
4032
4033 This involves configuring the SerDes and fixing up the flags and
4034 PHY addresses for the TSECs.
4035
4036 For Linux we also fix up the device tree.
4037
4038 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4039 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4040
4041commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
4042Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4043Date: Thu Oct 2 18:31:59 2008 +0400
4044
4045 mpc83xx: add TSECs' HRCWH masks for MPC837x processors
4046
4047 We'll use these masks to parse TSEC modes out of HRCWH.
4048
4049 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4050 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4051
4052commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
4053Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4054Date: Thu Oct 2 18:31:56 2008 +0400
4055
4056 mpc83xx: serdes: add forgotten shifts for rfcks
4057
4058 The rfcks should be shifted by 28 bits left. We didn't notice the bug
4059 because we were using only 100MHz clocks (for which rfcks == 0).
4060
4061 Though, for SGMII we'll need 125MHz clocks.
4062
4063 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4064 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4065
4066commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
4067Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4068Date: Thu Oct 2 18:31:53 2008 +0400
4069
4070 mpc83xx: fix serdes setup for the MPC8378E boards
4071
4072 MPC837xE specs says that SerDes1 has:
4073
4074 — Two lanes running x1 SGMII at 1.25 Gbps;
4075 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
4076
4077 And for SerDes2:
4078
4079 — Two lanes running x1 PCI Express at 2.5 Gbps;
4080 — One lane running x2 PCI Express at 2.5 Gbps;
4081 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
4082
4083 The spec also explicitly states that PEX options are not valid for
4084 the SD1.
4085
4086 Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
4087 which is wrong to do.
4088
4089 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4090 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4091
4092commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
4093Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4094Date: Wed Sep 10 18:12:37 2008 +0400
4095
4096 mpc83xx: mpc8360emds: rework LBC SDRAM setup
4097
4098 Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
4099 it difficult to use (b/c then the memory is discontinuous and
4100 there is quite big memory hole between the DDR/SDRAM regions).
4101
4102 This patch reworks LBC SDRAM setup so that now we dynamically
4103 place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
4104 DDR memory).
4105
4106 With this patch we're able to:
4107
4108 - Boot without external DDR memory;
4109 - Use most "DDR + SDRAM" setups without need to support for
4110 sparse/discontinuous memory model in the software.
4111
4112 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4113 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4114
4115commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
4116Author: Wolfgang Denk <wd@xpert.denx.de>
4117Date: Tue Oct 21 11:23:56 2008 +0200
4118
4119 FDT: don't use private kernel header files
4120
4121 On some systems (for example Fedora Core 4) U-Boot builds with the
4122 following wanrings only:
4123
4124 ...
4125 In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
4126 from fdt.c:51:
4127 /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
4128
4129 This patch fixes this problem.
4130
4131 Signed-off-by: Wolfgang Denk <wd@denx.de>
4132
4133commit f4d14c55504ce40287321bd63ee269e3233ee4ae
4134Author: Stefan Roese <sr@denx.de>
4135Date: Mon Oct 13 15:15:31 2008 +0200
4136
4137 ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
4138
4139 Signed-off-by: Stefan Roese <sr@denx.de>
4140
4141commit 43cbce69d48d052574d71f50724be546d90a46a4
4142Author: Stefan Roese <sr@denx.de>
4143Date: Mon Oct 13 10:45:14 2008 +0200
4144
4145 ppc4xx: Correctly setup ranges property in ebc node
4146
4147 Previously only the NOR flash mapping was written into the ranges
4148 property of the ebc node. This patch now writes all enabled chip
4149 select areas into the ranges property.
4150
4151 Signed-off-by: Stefan Roese <sr@denx.de>
4152
4153commit d7b26d58328f137471ea97de382bfa63f7239931
4154Author: Dirk Eibach <eibach@gdsys.de>
4155Date: Wed Oct 8 15:37:50 2008 +0200
4156
4157 ppc4xx: Add GDSys neo 405EP board support
4158
4159 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
4160 Signed-off-by: Stefan Roese <sr@denx.de>
4161
4162commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
4163Author: Niklaus Giger <niklaus.giger@netstal.com>
4164Date: Wed Oct 1 14:46:13 2008 +0200
4165
4166 ppc4xx: Update configs for Netstal boards
4167
4168 I reorganized my config files, putting the common stuff into netstal-common.h
4169 (got the idea by looking a amcc-common.h from Stefan).
4170
4171 Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
4172
4173 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
4174 Signed-off-by: Stefan Roese <sr@denx.de>
4175
4176commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
4177Author: Adam Graham <agraham@amcc.com>
4178Date: Wed Oct 8 10:13:19 2008 -0700
4179
4180 ppc4xx: Add routine to retrieve CPU number
4181
4182 Provide a weak defined routine to retrieve the CPU number for
4183 reference boards that have multiple CPU's. Default behavior
4184 is the existing single CPU print output. Reference boards with
4185 multiple CPU's need to provide a board specific routine.
4186 See board/amcc/arches/arches.c for an example.
4187
4188 Signed-off-by: Adam Graham <agraham@amcc.com>
4189 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
4190 Signed-off-by: Stefan Roese <sr@denx.de>
4191
4192commit 59217bae40e90982ab5400d849c08af683ace036
4193Author: Adam Graham <agraham@amcc.com>
4194Date: Wed Oct 8 10:13:14 2008 -0700
4195
4196 ppc4xx: Add static support for 44x IBM SDRAM Controller
4197
4198 This patch add the capability to configure a PPC440 based IBM SDRAM
4199 Controller with static, compiled-in, values. PPC440 memory subsystem
4200 includes a Memory Queue core.
4201
4202 Signed-off-by: Adam Graham <agraham@amcc.com>
4203 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
4204 Signed-off-by: Stefan Roese <sr@denx.de>
4205
4206commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
4207Author: Adam Graham <agraham@amcc.com>
4208Date: Wed Oct 8 10:12:53 2008 -0700
4209
4210 ppc4xx: Add AMCC Arches board support (dual 460GT)
4211
4212 The Arches Evaluation board is based on the AMCC 460GT SoC chip.
4213 This board is a dual processor board with each processor providing
4214 independent resources for Rapid IO, Gigabit Ethernet, and serial
4215 communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
4216 FLASH, UART, EEPROM and temperature sensor, along with a shared debug
4217 port. The two 460GT's will communicate with each other via shared
4218 memory, Gigabit Ethernet and x1 PCI-Express.
4219
4220 Signed-off-by: Adam Graham <agraham@amcc.com>
4221 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
4222 Signed-off-by: Stefan Roese <sr@denx.de>
4223
4224commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
4225Author: Wolfgang Denk <wd@xpert.denx.de>
4226Date: Sun Oct 19 21:54:30 2008 +0200
4227
4228 TQM8260: environment in flash instead EEPROM, baudrate 115k
4229
4230 Several customers have reported problems with the environment in
4231 EEPROM, including corrupted content after board reset. Probably the
4232 code to prevent I2C Enge Conditions is not working sufficiently.
4233
4234 We move the environment to flash now, which allows to have a backup
4235 copy plus gives much faster boot times.
4236
4237 Also, change the default console initialization to 115200 bps as used
4238 on most other boards.
4239
4240 Signed-off-by: Wolfgang Denk <wd@denx.de>
4241
4242commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
4243Author: Kumar Gala <galak@kernel.crashing.org>
4244Date: Sun Oct 19 12:49:19 2008 -0500
4245
4246 85xx: Fix compile warning in mpc8536ds.c
4247
4248 mpc8536ds.c: In function 'is_sata_supported':
4249 mpc8536ds.c:615: warning: unused variable 'devdisr'
4250
4251 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4252
4253commit 8ed44d91c8122d00368523b0b746691c895d3b3c
4254Author: Wolfgang Denk <wd@denx.de>
4255Date: Sun Oct 19 02:35:50 2008 +0200
4256
4257 Cleanup: fix "MHz" spelling
4258
4259 Signed-off-by: Wolfgang Denk <wd@denx.de>
4260
4261commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
4262Author: Wolfgang Denk <wd@denx.de>
4263Date: Sun Oct 19 02:35:49 2008 +0200
4264
4265 Use strmhz() to format clock frequencies
4266
4267 Signed-off-by: Wolfgang Denk <wd@denx.de>
4268
4269commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
4270Author: Wolfgang Denk <wd@denx.de>
4271Date: Sun Oct 19 02:35:48 2008 +0200
4272
4273 strmhz(): Round numbers when printing clock frequencies
4274
4275 Round clock frequencies for printing.
4276
4277 Many boards printed off clock frequencies like 399 MHz instead of the
4278 exact 400 MHz because numberes were not rounded. This is fixed now.
4279
4280 Signed-off-by: Wolfgang Denk <wd@denx.de>
4281
4282commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
4283Author: Timur Tabi <timur@freescale.com>
4284Date: Mon Oct 20 15:16:47 2008 -0500
4285
4286 85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
4287
4288 Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
4289 to add a comment that the correct value disagrees with the 8544 reference
4290 manual. The changelog for that commit is also wrong, as it says "bit 28"
4291 when it should be "bit 24".
4292
4293 Signed-off-by: Timur Tabi <timur@freescale.com>
4294
4295commit 360fe71e82b83e264c964c9447c537e9a1f643c8
4296Author: Heiko Schocher <hs@denx.de>
4297Date: Fri Oct 17 18:24:06 2008 +0200
4298
4299 mgcoge: add redundant environment sector
4300
4301 Signed-off-by: Heiko Schocher <hs@denx.de>
4302
4303commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
4304Author: Heiko Schocher <hs@denx.de>
4305Date: Fri Oct 17 18:23:27 2008 +0200
4306
4307 mgsuvd: update size of environment
4308
4309 Signed-off-by: Heiko Schocher <hs@denx.de>
4310
4311commit 2e26d837f11460c0e6dede7d65424a31e0183d09
4312Author: Jason Jin <Jason.jin@freescale.com>
4313Date: Fri Oct 10 11:41:00 2008 +0800
4314
4315 Enabled the Freescale SGMII riser card on 8536DS
4316
4317 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
4318
4319commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
4320Author: Liu Yu <yu.liu@freescale.com>
4321Date: Fri Oct 10 11:40:59 2008 +0800
4322
4323 Enabled the Freescale SGMII riser card on 8572DS
4324
4325 This patch based on Andy's work.
4326 Including command 'pixis_set_sgmii' support.
4327
4328 Signed-off-by: Liu Yu <yu.liu@freescale.com>
4329
4330commit bff188baf9427c35745356439435acf3864d4c65
4331Author: Liu Yu <yu.liu@freescale.com>
4332Date: Fri Oct 10 11:40:58 2008 +0800
4333
4334 Make pixis_set_sgmii more general to support MPC85xx boards.
4335
4336 The pixis sgmii command depend on the FPGA support on the board, some 85xx
4337 boards support SGMII riser card but did not support this command, define
4338 CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
4339
4340 Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
4341 are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
4342 PIXIS_VCFGEN1_MASK in header file for both boards.
4343
4344 Signed-off-by: Liu Yu <yu.liu@freescale.com>
4345
4346commit 5e981d683d2363204c76773941c2e9c2044c808f
4347Author: Ed Swarthout <Ed.Swarthout@freescale.com>
4348Date: Wed Oct 8 23:38:02 2008 -0500
4349
4350 Add cpu/8xxx to TAGS_SUBDIRS
4351
4352 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4353
4354commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
4355Author: Ed Swarthout <Ed.Swarthout@freescale.com>
4356Date: Thu Oct 9 01:25:55 2008 -0500
4357
4358 fsl_law clear enable before changing.
4359
4360 Debug sessions may have left enabled laws.
4361 Changing lawbar with an unkown enabled tgtid could cause problems.
4362
4363 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4364
4365commit 86be510f7b5443e7e937f696bfbe037fdc740b15
4366Author: Ed Swarthout <Ed.Swarthout@freescale.com>
4367Date: Thu Oct 9 00:29:27 2008 -0500
4368
4369 mpc8572 additional end-point mode
4370
4371 mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
4372 Include host_agent == 0 decode for end-point determination.
4373
4374 This is not needed for the ds reference board since pcie3 will be a host
4375 in order to connect to the uli chip. Include it here as a reference for
4376 other mpc8572 boards.
4377
4378 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4379
4380commit 6856b3d0221a838580e6bb06f61425fd7529ba93
4381Author: Ed Swarthout <Ed.Swarthout@freescale.com>
4382Date: Wed Oct 8 23:37:59 2008 -0500
4383
4384 85xx if NUM_CPUS>1, print cpu number
4385
4386 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4387
4388commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
4389Author: Ed Swarthout <Ed.Swarthout@freescale.com>
4390Date: Wed Oct 8 23:38:01 2008 -0500
4391
4392 pixis do not print long help if not configured
4393
4394 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4395
4396commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
4397Author: Andy Fleming <afleming@freescale.com>
4398Date: Tue Oct 7 08:09:50 2008 -0500
4399
4400 Have u-boot pass stashing parameters into device tree
4401
4402 Some cores don't support ethernet stashing at all, and some
4403 instances have errata. Adds 3 properties to gianfar nodes
4404 which support stashing. For now, just add this support to
4405 85xx SoCs.
4406
4407 Signed-off-by: Andy Fleming <afleming@freescale.com>
4408
4409commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
4410Author: Haiying Wang <Haiying.Wang@freescale.com>
4411Date: Fri Oct 3 12:37:57 2008 -0400
4412
4413 Add DDR options setting on MPC8641HPCN board
4414
4415 * Add board specific parameter table to choose correct cpo, clk_adjust,
4416 write_data_delay based on board ddr frequency and n_ranks.
4417
4418 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
4419
4420 Signed-off-by: James Yang <James.Yang@freescale.com>
4421 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4422
4423commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
4424Author: Haiying Wang <Haiying.Wang@freescale.com>
4425Date: Fri Oct 3 12:37:41 2008 -0400
4426
4427 Add ddr interleaving suppport for MPC8572DS board
4428
4429 * Add board specific parameter table to choose correct cpo, clk_adjust,
4430 write_data_delay, 2T based on board ddr frequency and n_ranks.
4431
4432 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
4433
4434 * Set memory controller interleaving mode to bank interleaving, and disable
4435 bank(chip select) interleaving mode by default, because the default on-board
4436 DDR DIMMs are 2x512MB single-rank.
4437
4438 * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
4439
4440 Signed-off-by: James Yang <James.Yang@freescale.com>
4441 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4442
4443commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
4444Author: Haiying Wang <Haiying.Wang@freescale.com>
4445Date: Fri Oct 3 12:37:26 2008 -0400
4446
4447 Add debug information for DDR controller registers
4448
4449 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4450
4451commit c9ffd839b1ada502c86f88edaf1534426b6688ce
4452Author: Haiying Wang <Haiying.Wang@freescale.com>
4453Date: Fri Oct 3 12:37:10 2008 -0400
4454
4455 Check DDR interleaving mode
4456
4457 * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
4458 ba_intlv_ctl.
4459 * Print DDR interleaving mode information
4460 * Add doc/README.fsl-ddr to describe the interleaving setting
4461
4462 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4463
4464commit dfb49108e4f86c2224e1f30124328b0de66ef72e
4465Author: Haiying Wang <Haiying.Wang@freescale.com>
4466Date: Fri Oct 3 12:36:55 2008 -0400
4467
4468 Pass dimm parameters to populate populate controller options
4469
4470 Because some dimm parameters like n_ranks needs to be used with the board
4471 frequency to choose the board parameters like clk_adjust etc. in the
4472 board_specific_paramesters table of the board ddr file, we need to pass
4473 the dimm parameters to the board file.
4474
4475 * move ddr dimm parameters header file from /cpu to /include directory.
4476 * add ddr dimm parameters to populate board specific options.
4477 * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
4478
4479 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4480
4481commit dbbbb3abeff325855cae76e33d69d5665631443f
4482Author: Haiying Wang <Haiying.Wang@freescale.com>
4483Date: Fri Oct 3 12:36:39 2008 -0400
4484
4485 Make DDR interleaving mode work correctly
4486
4487 Fix some bugs:
4488 1. Correctly set intlv_ctl in cs_config.
4489 2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
4490 3. Set base_address and total memory for each ddr controller in memory
4491 controller interleaving mode.
4492
4493 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4494
4495commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
4496Author: Kumar Gala <galak@kernel.crashing.org>
4497Date: Mon Sep 22 23:40:42 2008 -0500
4498
4499 85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
4500
4501 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4502
4503commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
4504Author: Kumar Gala <galak@kernel.crashing.org>
4505Date: Mon Sep 22 14:11:11 2008 -0500
4506
4507 85xx: Improve flash remapping on MPC8572DS & MPC8536DS
4508
4509 Changing the flash from cacheable to cache-inhibited was taking a significant
4510 amount of time due to the fact that we were iterating over the full 256M of
4511 flash. Instead we can just flush the L1 d-cache and invalidate the i-cache.
4512
4513 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4514
4515commit 54e091d3b603a3332c619199ca83a07e95960da4
4516Author: Kumar Gala <galak@kernel.crashing.org>
4517Date: Mon Sep 22 14:11:10 2008 -0500
4518
4519 85xx: Export invalidate_{i,d}cache and add flush_dcache
4520
4521 Added the ability for C code to invalidate the i/d-cache's and
4522 to flush the d-cache. This allows us to more efficient change mappings
4523 from cache-able to cache-inhibited.
4524
4525 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4526
4527commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
4528Author: Heiko Schocher <hs@denx.de>
4529Date: Fri Oct 17 16:11:52 2008 +0200
4530
4531 mgcoge, mgsuvd: extract more common code
4532
4533 in ft_blob_update () for both boards was an unneccessary
4534 repetition of code, which this patch moves in a common
4535 function for this boards.
4536
4537 Signed-off-by: Heiko Schocher <hs@denx.de>
4538
4539commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
4540Author: Heiko Schocher <hs@denx.de>
4541Date: Fri Oct 17 12:15:55 2008 +0200
4542
4543 mgcoge, mgsuvd: use in_*/out_* accesors
4544
4545 Signed-off-by: Heiko Schocher <hs@denx.de>
4546
4547commit a21ca95f8b9dca22714952b348e4905ac157b5cd
4548Author: Heiko Schocher <hs@denx.de>
4549Date: Fri Oct 17 13:52:51 2008 +0200
4550
4551 mgsuvd: fix compiler warning when using soft_i2c driver
4552
4553 Signed-off-by: Heiko Schocher <hs@denx.de>
4554
4555commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
4556Author: Heiko Schocher <hs@denx.de>
4557Date: Fri Oct 17 12:15:05 2008 +0200
4558
4559 mgsuvd: fix coding style
4560
4561 Signed-off-by: Heiko Schocher <hs@denx.de>
4562
4563commit 5f4c3137f4f051787707c548133823f1656eb508
4564Author: Heiko Schocher <hs@denx.de>
4565Date: Fri Oct 17 12:13:30 2008 +0200
4566
4567 mgcoge: Second Flash on CS5 not on CS1
4568
4569 Signed-off-by: Heiko Schocher <hs@denx.de>
4570
4571commit 76da19df5b8e186d269f29190696bd31fb6c836b
4572Author: Kumar Gala <galak@kernel.crashing.org>
4573Date: Thu Oct 16 21:52:08 2008 -0500
4574
4575 Added arch_lmb_reserve to allow arch specific memory regions protection
4576
4577 Each architecture has different ways of determine what regions of memory
4578 might not be valid to get overwritten when we boot. This provides a
4579 hook to allow them to reserve any regions they care about. Currently
4580 only ppc, m68k and sparc need/use this.
4581
4582 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4583
4584commit e02d4a9904c8f36395994c0c81469d552b82f5ea
4585Author: Heiko Schocher <hs@denx.de>
4586Date: Thu Oct 16 16:32:35 2008 +0200
4587
4588 mgcoge: added CONFIG_FIT to support the new u-boot image format
4589
4590 Signed-off-by: Heiko Schocher <hs@denx.de>
4591
4592commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
4593Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4594Date: Thu Oct 16 15:01:15 2008 +0200
4595
4596 rename CFG_ macros to CONFIG_SYS
4597
4598 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4599
4600commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
4601Author: Kumar Gala <galak@kernel.crashing.org>
4602Date: Mon Oct 13 14:12:55 2008 -0500
4603
4604 74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
4605
4606 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4607
4608commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
4609Author: Kumar Gala <galak@kernel.crashing.org>
4610Date: Tue Sep 23 10:05:02 2008 -0500
4611
4612 Expose command table search for sub-commands
4613
4614 Sub-command can benefit from using the same table and search functions
4615 that top level commands have. Expose this functionality by refactoring
4616 find_cmd() and introducing find_cmd_tbl() that sub-command processing
4617 can call.
4618
4619 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4620
4621commit f7e51b27508446f8cae3927975817137979ad5e8
4622Author: Heiko Schocher <hs@denx.de>
4623Date: Wed Oct 15 09:41:33 2008 +0200
4624
4625 mgsuvd, mgcoge: added BOOTCOUNT feature.
4626
4627 Signed-off-by: Heiko Schocher <hs@denx.de>
4628
4629commit 8f64da7f83b553889bc08400c97047998382e9d2
4630Author: Heiko Schocher <hs@denx.de>
4631Date: Wed Oct 15 09:41:00 2008 +0200
4632
4633 mgcoge, mgsuvd: added support for the IVM EEprom.
4634
4635 The EEprom contains some Manufacturerinformation,
4636 which are read from u-boot at boot time, and saved
4637 in same hush shell variables.
4638
4639 Signed-off-by: Heiko Schocher <hs@denx.de>
4640
4641commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
4642Author: Heiko Schocher <hs@denx.de>
4643Date: Wed Oct 15 09:40:28 2008 +0200
4644
4645 hush: add showvar command for hush shell.
4646
4647 This new command shows the local variables defined in
4648 the hush shell:
4649
4650 => help showvar
4651 showvar
4652 - print values of all hushshell variables
4653 showvar name ...
4654 - print value of hushshell variable 'name'
4655
4656 Also make the set_local_var() and unset_local_var ()
4657 no longer static, so it is possible to define local
4658 hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
4659 is defined, u-boot calls hush_init_var (), where
4660 boardspecific code can define local hush shell
4661 variables at boottime.
4662
4663 Signed-off-by: Heiko Schocher <hs@denx.de>
4664
4665commit 67b23a322848d828a5e45c0567b72762bfde7abf
4666Author: Heiko Schocher <hs@denx.de>
4667Date: Wed Oct 15 09:39:47 2008 +0200
4668
4669 I2C: adding new "i2c bus" Command to the I2C Subsystem.
4670
4671 With this Command it is possible to add new I2C Busses,
4672 which are behind 1 .. n I2C Muxes. Details see README.
4673
4674 Signed-off-by: Heiko Schocher <hs@denx.de>
4675
4676commit c24853644ddd2dd2e4246b5854a93e6254a14092
4677Author: Heiko Schocher <hs@denx.de>
4678Date: Wed Oct 15 09:39:08 2008 +0200
4679
4680 mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
4681
4682 As documented in doc/I2C_Edge_Conditions, adding a
4683 board specific deblocking mechanism via CFG_I2C_INIT_BOARD
4684 for the mgcoge and mgsuvd board.
4685
4686 This code was originally written by Keymile in association
4687 with Anatech and Atmel in 1998. The Code toggels the SCL
4688 until the SCA line goes to HIGH (max. 16 times).
4689 And after this, a start condition is sent.
4690
4691 This is another approach to deblock the I2C Bus. The
4692 soft I2C driver actually sends 9 clocks with SDA High,
4693 and then a stop at the end, to deblock the I2C Bus.
4694
4695 Maybe we should use the approach from Keymile as
4696 the new standard?
4697
4698 Signed-off-by: Heiko Schocher <hs@denx.de>
4699
4700commit 4ca107effebfbabac1057c39632105dacef95957
4701Author: Heiko Schocher <hs@denx.de>
4702Date: Wed Oct 15 09:38:38 2008 +0200
4703
4704 soft_i2c: Add CFG_I2C_INIT_BOARD option
4705
4706 This patch adds the option for a boardspecific
4707 I2C deblocking mechanism for the soft i2c driver.
4708
4709 Signed-off-by: Heiko Schocher <hs@denx.de>
4710
4711commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
4712Author: Heiko Schocher <hs@denx.de>
4713Date: Wed Oct 15 09:38:07 2008 +0200
4714
4715 mgcoge, mgsuvd: add DTT (LM75) support.
4716
4717 Signed-off-by: Heiko Schocher <hs@denx.de>
4718
4719commit 8e442df438ab677057571e3ac01846bff7719bce
4720Author: Heiko Schocher <hs@denx.de>
4721Date: Wed Oct 15 09:37:34 2008 +0200
4722
4723 lm75: Make the LM75 MULTI_BUS compatible.
4724
4725 Signed-off-by: Heiko Schocher <hs@denx.de>
4726
4727commit 12f1678127c1df2b2878ba93c88948bedc060775
4728Author: Heiko Schocher <hs@denx.de>
4729Date: Wed Oct 15 09:37:04 2008 +0200
4730
4731 lm75: fix Codingstyle issues.
4732
4733 Signed-off-by: Heiko Schocher <hs@denx.de>
4734
4735commit f2202450c75ba6934b356024101500ddcde6e2a6
4736Author: Heiko Schocher <hs@denx.de>
4737Date: Wed Oct 15 09:36:33 2008 +0200
4738
4739 mgcoge, mgsuvd: added EEprom support.
4740
4741 Signed-off-by: Heiko Schocher <hs@denx.de>
4742
4743commit 9661bf9d120f760238b2a073b84f2baf05010057
4744Author: Heiko Schocher <hs@denx.de>
4745Date: Wed Oct 15 09:36:03 2008 +0200
4746
4747 mgcoge, mgsuvd: add I2C support.
4748
4749 Signed-off-by: Heiko Schocher <hs@denx.de>
4750
4751commit 98aed379586a155292efbf3209356836584b601c
4752Author: Heiko Schocher <hs@denx.de>
4753Date: Wed Oct 15 09:35:26 2008 +0200
4754
4755 soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
4756
4757 This patch fixes the following warnings, when using
4758 the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
4759 systems:
4760
4761 soft_i2c.c: In function 'send_reset':
4762 soft_i2c.c:93: warning: unused variable 'immr'
4763 soft_i2c.c: In function 'send_start':
4764 soft_i2c.c:124: warning: unused variable 'immr'
4765 soft_i2c.c: In function 'send_stop':
4766 soft_i2c.c:146: warning: unused variable 'immr'
4767 soft_i2c.c: In function 'send_ack':
4768 soft_i2c.c:171: warning: unused variable 'immr'
4769 soft_i2c.c: In function 'write_byte':
4770 soft_i2c.c:196: warning: unused variable 'immr'
4771 soft_i2c.c: In function 'read_byte':
4772 soft_i2c.c:244: warning: unused variable 'immr'
4773
4774 Signed-off-by: Heiko Schocher <hs@denx.de>
4775
4776commit 799b784aa00cb03a352847ab9f9acdde79b72d21
4777Author: Heiko Schocher <hs@denx.de>
4778Date: Wed Oct 15 09:34:45 2008 +0200
4779
4780 i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
4781
4782 Signed-off-by: Heiko Schocher <hs@denx.de>
4783
4784commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
4785Author: Heiko Schocher <hs@denx.de>
4786Date: Wed Oct 15 09:34:05 2008 +0200
4787
4788 mgcoge: fix Coding Style issues.
4789
4790 Signed-off-by: Heiko Schocher <hs@denx.de>
4791
4792commit e43a27c49712203fe8848a17714330623edfb2eb
4793Author: Heiko Schocher <hs@denx.de>
4794Date: Wed Oct 15 09:33:30 2008 +0200
4795
4796 I2C: add new command i2c reset.
4797
4798 If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
4799 it is not possible to get out of this, until the
4800 complete Hardware gets a reset. This new commando
4801 calls again i2c_init (and that calls i2c_init_board
4802 if defined), which will deblock the I2C Bus.
4803
4804 Signed-off-by: Heiko Schocher <hs@denx.de>
4805 Signed-off-by: Wolfgang Denk <wd@denx.de>
4806
4807commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
4808Author: Heiko Schocher <hs@denx.de>
4809Date: Wed Oct 15 09:32:25 2008 +0200
4810
4811 mgsuvd, mgcoge: move this 2 boards in one dir.
4812
4813 There are some more extensions, which are for both boards
4814 and some more boards from this manufacturer will follow soon.
4815
4816 Signed-off-by: Heiko Schocher <hs@denx.de>
4817 Signed-off-by: Wolfgang Denk <wd@denx.de>
4818
4819commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
4820Author: Dirk Eibach <eibach@gdsys.de>
4821Date: Wed Oct 8 13:44:27 2008 +0200
4822
4823 hwmon: Add LM63 support
4824
4825 This patch adds support for the National LM63 temperature
4826 sensor with integrated fan control. It's used on the GDSys
4827 Neo board (405EP) which will be submitted later.
4828
4829 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
4830 Acked-by: Stefan Roese <sr@denx.de>
4831
4832commit 7ba890bf2f2b92831420243c058951aa831119fd
4833Author: Kyungmin Park <kmpark@infradead.org>
4834Date: Wed Oct 8 11:01:17 2008 +0900
4835
4836 Add Red Black Tree support
4837
4838 Now it's used at UBI module. Of course other modules can use it.
4839 If you want to use it, please define CONFIG_RBTREE
4840
4841 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4842
4843commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
4844Author: richardretanubun <richardretanubun@ruggedcom.com>
4845Date: Mon Oct 6 16:10:53 2008 -0400
4846
4847 CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
4848
4849 Added support for CONFIG_EFI_PARTITION to ext2 commands.
4850 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
4851
4852commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
4853Author: richardretanubun <richardretanubun@ruggedcom.com>
4854Date: Fri Sep 26 11:13:22 2008 -0400
4855
4856 Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
4857
4858 The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
4859 of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
4860
4861 Based on linux/fs/partitions/efi.[ch]
4862
4863 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
4864
4865commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
4866Author: Bartlomiej Sieka <tur@semihalf.com>
4867Date: Wed Oct 1 15:26:32 2008 +0200
4868
4869 FIT: output image load address for type 'firmware', fix message while there
4870
4871 Now that the auto-update feature uses the 'firmware' type for updates, it is
4872 useful to inspect the load address of such images.
4873
4874 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
4875
4876commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
4877Author: Bartlomiej Sieka <tur@semihalf.com>
4878Date: Wed Oct 1 15:26:31 2008 +0200
4879
4880 Automatic software update from TFTP server
4881
4882 The auto-update feature allows to automatically download software updates
4883 from a TFTP server and store them in Flash memory during boot. Updates are
4884 contained in a FIT file and protected with SHA-1 checksum.
4885
4886 More detailed description can be found in doc/README.update.
4887
4888 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
4889 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
4890
4891commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
4892Author: Bartlomiej Sieka <tur@semihalf.com>
4893Date: Wed Oct 1 15:26:27 2008 +0200
4894
4895 flash: factor out adjusting of Flash address to the end of sector
4896
4897 The upcoming automatic update feature needs the ability to adjust an
4898 address within Flash to the end of its respective sector. Factor out
4899 this functionality to a new function flash_sect_roundb().
4900
4901 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
4902 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
4903 Signed-off-by: Stefan Roese <sr@denx.de>
4904
4905commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
4906Author: Bartlomiej Sieka <tur@semihalf.com>
4907Date: Wed Oct 1 15:26:29 2008 +0200
4908
4909 net: Make TFTP server timeout configurable
4910
4911 There are two aspects of a TFTP transfer involving timeouts:
4912 1. timeout waiting for initial server reply after sending RRQ
4913 2. timeouts while transferring actual data from the server
4914
4915 Since the upcoming auto-update feature attempts a TFTP download during each
4916 boot, it is undesirable to have a long delay when the TFTP server is not
4917 available. Thus, this commit makes the server timeout (1.) configurable by two
4918 global variables:
4919
4920 TftpRRQTimeoutMSecs
4921 TftpRRQTimeoutCountMax
4922
4923 TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
4924 server, TftpRRQTimeoutCountMax overrides default number of connection retries.
4925 The total delay when trying to download a file from a non-existing TFTP server
4926 is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
4927
4928 Timeouts during file transfers (2.) are unaffected.
4929
4930 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
4931 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
4932 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4933
4934commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
4935Author: Bartlomiej Sieka <tur@semihalf.com>
4936Date: Wed Oct 1 15:26:28 2008 +0200
4937
4938 net: express the first argument to NetSetTimeout() in milliseconds
4939
4940 Enforce millisecond semantics of the first argument to NetSetTimeout() --
4941 the change is transparent for well-behaving boards (CFG_HZ == 1000 and
4942 get_timer() countiing in milliseconds).
4943
4944 Rationale for this patch is to enable millisecond granularity for
4945 network-related timeouts, which is needed for the upcoming automatic
4946 software update feature.
4947
4948 Summary of changes:
4949 - do not scale the first argument to NetSetTimeout() by CFG_HZ
4950 - change timeout values used in the networking code to milliseconds
4951
4952 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
4953 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
4954 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4955
4956commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
4957Author: richardretanubun <richardretanubun@ruggedcom.com>
4958Date: Mon Sep 29 18:28:23 2008 -0400
4959
4960 Adds two more ethernet interface to 83xx
4961
4962 Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
4963 Six eth interface is chosen because the platform I am using combines
4964 UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
4965
4966 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
4967 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4968
4969commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
4970Author: Haiying Wang <Haiying.Wang@freescale.com>
4971Date: Wed Sep 24 11:42:12 2008 -0500
4972
4973 Change UEC PHY interface to RGMII on MPC8568MDS
4974
4975 Change UEC phy interface from GMII to RGMII on MPC8568MDS board
4976
4977 Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
4978 but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
4979
4980 Now both UEC1 and UEC2 can work properly under u-boot.
4981
4982 It is also in consistent with the kernel setting for 8568 UEC phy interface.
4983
4984 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4985 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4986
4987commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
4988Author: Wolfgang Denk <wd@denx.de>
4989Date: Sat Oct 18 21:30:31 2008 +0200
4990
4991 Prepare v2008.10 release: update CHANGELOG & Makefile
4992
4993 Signed-off-by: Wolfgang Denk <wd@denx.de>
4994
Wolfgang Denkb59b16c2008-10-18 21:30:31 +02004995commit f7a35a60cf45491871a5c28e9ad24db005487857
4996Author: Heiko Schocher <hs@denx.de>
4997Date: Fri Oct 17 18:24:06 2008 +0200
4998
4999 mgcoge: add redundant environment sector
5000
5001 Signed-off-by: Heiko Schocher <hs@denx.de>
5002 Signed-off-by: Wolfgang Denk <wd@denx.de>
5003
5004commit c2537ee85954af9d036b18b644f3e18d837bf4a5
5005Author: Heiko Schocher <hs@denx.de>
5006Date: Fri Oct 17 18:23:27 2008 +0200
5007
5008 mgsuvd: update size of environment
5009
5010 Signed-off-by: Heiko Schocher <hs@denx.de>
5011
5012commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
5013Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
5014Date: Thu Oct 16 13:38:00 2008 -0500
5015
5016 83xx NAND boot: wait for LTESR[CC]
5017
5018 At least some revisions of the 8313, and possibly other chips, do not
5019 wait for all pages of the initial 4K NAND region to be loaded before
5020 beginning execution; thus, we wait for it before branching out of the
5021 first NAND page.
5022
5023 This fixes warm reset problems when booting from NAND on 8313erdb.
5024
5025 Signed-off-by: Scott Wood <scottwood@freescale.com>
5026 Acked-by: Kim Phillips <kim.phillips@freescale.com>
5027
5028commit bf29e0ea0af03d593c64614136acc723a7a022a2
5029Author: Yuri Tikhonov <yur@emcraft.com>
5030Date: Fri Oct 17 12:54:18 2008 +0200
5031
5032 ppc4xx: PPC44x MQ initialization
5033
5034 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
5035 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
5036 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
5037
5038 Previously the appropriate initialization had been made in Linux, by the
5039 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
5040 registers after normal operation has begun is not supported and could
5041 have unpredictable results.
5042
5043 Comment from Stefan: This patch doesn't change the resulting value of the
5044 MQ registers. It explicitly sets/clears all bits to the desired state which
5045 better documents the resulting register value instead of relying on pre-set
5046 default values.
5047
5048 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
5049 Signed-off-by: Stefan Roese <sr@denx.de>
5050
Wolfgang Denk3cbd8232008-11-02 16:14:22 +01005051commit ec081c2c190148b374e86a795fb6b1c49caeb549
5052Author: Stefan Roese <sr@denx.de>
5053Date: Fri Oct 17 12:51:46 2008 +0200
5054
5055 ppc4xx: PPC44x MQ initialization
5056
5057 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
5058 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
5059 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
5060
5061 Previously the appropriate initialization had been made in Linux, by the
5062 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
5063 registers after normal operation has begun is not supported and could
5064 have unpredictable results.
5065
5066 Comment from Stefan: This patch doesn't change the resulting value of the
5067 MQ registers. It explicitly sets/clears all bits to the desired state which
5068 better documents the resulting register value instead of relying on pre-set
5069 default values.
5070
5071 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
5072 Signed-off-by: Stefan Roese <sr@denx.de>
5073
Wolfgang Denkb59b16c2008-10-18 21:30:31 +02005074commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
5075Author: Kumar Gala <galak@kernel.crashing.org>
5076Date: Thu Oct 16 21:58:50 2008 -0500
5077
5078 85xx: Using proper I2C source clock divider for MPC8544
5079
5080 The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
5081 bit 26, instead it should be bit 28. This caused in incorrect
5082 interpretation of the i2c_clk which is the same as the SEC clk on
5083 MPC8544. The SEC clk is controlled by cfg_sec_freq that is reported
5084 in PORDEVSR2.
5085
5086 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5087
5088commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
5089Author: Kumar Gala <galak@kernel.crashing.org>
5090Date: Thu Oct 16 21:58:49 2008 -0500
5091
5092 Revert "85xx: Using proper I2C source clock divider for MPC8544"
5093
5094 This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
5095
5096 The fix introduced by this patch is not correct. The problem is
5097 that the documentation is not correct for the MPC8544 with regards
5098 to which bit in PORDEVSR2 is for the SEC_CFG.
5099
5100 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5101
5102commit 2179c4766bffeece98e5e92040629a96c97e230c
5103Author: Kumar Gala <galak@kernel.crashing.org>
5104Date: Wed Oct 15 10:19:41 2008 -0500
5105
5106 85xx: Fix compile warning
5107
5108 mpc8536ds.c: In function 'is_sata_supported':
5109 mpc8536ds.c:614: warning: unused variable 'devdisr'
5110
5111 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5112
5113commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
5114Author: Jason Jin <Jason.jin@freescale.com>
5115Date: Wed Oct 15 10:40:24 2008 +0800
5116
5117 Fix the function conflict in x86emu when DEBUG is on
5118
5119 The function parse_line() in common/main.c was exposed globally by commit
5120 6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
5121 name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
5122 This patch fix this by renaming the function in the debug.c file.
5123
5124 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
5125
5126commit b4dbacf69a669a17487054552fc2761149dd6767
5127Author: Wolfgang Denk <wd@denx.de>
5128Date: Wed Oct 15 15:50:45 2008 +0200
5129
5130 Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
5131
5132 Signed-off-by: Wolfgang Denk <wd@denx.de>
5133
Wolfgang Denkb4dbacf2008-10-15 15:50:45 +02005134commit 374b9038293d01d8744a46af9b7854a6fd99b228
5135Author: Heiko Schocher <hs@denx.de>
5136Date: Wed Oct 15 09:51:19 2008 +0200
5137
5138 Fix compiler warning in lib_ppc/board.c
5139
5140 Fix compiler warning introduced by commit 0f8cbc18
5141
5142 Signed-off-by: Heiko Schocher <hs@denx.de>
5143 Signed-off-by: Wolfgang Denk <wd@denx.de>
5144
5145commit 9724555755a6f1066636481b41f7094e0ce93a69
5146Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
5147Date: Thu Oct 9 10:29:14 2008 +0530
5148
5149 mpc83xx: wait till UPM completes the write to array
5150
5151 Reference manual states that MxMR[MAD] increment is the indication
5152 of write to UPM array is complete. Honour that. Also, make the dummy
5153 write explicit.
5154
5155 also fix the comment.
5156
5157 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
5158 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5159
5160commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
5161Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
5162Date: Wed Oct 8 18:12:20 2008 -0500
5163
5164 Remove unwanted ';' at end of define.
5165
5166 Currently this is not creating any problem. But it will result
5167 in compilation error when used as below.
5168
5169 printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
5170
5171 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
5172
5173 continuation of the theme based on git grep "^#define CFG_.*;$" include/
5174
5175 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5176
5177commit b2934a56650e9a6c54432f9ce6dc36757967385e
5178Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5179Date: Mon Oct 6 10:53:59 2008 -0400
5180
5181 ARM DaVinci: Add maintainer information for SFFSDR board.
5182
5183 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5184
5185commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
5186Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5187Date: Sat Oct 4 19:26:16 2008 +0200
5188
5189 api: fix type mismatch
5190
5191 This patch fixes a type mismatch and thus removes a compiler
5192 warning when compiling with CONFIG_API on powerpc.
5193
5194 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5195
5196commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
5197Author: Peter Tyser <ptyser@xes-inc.com>
5198Date: Wed Oct 1 12:25:04 2008 -0500
5199
5200 cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
5201
5202 Original code displayed:
5203 => help i2c
5204 i2c i2c speed [speed] - show or set I2C bus speed
5205 i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
5206 ...
5207
5208 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5209
5210commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
5211Author: Wolfgang Denk <wd@denx.de>
5212Date: Tue Oct 14 22:13:41 2008 +0200
5213
5214 Update CHANGELOG
5215
5216 Signed-off-by: Wolfgang Denk <wd@denx.de>
5217
Wolfgang Denka0b1b612008-10-14 22:13:41 +02005218commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
5219Author: Jason Jin <Jason.jin@freescale.com>
5220Date: Fri Oct 10 11:41:01 2008 +0800
5221
5222 Do not init SATA when disabled on 8536DS.
5223
5224 SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
5225 driver still try to access the SATA registers, the cpu will hangup.
5226 This patch try to fix this by reading the serdes status before the SATA
5227 initialize.
5228
5229 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
5230 Acked-by: Andy Fleming <afleming@freescale.com>
5231
Wolfgang Denk3cbd8232008-11-02 16:14:22 +01005232commit 9dbc366744960013965fce8851035b6141f3b3ae
5233Author: Remy Bohmer <linux@bohmer.net>
5234Date: Fri Oct 10 10:23:22 2008 +0200
5235
5236 The PIPE_INTERRUPT flag is used wrong
5237
5238 At a lot of places in the code the PIPE_INTERRUPT flags and friends
5239 are used wrong. The wrong bits are compared to this flag resulting
5240 in wrong conditions. Also there are macros that should be used for
5241 PIPE_* flags.
5242 This patch tries to fix them all, however, I was not able to test the
5243 changes, because I do not have any of these boards.
5244
5245 Review required!
5246
5247 Signed-off-by: Remy Bohmer <linux@bohmer.net>
5248 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
5249
5250commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
5251Author: Remy Bohmer <linux@bohmer.net>
5252Date: Fri Oct 10 10:23:21 2008 +0200
5253
5254 fix USB initialisation procedure
5255
5256 The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
5257 At some places directly 8,16,32,64 was used instead of the encoded
5258 value. Made a enum for the options to make this more clear and to help
5259 preventing similar errors in the future.
5260
5261 After fixing this bug it became clear that another bug existed where
5262 the 'pipe' is and-ed with PIPE_* flags, where it should have been
5263 'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
5264
5265 Also removed the triple 'get_device_descriptor' sequence, it has no use,
5266 and Windows nor Linux behaves that way.
5267 There is also a poll going on with a timeout when usb_control_msg() fails.
5268 However, the poll is useless, because the flag will never be set on a error,
5269 because there is no code that runs in a parallel that can set this flag.
5270 Changed this to something more logical.
5271
5272 Tested on AT91SAM9261ek and compared the flow on the USB bus to what
5273 Linux is doing. There is no difference anymore in the early initialisation
5274 sequence.
5275
5276 Signed-off-by: Remy Bohmer <linux@bohmer.net>
5277 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
5278
Wolfgang Denka0b1b612008-10-14 22:13:41 +02005279commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
5280Author: Nikita V. Youshchenko <yoush@cs.msu.su>
5281Date: Fri Oct 3 00:03:55 2008 +0400
5282
5283 fsl_diu: fix alignment error that caused malloc corruption
5284
5285 When aligning malloc()ed screen_base, invalid offset was added.
5286 This not only caused misaligned result (which did not cause hardware
5287 misbehaviour), but - worse - caused screen_base + smem_len to
5288 be out of malloc()ed space, which in turn caused breakage of
5289 futher malloc()/free() operation.
5290
5291 This patch fixes screen_base alignment.
5292
5293 Also this patch makes memset() that cleans framebuffer to be executed
5294 on first initialization of diu, not only on re-initialization. It looks
5295 correct to clean the framebuffer instead of displaying random garbage;
5296 I believe that was disabled only because that memset caused breakage
5297 of malloc/free described above - which no longer happens with the fix
5298 described above.
5299
5300 Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
5301
5302commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
5303Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5304Date: Wed Sep 24 10:29:37 2008 +0200
5305
5306 api: Fix building with CONFIG_API
5307
5308 This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
5309
5310 USB_MAX_STOR_DEV is defined in include/usb.h, but
5311 needed in api/api_storage.c.
5312
5313 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5314
5315commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
5316Author: Peter Tyser <ptyser@xes-inc.com>
5317Date: Tue Sep 23 12:39:40 2008 -0500
5318
5319 Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
5320
5321 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5322
5323commit 81e612014c40c922ec35488d17c504d4e9286f06
5324Author: Peter Tyser <ptyser@xes-inc.com>
5325Date: Tue Sep 23 12:38:42 2008 -0500
5326
5327 Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
5328
5329 The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
5330 CFG_EEPROM_PAGE_WRITE_BITS in various temperature
5331 sensor drivers are not necessary
5332
5333 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5334
5335commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
5336Author: Mike Frysinger <vapier@gentoo.org>
5337Date: Tue Oct 14 07:04:38 2008 -0400
5338
5339 cmd_spi: remove broken signed casting for display
5340
5341 Since we're working with unsigned data, you can't apply a signed pointer
5342 cast and then attempt to print the result. Otherwise you get wrong output
5343 when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
5344
5345 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5346
5347commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
5348Author: Mike Frysinger <vapier@gentoo.org>
5349Date: Tue Oct 14 07:05:24 2008 -0400
5350
5351 strings cmd: drop old CONFIG_CFG_STRINGS define
5352
5353 We don't need CONFIG_CFG_STRINGS anymore now that we have the define
5354 CONFIG_CMD_STRINGS and Makefile control.
5355
5356 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5357
5358commit fecb5ade3b37f62981f2b05b621005850173aaa9
5359Author: Jason Jin <Jason.jin@freescale.com>
5360Date: Fri Sep 19 17:32:49 2008 +0800
5361
5362 Fix the NAND size overflow issue.
5363
5364 When the total size of all NAND devices exceeds 4 GiB, the size will
5365 overflow. This patch tries to fix this.
5366
5367 Note that we still have a problem when a single NAND device is bigger
5368 than 4 GiB: then the overflow would actually happen earlier, i. e.
5369 when storing the size in nand_info[].size, as nand_info[].size is an
5370 "u_int32_t".
5371
5372 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
5373 Signed-off-by: Wolfgang Denk <wd@denx.de>
5374
5375commit 30f574717277238b9014b8136c90eea77196490f
5376Author: Louis Su <louis@asix.com.tw>
5377Date: Wed Jul 9 11:01:37 2008 +0800
5378
5379 AX88180: new gigabit network driver
5380
5381 Signed-off-by: Louis Su <louis@asix.com.tw>
5382 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5383
5384commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
5385Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
5386Date: Tue Aug 19 16:07:03 2008 +0200
5387
5388 enable 10/100M at VSC8601 at tsec driver
5389
5390 Currently VSC8601 doesn't link with 10/100M partners if the
5391 EEPROM/Strapping is not set up.
5392 Setting the auto-neg register fixes this.
5393
5394 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
5395 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5396
5397commit 702c85b0e876d587c11acdbb55738ee52acd54f4
5398Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5399Date: Tue Sep 30 15:02:53 2008 +0900
5400
5401 net: ne2000: Divided a function of NE2000 driver
5402
5403 get_prom function was used __attriute__ , but it is not enable.
5404 ax88796.o does not do link besides ne2000.o. When ld is carried
5405 out, get_prom function of ax88796.c is ignored.
5406 This problem is a thing by specifications of ld.
5407 I checked and test this patch on SuperH and MIPS.
5408
5409 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5410 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5411
5412commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
5413Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5414Date: Tue Oct 14 11:10:59 2008 +0900
5415
5416 sh: rsk7203: Add smc911x driver support to board config file
5417
5418 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5419 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5420
5421commit cae6f909baf86357b3c0bd01acfc414348c4d175
5422Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5423Date: Thu Oct 9 13:54:33 2008 +0900
5424
5425 sh: Fix cannot execute a stand-alone application
5426
5427 Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
5428
5429 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5430 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5431
5432commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
5433Author: Ed Swarthout <Ed.Swarthout@freescale.com>
5434Date: Wed Oct 8 23:38:00 2008 -0500
5435
5436 fsl_pci_init do not scan bus when configured as an end-point
5437
5438 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
5439 Acked-by: Andy Fleming <afleming@freescale.com>
5440
5441commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
5442Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5443Date: Tue Sep 16 17:07:53 2008 -0400
5444
5445 ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
5446
5447 This is no longer necessary now that the GD_FLG_RELOC flag is set for
5448 all ARM boards.
5449
5450 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5451
5452commit d977a57356657ba241256231efca32828a5822f9
5453Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
5454Date: Sat Sep 13 10:04:32 2008 +0200
5455
5456 Fix lzma uncompress call (image_start wrongly used instead image_len)
5457
5458 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
5459
5460commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
5461Author: Nick Spence <nick.spence@freescale.com>
5462Date: Thu Aug 28 14:09:15 2008 -0700
5463
5464 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
5465
5466 This is needed in unlock_ram_in_cache() because it is called from C and
5467 will corrupt the small data area anchor that is kept in R2.
5468
5469 lock_ram_in_cache() is modified similarly as good coding practice, but
5470 is not called from C.
5471
5472 Signed-off-by: Nick Spence <nick.spence@freescale.com>
5473
5474commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
5475Author: Kumar Gala <galak@kernel.crashing.org>
5476Date: Tue Aug 19 15:05:34 2008 -0500
5477
5478 86xx: remove redudant code with lib_ppc/interrupts.c
5479
5480 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
5481 Not know how that happened, but there is no good reason for it.
5482
5483 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
5484 they exist.
5485
5486 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5487
5488commit 0d01f66d235118515b5086b88f82498bc0695d6a
5489Author: Ed Swarthout <Ed.Swarthout@freescale.com>
5490Date: Thu Oct 9 01:26:36 2008 -0500
5491
5492 CFI: cfi_flash write fix for AMD legacy
5493
5494 The flash_unlock_seq requires a sector for AMD_LEGACY.
5495 Fix a retcode check typeo.
5496
5497 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
5498 Signed-off-by: Stefan Roese <sr@denx.de>
5499
5500commit 542b385a620a1783454a00424930e51895f45073
5501Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5502Date: Tue Oct 7 13:13:10 2008 +0200
5503
5504 ppc4xx: Fix USB 2.0 phy reset sequence
5505
5506 This patch fixes USB 2.0 communication issues on some DU440 boards.
5507
5508 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5509 Signed-off-by: Stefan Roese <sr@denx.de>
5510
5511commit df8c1ce11114c2260dedb5547281945f7db8fa5c
5512Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5513Date: Tue Oct 7 13:13:09 2008 +0200
5514
5515 ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
5516
5517 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5518 Signed-off-by: Stefan Roese <sr@denx.de>
5519
5520commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
5521Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5522Date: Tue Oct 7 13:13:08 2008 +0200
5523
5524 ppc4xx: Fix DU440 GPIO configuration
5525
5526 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5527 Signed-off-by: Stefan Roese <sr@denx.de>
5528
5529commit 35dd025c70fcc4389317db2f2a9d14795172137d
5530Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5531Date: Tue Oct 7 13:13:07 2008 +0200
5532
5533 ppc4xx: Update DU440 config
5534
5535 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5536 Signed-off-by: Stefan Roese <sr@denx.de>
5537
5538commit f3bf9273939ffe1a60a32a2eef909097f15df56b
5539Author: Kumar Gala <galak@kernel.crashing.org>
5540Date: Wed Oct 8 15:36:39 2008 -0500
5541
5542 MPC8572DS: Fix compile warnings
5543
5544 Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
5545 compile warnings:
5546
5547 cmd_i2c.c:112: warning: missing braces around initializer
5548 cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
5549
5550 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5551
5552commit dffd2446fb041f38ef034b0fcf41e51e5e489159
5553Author: Wolfgang Grandegger <wg@grandegger.com>
5554Date: Tue Sep 30 10:55:57 2008 +0200
5555
5556 85xx: Using proper I2C source clock divider for MPC8544
5557
5558 Measurements with our MPC8544 board showed that the I2C bus frequency
5559 is wrong by a factor of 1.5. Obviously, the interpretation of the
5560 MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
5561 correct. There seems to be an error in the 8544 RM.
5562
5563 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
5564
5565commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
5566Author: Rafal Czubak <rcz@semihalf.com>
5567Date: Wed Oct 8 13:41:30 2008 +0200
5568
5569 FSL: Fix get_cpu_board_revision() return value.
5570
5571 get_cpu_board_revision() returned board revision based on information stored
5572 in global static struct eeprom. It should instead use one from local struct
5573 board_eeprom, to which the data is actually read from EEPROM. The bug led to
5574 system hang after printing L1 cache information on U-Boot startup. The problem
5575 was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
5576 boards using CFG_I2C_EEPROM_CCID.
5577
5578 The change has been successfully tested on MPC8555CDS system.
5579
5580 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
5581
5582commit 747f316cca484ed627a97dd3391febabce384186
5583Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5584Date: Tue Sep 30 20:08:49 2008 +0200
5585
5586 update uImage FIT multi documentation
5587
5588 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5589
5590commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
5591Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5592Date: Tue Sep 30 20:08:36 2008 +0200
5593
5594 move README.imx31 to doc/ and merge with README.mx31
5595
5596 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5597
5598commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
5599Author: Guennadi Liakhovetski <lg@denx.de>
5600Date: Thu Sep 25 20:54:37 2008 +0200
5601
5602 i.MX31: switch to CFG_HZ=1000
5603
5604 Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
5605 cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
5606 provides 2% or 0.4% precision depending on the
5607 CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
5608 boot-delay.
5609
5610 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5611
5612commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
5613Author: gnusercn <gnusercn@gmail.com>
5614Date: Wed Oct 8 18:58:58 2008 +0200
5615
5616 Fix bug: in arch-arm, env_get_char dose not work fine
5617
5618 due to the arm implementation which supposed that U-Boot is in RAM
5619 when we jump to start_armboot
5620
5621 Signed-off-by: gnusercn <gnusercn@gmail.com>
5622 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5623
5624commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
5625Author: Adam Graham <agraham@amcc.com>
5626Date: Mon Oct 6 10:16:13 2008 -0700
5627
5628 ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
5629
5630 After changing SDRAM_CLKTR phase value rerun the memory preload
5631 initialization sequence (INITPLR) to reset and relock the memory
5632 DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
5633 adjustment effects the phase relationship of the internal, to the
5634 PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
5635
5636 Signed-off-by: Adam Graham <agraham@amcc.com>
5637 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
5638 Signed-off-by: Stefan Roese <sr@denx.de>
5639
5640commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
5641Author: Haiying Wang <Haiying.Wang@freescale.com>
5642Date: Fri Oct 3 11:48:03 2008 -0400
5643
5644 Remove redundant #define for MPC8536DS
5645
5646 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5647
5648commit 445a7b38308eb05b41de74165b20855db58c7ee5
5649Author: Haiying Wang <Haiying.Wang@freescale.com>
5650Date: Fri Oct 3 11:47:30 2008 -0400
5651
5652 Add ID EEPROM support for MPC8572DS
5653
5654 The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
5655 system information like mac addresses etc. This patch enables it.
5656
5657 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5658
5659commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
5660Author: Haiying Wang <Haiying.Wang@freescale.com>
5661Date: Fri Oct 3 11:46:59 2008 -0400
5662
5663 Minor fixes for I2C address on MPC8572DS
5664
5665 MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
5666 according to the board spec, and adds the 2nd i2c bus offset.
5667
5668 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5669
5670commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
5671Author: Jason Jin <Jason.jin@freescale.com>
5672Date: Sat Sep 27 14:40:57 2008 +0800
5673
5674 Fix the incorrect DDR clk freq reporting on 8536DS
5675
5676 On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
5677 The display is still sync mode DDR freq. This patch try to fix
5678 this. The display DDR freq is now the actual freq in both
5679 sync and async mode.
5680
5681 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
5682
5683commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
5684Author: Kumar Gala <galak@kernel.crashing.org>
5685Date: Tue Oct 7 10:28:46 2008 -0500
5686
5687 85xx: Remove setting of *cache-line-size in device trees
5688
5689 ePAPR says if the *cache-block-size is the same as *cache-line-size
5690 than we don't need the *cache-line-size property.
5691
5692 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5693
5694commit cd3cb0d9269d155276b00207e3816a9347fd1c92
5695Author: Gerald Van Baren <vanbaren@cideas.com>
5696Date: Sat Oct 4 07:56:06 2008 -0400
5697
5698 libfdt: Fix error in documentation for fdt_get_alias_namelen()
5699
5700 Oops, screwed up the function name in the documenting comment for this
5701 function. Trivial correction in this patch.
5702
5703 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
5704 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
5705
5706commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
5707Author: David Gibson <david@gibson.dropbear.id.au>
5708Date: Wed Aug 20 16:55:14 2008 +1000
5709
5710 libfdt: Add function to explicitly expand aliases
5711
5712 Kumar has already added alias expansion to fdt_path_offset().
5713 However, in some circumstances it may be convenient for the user of
5714 libfdt to explicitly get the string expansion of an alias. This patch
5715 adds a function to do this, fdt_get_alias(), and uses it to implement
5716 fdt_path_offset().
5717
5718 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
5719
5720commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
5721Author: Mike Frysinger <vapier@gentoo.org>
5722Date: Thu Oct 2 01:55:38 2008 -0400
5723
5724 cfi_flash: do not reset flash when probe fails
5725
5726 The CFI flash driver starts at flash_init() which calls down into
5727 flash_get_size(). This starts by calling flash_detect_cfi(). If said
5728 function fails, flash_get_size() finishes by attempting to reset the
5729 flash. Unfortunately, it does this with an info->portwidth set to 0x10
5730 which filters down into flash_make_cmd() and that happily smashes the
5731 stack by sticking info->portwidth bytes into a cfiword_t variable that
5732 lives on the stack. On a 64bit system you probably won't notice, but
5733 killing the last 8 bytes on a 32bit system usually leads to a corrupt
5734 return address. Which is what happens on a Blackfin system.
5735
5736 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5737 Signed-off-by: Stefan Roese <sr@denx.de>
5738
5739commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
5740Author: Stefan Roese <sr@denx.de>
5741Date: Fri Sep 26 17:03:26 2008 +0200
5742
5743 fdt: Overwrite /chosen node in bootm if it already exists in the dtb
5744
5745 Set force parameter in fdt_chosen() call in do_bootm_linux() call.
5746 Without this, the chosen node is not overwritten if it already
5747 exists.
5748
5749 Signed-off-by: Stefan Roese <sr@denx.de>
5750
5751commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
5752Author: Jon Loeliger <jdl@freescale.com>
5753Date: Thu Sep 25 11:02:17 2008 -0500
5754
5755 Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
5756
5757 Using Gcc 4.3 detected this problem:
5758
5759 ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
5760 ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
5761 occur when assuming that (X + c) < X is always false
5762
5763 To fix the problem, treat the offset as an unsigned int.
5764
5765 The problem report and proposed fix were provided
5766 by Steve Papacharalambous <stevep@freescale.com>.
5767
5768 Signed-off-by: Jon Loeliger <jdl@freescale.com>
5769
5770commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
5771Author: David Gibson <david@gibson.dropbear.id.au>
5772Date: Fri Aug 29 14:19:13 2008 +1000
5773
5774 libfdt: Fix bugs in fdt_get_path()
5775
5776 The current implementation of fdt_get_path() has a couple of bugs,
5777 fixed by this patch.
5778
5779 First, contrary to its documentation, on success it returns the length
5780 of the node's path, rather than 0. The testcase is correspondingly
5781 wrong, and the patch fixes this as well.
5782
5783 Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
5784 instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
5785 Specifically this happens when there is insufficient space even to
5786 hold the path's second last component. This behaviour is corrected,
5787 and the testcase updated to check it.
5788
5789 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
5790
5791commit 33af3e6656e84660d397b5dd95abab2dccc36f83
5792Author: Wolfgang Denk <wd@denx.de>
5793Date: Wed Oct 1 12:34:58 2008 +0200
5794
5795 TQM5200: enable support for ATAPI devices
5796
5797 Signed-off-by: Wolfgang Denk <wd@denx.de>
5798
5799commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
5800Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5801Date: Mon Sep 15 05:48:25 2008 +0200
5802
5803 Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
5804
5805 we need this due to the arm implementation which supposed that U-Boot
5806 is in RAM when we jump to start_armboot
5807
5808 This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
5809 in order to do it for all arm board
5810
5811 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5812
5813commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
5814Author: Kim Phillips <kim.phillips@freescale.com>
5815Date: Wed Sep 24 08:46:25 2008 -0500
5816
5817 mpc83xx: don't disable autoboot
5818
5819 bootdelay set to -1 'permanently' disables autobooting, even if
5820 bootcmd is specified. Change to a positive value to allow
5821 autobooting when a bootcmd is set.
5822
5823 Reported-by: Coray Tate <Coray.Tate@freescale.com>
5824 Cc: Scott Wood <scottwood@freescale.com>
5825 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5826
5827commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
5828Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5829Date: Wed Sep 24 10:42:15 2008 +0900
5830
5831 mpc83xx: Fix typo in include/mpc83xx.h
5832
5833 Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
5834
5835 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5836 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5837
5838commit 162c41c03179727a1d14262f703c9a8bc40231fa
5839Author: Kim Phillips <kim.phillips@freescale.com>
5840Date: Tue Sep 23 09:38:49 2008 -0500
5841
5842 mpc83xx: add h/w flash protection to board configs
5843
5844 the operating system may leave flash in a h/w locked state after writing.
5845 This allows u-boot to continue to write flash by enabling h/w unlocking
5846 by default.
5847
5848 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5849
5850commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
5851Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5852Date: Thu Sep 11 21:35:36 2008 +0400
5853
5854 mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
5855
5856 The spd_dram code shifts the base address, then masks 20 bits, but
5857 forgets to shift the base address back. Fix this by just masking the
5858 base address correctly.
5859
5860 Found this bug while trying to relocate a DDR memory at the base != 0.
5861
5862 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5863 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5864
5865commit 8fd4166c467a46773f80208bda1ec3b4757747bc
5866Author: Stefan Roese <sr@denx.de>
5867Date: Mon Sep 22 16:10:43 2008 +0200
5868
5869 ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
5870
5871 Depending on the configuration jumper "SATA SELECT", U-Boot disabled
5872 either one PCIe node or the SATA node in the device tree blob. This
5873 patch removes the unnecessary and even confusing warning, when the node
5874 is not found at all.
5875
5876 Signed-off-by: Stefan Roese <sr@denx.de>
5877
5878commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
5879Author: Remy Bohmer <linux@bohmer.net>
5880Date: Fri Sep 19 13:30:06 2008 +0200
5881
5882 Add missing device types to dev_print() in part.c
5883
5884 Signed-off-by: Remy Bohmer <linux@bohmer.net>
5885
5886commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
5887Author: Wolfgang Denk <wd@denx.de>
5888Date: Mon Sep 22 22:23:06 2008 +0200
5889
5890 Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
5891 eventually leads to a machine check. This change assures that DPRAM
5892 is allocated only once in that case.
5893
5894 Signed-off-by: Gary Jennejohn <garyj@denx.de>
5895 Signed-off-by: Wolfgang Denk <wd@denx.de>
5896
5897commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
5898Author: Laurent Pinchart <laurentp@cse-semaphore.com>
5899Date: Wed Sep 17 17:57:34 2008 +0200
5900
5901 Fix Spartan-3 definitions.
5902
5903 A few Spartan-3 definitions erroneously use Spartan-3E size
5904 constants. This patch fixes them.
5905
5906 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
5907
5908commit 28113e1f0da4146b823ffce37680d31d5685a60b
5909Author: Laurent Pinchart <laurentp@cse-semaphore.com>
5910Date: Wed Sep 17 17:41:58 2008 +0200
5911
5912 Remove duplicate Spartan-3E definition.
5913
5914 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
5915 Signed-off-by: Wolfgang Denk <wd@denx.de>
5916
5917commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
5918Author: Anatolij Gustschin <agust@denx.de>
5919Date: Wed Sep 17 13:46:17 2008 +0200
5920
5921 socrates: change default mtest address range
5922
5923 Running mtest command on socrates without specifying
5924 an address range crashes the board. This patch changes
5925 default mtest address range to prevent this behavior.
5926
5927 Signed-off-by: Anatolij Gustschin <agust@denx.de>
5928
5929commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
5930Author: Anatolij Gustschin <agust@denx.de>
5931Date: Wed Sep 17 12:34:45 2008 +0200
5932
5933 socrates: fix crash after relocation
5934
5935 Currently U-Boot crashes after relocation to RAM.
5936 Changing the CPO value of the DDR SDRAM TIMING_CFG_2
5937 register to READ_LAT + 1 (to the value it was before
5938 conversion of socrates to new DDR code) fixes the
5939 problem.
5940
5941 Signed-off-by: Anatolij Gustschin <agust@denx.de>
5942
5943commit 562788b0a303f3528b920d81f547f5ca77ba528e
5944Author: Anatolij Gustschin <agust@denx.de>
5945Date: Wed Sep 17 11:45:51 2008 +0200
5946
5947 socrates: fix SPD EEPROM address
5948
5949 Commit be0bd8234b9777ecd63c4c686f72af070d886517
5950 changed SPD EEPROM address to 0x51 and DDR SDRAM
5951 detection stopped working. Change this address
5952 back to 0x50.
5953
5954 Signed-off-by: Anatolij Gustschin <agust@denx.de>
5955
5956commit 023824549a370bd185d7129d9a6c86f9be7b86a8
5957Author: Stefan Roese <sr@denx.de>
5958Date: Mon Sep 22 11:06:50 2008 +0200
5959
5960 Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
5961
5962 This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
5963
5964 Signed-off-by: Stefan Roese <sr@denx.de>
5965
Wolfgang Denk3cbd8232008-11-02 16:14:22 +01005966commit e58c41e26cf3c8accd60311be579f452e368e97e
5967Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5968Date: Thu Sep 18 20:13:08 2008 +0900
5969
5970 usb: Fix compile warning of r8a66597-hcd
5971
5972 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5973 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
5974
Wolfgang Denka0b1b612008-10-14 22:13:41 +02005975commit b5d10a13525c07ec6374adf840d7c87553b5f189
5976Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5977Date: Thu Sep 18 19:34:36 2008 +0900
5978
5979 sh: Fix compile warning
5980
5981 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5982
5983commit 4a065abf926f128beb36d93449defa0d690e7fef
5984Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5985Date: Thu Sep 18 19:04:26 2008 +0900
5986
5987 sh: Add support watchdog for SH4A core
5988
5989 Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
5990 And fix some compile warning.
5991
5992 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5993
5994commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
5995Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5996Date: Wed Sep 17 11:45:26 2008 +0900
5997
5998 sh: Fix typo in SH serial driver
5999
6000 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6001 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6002
6003commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
6004Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6005Date: Wed Sep 17 11:08:36 2008 +0900
6006
6007 sh: Add support any page size and empty_zero_page to SH Linux uImage
6008
6009 Old U-Boot supported 4KB page size only. If this version, Linux
6010 kernel can not get command line from U-Boot.
6011 SH Linux kernel can change page size and empty_zero_page.
6012 This patch support this function and fix promlem.
6013
6014 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6015 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6016
6017commit ce9f99ddb59628f41dc534e892368a7d66dfc774
6018Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6019Date: Thu Aug 28 13:40:52 2008 +0900
6020
6021 sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
6022
6023 Add function of smc911x, pkt_data_pull and pkt_data_push.
6024
6025 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6026 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6027
6028commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
6029Author: Wolfgang Denk <wd@denx.de>
6030Date: Thu Sep 18 13:57:32 2008 +0200
6031
6032 ADS5121: fix typo in "rootpath" default setting
6033
6034 Signed-off-by: Wolfgang Denk <wd@denx.de>
6035
Wolfgang Denk3cbd8232008-11-02 16:14:22 +01006036commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
6037Author: Remy Bohmer <linux@bohmer.net>
6038Date: Tue Sep 16 14:55:44 2008 +0200
6039
6040 USB layer of U-Boot causes USB protocol errors while using USB memory sticks
6041
6042 There are several differences between Linux, Windows and U-boot for initialising the
6043 USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
6044 things really different, and some are wrong (compared to the USB standard).
6045
6046 This patch fixes some errors:
6047 * The NEW_init procedure that was already in the code is good, while the old procedure
6048 is wrong. See code comments for more info.
6049 * On a Control request the data returned by the device can be more than 8 bytes, while
6050 the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
6051 This results in a lot of USB sticks not being recognised, and the transmission ended
6052 frequently with a CTL:TIMEOUT Error.
6053 * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
6054
6055 Signed-off-by: Remy Bohmer <linux@bohmer.net>
6056 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
6057
6058commit 6f5794a6f78b313231256958fd73673c6aacc116
6059Author: Remy Bohmer <linux@bohmer.net>
6060Date: Tue Sep 16 14:55:43 2008 +0200
6061
6062 Refactoring parts of the common USB OHCI code
6063
6064 This patch refactors some large routines of the USB OHCI code by
6065 making some routines smaller and more readable which helps
6066 debugging and understanding the code. (Makes the code looks
6067 somewhat more like the Linux implementation.)
6068
6069 Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
6070
6071 Signed-off-by: Remy Bohmer <linux@bohmer.net>
6072 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
6073
6074commit be19d324edc1a1d7f393d24e10d164cd94c91a00
6075Author: Remy Bohmer <linux@bohmer.net>
6076Date: Tue Sep 16 14:55:42 2008 +0200
6077
6078 Fix for USB sticks not working on ARM while using GCC 4.x compilers
6079
6080 The GCC-compiler makes an optimisation error while optimising the routine
6081 usb_set_maxpacket(). This should be fixed in the compiler in the first place,
6082 but there lots of compilers out there that makes this error, that it is
6083 probably wiser to workaround it in U-boot itself.
6084
6085 What happens is that the register r3 is used as loop-counter 'i', but gets
6086 overwritten later on. From there it starts using register r3 for several other
6087 things and the assembler code is becoming a big mess. This is clearly a compiler bug.
6088
6089 This error occurs on at least several versions of Code Sourcery Lite compilers
6090 for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
6091 compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
6092
6093 We work around it by splitting up this routine in 2 parts, and making sure that
6094 the split out part is NOT inlined any longer. This will make GCC spit out assembler
6095 that do not show this problem. Another possibility is to adapt the Makefile to stop
6096 optimisation for the complete file. I think this solution is nicer.
6097
6098 Signed-off-by: Remy Bohmer <linux@bohmer.net>
6099 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
6100
Wolfgang Denka0b1b612008-10-14 22:13:41 +02006101commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
6102Author: Wolfgang Denk <wd@denx.de>
6103Date: Wed Sep 17 10:17:55 2008 +0200
6104
6105 Coding style cleanup; update CHANEGLOG
6106
6107 Signed-off-by: Wolfgang Denk <wd@denx.de>
6108
6109commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
6110Author: Victor Gallardo <vgallardo@amcc.com>
6111Date: Tue Sep 16 06:59:13 2008 -0700
6112
6113 ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
6114
6115 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
6116 Signed-off-by: Adam Graham <agraham@amcc.com>
6117 Signed-off-by: Stefan Roese <sr@denx.de>
6118
6119commit ce47eb402c5e29a025399dc282246414fc492940
6120Author: Peter Tyser <ptyser@xes-inc.com>
6121Date: Tue Sep 16 10:04:47 2008 -0500
6122
6123 Support for multiple SGMII/TBI interfaces for TSEC ethernet
6124
6125 Fix TBI PHY accesses to use the proper offset in CPU register space. The
6126 previous code would incorrectly access the TBI PHY by reading/writing to CPU
6127 register space at the same location as would be used to access external PHYs.
6128
6129 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6130 Acked-by: Andy Fleming <afleming@freescale.com>
6131
Wolfgang Denk87b4ef52008-09-17 10:17:55 +02006132commit 7c803be2eb3cae245dedda438776e08fb122250f
6133Author: Wolfgang Denk <wd@denx.de>
6134Date: Tue Sep 16 18:02:19 2008 +0200
6135
6136 TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
6137
6138 After switching to using the CFI flash driver, the correct remapping
6139 of the flash banks was forgotten.
6140
6141 Also, some boards were not adapted, and the old legacy flash driver
6142 was not removed yet.
6143
6144 Signed-off-by: Wolfgang Denk <wd@denx.de>
6145
6146commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
6147Author: Wolfgang Denk <wd@denx.de>
6148Date: Sun Sep 14 00:59:35 2008 +0200
6149
6150 Prepare v2008.10-rc2
6151
6152 Signed-off-by: Wolfgang Denk <wd@denx.de>
6153
6154commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
6155Author: Wolfgang Denk <wd@denx.de>
6156Date: Sat Sep 13 02:23:05 2008 +0200
6157
6158 Coding style cleanup, update CHANGELOG
6159
6160 Signed-off-by: Wolfgang Denk <wd@denx.de>
6161
Wolfgang Denkf12e4542008-09-13 02:23:05 +02006162commit 0c32565f536609d78feef35c88bbc39d3ac53a73
6163Author: Peter Tyser <ptyser@xes-inc.com>
6164Date: Wed Sep 10 09:18:34 2008 -0500
6165
6166 Update mailing list email and archive addresses
6167
6168 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6169
6170commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
6171Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
6172Date: Thu Sep 11 15:40:01 2008 +0200
6173
6174 85xx: socrates: autoprobe Lime chip
6175
6176 This patch is an attempt to implement autoprobing for the Lime
6177 presence on the bus.
6178 Configure GPCM for Lime CS2 and try to access chip ID registers.
6179 Second read atempt delivers register values if the chip is present.
6180
6181 Signed-off-by: Anatolij Gustschin <agust@denx.de>
6182
6183commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
6184Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
6185Date: Thu Sep 11 15:40:01 2008 +0200
6186
6187 85xx: socrates: Add support for new image format.
6188
6189 Signed-off-by: Detlev Zundel <dzu@denx.de>
6190
6191commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
6192Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6193Date: Thu Sep 11 17:28:18 2008 +0900
6194
6195 sh: Fix compile error for r2dplus
6196
6197 netdev.h was not include by r2dplus.
6198
6199 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6200
6201commit 56844a22b76c719e600047e23b80465a44d76abd
6202Author: Heiko Schocher <hs@denx.de>
6203Date: Thu Sep 11 08:11:23 2008 +0200
6204
6205 powerpc: Fix bootm to boot up again with a Ramdisk
6206
6207 Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
6208 and this stopped Linux from booting with a Ramdisk. This patch fixes
6209 this, by deleting the useless dummy mem reservation.
6210
6211 When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
6212 added to of_size, so we dont need anymore a dummy mem reservation.
6213
6214 I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
6215 system (=0x44 bytes) and rounded it up to 0x80).
6216
6217 Signed-off-by: Heiko Schocher <hs@denx.de>
6218 Acked-by: Kumar Gala <galak@kernel.crashing.org>
6219
6220commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
6221Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
6222Date: Mon Sep 8 02:46:13 2008 +0200
6223
6224 Add support for LZMA uncompression algorithm.
6225
6226 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
6227 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6228
6229commit 0008b6d968160abe2bfd936493f3a516a7c8da20
6230Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6231Date: Fri Jun 27 23:04:20 2008 +0400
6232
6233 fsl_elbc_nand: ecclayout cleanups
6234
6235 This patch deletes oobavail assignments, they're calculated by the nand
6236 core code in nand_scan_tail, plus current oobavail values are wrong for
6237 the LP NANDs.
6238
6239 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6240 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
6241 Signed-off-by: Scott Wood <scottwood@freescale.com>
6242
6243commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
6244Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6245Date: Fri Jun 27 23:04:13 2008 +0400
6246
6247 fsl_elbc_nand: implement support for flash-based BBT
6248
6249 This patch implements support for flash-based BBT for chips working
6250 through ELBC NAND controller, so that NAND core will not have to re-scan
6251 for bad blocks on every boot.
6252
6253 Because ELBC controller may provide HW-generated ECCs we should adjust
6254 bbt pattern and bbt version positions in the OOB free area.
6255
6256 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6257 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
6258 Signed-off-by: Scott Wood <scottwood@freescale.com>
6259
6260commit 97ae023648e764f794ffb9c52da109d6caf09c47
6261Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6262Date: Fri Jun 27 23:04:04 2008 +0400
6263
6264 fsl_elbc_nand: fix OOB workability for large page NAND chips
6265
6266 For large page chips, nand_bbt is looking into OOB area, and checking
6267 for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
6268 reserved for bbt means.
6269
6270 But ELBC driver is specifying ecclayout so that oobfree area starts at
6271 offset 1, so only one byte left for the bbt purposes.
6272
6273 This causes problems with any OOB users, namely JFFS2: after first mount
6274 JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
6275
6276 OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
6277 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
6278 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
6279 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
6280
6281 And on the next boot, NAND core will rescan for bad blocks, then will
6282 see "0xff 0x19" pattern, and will mark all blocks as bad ones.
6283
6284 To fix the issue we should implement our own bad block pattern: just one
6285 byte at OOB start. Though, this will work only for x8 chips. For x16
6286 chips two bytes must be checked. Since ELBC driver does not support x16
6287 NANDs (yet), we're safe for now.
6288
6289 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6290 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
6291 Signed-off-by: Scott Wood <scottwood@freescale.com>
6292
6293commit 7238ada313057a85409485b8ee21515dc10c07a5
6294Author: Wolfgang Denk <wd@denx.de>
6295Date: Fri Sep 12 13:52:21 2008 +0200
6296
6297 MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
6298
6299 Signed-off-by: Wolfgang Denk <wd@denx.de>
6300
6301commit b18410e508a12ba0a177dfc2a386857c806fa96d
6302Author: Stefan Roese <sr@denx.de>
6303Date: Thu Sep 11 13:05:56 2008 +0200
6304
6305 ppc4xx: Enable device tree (FDT) support in zeus board port
6306
6307 Signed-off-by: Stefan Roese <sr@denx.de>
6308
6309commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
6310Author: Stefan Roese <sr@denx.de>
6311Date: Wed Sep 10 16:53:47 2008 +0200
6312
6313 ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
6314
6315 This patch fixes a problem introdiced with patch
6316 bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
6317 initdram()].
6318
6319 The boards affected are:
6320 - PCI405
6321 - PPChameleonEVB
6322 - quad100hd
6323 - taihu
6324 - zeus
6325
6326 Signed-off-by: Stefan Roese <sr@denx.de>
6327
6328commit 61737c59a3285f6fadf96a5836879898c04ec28d
6329Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6330Date: Thu Sep 11 19:41:26 2008 -0400
6331
6332 ppc4xx: Add .gitignore file to xilinx-ppc440 boards
6333
6334 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6335 Signed-off-by: Stefan Roese <sr@denx.de>
6336
6337commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
6338Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6339Date: Thu Sep 11 19:41:25 2008 -0400
6340
6341 ppc4xx: Fix compilation of v5fx30teval_flash
6342
6343 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6344 Signed-off-by: Stefan Roese <sr@denx.de>
6345
6346commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
6347Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6348Date: Wed Sep 10 17:44:30 2008 -0400
6349
6350 ppc4xx: Fix in-tree build for ppc440-generic boards
6351
6352 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6353 Signed-off-by: Stefan Roese <sr@denx.de>
6354
6355commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
6356Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6357Date: Fri Sep 12 02:20:47 2008 +0200
6358
6359 ARM: synchronize mach-types.h with linux 2.6.27-rc6
6360
6361 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6362
6363commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
6364Author: Jens Scharsig <esw@bus-elektronik.de>
6365Date: Fri Sep 12 02:20:47 2008 +0200
6366
6367 at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
6368
6369 This patch prevents linker error on AT91RM9200 boards, if
6370 CONFIG_CMD_I2_TREE is set.
6371 It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
6372
6373 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
6374
6375commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
6376Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
6377Date: Fri Sep 12 02:20:47 2008 +0200
6378
6379 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
6380
6381 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
6382
6383 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
6384
6385commit 03db53335c8eba656a7c44d1555b1a4514383e33
6386Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
6387Date: Fri Sep 12 02:20:46 2008 +0200
6388
6389 make: Remove redundant __ARM__ addition when cross-compiling on *BSD
6390
6391 __ARM__ is given by arm_config.mk automatically.
6392
6393 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
6394
6395commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
6396Author: Claudio Scordino <claudio@evidence.eu.com>
6397Date: Fri Sep 12 02:20:46 2008 +0200
6398
6399 Fix MACH_TYPE for the AT91RM9200DK board.
6400
6401 Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
6402
6403commit 274737e5eb25b2bcd3af3a96da923effd543284f
6404Author: Andrew Dyer <adyer@righthandtech.com>
6405Date: Fri Sep 12 02:20:46 2008 +0200
6406
6407 i.mx change get_timer(base) to return time since base
6408
6409 This patch changes get_timer() for i.MX to return the time since
6410 'base' instead of the time since the counter was at zero.
6411
6412 Symptom seen is flash timeout errors when erasing or programming a
6413 sector using the common cfi flash code.
6414
6415 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
6416
6417commit 48fed40575b3e8eae960eb0141509ddd9a73012a
6418Author: Andrew Dyer <adyer@righthandtech.com>
6419Date: Fri Sep 12 02:20:46 2008 +0200
6420
6421 i.MX use u-boot baud rate and don't assume UART master clock
6422
6423 1) Change the i.MX serial driver to use the baud rate set in the
6424 u-boot environment
6425
6426 2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
6427
6428 3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
6429 one to clear" like other status bits in the reg.)
6430
6431 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
6432
6433commit 6e1551a870d360805b9d172dc56d935064abe71d
6434Author: Andrew Dyer <adyer@righthandtech.com>
6435Date: Fri Sep 12 02:20:46 2008 +0200
6436
6437 arm920t fix constant error in start.S
6438
6439 Code in cpu/arm920t/start.S will die with a compilation error if
6440 CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
6441 the ARM sub instruction. Change the code so that each is subtracted
6442 independently to avoid the error.
6443
6444 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
6445
6446commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
6447Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
6448Date: Fri Sep 12 02:20:40 2008 +0200
6449
6450 ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
6451
6452 - Correct Invalid #define of MPUTIM_PTV_MASK for
6453 omap1510 & omap730 register definition
6454
6455 MPUTIM_PTV_MASK is defined as
6456 #define MPUTIM_PTV_MASK (0x7<<PTV_BIT)
6457
6458 while it should have been
6459 #define MPUTIM_PTV_MASK (0x7<<MPUTIM_PTV_BIT)
6460
6461 - Below Patch corrects the same
6462
6463 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
6464
6465commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
6466Author: Adrian Filipi <adrian.filipi@eurotech.com>
6467Date: Fri Jul 18 11:52:02 2008 -0400
6468
6469 Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
6470
6471 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
6472
6473commit eb16135df20535b0d19969f50fb5bd17f95e9c25
6474Author: Guennadi Liakhovetski <lg@denx.de>
6475Date: Thu Aug 28 12:25:11 2008 +0200
6476
6477 i.MX31: document timer precision option
6478
6479 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
6480
6481commit 1a6337b01351b82a45b0defa76f08744511c580b
6482Author: Magnus Lilja <lilja.magnus@gmail.com>
6483Date: Fri Aug 29 10:36:18 2008 +0200
6484
6485 i.MX31: Make the SPI bus and chip select configurable for MC13783
6486
6487 The i.MX31 has three SPI buses and each bus has several chip selects
6488 and the MC13783 chip can be connected to any of these. The current
6489 RTC driver for MC13783 is hardcoded for CSPI2/SS2.
6490
6491 This patch makes make MC13783 SPI bus and chip select configurable
6492 via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
6493
6494 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
6495
6496commit 8c4ebec25b21e355b8488698ec1594da9701fff4
6497Author: Magnus Lilja <lilja.magnus@gmail.com>
6498Date: Fri Aug 29 10:36:17 2008 +0200
6499
6500 i.MX31: Add reset_timer() and modify get_timer_masked().
6501
6502 This patch adds the reset_timer() function (needed by nand_base.c) and
6503 modifies the get_timer_masked() to work in the same way as the omap24xx
6504 function.
6505
6506 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
6507
6508commit deeec4991a55de243787002ede24d2331d234fc8
6509Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6510Date: Wed Sep 10 22:48:09 2008 +0200
6511
6512 ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
6513
6514 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6515
6516commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
6517Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6518Date: Wed Sep 10 22:48:09 2008 +0200
6519
6520 bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
6521
6522 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6523
6524commit 0e8d158664a913392cb01fb11a948d83f72e105e
6525Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6526Date: Wed Sep 10 22:48:06 2008 +0200
6527
6528 rename CFG_ENV macros to CONFIG_ENV
6529
6530 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6531
6532commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
6533Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6534Date: Wed Sep 10 22:48:05 2008 +0200
6535
6536 nvedit: rename error comment to CONFIG_ENV_IS_IN_
6537
6538 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6539
6540commit b64b775e7546ed138df360ceb3a71ee358cb9a01
6541Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6542Date: Wed Sep 10 22:48:05 2008 +0200
6543
6544 cmd_mem: Move conditional compilation to Makefile
6545
6546 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6547
6548commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
6549Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6550Date: Wed Sep 10 22:48:05 2008 +0200
6551
6552 move cmd_get_data_size to command.c
6553
6554 add CMD_DATA_SIZE macro to enable it
6555
6556 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6557
6558commit 507641d2491980531932b9f25dab37fe5e6c3a1a
6559Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6560Date: Wed Sep 10 22:48:04 2008 +0200
6561
6562 env_flash: Move conditional compilation to Makefile
6563
6564 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6565
6566commit 5a1aceb0689e2f731491838970884a673ef7e7d3
6567Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6568Date: Wed Sep 10 22:48:04 2008 +0200
6569
6570 rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
6571
6572 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6573
6574commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
6575Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6576Date: Wed Sep 10 22:48:03 2008 +0200
6577
6578 cleanup use of CFG_ENV_IS_IN_FLASH
6579
6580 - #if CFG_ENV_IS_IN_FLASH
6581 - #if (CFG_ENV_IS_IN_FLASH == 1)
6582 - #define CFG_ENV_IS_IN_FLASH 0
6583
6584 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6585
6586commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
6587Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6588Date: Wed Sep 10 22:48:01 2008 +0200
6589
6590 rename environment.c in env_embedded.c to reflect is functionality
6591
6592 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6593
6594commit c0878af6e32f0fd8e13a6ca315b9add64441115a
6595Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6596Date: Wed Sep 10 22:48:01 2008 +0200
6597
6598 env_nowhere: Move conditional compilation to Makefile
6599
6600 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6601
6602commit 93f6d72544da4510a146bc4c93d609b0116cde37
6603Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6604Date: Wed Sep 10 22:48:00 2008 +0200
6605
6606 rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
6607
6608 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6609
6610commit 2556ef78113b5f089dfcac5da90bf31dd568397b
6611Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6612Date: Wed Sep 10 22:48:00 2008 +0200
6613
6614 env_sf: Move conditional compilation to Makefile
6615
6616 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6617
6618commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
6619Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6620Date: Wed Sep 10 22:48:00 2008 +0200
6621
6622 rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
6623
6624 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6625
6626commit 55c5f49910ec8225347aa1d211352a84de6649b4
6627Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6628Date: Wed Sep 10 22:48:00 2008 +0200
6629
6630 env_onenand: Move conditional compilation to Makefile
6631
6632 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6633
6634commit 9656138ff1a34d4c4768db6b490deffc40ee674b
6635Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6636Date: Wed Sep 10 22:47:59 2008 +0200
6637
6638 rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
6639
6640 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6641
6642commit 957a0e69575683efd70ace147746bbb3d8e7c501
6643Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6644Date: Wed Sep 10 22:47:59 2008 +0200
6645
6646 env_nvram: Move conditional compilation to Makefile
6647
6648 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6649
6650commit 9314cee6917444ab88bd4e758da7a30975120187
6651Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6652Date: Wed Sep 10 22:47:59 2008 +0200
6653
6654 rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
6655
6656 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6657
6658commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
6659Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6660Date: Wed Sep 10 22:47:59 2008 +0200
6661
6662 env_nand: Move conditional compilation to Makefile
6663
6664 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6665
6666commit 51bfee192099206a4397f15f3b93516e01f58ab0
6667Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6668Date: Wed Sep 10 22:47:58 2008 +0200
6669
6670 rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
6671
6672 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6673
6674commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
6675Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6676Date: Wed Sep 10 22:47:58 2008 +0200
6677
6678 env_dataflash: Move conditional compilation to Makefile
6679
6680 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6681
6682commit 057c849c45b9ee19df8ff3acdeee66be52819962
6683Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6684Date: Wed Sep 10 22:47:58 2008 +0200
6685
6686 rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
6687
6688 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6689
6690commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
6691Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6692Date: Wed Sep 10 22:47:52 2008 +0200
6693
6694 cmd_eeprom: Move conditional compilation to Makefile
6695
6696 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6697
6698commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
6699Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6700Date: Fri Sep 5 09:19:54 2008 +0200
6701
6702 env_eeprom: Move conditional compilation to Makefile
6703
6704 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6705
6706commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
6707Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6708Date: Fri Sep 5 09:19:30 2008 +0200
6709
6710 rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
6711
6712 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6713
6714commit 32628c5008105a732212003d83b75f05e5243bb2
6715Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6716Date: Sat Aug 30 23:54:58 2008 +0200
6717
6718 cmd_mac: Move conditional compilation to Makefile
6719
6720 finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
6721 start in commit ad8f8687b78c3e917b173f038926695383c55555
6722
6723 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6724
6725commit e5648acab153f0f429bfc714902c5aaa7879f71b
6726Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6727Date: Sat Aug 30 23:47:41 2008 +0200
6728
6729 cmd_fdc: Move conditional compilation to Makefile
6730
6731 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6732
6733commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
6734Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6735Date: Sat Aug 30 23:47:38 2008 +0200
6736
6737 common/Makefile: add core command section
6738
6739 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6740
6741commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
6742Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6743Date: Sat Aug 30 23:29:57 2008 +0200
6744
6745 cmd_vfd: Move conditional compilation to Makefile
6746
6747 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6748
6749commit 6644641d072aee3087da129d8443187196a4d8a9
6750Author: Scott Wood <scottwood@freescale.com>
6751Date: Wed Sep 10 11:48:49 2008 -0500
6752
6753 delta, zylonite: Update nand_oobinfo to nand_ecclayout.
6754
6755 This is part of the switch to newer upstream MTD code.
6756
6757 Signed-off-by: Scott Wood <scottwood@freescale.com>
6758
6759commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
6760Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
6761Date: Sat Aug 30 17:06:55 2008 -0400
6762
6763 ARM DaVinci: Fix broken HW ECC for large page NAND.
6764
6765 Based on original patch by Bernard Blackham <bernard@largestprime.net>
6766
6767 U-boot's HW ECC support for large page NAND on Davinci is completely
6768 broken. Some kernels, such as the 2.6.10 one supported by
6769 MontaVista for DaVinci, rely upon this broken behaviour as they
6770 share the same code for ECCs. In the existing scheme, error
6771 detection *might* work on large page, but error correction
6772 definitely does not. Small page ECC correction works, but the
6773 format is not compatible with the mainline git kernel.
6774
6775 This patch adds ECC code that matches what is currently in the
6776 Davinci git repository (since NAND support was added in 2.6.24).
6777 This makes the ECC and OOB layout written by u-boot compatible with
6778 Linux for both small page and large page devices and fixes ECC
6779 correction for large page devices.
6780
6781 The old behaviour can be restored by defining the macro
6782 CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
6783
6784 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
6785 Acked-by: Sergey Kubushyn <ksi@koi8.net>
6786 Signed-off-by: Scott Wood <scottwood@freescale.com>
6787
6788commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
6789Author: Heiko Schocher <hs@denx.de>
6790Date: Wed Sep 10 11:15:28 2008 +0200
6791
6792 muas3001: update BR4 settings
6793
6794 Also set up the port pins for using I2C.
6795
6796 Signed-off-by: Heiko Schocher <hs@denx.de>
6797
6798commit 3591293509e0c0bcf244b0f974775bff2e25697e
6799Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
6800Date: Wed Sep 10 09:43:49 2008 +0300
6801
6802 autoscr: Fix one-character lines and non-newline terminated scripts
6803
6804 When not using hush, the autoscr command now executes lines that are
6805 only one character long. It also runs the last line of scripts even if
6806 it does not end in a newline.
6807
6808 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
6809
6810commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
6811Author: Victor Gallardo <vgallardo@amcc.com>
6812Date: Tue Sep 9 15:13:29 2008 -0700
6813
6814 ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
6815
6816 On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
6817 and glacier.
6818
6819 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
6820
6821commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
6822Author: Heiko Schocher <hs@denx.de>
6823Date: Mon Sep 8 10:21:11 2008 +0200
6824
6825 muas3001: added support for the LM75 sensor.
6826
6827 Signed-off-by: Heiko Schocher <hs@denx.de>
6828
6829commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
6830Author: Heiko Schocher <hs@denx.de>
6831Date: Mon Sep 8 10:20:19 2008 +0200
6832
6833 muas3001: activate WDT for the muas3001 board.
6834
6835 Signed-off-by: Heiko Schocher <hs@denx.de>
6836
6837commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
6838Author: Heiko Schocher <hs@denx.de>
6839Date: Mon Sep 8 10:19:36 2008 +0200
6840
6841 muas3001: added 64MB SDRAM autodetection.
6842
6843 Signed-off-by: Heiko Schocher <hs@denx.de>
6844
6845commit 5251469943895de4bb9a04d5053352cc22acb7d5
6846Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
6847Date: Thu Aug 21 07:12:26 2008 -0700
6848
6849 Fix printf errors under -DDEBUG
6850
6851 Fix printf format-string/arg mismatches under -DDEBUG.
6852
6853 These warnings occur with DEBUG defined for a platform using
6854 cpu/mpc85xx. Users of other architectures can unearth similar
6855 problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
6856 after "CFLAGS += $(call cc-option,-fno-stack-protector)".
6857
6858 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
6859 Signed-off-by: Andy Fleming <afleming@freescale.com>
6860
6861commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
6862Author: Wolfgang Denk <wd@denx.de>
6863Date: Tue Sep 9 23:55:18 2008 +0200
6864
6865 Update CHANGELOG, prepare 2008-10-rc1 release
6866
6867 Signed-off-by: Wolfgang Denk <wd@denx.de>
6868
6869commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
6870Author: Kumar Gala <galak@kernel.crashing.org>
6871Date: Mon Sep 8 08:51:29 2008 -0500
6872
6873 85xx: Ensure timebase is zero on secondary cores
6874
6875 The e500um says the timebase is volatile out of reset. To ensure
6876 TB sync works we need to make sure its zero.
6877
6878 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6879
Wolfgang Denk8b9e4782008-09-09 23:55:18 +02006880commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
6881Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6882Date: Tue Sep 9 22:18:24 2008 +0200
6883
6884 bootm_load_os: fix load_end debug message
6885
6886 print load_end value not pointer
6887
6888 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6889
6890commit 1d9af0be764960e6cc1c093e97176c3542796820
6891Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6892Date: Tue Sep 9 22:18:23 2008 +0200
6893
6894 bootm: enable fdt support only on ppc, m68k and sparc
6895
6896 ...as done in image.c
6897
6898 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6899
6900commit 748b5274e76f81df85cfcffaffedc323678d0623
6901Author: Markus Heidelberg <markus.heidelberg@web.de>
6902Date: Tue Sep 9 18:51:05 2008 +0200
6903
6904 common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
6905
6906 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
6907
6908commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
6909Author: Markus Heidelberg <markus.heidelberg@web.de>
6910Date: Tue Sep 9 17:31:46 2008 +0200
6911
6912 gitignore: add tags files and Vim swap file
6913
6914 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
6915
6916commit 1d9b67b23fca6a25154333733204339802510720
6917Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
6918Date: Tue Sep 9 17:52:47 2008 +0900
6919
6920 add board_eth_init() for sh7785lcr board
6921
6922 Fix the problem that cannot work RTL8169 on sh7785lcr board.
6923
6924 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
6925
6926commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
6927Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6928Date: Wed Aug 6 16:08:41 2008 -0500
6929
6930 mtd: SPI Flash: Support the STMicro Flash
6931
6932 Add MTD SPI Flash support for M25P16, M25P20, M25P32,
6933 M25P40, M25P64, M25P80, M25P128.
6934
6935 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
6936 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6937
Wolfgang Denkf12e4542008-09-13 02:23:05 +02006938commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
6939Author: Wolfgang Denk <wd@denx.de>
6940Date: Tue Sep 9 17:55:31 2008 +0200
6941
6942 trab: fix build problem after change to use do_div()
6943
6944 We must link with libgeneric now.
6945
6946 Signed-off-by: Wolfgang Denk <wd@denx.de>
6947
Wolfgang Denk8b9e4782008-09-09 23:55:18 +02006948commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
6949Author: Ryan CHEN <ryan.chen@st.com>
6950Date: Wed Aug 20 13:00:17 2008 -0400
6951
6952 Correct drv_usb_kbd_init function
6953
6954 The patch is that check if usb_get_dev_index() function return valid
6955 pointer. If valid, continue. Otherwise return -1.
6956
6957 Signed-off-by: Ryan Chen <ryan.chen@st.com>
6958 Acked-by: Markus Klotzbuecher <mk@denx.de>
6959
6960commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
6961Author: Remy Bohmer <linux@bohmer.net>
6962Date: Wed Aug 20 11:22:02 2008 +0200
6963
6964 Make usb-stop() safe to call multiple times in a row.
6965
6966 A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
6967 enabled the usb_stop() command in common/cmd_bootm.c which was
6968 not enabled for some time, because no board did actually set the
6969 CFG_CMD_USB flag. So, now the usb_stop() is executed before
6970 loading the linux kernel.
6971
6972 However, the usb_ohci driver hangs up (at least on AT91SAM) if the
6973 driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
6974 If some other piece of code calls usb_stop() before the bootm command,
6975 this command will hangup the system during boot.
6976 (usb start and stop is typically used while booting from usb memory stick)
6977
6978 But, stopping the usb stack twice is useless anyway, and a flag already
6979 existed that kept track on the usb_init()/usb_stop() calls.
6980 So, we now check if the usb stack is really started before we stop it.
6981
6982 This problem is now fixed in both the upper as low-level layer.
6983
6984 Signed-off-by: Remy Bohmer <linux@bohmer.net>
6985 Acked-by: Markus Klotzbuecher <mk@denx.de>
6986
6987commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
6988Author: Wolfgang Denk <wd@denx.de>
6989Date: Tue Sep 9 16:55:47 2008 +0200
6990
6991 Makefile: fix bug introduced by commit 47ffd6c2
6992
6993commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
6994Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6995Date: Tue Sep 9 10:00:33 2008 -0400
6996
6997 ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
6998
6999 This patch solves the problems compiling ml507, v5fx30teval and
7000 ppc440-generic out of tree.
7001
7002 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7003
7004commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
7005Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
7006Date: Thu Sep 4 15:35:46 2008 -0300
7007
7008 Fix dev_print when called from usb_stor_info (usb storage command)
7009
7010 Fix output of the usb storage command. It was printing "Device 0: not
7011 available" because IF_TYPE_USB was not included into the switch
7012 statement.
7013
7014 Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
7015
7016commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
7017Author: Bartlomiej Sieka <tur@semihalf.com>
7018Date: Tue Sep 9 12:58:16 2008 +0200
7019
7020 FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
7021
7022 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
7023
7024commit 919f550dc11a13abf01c6bc713c968de790b8d7c
7025Author: Bartlomiej Sieka <tur@semihalf.com>
7026Date: Tue Sep 9 12:58:15 2008 +0200
7027
7028 FIT: add ability to check hashes of all images in FIT, improve output
7029
7030 - add function fit_all_image_check_hashes() that verifies if all
7031 hashes of all images in the FIT are valid
7032 - improve output of fit_image_check_hashes() when the hash check fails
7033
7034 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
7035
7036commit 1de1fa408967cef6804bb046b904114519bb36f0
7037Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7038Date: Mon Sep 8 20:54:39 2008 +0200
7039
7040 qemu_mips: Update linux bootm to support dynamic cmdline
7041
7042 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7043
7044commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
7045Author: Peter Tyser <ptyser@xes-inc.com>
7046Date: Mon Sep 8 14:56:49 2008 -0500
7047
7048 Add support for booting of INTEGRITY operating system uImages
7049
7050 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7051
7052commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
7053Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7054Date: Mon Sep 8 21:01:29 2008 +0200
7055
7056 mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
7057
7058 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7059
7060commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
7061Author: Kumar Gala <galak@kernel.crashing.org>
7062Date: Mon Sep 8 13:57:12 2008 -0500
7063
7064 Remove support for booting ARTOS images
7065
7066 Pantelis Antoniou stated:
7067 AFAIK, it is still used but the products using PPC are long gone.
7068 Nuke it plz (from orbit).
7069
7070 So remove it since it cleans up a usage of env_get_char outside of
7071 the environment code.
7072
7073 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7074
7075commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
7076Author: Wolfgang Denk <wd@denx.de>
7077Date: Tue Sep 9 15:45:18 2008 +0200
7078
7079 Makefile: compile and link each module just once
7080
7081 Several source files need to be compiled and linked when one or more
7082 config options are selected. To allow for easy selection in the
7083 Makefiles yet to avoild multiple compilation (which costs build time)
7084 and especially multiple linking (which causes errors), we use
7085 "COBJS = $(sort COBJS-y)" which eliminates duplicates.
7086
7087 By courtesy of Detlev Zundel who suggested this approach.
7088
7089 Signed-off-by: Wolfgang Denk <wd@denx.de>
7090
7091commit 48d0192fe869948fef14b460b5f0c85bca933693
7092Author: Andreas Engel <andreas.engel@ericsson.com>
7093Date: Mon Sep 8 14:30:53 2008 +0200
7094
7095 Moved conditional compile into Makefile
7096
7097 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
7098
7099commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
7100Author: Andreas Engel <andreas.engel@ericsson.com>
7101Date: Mon Sep 8 10:17:31 2008 +0200
7102
7103 Merged serial_pl010.c and serial_pl011.c.
7104
7105 They only differ in the init function.
7106 This also adds the missing watchdog support for the PL011.
7107
7108 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
7109
7110commit 0817d688f307ee2c0598e79175c94a40ce90337b
7111Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7112Date: Sun Sep 7 17:10:27 2008 -0400
7113
7114 Remove gap fill in srec object v2
7115
7116 SREC files do not need gap fill: The load address is specified in the
7117 file. On the other hand, it can't be avoided in a .bin object. It has
7118 no information about memory location.
7119
7120 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7121
7122commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
7123Author: Markus Heidelberg <markus.heidelberg@web.de>
7124Date: Sun Sep 7 20:18:27 2008 +0200
7125
7126 README: fix missing subdirectory in the documentation
7127
7128 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
7129
7130commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
7131Author: Graeme Russ <graeme.russ@gmail.com>
7132Date: Sun Sep 7 07:08:42 2008 +1000
7133
7134 Update i386 code (sc520_cdp)
7135
7136 Attempt to bring i386 / sc520 inline with master
7137
7138 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
7139
7140commit 5608692104efa8d56df803dc79ea41ac3607eee5
7141Author: Guennadi Liakhovetski <lg@denx.de>
7142Date: Thu Sep 4 13:01:49 2008 +0200
7143
7144 fw_env: add NAND support
7145
7146 Add support for environment in NAND with automatic NOR / NAND recognition,
7147 including unaligned environment, bad-block skipping, redundant environment
7148 copy.
7149
7150 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
7151
7152commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
7153Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7154Date: Tue Sep 9 09:50:24 2008 +0200
7155
7156 ppc4xx: Fix out-of-tree building of CPCI405 variants
7157
7158 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7159 Acked-by: Stefan Roese <sr@denx.de>
7160
7161commit 59f630588e3fdbd698a0a2798e52a8924e899563
7162Author: Sergei Poselenov <sposelenov@emcraft.com>
7163Date: Fri Aug 15 15:42:11 2008 +0200
7164
7165 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
7166
7167 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
7168
7169commit e64987a892353f3d49eb242d997820ef8f538912
7170Author: Anatolij Gustschin <agust@denx.de>
7171Date: Fri Aug 15 15:42:13 2008 +0200
7172
7173 85xx: socrates: Enable Lime support.
7174
7175 This patch adds Lime GDC support together with support for the PWM
7176 backlight control through the w83782d chip. The reset pin of the
7177 latter is attached to GPIO, so we need to reset it in
7178 early_board_init_r.
7179
7180 Signed-off-by: Anatolij Gustschin <agust@denx.de>
7181
7182commit 3e79b588b5199f35016f178fc0d5d1266382097f
7183Author: Detlev Zundel <dzu@denx.de>
7184Date: Fri Aug 15 15:42:12 2008 +0200
7185
7186 85xx: Socrates: Major code update.
7187
7188 - Update the local bus ranges in the FDT for Linux for the various
7189 devices connected to the local bus via chip-select.
7190
7191 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
7192 lower than 66 MHz and uses I/O accessor functions consequently.
7193
7194 - UPM data update.
7195
7196 - Update of default environment and configuration. Use I2C multibus
7197 as we do have two I2C buses. Also enable sdram and ext2 commands.
7198
7199 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
7200 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
7201 Signed-off-by: Detlev Zundel <dzu@denx.de>
7202
7203commit e8d18541c6ceab821f75faab031740b33fdbfa4b
7204Author: Timur Tabi <timur@freescale.com>
7205Date: Fri Jul 18 16:52:23 2008 +0200
7206
7207 Update Freescale 85xx boards to sys_eeprom.c
7208
7209 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
7210 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
7211 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
7212 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
7213
7214 Signed-off-by: Timur Tabi <timur@freescale.com>
7215
7216commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
7217Author: Wolfgang Denk <wd@denx.de>
7218Date: Tue Sep 9 10:08:02 2008 +0200
7219
7220 lib_ppc/interrupts.c: make board_show_activity() a weak function
7221
7222 This allows to use show_activity() without having to
7223 define an empty board_show_activity() function.
7224
7225 Signed-off-by: Wolfgang Denk <wd@denx.de>
7226
7227commit fe876787f8743883ce58fed61525eaa2f34da4c5
7228Author: Wolfgang Denk <wd@denx.de>
7229Date: Tue Sep 9 10:06:44 2008 +0200
7230
7231 stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
7232
7233 Signed-off-by: Wolfgang Denk <wd@denx.de>
7234
7235commit 965de106ba8900372c8b16dc60d5acab7f925e38
7236Author: Wolfgang Denk <wd@denx.de>
7237Date: Tue Sep 9 10:03:47 2008 +0200
7238
7239 NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
7240
7241 Signed-off-by: Wolfgang Denk <wd@denx.de>
7242
Wolfgang Denkf12e4542008-09-13 02:23:05 +02007243commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
7244Author: Sergei Poselenov <sposelenov@emcraft.com>
7245Date: Fri Aug 15 15:42:11 2008 +0200
7246
7247 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
7248
7249 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
7250
7251commit 36241ca29d4804a1006fb3f26069effda5202581
7252Author: Anatolij Gustschin <agust@denx.de>
7253Date: Fri Aug 15 15:42:13 2008 +0200
7254
7255 85xx: socrates: Enable Lime support.
7256
7257 This patch adds Lime GDC support together with support for the PWM
7258 backlight control through the w83782d chip. The reset pin of the
7259 latter is attached to GPIO, so we need to reset it in
7260 early_board_init_r.
7261
7262 Signed-off-by: Anatolij Gustschin <agust@denx.de>
7263
7264commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
7265Author: Detlev Zundel <dzu@denx.de>
7266Date: Fri Aug 15 15:42:12 2008 +0200
7267
7268 85xx: Socrates: Major code update.
7269
7270 - Update the local bus ranges in the FDT for Linux for the various
7271 devices connected to the local bus via chip-select.
7272
7273 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
7274 lower than 66 MHz and uses I/O accessor functions consequently.
7275
7276 - UPM data update.
7277
7278 - Update of default environment and configuration. Use I2C multibus
7279 as we do have two I2C buses. Also enable sdram and ext2 commands.
7280
7281 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
7282 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
7283 Signed-off-by: Detlev Zundel <dzu@denx.de>
7284
Wolfgang Denk8b9e4782008-09-09 23:55:18 +02007285commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
7286Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7287Date: Tue Sep 9 01:22:39 2008 +0200
7288
7289 disk-on-chip: remove duplicate doc_probe declaration
7290
7291 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7292
7293commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
7294Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7295Date: Tue Sep 9 00:59:40 2008 +0200
7296
7297 onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
7298
7299 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7300
7301commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
7302Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7303Date: Tue Sep 9 00:59:39 2008 +0200
7304
7305 rs5c372: fix rtc_set prototype
7306
7307 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7308
7309commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
7310Author: Sergei Poselenov <sposelenov@emcraft.com>
7311Date: Thu Aug 14 14:08:28 2008 +0200
7312
7313 ARM: fix warning: target CPU does not support interworking
7314
7315 This patch fixes warnings like this:
7316
7317 start.S:0: warning: target CPU does not support interworking
7318
7319 which come from some ARM cross compilers and are caused by hard-coded
7320 (with "--with-cpu=arm9" configuration option) ARM targets (which
7321 support ARM Thumb instructions), while the ARM target selected from
7322 the command line (with "-march=armv4") doesn't support Thumb
7323 instructions.
7324
7325 This warning is issued by the compiler regardless of the real use of
7326 the Thumb instructions in code.
7327
7328 To fix this problem, we use options according to compiler version
7329 being used.
7330
7331 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
7332 Signed-off-by: Wolfgang Denk <wd@denx.de>
7333
7334commit 4265c35fbcb248e58179007621d61d32d0b3b82a
7335Author: Sergei Poselenov <sposelenov@emcraft.com>
7336Date: Thu Aug 14 14:08:28 2008 +0200
7337
7338 ARM: Use do_div() instead of division for "long long".
7339
7340 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
7341 Signed-off-by: Wolfgang Denk <wd@denx.de>
7342
Wolfgang Denkf12e4542008-09-13 02:23:05 +02007343commit 8febd13c69cb68652577d1a9fcbde954bf784155
7344Author: Timur Tabi <timur@freescale.com>
7345Date: Fri Jul 18 16:52:23 2008 +0200
7346
7347 Update Freescale 85xx boards to sys_eeprom.c
7348
7349 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
7350 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
7351 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
7352 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
7353
7354 Signed-off-by: Timur Tabi <timur@freescale.com>
7355
Wolfgang Denk8b9e4782008-09-09 23:55:18 +02007356commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
7357Author: Wolfgang Denk <wd@denx.de>
7358Date: Mon Sep 8 23:26:22 2008 +0200
7359
7360 lib_arm/bootm.c: fix compile warnings
7361
7362 bootm.c:128: warning: label 'error' defined but not used
7363 bootm.c:65: warning: unused variable 'ret'
7364
7365 Signed-off-by: Wolfgang Denk <wd@denx.de>
7366
7367commit 2e3c867d0a63c563a51e65b776973b008f16cec5
7368Author: Wolfgang Denk <wd@denx.de>
7369Date: Mon Sep 8 22:46:42 2008 +0200
7370
7371 ml507: fix out of tree build problem
7372
7373 Signed-off-by: Wolfgang Denk <wd@denx.de>
7374
7375commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
7376Author: Wolfgang Denk <wd@denx.de>
7377Date: Mon Sep 8 22:10:28 2008 +0200
7378
7379 common/cmd_bootm.c: fix printf() format warnings
7380
7381 Signed-off-by: Wolfgang Denk <wd@denx.de>
7382
7383commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
7384Author: Wolfgang Denk <wd@denx.de>
7385Date: Mon Sep 8 22:37:45 2008 +0200
7386
7387 BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
7388
7389 missing doc_probe() prototype.
7390
7391 Signed-off-by: Wolfgang Denk <wd@denx.de>
7392
7393commit 2c5e3cc4994897d364b148942ff23e47783198f6
7394Author: Wolfgang Denk <wd@denx.de>
7395Date: Mon Sep 8 21:28:14 2008 +0200
7396
7397 mk48t59: fix compile problem introduced by commit d1e23194
7398
7399 Signed-off-by: Wolfgang Denk <wd@denx.de>
7400
7401commit 5ff889349d2ace13f10c9335e09365fcec8247cc
7402Author: Stefan Roese <sr@denx.de>
7403Date: Mon Sep 8 14:11:12 2008 +0200
7404
7405 ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
7406
7407 This patch moves some 4xx specific prototypes out of include common.h
7408 to a ppc4xx specific header.
7409
7410 Signed-off-by: Stefan Roese <sr@denx.de>
7411
7412commit ac53ee8318678190bf3c68da477a84a657d86fb0
7413Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7414Date: Fri Sep 5 15:34:04 2008 +0200
7415
7416 ppc4xx: Update CPCI405(AB) configuration
7417
7418 This patch add FDT support and command line editing capabilities
7419 for CPCI405 and CPCI405AB boards.
7420
7421 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7422 Signed-off-by: Stefan Roese <sr@denx.de>
7423
7424commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
7425Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7426Date: Fri Sep 5 15:34:03 2008 +0200
7427
7428 ppc4xx: Cleanup CPCI405 linker script
7429
7430 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7431 Signed-off-by: Stefan Roese <sr@denx.de>
7432
7433commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
7434Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7435Date: Fri Sep 5 15:34:02 2008 +0200
7436
7437 ppc4xx: Update CPCI405 variants handling
7438
7439 This patch replaces the BOARD_REVISION variable in include/config.mk
7440 by a using a temporary include file in the platform directory.
7441
7442 The former way does not work anymore and the latter is also used by
7443 some other boards.
7444
7445 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7446 Signed-off-by: Stefan Roese <sr@denx.de>
7447
7448commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
7449Author: Stefan Roese <sr@denx.de>
7450Date: Mon Sep 8 10:01:48 2008 +0200
7451
7452 ppc4xx: Remove CONFIG_CS8952_PHY define
7453
7454 Since this define is only used on one board that was never really in
7455 production, removing this compile time option doesn't hurt and makes
7456 the code more readable.
7457
7458 Signed-off-by: Stefan Roese <sr@denx.de>
7459
7460commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
7461Author: Stefan Roese <sr@denx.de>
7462Date: Fri Sep 5 14:11:40 2008 +0200
7463
7464 ppc4xx: Fix compilation warning for PIP405
7465
7466 This patch fixes a compilation warning for the PIP405 board. It moves the
7467 #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
7468 occur anymore. I am a little unsure if this #ifdef is at the correct
7469 place now or if it could be removed completely. This needs to get
7470 tested on the PIP405 board.
7471
7472 Signed-off-by: Stefan Roese <sr@denx.de>
7473
7474commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
7475Author: Stefan Roese <sr@denx.de>
7476Date: Fri Sep 5 14:09:09 2008 +0200
7477
7478 ppc4xx: Fix compilation warning for canyonlands & glacier
7479
7480 Signed-off-by: Stefan Roese <sr@denx.de>
7481
7482commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
7483Author: Kumar Gala <galak@kernel.crashing.org>
7484Date: Fri Sep 5 14:40:29 2008 -0500
7485
7486 Fix compiler warning in mpc8xxx ddr code
7487
7488 ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
7489 ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
7490 ctrl_regs.c:523: note: 'caslat' was declared here
7491
7492 Add a warning in DDR1 case if cas_latency isn't a value we know about.
7493
7494 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7495 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7496
7497commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
7498Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7499Date: Mon Sep 1 23:06:23 2008 +0200
7500
7501 rtc: allow rtc_set to return an error and use it in cmd_date
7502
7503 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7504
7505commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
7506Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7507Date: Mon Sep 1 01:16:33 2008 +0200
7508
7509 ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
7510
7511 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7512
7513commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
7514Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
7515Date: Sun Aug 31 05:37:04 2008 +0900
7516
7517 config.mk: Move arch-specific condition to $(ARCH)_config.mk
7518
7519 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
7520
7521commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
7522Author: Kumar Gala <galak@kernel.crashing.org>
7523Date: Fri Aug 29 19:08:29 2008 -0500
7524
7525 Prevent crash if random/invalid ramdisks are passed to bootm
7526
7527 Adds returning an error from the ramdisk detection code if
7528 its not a real ramdisk (invalid). There is no reason we can't
7529 just return back to the console if we detect an invalid
7530 ramdisk or CRC error.
7531
7532 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7533
7534commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
7535Author: Anatolij Gustschin <agust@denx.de>
7536Date: Fri Aug 29 21:04:45 2008 +0200
7537
7538 Prevent crash if random DTB address is passed to bootm
7539
7540 This patch adds bootm_start() return value check. If
7541 error status is returned, we do not proceed further to
7542 prevent board reset or crash as we still can recover
7543 at this point.
7544
7545 Signed-off-by: Anatolij Gustschin <agust@denx.de>
7546
7547commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
7548Author: Andrew Dyer <adyer@righthandtech.com>
7549Date: Fri Aug 29 12:30:39 2008 -0500
7550
7551 clean up some #if !defined() in drivers/video/cfb_console.c
7552
7553 rearrange some #if !defined() / #else / #endif statements to remove
7554 the negative logic.
7555
7556 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
7557
7558commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
7559Author: Kyungmin Park <kmpark@infradead.org>
7560Date: Fri Aug 29 09:02:20 2008 +0900
7561
7562 apollon: use the last memory area for u-boot
7563
7564 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7565
7566commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
7567Author: Heiko Schocher <hs@denx.de>
7568Date: Thu Aug 28 13:50:42 2008 +0200
7569
7570 TQM8272: move NAND part in seperate File
7571
7572 I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
7573 because I have no longer access to the hardware.
7574
7575 Signed-off-by: Heiko Schocher <hs@denx.de>
7576
7577commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
7578Author: Heiko Schocher <hs@denx.de>
7579Date: Thu Aug 28 13:48:36 2008 +0200
7580
7581 TQM8272: Fix compiling error for the TQM8272 board.
7582
7583 Fix compile problems caused by
7584 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
7585
7586 Signed-off-by: Heiko Schocher <hs@denx.de>
7587
7588commit 1a7f8ccec981648ccd38fca2535490582eee08e6
7589Author: Kyungmin Park <kmpark@infradead.org>
7590Date: Wed Aug 27 14:45:20 2008 +0900
7591
7592 Add JFFS2 command support on OneNAND
7593
7594 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7595
7596commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
7597Author: Mark Jackson <mpfj@mimc.co.uk>
7598Date: Mon Aug 25 19:21:30 2008 +0100
7599
7600 Allow console input to be disabled
7601
7602 Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
7603
7604 When CONFIG_DISABLE_CONSOLE is defined, setting
7605 GD_FLG_DISABLE_CONSOLE disables all console input and output.
7606
7607 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
7608
7609commit 2b22d608f370565c87f55928b524207031419c11
7610Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7611Date: Wed Jul 30 12:39:29 2008 +0200
7612
7613 loads: allow negative offsets
7614
7615 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7616
7617commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
7618Author: Yuri Tikhonov <yur@emcraft.com>
7619Date: Thu Sep 4 11:19:05 2008 +0200
7620
7621 USB EHCI: reset root hub
7622
7623 Some of multi-function USB controllers (e.g. ISP1562) allow root hub
7624 resetting only via EHCI registers. So, this patch adds the
7625 corresponding kind of reset to OHCI's hc_reset() if the newly
7626 introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
7627 board).
7628
7629 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
7630 Acked-by: Markus Klotzbuecher <mk@denx.de>
7631
7632commit 5875d358f025c1b042d8a0f08384b756de7256c9
7633Author: Yuri Tikhonov <yur@emcraft.com>
7634Date: Fri Aug 15 15:42:09 2008 +0200
7635
7636 RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
7637
7638 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
7639
7640commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
7641Author: Stefan Roese <sr@denx.de>
7642Date: Fri Sep 5 10:47:46 2008 +0200
7643
7644 devices: Use list_add_tail() instead of list_add() to register a device
7645
7646 This patch fixes a problem spotted on Glacier/Canyonlands (and most
7647 likely lots of other board ports), that no serial output was seen
7648 after console initialization in console_init_r(). This is because the
7649 last added console device was used instead of the first added.
7650
7651 This patch fixes this problem by using list_add_tail() instead of
7652 list_add() to register a device. This way the first added console
7653 is used again.
7654
7655 Signed-off-by: Stefan Roese <sr@denx.de>
7656
7657commit 78d78236896d62bb8ca7302af38d8f1493eb2651
7658Author: Victor Gallardo <vgallardo@amcc.com>
7659Date: Thu Sep 4 23:49:36 2008 -0700
7660
7661 ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
7662
7663 This patch adds GPCS, SGMII and M88E1112 PHY support
7664 for the AMCC PPC460GT/EX processors.
7665
7666 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
7667 Signed-off-by: Stefan Roese <sr@denx.de>
7668
7669commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
7670Author: Adam Graham <agraham@amcc.com>
7671Date: Wed Sep 3 12:26:59 2008 -0700
7672
7673 ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
7674
7675 Signed-off-by: Adam Graham <agraham@amcc.com>
7676 Signed-off-by: Stefan Roese <sr@denx.de>
7677
7678commit 075d0b81e896e8735ae26372cd384f87cbd24e41
7679Author: Adam Graham <agraham@amcc.com>
7680Date: Wed Sep 3 12:26:28 2008 -0700
7681
7682 ppc4xx: IBM Memory Controller DDR autocalibration routines
7683
7684 Alternate SDRAM DDR autocalibration routine that can be generically used
7685 for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
7686 support of more DIMM/memory chip vendors and gets the DDR autocalibration
7687 values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
7688
7689 Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
7690 "Method_A" and "Method_B". DDR autocalibration Method_A scans the full range
7691 of possible PPC4xx SDRAM Controller DDR autocalibration values and takes a
7692 lot longer to run than Method_B. Method_B executes in the same amount of time
7693 as the currently existing DDR autocalibration routine, i.e. 1 second or so.
7694 Normally Method_B is used and it is set as the default method.
7695
7696 The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
7697 Controller registers.[bit-field]:
7698 1) SDRAM0_RQDC.[RQFD]
7699 2) SDRAM0_RFDC.[RFFD]
7700
7701 This alternate PPC4xx DDR autocalibration code calibrates the following
7702 IBM SDRAM Controller registers.[bit-field]:
7703
7704 1) SDRAM0_WRDTR.[WDTR]
7705 2) SDRAM0_CLKTR.[CKTR]
7706 3) SDRAM0_RQDC.[RQFD]
7707 4) SDRAM0_RFDC.[RFFD]
7708
7709 and will also use the calibrated settings of the above four registers that
7710 produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
7711 register.[bit-field].
7712
7713 Signed-off-by: Adam Graham <agraham@amcc.com>
7714 Signed-off-by: Stefan Roese <sr@denx.de>
7715
7716commit e07f4a8033b6270b8103049adb6456f660ff4a89
7717Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7718Date: Mon Sep 1 13:09:39 2008 -0400
7719
7720 ppc44x: Unification of virtex5 pp440 boards
7721
7722 This patch provides an unificated way of handling xilinx v5 ppc440 boards.
7723
7724 It unificates 3 different things:
7725
7726 1) Source code
7727 A new board called ppc440-generic has been created. This board includes
7728 a generic tlb initialization (Maps the whole memory into virtual) and
7729 defines board_pre_init, checkboard, initdram and get_sys_info weakly,
7730 so, they can be replaced by specific functions.
7731
7732 If a new board needs to redefine any of the previous functions
7733 (specific initialization) it can create a new directory with the
7734 specific initializations needed. (see the example ml507 board).
7735
7736 2) Configuration file
7737 Common configurations are located under configs/xilinx-ppc440.h, this
7738 header file interpretes the xparameters file generated by EDK and
7739 configurates u-boot in correspondence. Example: if there is a Temac,
7740 allows CMD_CONFIG_NET
7741 Specific configuration are located under specific configuration file.
7742 (see the example ml507 board)
7743
7744 3) Makefile
7745 Some work has been done in order to not duplicate work in the Main
7746 Makefile. Please see the attached code.
7747
7748 In order to support new boards they can be implemented in the next way:
7749
7750 a) Simple Generic Board (90% of the time)
7751 Using EDK generates a new xparameters.h file, replace
7752 ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
7753 && make
7754
7755 b) Simple Boards with special u-boot parameters (9 % of the time)
7756 Create a new file under configs for it (use ml507.h as example) and
7757 change your paramaters. Create a new Makefile paragraph and compile
7758
7759 c) Complex boards (1% of the time)
7760 Create a new folder for the board, like the ml507
7761
7762 Finally, it adds support for the Avnet FX30T Evaluation board, following
7763 the new generic structure:
7764
7765 Cheap board by Avnet for evaluating the Virtex5 FX technology.
7766
7767 This patch adds support for:
7768 - UartLite
7769 - 16MB Flash
7770 - 64MB RAM
7771
7772 Prior using U-boot in this board, read carefully the ERRATA by Avnet
7773 to solve some memory initialization issues.
7774
7775 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7776 Signed-off-by: Stefan Roese <sr@denx.de>
7777
7778commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
7779Author: Nick Spence <nick.spence@freescale.com>
7780Date: Tue Sep 2 15:21:16 2008 -0500
7781
7782 mpc83xx: fix mpc8313 in-tree building with NAND
7783
7784 and add mpc8313 NAND build to MAKEALL
7785
7786 Signed-off-by: Nick Spence <nick.spence@freescale.com>
7787 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7788
7789commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
7790Author: Nick Spence <nick.spence@freescale.com>
7791Date: Thu Aug 28 14:09:25 2008 -0700
7792
7793 mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
7794
7795 Cleans up some latent issues with the data cache control so that
7796 dcache_enable() and dcache_disable() will work reliably (after
7797 unlock_ram_in_cache() has been called)
7798
7799 Signed-off-by: Nick Spence <nick.spence@freescale.com>
7800 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7801
7802commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
7803Author: Nick Spence <nick.spence@freescale.com>
7804Date: Thu Aug 28 14:09:19 2008 -0700
7805
7806 mpc83xx: Store and display Arbiter Event Register values
7807
7808 Record the Arbiter Event Register values and optionally display them.
7809
7810 The Arbiter Event Register can record the type and effective address of
7811 an arbiter error, even through an HRESET. This patch stores the values in
7812 the global data structure.
7813
7814 Display of the Arbiter Event registers immediately after the RSR value
7815 can be enabled with defines. The Arbiter values will only be displayed
7816 if an arbiter event has occured since the last Power On Reset, and either
7817 of the following defines exist:
7818 #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
7819 and type register values
7820 #define CONFIG_DISPLAY_AER_FULL - display and interpret the arbiter
7821 event register values
7822
7823 Address Only transactions are one of the trapped events that can register
7824 as an arbiter event. They occur with some cache manipulation instructions
7825 if the HID0_ABE (Address Broadcast Enable) is set and the memory region
7826 has the MEMORY_COHERENCE WIMG bit set. Setting:
7827 #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
7828 only events, so that it can still capture
7829 other real problems.
7830
7831 Signed-off-by: Nick Spence <nick.spence@freescale.com>
7832 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7833
7834commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
7835Author: Nick Spence <nick.spence@freescale.com>
7836Date: Thu Aug 28 14:09:11 2008 -0700
7837
7838 mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
7839
7840 This is needed in unlock_ram_in_cache() because it is called from C and
7841 will corrupt the small data area anchor that is kept in R2.
7842
7843 lock_ram_in_cache() is modified similarly as good coding practice, but
7844 is not called from C.
7845
7846 Signed-off-by: Nick Spence <nick.spence@freescale.com>
7847 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7848
7849commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
7850Author: Nick Spence <nick.spence@freescale.com>
7851Date: Fri Aug 22 23:52:50 2008 -0700
7852
7853 MPC83XX: Fix GPIO configuration - set gpio level before direction
7854
7855 Set DAT value before DIR values to avoid creating glitches on the
7856 GPIO signals.
7857
7858 Set gpio level register before direction register to inhibit
7859 glitches on high level output pins.
7860
7861 Dir and data gets cleared at powerup, so high level output lines see
7862 a short low pulse between setting the direction and level registers.
7863
7864 Issue was seen on a new board with the nReset line of the NOR flash
7865 connected to a GPIO. Setting the direction register puts the NOR flash
7866 in reset so the next instruction to set the level cannot get executed.
7867
7868 Signed-off-by: Nick Spence <nick.spence@freescale.com>
7869 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
7870 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7871
7872commit 7007c5975ee900ad70983b0681d3251e221f8321
7873Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7874Date: Tue Sep 2 02:58:32 2008 +0200
7875
7876 doc/qemu_mips: add doc howto debug u-boot with gdb
7877
7878 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7879
7880commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
7881Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7882Date: Wed Sep 3 17:15:45 2008 +0200
7883
7884 ppx4xx: Fix broken DASA_SIM board
7885
7886 This patch adds initdram() to DASA_SIM boards that has been
7887 removed accidentally by a previous commit.
7888
7889 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7890 Signed-off-by: Stefan Roese <sr@denx.de>
7891
7892commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
7893Author: Stefan Roese <sr@denx.de>
7894Date: Mon Sep 1 08:35:37 2008 +0200
7895
7896 ppc4xx: Remove reference to common/lists.o from some esd linker scripts
7897
7898 This patch removes some direct references to common/lists.o from some
7899 esd linker scripts. This is necessary because the lists source was moved
7900 and is not in the "common" directory anymore.
7901
7902 Signed-off-by: Stefan Roese <sr@denx.de>
7903
7904commit 97b0734d65f8a0b03df0a335a2addc759da56107
7905Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7906Date: Tue Sep 2 16:33:05 2008 +0200
7907
7908 ppc4xx: Remove obsolete or unused functions from some esd boards
7909
7910 This patch removes initdram() and testdram() from most esd 405 platforms.
7911 Some boards also have an empty dummy implementation of
7912 misc_init_f(). This is also removed.
7913
7914 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7915 Signed-off-by: Stefan Roese <sr@denx.de>
7916
7917commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
7918Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7919Date: Tue Sep 2 15:07:54 2008 +0200
7920
7921 ppc4xx: Update VOM405 board configuration
7922
7923 - remove PCI code
7924 - add command line editing
7925 - minor cleanup
7926
7927 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7928 Signed-off-by: Stefan Roese <sr@denx.de>
7929
7930commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
7931Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7932Date: Tue Sep 2 15:07:53 2008 +0200
7933
7934 ppc4xx: Remove obsolete initdram() function from VOM405 board
7935
7936 This patch removed the obsolete initdram() function from
7937 VOM405 platform file.
7938
7939 Some minor cleanup.
7940
7941 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7942 Signed-off-by: Stefan Roese <sr@denx.de>
7943
7944commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
7945Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7946Date: Tue Sep 2 15:07:52 2008 +0200
7947
7948 ppc4xx: Cleanup VOM405 linker script
7949
7950 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7951 Signed-off-by: Stefan Roese <sr@denx.de>
7952
7953commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
7954Author: Matthias Fuchs <mf@esd.eu>
7955Date: Tue Sep 2 15:07:51 2008 +0200
7956
7957 ppc4xx: Add fdt support for VOM405 boards
7958
7959 Signed-off-by: Matthias Fuchs <mf@esd.eu>
7960 Signed-off-by: Stefan Roese <sr@denx.de>
7961
7962commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
7963Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7964Date: Tue Sep 2 11:36:14 2008 +0200
7965
7966 ppc4xx: Coding style cleanup
7967
7968 Wrap long lines etc.
7969
7970 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7971 Signed-off-by: Stefan Roese <sr@denx.de>
7972
7973commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
7974Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7975Date: Tue Sep 2 11:35:56 2008 +0200
7976
7977 ppc4xx: Enable USB on PLU405 boards
7978
7979 This patch enables the PCI-OHCI controller on PLU405 board.
7980
7981 Also the default CPU frequency is updated to 266 MHz and
7982 command line editing is enabled.
7983
7984 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7985 Signed-off-by: Stefan Roese <sr@denx.de>
7986
7987commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
7988Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7989Date: Tue Sep 2 11:35:35 2008 +0200
7990
7991 ppc4xx: Cleanup PLU405 platform file
7992
7993 This patch
7994 - wraps some long lines
7995 - removes unused/obsolete functions: misc_init_f() and initdram()
7996
7997 Signed-off-by: Matthias Fuchs <mf@esd.eu>
7998 Signed-off-by: Stefan Roese <sr@denx.de>
7999
8000commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
8001Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8002Date: Tue Sep 2 11:35:04 2008 +0200
8003
8004 ppc4xx: Cleanup PLU405 linker script
8005
8006 Signed-off-by: Matthias Fuchs <mf@esd.eu>
8007 Signed-off-by: Stefan Roese <sr@denx.de>
8008
8009commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
8010Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8011Date: Tue Sep 2 11:34:36 2008 +0200
8012
8013 ppc4xx: Add fdt support for PLU405 boards
8014
8015 Signed-off-by: Matthias Fuchs <mf@esd.eu>
8016 Signed-off-by: Stefan Roese <sr@denx.de>
8017
8018commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
8019Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8020Date: Tue Sep 2 11:34:08 2008 +0200
8021
8022 ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
8023
8024 Signed-off-by: Matthias Fuchs <mf@esd.eu>
8025 Signed-off-by: Stefan Roese <sr@denx.de>
8026
8027commit be1b0d2777e179191a57b138b660547a17e55aad
8028Author: Jochen Friedrich <jochen@scram.de>
8029Date: Tue Sep 2 11:24:59 2008 +0200
8030
8031 Don't tftp to unknown flash
8032
8033 If a board has a variable number of flash banks, there are empty entries
8034 in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
8035 "Outside available Flash". This patch skips flash banks with unknown
8036 flash ids.
8037
8038 Signed-off-by: Jochen Friedrich <jochen@scram.de>
8039 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8040
8041commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
8042Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8043Date: Thu Aug 28 13:40:44 2008 +0900
8044
8045 net: smc911x: Add pkt_data_pull and pkt_data_push function
8046
8047 The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
8048 Byte-swapping is necessary, and so poor performance is inevitable.
8049 This problem cannot evade by the swap function of CHIP, this can
8050 evade by software Byte-swapping.
8051 And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
8052 functions necessary to solve this problem.
8053
8054 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8055 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8056
8057commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
8058Author: Ben Warren <biggerbadderben@gmail.com>
8059Date: Sun Aug 31 20:37:00 2008 -0700
8060
8061 Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
8062
8063 Affected boards:
8064 db64360
8065 db64460
8066 katmai
8067 taihu
8068 taishan
8069 yucca
8070 cpc45
8071 cpu87
8072 eXalion
8073 elppc
8074 debris
8075 kvme080
8076 mpc8315erdb
8077 integratorap
8078 ixdp425
8079 oxc
8080 pm826
8081 pm828
8082 pm854
8083 pm856
8084 ppmc7xx
8085 sc3
8086 sc520_spunk
8087 sorcery
8088 tqm8272
8089 tqm85xx
8090 utx8245
8091
8092 Removed initialization of the driver from net/eth.c
8093 Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
8094
8095 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8096
8097commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
8098Author: Ben Warren <biggerbadderben@gmail.com>
8099Date: Sun Aug 31 10:45:44 2008 -0700
8100
8101 Moved initialization of TULIP Ethernet controller to board_eth_init()
8102
8103 Affected boards:
8104 cu824
8105 bab7xx
8106 adciop
8107 dasa_sim
8108 mousse
8109 mpc8540eval
8110 musenki
8111 mvblue
8112 pcippc2/pcippc6
8113 sbc8240
8114 stxssa
8115
8116 Removed initialization of the driver from net/eth.c
8117
8118 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8119
8120commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
8121Author: Ben Warren <biggerbadderben@gmail.com>
8122Date: Sun Aug 31 10:44:19 2008 -0700
8123
8124 Moved initialization of E1000 Ethernet controller to board_eth_init()
8125
8126 Affected boards:
8127 ap1000
8128 mvbc_p
8129 PM854
8130
8131 Removed initialization of the driver from net/eth.c
8132
8133 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8134
8135commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
8136Author: Ben Warren <biggerbadderben@gmail.com>
8137Date: Sun Aug 31 10:40:51 2008 -0700
8138
8139 Moved initialization of plb2800 Ethernet driver to board_eth_init
8140
8141 Affected boards:
8142 purple
8143
8144 Removed initialization of controller from net/eth.c
8145
8146 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8147
8148commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
8149Author: Ben Warren <biggerbadderben@gmail.com>
8150Date: Sun Aug 31 10:39:12 2008 -0700
8151
8152 Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
8153
8154 Modified board_eth_init() functions of boards that have this FEC in addition
8155 to other Ethernet controllers.
8156
8157 Affected boards:
8158 bc3450
8159 icecube
8160 mvbc_p
8161 o2dnt
8162 pm520
8163 total5200
8164 tq5200
8165
8166 Removed initialization of controller from net/eth.c
8167
8168 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8169
8170commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
8171Author: Ben Warren <biggerbadderben@gmail.com>
8172Date: Sun Aug 31 10:36:38 2008 -0700
8173
8174 Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
8175
8176 Added a cpu_eth_init() function to MPC512x CPU directory and
8177 removed code from net/eth.c
8178
8179 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8180
8181commit 8218bd2aa68820b878a8413493ae17fd8d21f944
8182Author: Ben Warren <biggerbadderben@gmail.com>
8183Date: Sun Aug 31 10:16:59 2008 -0700
8184
8185 Moved initialization of IncaIP Ethernet controller to board_eth_init
8186
8187 Affected boards:
8188 IncaIP
8189
8190 Removed initialization of the driver from net/eth.c
8191
8192 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8193
8194commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
8195Author: Ben Warren <biggerbadderben@gmail.com>
8196Date: Sun Aug 31 10:15:26 2008 -0700
8197
8198 Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
8199
8200 Affected boards:
8201 AmigaOneG3SE
8202
8203 Removed initialization of the driver from net/eth.c
8204
8205 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8206
8207commit 6aca145e067efe75398e9fac97822bd3700de0b2
8208Author: Ben Warren <biggerbadderben@gmail.com>
8209Date: Sun Aug 31 10:13:34 2008 -0700
8210
8211 Moved initialization of GT6426x Ethernet controller to board_eth_init()
8212
8213 Affected boards:
8214 EVB64260
8215 P3G4
8216 ZUMA
8217
8218 Removed initialization of the driver from net/eth.c
8219
8220 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8221
8222commit e3090534d62045dcb73f5392bacc64a4e8e443dc
8223Author: Ben Warren <biggerbadderben@gmail.com>
8224Date: Sun Aug 31 10:08:43 2008 -0700
8225
8226 Moved initialization of PCNET Ethernet controller to board_eth_init()
8227
8228 Affected boards:
8229 PN62
8230 sc520_cdp
8231
8232 Removed initialization of the driver from net/eth.c
8233
8234 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8235
8236commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
8237Author: Ben Warren <biggerbadderben@gmail.com>
8238Date: Sun Aug 31 10:07:16 2008 -0700
8239
8240 Moved initialization of NATSEMI Ethernet controller to board_eth_init()
8241
8242 Affected boards:
8243 a3000
8244
8245 Removed initialization of the driver from net/eth.c
8246
8247 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8248
8249commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
8250Author: Ben Warren <biggerbadderben@gmail.com>
8251Date: Sun Aug 31 10:03:22 2008 -0700
8252
8253 Moved initialization of NS8382X Ethernet controller to board_eth_init()
8254
8255 Affected boards:
8256 bc3450
8257 cpci5200
8258 mecp5200
8259 pf2000
8260 icecube
8261 o2dnt
8262 pm520
8263 sandpoint8245
8264 total5200
8265 tqm5200
8266
8267 Removed initialization of the driver from net/eth.c
8268
8269 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8270
8271commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
8272Author: Ben Warren <biggerbadderben@gmail.com>
8273Date: Sun Aug 31 09:59:33 2008 -0700
8274
8275 Moved initialization of TSI108 Ethernet controller to board_eth_init()
8276
8277 Affected boards:
8278 mpc7448hpc2
8279
8280 Removed initialization of the driver from net/eth.c
8281
8282 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8283
8284commit 0b252f50ae218ae15bfb63af44227972686ebc56
8285Author: Ben Warren <biggerbadderben@gmail.com>
8286Date: Sun Aug 31 21:41:08 2008 -0700
8287
8288 Moved initialization of RTL8139 Ethernet controller to board_eth_init()
8289
8290 Affected boards:
8291 hidden_dragon
8292 MPC8544DS
8293 MPC8610HPCN
8294 R2DPLUS
8295 TB0229
8296
8297 Removed initialization of the driver from net/eth.c
8298
8299 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8300
8301commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
8302Author: Ben Warren <biggerbadderben@gmail.com>
8303Date: Sun Aug 31 09:49:42 2008 -0700
8304
8305 Moved initialization of RTL8169 Ethernet controller to board_eth_init()
8306
8307 Affected boards:
8308 linkstation
8309 r7780mp
8310
8311 Removed initialization of the driver from net/eth.c
8312
8313 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8314
8315commit 3ae071e44256144d6c1e3febb65f6c56bd433769
8316Author: Ben Warren <biggerbadderben@gmail.com>
8317Date: Tue Aug 12 22:11:53 2008 -0700
8318
8319 Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
8320
8321 Removed at91sam9_eth_initialize() from net/eth.c
8322
8323 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8324
8325commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
8326Author: Ben Warren <biggerbadderben@gmail.com>
8327Date: Sun Aug 31 22:22:04 2008 -0700
8328
8329 Introduce netdev.h header file and remove externs
8330
8331 This addresses all drivers whose initializers have already
8332 been moved to board_eth_init()/cpu_eth_init().
8333
8334 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8335
8336commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
8337Author: Andy Fleming <afleming@freescale.com>
8338Date: Sun Aug 31 16:33:30 2008 -0500
8339
8340 Add pixis_set_sgmii command
8341
8342 The 8544DS and 8572DS platforms support an optional SGMII riser card to
8343 expose ethernet over an SGMII interface. Once the card is in, it is also
8344 necessary to configure the board such that it uses the card, rather than
8345 the on-board ethernet ports. This can either be done by flipping dip switches
8346 on the motherboard, or by modifying registers in the pixis. Either way
8347 requires a reboot.
8348
8349 This adds a command to allow users to choose which ports are routed through
8350 the SGMII card, and which through the onboard ports. It also allows users
8351 to revert to the current switch settings.
8352
8353 This code does not work on the 8572, as the PIXIS is different.
8354
8355 Signed-off-by: Andy Fleming <afleming@freescale.com>
8356 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8357
8358commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
8359Author: Andy Fleming <afleming@freescale.com>
8360Date: Sun Aug 31 16:33:29 2008 -0500
8361
8362 Add SGMII support for the 8544 DS
8363
8364 The 8544 DS has an optional SGMII Riser card, which uses different PHY
8365 addresses. Check if we are in SGMII mode, and invoke the SGMII Riser
8366 setup code if so.
8367
8368 Signed-off-by: Andy Fleming <afleming@freescale.com>
8369 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8370
8371commit 652f7c2eef76a1340928bd660845441e932d86a2
8372Author: Andy Fleming <afleming@freescale.com>
8373Date: Sun Aug 31 16:33:28 2008 -0500
8374
8375 Add support for Freescale SGMII Riser Card
8376
8377 The 8544DS and 8572DS systems have an optional SGMII riser card which
8378 exposes new ethernet ports which are connected to the eTSECs via an
8379 SGMII interface. The SGMII PHYs for this board are offset from the standard
8380 PHY addresses, so this code modifies the passed in tsec_info structure to
8381 use the SGMII PHYs on the card, instead.
8382
8383 Signed-off-by: Andy Fleming <afleming@freescale.com>
8384 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8385
8386commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
8387Author: Andy Fleming <afleming@freescale.com>
8388Date: Sun Aug 31 16:33:27 2008 -0500
8389
8390 Add SGMII support to the tsec
8391
8392 Adds support for configuring the TBI to talk properly with the SerDes.
8393
8394 Signed-off-by: Andy Fleming <afleming@freescale.com>
8395 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8396
8397commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
8398Author: Andy Fleming <afleming@freescale.com>
8399Date: Sun Aug 31 16:33:26 2008 -0500
8400
8401 Pass in tsec_info struct through tsec_initialize
8402
8403 The tsec driver contains a hard-coded array of configuration information
8404 for the tsec ethernet controllers. We create a default function that works
8405 for most tsecs, and allow that to be overridden by board code. It creates
8406 an array of tsec_info structures, which are then parsed by the corresponding
8407 driver instance to determine configuration. Also, add regs, miiregs, and
8408 devname fields to the tsec_info structure, so that we don't need the kludgy
8409 "index" parameter.
8410
8411 Signed-off-by: Andy Fleming <afleming@freescale.com>
8412 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8413
8414commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
8415Author: Andy Fleming <afleming@freescale.com>
8416Date: Sun Aug 31 16:33:25 2008 -0500
8417
8418 tsec: Move tsec.h to include/
8419
8420 This is to prepare the way for board code passing in the tsec_info structure
8421
8422 Signed-off-by: Andy Fleming <afleming@freescale.com>
8423 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8424
8425commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
8426Author: Sergei Poselenov <sposelenov@emcraft.com>
8427Date: Fri Jun 6 15:52:44 2008 +0200
8428
8429 PHY: Add support for the M88E1121R Marvell chip.
8430
8431 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
8432 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
8433 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8434
8435commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
8436Author: Wolfgang Denk <wd@denx.de>
8437Date: Tue Sep 2 21:17:36 2008 +0200
8438
8439 fw_env.c: fix build problems with MTD_VERSION=old
8440
8441 (as needed to support old 2.4 Linux kernel based releases)
8442
8443 Signed-off-by: Wolfgang Denk <wd@denx.de>
8444
8445commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
8446Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8447Date: Mon Sep 1 17:11:26 2008 +0200
8448
8449 device: make device_register() clone the device
8450
8451 This is expected by the callers, but this fact was hidden well within
8452 the old list implementation.
8453
8454 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8455
8456commit c75e772a2f061a508bba28ded1b5bea91f0442b0
8457Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8458Date: Sun Aug 31 23:28:15 2008 +0900
8459
8460 sh: Remove CC line from board's Makefile
8461
8462 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8463
8464commit 468eae0660de6fdfd9999944c536ecc4797bd944
8465Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8466Date: Sun Aug 31 23:25:57 2008 +0900
8467
8468 sh: Replaced "@./mkconfig" for @$(MKCONFIG)
8469
8470 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8471
8472commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
8473Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8474Date: Thu Aug 28 14:50:52 2008 +0900
8475
8476 sh: Add support sh2 to MAKEALL
8477
8478 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8479 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8480
8481commit 6f3d8bb5faa12dbf3031382286784c978df038ee
8482Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8483Date: Thu Aug 28 14:52:23 2008 +0900
8484
8485 sh: Fix compile error rsk7203 board
8486
8487 This boards used old type preprocessor.
8488 This patch fix compile error.
8489
8490 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8491 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8492
8493commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
8494Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8495Date: Thu Aug 28 14:53:31 2008 +0900
8496
8497 sh: Fix compile error sh7785lcr board
8498
8499 This boards used old type preprocessor.
8500 This patch fix compile error.
8501
8502 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8503 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8504
8505commit 6f0da4972e48f99d37bc522814940a6022cd3084
8506Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8507Date: Fri Aug 22 17:39:09 2008 +0900
8508
8509 sh: Renesas Solutions AP325RXA board support
8510
8511 AP325RXA is SH7723's reference board.
8512 This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
8513 In this patch, support SCIF, NOR Flash, and Ethernet.
8514
8515 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8516 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8517
8518commit ab09f433b50bb83b5e440c335bc3839ee069e534
8519Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8520Date: Fri Aug 22 17:48:51 2008 +0900
8521
8522 sh: add support Renesas SH7723
8523
8524 Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
8525 This patch supports CPU register's header file and SCIF serial driver.
8526
8527 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8528 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8529
8530commit c655fad06ba3fb042dbc667724a40e1a9a091248
8531Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8532Date: Sun Aug 31 23:02:04 2008 +0900
8533
8534 sh: Renesas RSK+ 7203 board support
8535
8536 This adds initial support for the RTE RSK+ SH7203 board.
8537
8538 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8539 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8540
8541commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
8542Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8543Date: Thu Jul 3 23:11:02 2008 +0900
8544
8545 sh: Add support Renesas SH7203 processor
8546
8547 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8548 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8549
8550commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
8551Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8552Date: Sun Aug 31 22:48:33 2008 +0900
8553
8554 sh: Add support SH2/SH2A which is CPU of Renesas Technology
8555
8556 Add support SH2/SH2A basic function.
8557
8558 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8559 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8560
8561commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
8562Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8563Date: Sun Aug 31 22:45:08 2008 +0900
8564
8565 sh: Renesas R0P7785LC0011RL board support
8566
8567 This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
8568 Graphic, Ethernet, USB, SD, RTC, and I2C controller.
8569
8570 This patch supports the following functions:
8571 - 128MB DDR2-SDRAM (29-bit address mode only)
8572 - NOR Flash
8573 - USB host
8574 - Ethernet
8575
8576 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8577 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8578
8579commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
8580Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8581Date: Thu Jul 10 19:32:53 2008 +0900
8582
8583 sh: add support for SH7785
8584
8585 Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
8586 This patch supports CPU register's header file.
8587
8588 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8589 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8590
8591commit d6e04258be8f2408845468d3cf722a4cf0433445
8592Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8593Date: Sun Aug 31 04:45:42 2008 +0200
8594
8595 davinci: fix remaining dm644x_eth
8596
8597 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8598
8599commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
8600Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8601Date: Sun Aug 31 04:24:56 2008 +0200
8602
8603 fs: Move conditional compilation to Makefile
8604
8605 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8606
8607commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
8608Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8609Date: Sun Aug 31 04:24:55 2008 +0200
8610
8611 devices: merge to list_head
8612
8613 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8614
8615commit ef0255fc75f28655f9681422079287d68a14dbaa
8616Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8617Date: Sun Aug 31 04:24:51 2008 +0200
8618
8619 update linux/list
8620
8621 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8622
8623commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
8624Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8625Date: Sun Aug 31 00:39:48 2008 +0200
8626
8627 smdk6400: add gitignore
8628
8629 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8630
8631commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
8632Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8633Date: Sun Aug 31 00:39:48 2008 +0200
8634
8635 smdk6400: Use CONFIG_FLASH_CFI_DRIVER
8636
8637 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8638
8639commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
8640Author: Guennadi Liakhovetski <lg@denx.de>
8641Date: Sun Aug 31 00:39:47 2008 +0200
8642
8643 smdk6400: remove redundant bootargs definition
8644
8645 Double bootargs setting leads to a duplicated environmant entry.
8646
8647 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8648
8649commit 11edcfe260f20dcea79284a3e95270989d433854
8650Author: Guennadi Liakhovetski <lg@denx.de>
8651Date: Sun Aug 31 00:39:47 2008 +0200
8652
8653 ARM: Add support for S3C6400 based SMDK6400 board
8654
8655 SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
8656 driver for it too. The board can also boot from the NOR flash, but due to
8657 hardware limitations it can only address 64KiB on it, which is not enough
8658 for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
8659
8660 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8661
8662commit e0056b341069796eaea11eae0fc8eb93a3dceaac
8663Author: Guennadi Liakhovetski <lg@denx.de>
8664Date: Sun Aug 31 00:39:47 2008 +0200
8665
8666 NAND: add NAND driver for S3C64XX
8667
8668 Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
8669
8670 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8671
8672commit 3fe7b589f9c7463df39056f8872006a67f56a91c
8673Author: Guennadi Liakhovetski <lg@denx.de>
8674Date: Sun Aug 31 00:39:47 2008 +0200
8675
8676 S3C64XX: remove broken HWFLOW support from the serial driver
8677
8678 As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
8679 broken and currently unused. Remove it.
8680
8681 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8682
8683commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
8684Author: Guennadi Liakhovetski <lg@denx.de>
8685Date: Sun Aug 31 00:39:47 2008 +0200
8686
8687 serial: add S3C64XX serial driver
8688
8689 Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
8690
8691 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8692
8693commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
8694Author: Guennadi Liakhovetski <lg@denx.de>
8695Date: Sun Aug 31 00:39:46 2008 +0200
8696
8697 USB: Add support for OHCI controller on S3C6400
8698
8699 Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
8700 try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
8701 it should work too and we could still profit from instruction cache.
8702
8703 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8704
8705commit 9b07773f8883665b002500c190507e9fd99b7181
8706Author: Guennadi Liakhovetski <lg@denx.de>
8707Date: Sun Aug 31 00:39:46 2008 +0200
8708
8709 ARM: Add arm1176 core with S3C6400 SoC
8710
8711 Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
8712
8713 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8714
8715commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
8716Author: Sandeep Paulraj <s-paulraj@ti.com>
8717Date: Sun Aug 31 00:39:46 2008 +0200
8718
8719 ARM DaVinci: Changing function names for EMAC driver
8720
8721 DM644x is just one of a series of DaVinci chips that use the EMAC driver.
8722 By replacing all the function names that start with dm644x_* to davinci_*
8723 we make these function more portable. I have tested this change on my EVM.
8724 DM6467 is another DaVinci SOC which uses the EMAC driver and i will
8725 be sending patches that add DaVinci DM6467 support to the list soon.
8726
8727 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8728
8729commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
8730Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
8731Date: Sat Aug 30 23:21:30 2008 +0200
8732
8733 Integrator[AP/CP] - Remove unused file memsetup.S
8734
8735 - memsetup.s is changed/merged to lowlevel_init.S
8736 memsetup.S has a global label memsetup that just returns back to caller
8737 - memsetup global label is changed/merged to lowlevel_init
8738 This label is not called from anywhere.
8739
8740 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
8741
8742commit 89d51d022a63be1a851eda983c8cbce1a044f65f
8743Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8744Date: Wed Aug 27 21:35:52 2008 +0200
8745
8746 ARM DaVinci: Standardize names of directories/files
8747
8748 ARM DaVinci: Standardize names of directories/files.
8749
8750 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8751 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8752
8753commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
8754Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8755Date: Fri Jul 11 15:10:13 2008 -0400
8756
8757 ARM DaVinci: Move common functions to board/davinci/common
8758
8759 ARM DaVinci: Move common functions to board/davinci/common.
8760
8761 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8762
8763commit c2b4b2e4814f4ace9015fdb64132894327400bf0
8764Author: Stefan Roese <sr@denx.de>
8765Date: Fri Aug 29 11:56:49 2008 +0200
8766
8767 ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
8768
8769 This function is needed for the new NAND infrastructure. We only need
8770 a dummy implementation though for the NDFC.
8771
8772 Signed-off-by: Stefan Roese <sr@denx.de>
8773
8774commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
8775Author: Stefan Roese <sr@denx.de>
8776Date: Fri Aug 29 12:06:27 2008 +0200
8777
8778 ppc4xx: Increase image size for NAND boot target
8779
8780 This is needed since now with HUSH enabled (amcc-common.h) the image
8781 read from NAND exceeds the previous limit.
8782
8783 Signed-off-by: Stefan Roese <sr@denx.de>
8784
8785commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
8786Author: Ben Warren <biggerbadderben@gmail.com>
8787Date: Thu Aug 28 23:58:30 2008 -0700
8788
8789 Move MPC512x_FEC driver to drivers/net
8790
8791 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8792
8793commit 80b00af01b3c9154774de2936f05a051e92f6a03
8794Author: Ben Warren <biggerbadderben@gmail.com>
8795Date: Thu Aug 28 23:58:29 2008 -0700
8796
8797 Move MPC5xxx_FEC driver to drivers/net
8798
8799 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8800
8801commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
8802Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8803Date: Fri Aug 29 21:53:57 2008 +0200
8804
8805 cmd_terminal: remove no need ifdef
8806
8807 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8808
8809commit 578118bdf122877ae769776be002255be447b4fa
8810Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8811Date: Fri Aug 29 21:53:57 2008 +0200
8812
8813 common/Makefile: order by functionality
8814
8815 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8816
8817commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
8818Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8819Date: Fri Aug 29 21:53:56 2008 +0200
8820
8821 miiphyutil: Move conditional compilation to Makefile
8822
8823 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8824
8825commit 81789c39db3f0f6b621df8c0ec66014d701f368e
8826Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8827Date: Fri Aug 29 21:53:37 2008 +0200
8828
8829 autoscript: Move conditional compilation to Makefile
8830
8831 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8832
8833commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
8834Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8835Date: Fri Aug 29 01:18:11 2008 +0200
8836
8837 crc16: move to lib_generic
8838
8839 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8840
8841commit 55195773eacefb22dd483a3c560ea30a14263ce1
8842Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8843Date: Fri Aug 29 01:18:01 2008 +0200
8844
8845 miiphybb: move to drivers/net/phy
8846
8847 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8848
8849commit e8314035996a9118ac5948df2ff8a2f2161ed67a
8850Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8851Date: Thu Aug 28 12:31:51 2008 +0200
8852
8853 soft_spi: move to drivers/spi
8854
8855 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8856
8857commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
8858Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8859Date: Thu Aug 28 12:31:51 2008 +0200
8860
8861 soft_i2c: move to drivers/i2c
8862
8863 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8864
8865commit 717a222229fdb77703e9174d0eb08a4b41febf49
8866Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8867Date: Thu Aug 28 12:31:48 2008 +0200
8868
8869 gunzip: move to lib_generic
8870
8871 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8872
8873commit 52aef8f9ba28b747973bf76741c23db658d5773c
8874Author: Wolfgang Ocker <weo@reccoware.de>
8875Date: Tue Aug 26 19:55:23 2008 +0200
8876
8877 ppc4xx: NAND configuration
8878
8879 Made NAND bank configuration setting a config variable.
8880
8881 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
8882 Signed-off-by: Stefan Roese <sr@denx.de>
8883
8884commit 5bc542a593abc9e974fbd34704af85c37c366c60
8885Author: Victor Gallardo <vgallardo@amcc.com>
8886Date: Thu Aug 28 16:03:28 2008 -0700
8887
8888 ppc4xx: fix UIC external_interrupt hang on UIC0
8889
8890 This patch fixes a UIC external_interrupt hang if critical or non-critical
8891 interrupt is set at the same time as a normal interrupt is set on UIC0.
8892
8893 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
8894 Signed-off-by: Stefan Roese <sr@denx.de>
8895
8896commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
8897Author: Prodyut Hazarika <phazarika@amcc.com>
8898Date: Wed Aug 27 16:39:00 2008 -0700
8899
8900 ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
8901
8902 Removed Magic numbers from Initialization preload registers
8903 Tested with Kilauea, Glacier, Canyonlands and Katmai boards
8904 About 5-7% improvement seen for LMBench memtests
8905
8906 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
8907 Signed-off-by: Stefan Roese <sr@denx.de>
8908
8909commit 8a490422bed685c9491274ec997f62061d88620b
8910Author: John Rigby <jrigby@freescale.com>
8911Date: Thu Aug 28 13:17:07 2008 -0600
8912
8913 ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
8914
8915 MPC5121 rev 2 silicon has a new register for controlling how long
8916 CS is asserted after deassertion of ALE in multiplexed mode.
8917
8918 The default is to assert CS together with ALE. The alternative
8919 is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
8920
8921 The default is wrong for the NOR flash and CPLD on the ADS5121.
8922
8923 This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
8924 it does so conditionally based on silicon rev 2.0 or greater.
8925
8926 Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
8927 Signed-off-by: John Rigby <jrigby@freescale.com>
8928
8929commit 5d9a5efa4b332f442b54a755d49969123c3a8742
8930Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8931Date: Tue Aug 19 00:56:46 2008 +0600
8932
8933 Add I2C frequency dividers for ColdFire
8934
8935 The existing I2C freqency dividers for FDR does not apply
8936 to ColdFire platforms; thus, a seperate table is added
8937 based on MCF5xxx Reference Manual
8938
8939 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
8940 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8941 Acked-by: Tabi Timur <timur@freescale.com>
8942
8943commit eec567a67e00d1ed8d941e9098b7d421f4091abf
8944Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8945Date: Tue Aug 19 03:01:19 2008 +0600
8946
8947 ColdFire: I2C fix for multiple platforms
8948
8949 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8950
8951commit d53cf6a9c7423cba668b867978648645f71c3090
8952Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8953Date: Tue Aug 19 00:37:13 2008 +0600
8954
8955 ColdFire: Add CONFIG_MII_INIT for M5272C3
8956
8957 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8958
8959commit f78ced3028d4130b24a318943a70cf5584ab16f4
8960Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8961Date: Tue Aug 19 00:26:25 2008 +0600
8962
8963 ColdFire: Multiple fixes for MCF5445x platforms
8964
8965 Add FEC pin set and mii reset in __mii_init(). Change
8966 legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
8967 change cfi_offset to 0, and change CFG_FLASH_CFI to
8968 CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
8969 M54455EVB env settings in configuration file.
8970
8971 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8972
8973commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
8974Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8975Date: Fri Aug 15 18:24:25 2008 +0000
8976
8977 ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
8978
8979 The user manuals recommend 7.
8980
8981 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
8982 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8983
8984commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
8985Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8986Date: Fri Aug 15 16:50:07 2008 +0000
8987
8988 ColdFire: Raise uart baudrate to 115200 bps
8989
8990 M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
8991 uart baudrate increase from 19200 to 115200 bps
8992
8993 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8994
8995commit ab6ba842682552ccf071d0034da0a20633d1d1ac
8996Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8997Date: Wed Aug 13 12:07:03 2008 +0000
8998
8999 ColdFire: Fix board.c warning message
9000
9001 Implicit declaration of nand_init() warning message
9002
9003 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9004
9005commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
9006Author: Kumar Gala <galak@kernel.crashing.org>
9007Date: Wed Aug 27 01:10:34 2008 -0500
9008
9009 FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
9010
9011 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9012
9013commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
9014Author: Heiko Schocher <hs@denx.de>
9015Date: Thu Aug 21 20:44:49 2008 +0200
9016
9017 mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
9018
9019 Signed-off-by: Heiko Schocher <hs@denx.de>
9020
9021commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
9022Author: Kumar Gala <galak@kernel.crashing.org>
9023Date: Tue Aug 19 14:46:36 2008 -0500
9024
9025 mpc85xx: remove redudant code with lib_ppc/interrupts.c
9026
9027 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
9028 not show how that happened, but there is no good reason for it.
9029
9030 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
9031 they exist.
9032
9033 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9034
9035commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
9036Author: Kumar Gala <galak@kernel.crashing.org>
9037Date: Fri Jul 25 13:31:05 2008 -0500
9038
9039 mpc85xx: Add support for the MPC8536DS reference board
9040
9041 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9042 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
9043 Signed-off-by: Dejan Minic <minic@freescale.com>
9044 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
9045 Signed-off-by: Dave Liu <daveliu@freescale.com>
9046 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9047
9048commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
9049Author: Kumar Gala <galak@kernel.crashing.org>
9050Date: Tue Aug 12 11:14:19 2008 -0500
9051
9052 mpc85xx: Add support for the MPC8536
9053
9054 The MPC8536 Adds SDHC and SATA controllers to the PQ3 family. We
9055 also have SERDES init code for the 8536.
9056
9057 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9058 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
9059 Signed-off-by: Dejan Minic <minic@freescale.com>
9060 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
9061 Signed-off-by: Dave Liu <daveliu@freescale.com>
9062
9063commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
9064Author: Kumar Gala <galak@kernel.crashing.org>
9065Date: Tue Aug 12 11:13:08 2008 -0500
9066
9067 mpc85xx: Add support for the MPC8572DS reference board
9068
9069 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9070
9071commit 457caecdbca3df21a93abff19eab12dbc61b7897
9072Author: Kumar Gala <galak@kernel.crashing.org>
9073Date: Wed Aug 27 01:05:35 2008 -0500
9074
9075 FSL DDR: Remove old SPD support from cpu/mpc85xx
9076
9077 All 85xx boards have been converted to the new code so we can
9078 remove the old SPD DDR setup code.
9079
9080 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9081
9082commit 0e7927db138976469e7257e29c1338050a50fcd9
9083Author: Kumar Gala <galak@kernel.crashing.org>
9084Date: Wed Aug 27 01:04:07 2008 -0500
9085
9086 FSL DDR: Convert STXSSA to new DDR code.
9087
9088 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9089
9090commit c360d9b970fbb9c13744c355879671165bbb9b9e
9091Author: Kumar Gala <galak@kernel.crashing.org>
9092Date: Wed Aug 27 01:03:42 2008 -0500
9093
9094 FSL DDR: Convert STXGP3 to new DDR code.
9095
9096 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9097
9098commit 8e55313b7ae12352a343f9b9962e662dbd897187
9099Author: Kumar Gala <galak@kernel.crashing.org>
9100Date: Tue Aug 26 23:52:58 2008 -0500
9101
9102 FSL DDR: Convert SBC8560 to new DDR code.
9103
9104 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9105
9106commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
9107Author: Kumar Gala <galak@kernel.crashing.org>
9108Date: Tue Aug 26 23:52:32 2008 -0500
9109
9110 FSL DDR: Convert MPC8540EVAL to new DDR code.
9111
9112 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9113
9114commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
9115Author: Kumar Gala <galak@kernel.crashing.org>
9116Date: Tue Aug 26 23:52:07 2008 -0500
9117
9118 FSL DDR: Convert PM856 to new DDR code.
9119
9120 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9121
9122commit d53bd3e17bd4f460257c19255569ea6dcfaae817
9123Author: Kumar Gala <galak@kernel.crashing.org>
9124Date: Tue Aug 26 23:51:49 2008 -0500
9125
9126 FSL DDR: Convert PM854 to new DDR code.
9127
9128 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9129
9130commit 33b9079ba20926f14238fff863b68a98e938948e
9131Author: Kumar Gala <galak@kernel.crashing.org>
9132Date: Tue Aug 26 23:15:28 2008 -0500
9133
9134 FSL DDR: Convert sbc8548 to new DDR code.
9135
9136 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9137
9138commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
9139Author: Kumar Gala <galak@kernel.crashing.org>
9140Date: Tue Aug 26 23:14:14 2008 -0500
9141
9142 FSL DDR: Convert atum8548 to new DDR code.
9143
9144 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9145
9146commit be0bd8234b9777ecd63c4c686f72af070d886517
9147Author: Kumar Gala <galak@kernel.crashing.org>
9148Date: Tue Aug 26 22:56:56 2008 -0500
9149
9150 FSL DDR: Convert socrates to new DDR code.
9151
9152 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9153
9154commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
9155Author: Kumar Gala <galak@kernel.crashing.org>
9156Date: Tue Aug 26 08:02:30 2008 -0500
9157
9158 FSL DDR: Convert MPC8544DS to new DDR code.
9159
9160 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9161
9162commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
9163Author: Jon Loeliger <jdl@freescale.com>
9164Date: Tue Mar 18 13:51:05 2008 -0500
9165
9166 FSL DDR: Convert MPC8568MDS to new DDR code.
9167
9168 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9169 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9170
9171commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
9172Author: Jon Loeliger <jdl@freescale.com>
9173Date: Tue Mar 18 13:51:06 2008 -0500
9174
9175 FSL DDR: Convert MPC8548CDS to new DDR code.
9176
9177 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9178 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9179
9180commit aa11d85cf318b961e029fe50d68ca47d004bce93
9181Author: Jon Loeliger <jdl@freescale.com>
9182Date: Mon Mar 17 15:48:18 2008 -0500
9183
9184 FSL DDR: Convert MPC8541CDS to new DDR code.
9185
9186 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9187 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9188
9189commit 2b40edb10d81da7bba724edbccd7f53777112579
9190Author: Jon Loeliger <jdl@freescale.com>
9191Date: Tue Mar 18 11:12:42 2008 -0500
9192
9193 FSL DDR: Convert MPC8555ADS to new DDR code.
9194
9195 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9196 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9197
9198commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
9199Author: Jon Loeliger <jdl@freescale.com>
9200Date: Tue Mar 18 11:12:44 2008 -0500
9201
9202 FSL DDR: Convert MPC8560ADS to new DDR code.
9203
9204 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9205 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9206
9207commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
9208Author: Kumar Gala <galak@kernel.crashing.org>
9209Date: Fri Jun 6 13:12:18 2008 -0500
9210
9211 FSL DDR: Convert MPC8540ADS to new DDR code.
9212
9213 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9214
9215commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
9216Author: Kumar Gala <galak@kernel.crashing.org>
9217Date: Tue Aug 26 21:34:55 2008 -0500
9218
9219 FSL DDR: Add 85xx specific register setting
9220
9221 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9222
9223commit 6fb1b7346849ccd0c20306143e334f5b76143070
9224Author: Kumar Gala <galak@kernel.crashing.org>
9225Date: Mon Jun 9 11:07:46 2008 -0500
9226
9227 FSL DDR: Add e500 TLB helper for DDR code
9228
9229 Provide a helper function that board code can call to map TLBs when
9230 setting up DDR.
9231
9232 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9233
9234commit d26b739afe5a6760bd345743188759cd9d0f3b47
9235Author: Andrew Dyer <adyer@righthandtech.com>
9236Date: Tue Aug 26 17:03:38 2008 -0500
9237
9238 dm9000 remove dead external phy support, gpio fix
9239
9240 dm9000 has code to detect and initialize external phy parts, but later
9241 on in the code the part is forced to use the internal phy
9242 unconditionally. Remove the unused/untested code.
9243
9244 change the GPIO initialization so that only the GPIO used as an
9245 internal phy reset (hardwired in the chip) is set as an output. The
9246 remaining GPIO need to be handled by board specific code to prevent
9247 possible drive conflicts. Set as inputs for safety.
9248
9249 replace a few magic numbers with defines
9250
9251 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
9252 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9253
9254commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
9255Author: Peter Tyser <ptyser@xes-inc.com>
9256Date: Tue Aug 26 11:17:48 2008 -0500
9257
9258 Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
9259
9260 cmd_net.c command descriptions were updated to describe the optional
9261 hostIPaddr argument. The dhcp command help message was also updated
9262 to more closely reflect the other commands in cmd_net.c
9263
9264 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9265 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9266
9267commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
9268Author: Remy Bohmer <linux@bohmer.net>
9269Date: Wed Aug 20 11:30:28 2008 +0200
9270
9271 Fix bogus error message in the DHCP handler
9272
9273 The DHCP handler has 1 state that is not listed in this case, causing a
9274 failure message when there is actually no failure.
9275
9276 Signed-off-by: Remy Bohmer <linux@bohmer.net>
9277 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9278
9279commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
9280Author: Remy Bohmer <linux@bohmer.net>
9281Date: Wed Aug 20 11:30:27 2008 +0200
9282
9283 Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
9284
9285 The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
9286 missing extern inside the net/bootp.h header
9287
9288 Signed-off-by: Remy Bohmer <linux@bohmer.net>
9289 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9290
9291commit 1803f7f91ff35ca402259065df7557107dcf28a2
9292Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9293Date: Tue Aug 19 21:26:32 2008 +0000
9294
9295 ColdFire: Add FEC Buffer descriptors in SRAM
9296
9297 Add FEC Buffer descriptors and data buffer in SRAM for
9298 faster execution and access.
9299
9300 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9301 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9302
9303commit 429be27ce195210d4b9decf9e867b9ca6155a87d
9304Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9305Date: Thu Aug 21 23:55:11 2008 +0000
9306
9307 Fix ColdFire FEC warning messages
9308
9309 Types mismatch and implicit declaration of icache_invalid()
9310 warning messages
9311
9312 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9313 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9314
9315commit 6a002171098e968bd5b362347d2831224fab6048
9316Author: Ben Warren <biggerbadderben@gmail.com>
9317Date: Sat Jul 12 00:17:50 2008 -0700
9318
9319 Moved initialization of SKGE Ethernet driver to board code.
9320
9321 The only board using this driver is the SL8245 board.
9322 Removed initialization for the driver from net/eth.c
9323
9324 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9325
9326commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
9327Author: Ben Warren <biggerbadderben@gmail.com>
9328Date: Sat Jul 12 00:08:45 2008 -0700
9329
9330 Moved conditional compilation to Makefile for SK98 Ethernet driver
9331
9332 Brute-force removal of #ifdefs. Didn't touch the code.
9333 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9334
9335commit 65d3d99c28dc363d15eaee78225ff643df499b97
9336Author: Ben Warren <biggerbadderben@gmail.com>
9337Date: Fri Jul 11 23:42:19 2008 -0700
9338
9339 Moved initialization of ULI526X Ethernet driver to board code.
9340
9341 The only board using this driver is the Freescale MPC8610HPCD board.
9342 Removed initialization for the driver from net/eth.c
9343
9344 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9345
9346commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
9347Author: Ben Warren <biggerbadderben@gmail.com>
9348Date: Fri Jul 11 23:15:28 2008 -0700
9349
9350 Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
9351
9352 Added board_eth_init() function to bf537-stamp board.
9353 Removed initialization for the Blackin EMAC driver from net/eth.c
9354
9355 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9356
9357commit fc363ce35408f348cacced68505f3747a53e3d7c
9358Author: Ben Warren <biggerbadderben@gmail.com>
9359Date: Wed Jul 9 01:04:19 2008 -0700
9360
9361 Moved initialization of GRETH Ethernet driver to CPU directory
9362
9363 Added a cpu_eth_init() function to leon2/leon3 CPU directories and
9364 removed code from net/eth.c
9365
9366 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9367
9368commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
9369Author: Ben Warren <biggerbadderben@gmail.com>
9370Date: Tue Aug 26 22:16:25 2008 -0700
9371
9372 Moved initialization of MCFFEC Ethernet driver to CPU directory
9373
9374 Added a cpu_eth_init() function to coldfire CPU directories and
9375 removed code from net/eth.c
9376
9377 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9378
9379commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
9380Author: Ben Warren <biggerbadderben@gmail.com>
9381Date: Tue Aug 26 22:12:36 2008 -0700
9382
9383 Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
9384
9385 Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
9386 removed code from net/eth.c
9387
9388 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9389
9390commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
9391Author: Kumar Gala <galak@kernel.crashing.org>
9392Date: Tue Aug 26 15:01:38 2008 -0500
9393
9394 FSL DDR: Remove old SPD support from cpu/mpc86xx
9395
9396 All 86xx boards have been converted to the new code so we can
9397 remove the old SPD DDR setup code.
9398
9399 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9400
9401commit 9bd4e5911b750837515466bc7449087698b88e0e
9402Author: Kumar Gala <galak@kernel.crashing.org>
9403Date: Tue Aug 26 15:01:37 2008 -0500
9404
9405 FSL DDR: Convert SBC8641D to new DDR code.
9406
9407 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9408
9409commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
9410Author: Jon Loeliger <jdl@freescale.com>
9411Date: Tue Aug 26 15:01:36 2008 -0500
9412
9413 FSL DDR: Convert MPC8610HPCD to new DDR code.
9414
9415 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9416 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9417
9418commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
9419Author: Kumar Gala <galak@kernel.crashing.org>
9420Date: Tue Aug 26 15:01:35 2008 -0500
9421
9422 FSL DDR: Convert MPC8641HPCN to new DDR code.
9423
9424 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9425 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9426
9427commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
9428Author: Kumar Gala <galak@kernel.crashing.org>
9429Date: Tue Aug 26 15:01:34 2008 -0500
9430
9431 FSL DDR: Add 86xx specific register setting
9432
9433 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9434
9435commit 233fdd502a6c227f476212b3097653ad48d7e254
9436Author: Kumar Gala <galak@kernel.crashing.org>
9437Date: Tue Aug 26 15:01:32 2008 -0500
9438
9439 FSL DDR: Add DDR2 DIMM paramter support
9440
9441 Compute DIMM parameters based upon the SPD information.
9442
9443 Signed-off-by: James Yang <James.Yang@freescale.com>
9444 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9445 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9446
9447commit 05c05a2363a6ac11e0e405926034546ffad71fad
9448Author: Kumar Gala <galak@kernel.crashing.org>
9449Date: Tue Aug 26 15:01:30 2008 -0500
9450
9451 FSL DDR: Add DDR1 DIMM paramter support
9452
9453 Compute DIMM parameters based upon the SPD information in spd.
9454
9455 Signed-off-by: James Yang <James.Yang@freescale.com>
9456 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9457 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9458
9459commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
9460Author: Kumar Gala <galak@kernel.crashing.org>
9461Date: Tue Aug 26 15:01:29 2008 -0500
9462
9463 FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
9464
9465 The main purpose of this rewrite it to be able to share the same
9466 initialization code on all FSL PowerPC products that have DDR
9467 controllers. (83xx, 85xx, 86xx).
9468
9469 The code is broken up into the following steps:
9470 GET_SPD
9471 COMPUTE_DIMM_PARMS
9472 COMPUTE_COMMON_PARMS
9473 GATHER_OPTS
9474 ASSIGN_ADDRESSES
9475 COMPUTE_REGS
9476 PROGRAM_REGS
9477
9478 This allows us to share more code an easily allow for board specific code
9479 overrides.
9480
9481 Additionally this code base adds support for >4G of DDR and provides a
9482 foundation for supporting interleaving on processors with more than one
9483 controller.
9484
9485 Signed-off-by: James Yang <James.Yang@freescale.com>
9486 Signed-off-by: Jon Loeliger <jdl@freescale.com>
9487 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9488 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
9489 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9490
9491commit f784e32b4bce0013983506b11af4b85b8ca3d36e
9492Author: Kumar Gala <galak@kernel.crashing.org>
9493Date: Tue Aug 26 15:01:28 2008 -0500
9494
9495 FSL DDR: Provide a generic set_ddr_laws()
9496
9497 Provide a helper function that will setup the last available
9498 LAWs (upto 2) for DDR. Useful for SPD/dyanmic DDR setting code.
9499
9500 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9501
9502commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
9503Author: James Yang <James.Yang@freescale.com>
9504Date: Tue Aug 26 15:01:27 2008 -0500
9505
9506 Add proper SPD definitions for DDR1/2/3
9507
9508 Also adds helper functions for DDR1/2 to verify the checksum.
9509
9510 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9511
9512commit 285db74716c724ae8a0ff177878fd09a74428c7b
9513Author: Wolfgang Denk <wd@denx.de>
9514Date: Wed Aug 27 01:02:48 2008 +0200
9515
9516 Update CHANGELOG
9517
9518 Signed-off-by: Wolfgang Denk <wd@denx.de>
9519
Wolfgang Denk285db742008-08-27 01:02:48 +02009520commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
9521Author: Heiko Schocher <hs@denx.de>
9522Date: Tue Aug 19 10:08:49 2008 +0200
9523
9524 Add support for muas3001 board (MPC8270)
9525
9526 Signed-off-by: Heiko Schocher <hs@denx.de>
9527
9528commit 322098bff32410d2a00031649b47c4ec90a66d9a
9529Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
9530Date: Tue Aug 19 08:31:18 2008 +0530
9531
9532 common/cmd_load.c cleanup - remove unused variables
9533
9534 - Remove unused global variable os_data_count.
9535 - Remove unused variable z.
9536
9537 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
9538
9539commit 306620b762a4f9fa6678568ad2e8772dec145208
9540Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9541Date: Mon Aug 18 13:35:27 2008 +0200
9542
9543 remove MVS1 board
9544
9545 MVS1 board has reached end-of-life and can be removed completely.
9546
9547 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9548
9549commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
9550Author: Kumar Gala <galak@kernel.crashing.org>
9551Date: Fri Aug 15 08:24:45 2008 -0500
9552
9553 bootm: refactor do_reset and os boot function args
9554
9555 There is no need for each OS specific function to call do_reset() we
9556 can just do it once in bootm. This means its feasible on an error for
9557 the OS boot function to return.
9558
9559 Also, remove passing in cmd_tbl_t as its not needed by the OS boot
9560 functions. flag isn't currently used but might be in the future so
9561 we left it alone.
9562
9563 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9564
9565commit 40afac22a9c602e55c501c800f1c064324711b56
9566Author: Kumar Gala <galak@kernel.crashing.org>
9567Date: Fri Aug 15 08:24:44 2008 -0500
9568
9569 fdt: Added resize command
9570
9571 Resize the fdt to size + padding to 4k boundary
9572
9573 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9574
9575commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
9576Author: Kumar Gala <galak@kernel.crashing.org>
9577Date: Fri Aug 15 08:24:43 2008 -0500
9578
9579 fdt: refactor initrd related code
9580
9581 Created a new fdt_initrd() to deal with setting the initrd properties
9582 in the device tree and fixing up the mem reserve. We can use this
9583 both in the choosen node handling and lets us remove some duplicated
9584 code when we fixup the initrd info in bootm on PPC.
9585
9586 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9587
9588commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
9589Author: Kumar Gala <galak@kernel.crashing.org>
9590Date: Fri Aug 15 08:24:42 2008 -0500
9591
9592 fdt: refactor fdt resize code
9593
9594 Move the fdt resizing code out of ppc specific boot code and into
9595 common fdt support code.
9596
9597 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9598
9599commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
9600Author: Kumar Gala <galak@kernel.crashing.org>
9601Date: Fri Aug 15 08:24:41 2008 -0500
9602
9603 bootm: refactor image detection and os load steps
9604
9605 Created a bootm_start() that handles the parsing and detection of all
9606 the images that will be used by the bootm command (OS, ramdisk, fdt).
9607 As part of this we now tract all the relevant image offsets in the
9608 bootm_headers_t struct. This will allow us to have all the needed
9609 state for future sub-commands and lets us reduce a bit of arch
9610 specific code on SPARC.
9611
9612 Created a bootm_load_os() that deals with decompression and loading
9613 the OS image.
9614
9615 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9616
9617commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
9618Author: Kumar Gala <galak@kernel.crashing.org>
9619Date: Fri Aug 15 08:24:40 2008 -0500
9620
9621 bootm: move lmb into the bootm_headers_t structure
9622
9623 To allow for persistent state between future bootm subcommands we
9624 need the lmb to exist in a global state.
9625 Moving it into the bootm_headers_t allows us to do that.
9626
9627 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9628
9629commit 54f9c86691309b2f919f567f9255b8bcad2c7651
9630Author: Kumar Gala <galak@kernel.crashing.org>
9631Date: Fri Aug 15 08:24:39 2008 -0500
9632
9633 bootm: Set working fdt address as part of the bootm flow
9634
9635 Set the fdt working address so "fdt FOO" commands can be used as part
9636 of the bootm flow. Also set an the environment variable "fdtaddr"
9637 with the value.
9638
9639 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9640
9641commit 06a09918f3903450313e2047a9cc258bf5872f46
9642Author: Kumar Gala <galak@kernel.crashing.org>
9643Date: Fri Aug 15 08:24:38 2008 -0500
9644
9645 bootm: refactor fdt locating and relocation code
9646
9647 Move the code that handles finding a device tree blob and relocating
9648 it (if needed) into common code so all arch's have access to it.
9649
9650 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9651
9652commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
9653Author: Kumar Gala <galak@kernel.crashing.org>
9654Date: Fri Aug 15 08:24:37 2008 -0500
9655
9656 bootm: refactor ramdisk locating code
9657
9658 Move determing if we have a ramdisk and where its located into the
9659 common code. Keep track of the ramdisk start and end in the
9660 bootm_headers_t image struct.
9661
9662 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9663
9664commit c160a9544743e80e8889edb2275538e7764ce334
9665Author: Kumar Gala <galak@kernel.crashing.org>
9666Date: Fri Aug 15 08:24:36 2008 -0500
9667
9668 bootm: refactor entry point code
9669
9670 Move entry point code out of each arch and into common code.
9671 Keep the entry point in the bootm_headers_t images struct.
9672
9673 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9674
9675commit 20220d22b9f41446288588cd2e457e0077a18bed
9676Author: Randy Vinson <rvinson@mvista.com>
9677Date: Wed Aug 13 11:44:57 2008 -0700
9678
9679 mpc7448hpc2: Fix PCI I/O space mapping.
9680
9681 PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
9682 PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
9683 space such that 0xFA000000 in the processor's address space maps to 0
9684 on the PCI I/O bus.
9685
9686 Signed-off-by Randy Vinson <rvinson@mvista.com>
9687 Acked-by: Roy Zang <tie-fei.zang@freescale.com>
9688
9689commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
9690Author: Guennadi Liakhovetski <lg@denx.de>
9691Date: Wed Aug 13 18:10:26 2008 +0200
9692
9693 i.MX31: Specify maintainers for i.MX31-based boards
9694
9695 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
9696 Signed-off-by: Wolfgang Denk <wd@denx.de>
9697
9698commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
9699Author: Wolfgang Denk <wd@denx.de>
9700Date: Tue Aug 26 15:01:28 2008 +0200
9701
9702 ADS5121: adjust image addresses in RAM and flash
9703
9704 Use the same mapping in flash as used by Linux
9705
9706 Signed-off-by: Wolfgang Denk <wd@denx.de>
9707
9708commit 19f101412c16edee9fd55db4039e1d68a833b28b
9709Author: Wolfgang Denk <wd@denx.de>
9710Date: Tue Aug 26 13:14:34 2008 +0200
9711
9712 cmd_mem.c: Fix help message alignment
9713
9714 Bug was introced by "Big white-space cleanup" (53677ef1)
9715
9716 Signed-off-by: Wolfgang Denk <wd@denx.de>
9717
9718commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
9719Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9720Date: Wed Aug 20 11:11:52 2008 +0200
9721
9722 change mvBL-M7 default env and move to vendor subdir
9723
9724 fix mvBL-M7 config and move to matrix_vision subdir
9725
9726 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9727 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9728
9729commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
9730Author: Nick Spence <nick.spence@freescale.com>
9731Date: Fri Aug 22 23:52:40 2008 -0700
9732
9733 MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
9734
9735 This patch adds elements to the 83xx sysconf structure and #define values that are used
9736 by mpc83xx family devices.
9737
9738 Signed-off-by: Nick Spence <nick.spence@freescale.com>
9739 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9740
9741commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
9742Author: Ira W. Snyder <iws@ovro.caltech.edu>
9743Date: Fri Aug 22 11:00:15 2008 -0700
9744
9745 MPC8349EMDS: Add PCI Agent (PCISLAVE) support
9746
9747 Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
9748 PCI card rather than a host computer.
9749
9750 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
9751 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9752
9753commit 4ff9aea9d6b5602683a920951ef896996438af62
9754Author: Ira W. Snyder <iws@ovro.caltech.edu>
9755Date: Fri Aug 22 11:00:14 2008 -0700
9756
9757 mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
9758
9759 This adds a helper function to unlock the PCI configuration bit, so that
9760 any extra PCI setup (such as outbound windows, etc.) can be done after
9761 using the 83XX_GENERIC_PCI code to set up the PCI bus.
9762
9763 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
9764 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9765
9766commit 162338e1fcde231ca4d562e5ebd7859456731691
9767Author: Ira W. Snyder <iws@ovro.caltech.edu>
9768Date: Fri Aug 22 11:00:13 2008 -0700
9769
9770 MPC8349EMDS: use 83XX_GENERIC_PCI setup code
9771
9772 Change the MPC8349EMDS board to use the generic PCI initialization code
9773 for the mpc83xx cpu.
9774
9775 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
9776 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9777
9778commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
9779Author: Kim Phillips <kim.phillips@freescale.com>
9780Date: Mon Aug 25 14:53:09 2008 -0500
9781
9782 fix out of tree building
9783
9784 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9785
9786commit a49d10cf027d059ee15c262010a05cdaec0961e1
9787Author: Wolfgang Denk <wd@denx.de>
9788Date: Mon Aug 25 23:45:41 2008 +0200
9789
9790 Minor coding style cleanup, updte CHANGELOG
9791
9792 Signed-off-by: Wolfgang Denk <wd@denx.de>
9793
Wolfgang Denka49d10c2008-08-25 23:45:41 +02009794commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
9795Author: Stefan Roese <sr@denx.de>
9796Date: Wed Aug 20 20:29:38 2008 +0200
9797
9798 RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
9799
9800 This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
9801 to combine both config options into one line. This even allows defining
9802 both options and not generating the target object twice.
9803
9804 Signed-off-by: Stefan Roese <sr@denx.de>
9805
9806commit 079edb913dbae147b50a488cf02e03f473fc5f28
9807Author: Jens Gehrlein <sew_s@tqs.de>
9808Date: Fri Jul 4 16:50:05 2008 +0200
9809
9810 MX31: fix bit masks in function mx31_decode_pll()
9811
9812 Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
9813
9814 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
9815
9816commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
9817Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
9818Date: Mon Aug 25 11:11:34 2008 +0200
9819
9820 Correct ARM Versatile Timer Initialization
9821
9822 - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
9823 -- Timer Value Register @ TIMER Base + 4 is Read-only.
9824 -- Prescale Value (Bits 3-2 of TIMER Control register)
9825 can only be one of 00,01,10. 11 is undefined.
9826 -- CFG_HZ for Versatile board is set to
9827 #define CFG_HZ (1000000 / 256)
9828 So Prescale bits is set to indicate
9829 - 8 Stages of Prescale, Clock divided by 256
9830 - The Timer Control Register has one Undefined/Shouldn't Use Bit
9831 So we should do read/modify/write Operation
9832
9833 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
9834
9835commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
9836Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
9837Date: Mon Aug 25 11:30:29 2008 +0200
9838
9839 Add ARM AMBA PL031 RTC Support
9840
9841 Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
9842
9843commit e39411674669cc880e1ec4a8ca4794fb15c33a45
9844Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9845Date: Tue Aug 19 16:21:03 2008 -0400
9846
9847 ARM DaVinci: Removed redundant NAND initialization code.
9848
9849 ARM DaVinci: Removed redundant NAND initialization code.
9850
9851 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9852
9853commit b3fb663b20d995ca41327db877ddb168279b3f62
9854Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9855Date: Tue Aug 19 16:21:00 2008 -0400
9856
9857 ARM DaVinci: Fix compilation error with new MTD code.
9858
9859 ARM DaVinci: Fix compilation error with new MTD code.
9860
9861 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9862
9863commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
9864Author: Gerald Van Baren <vanbaren@cideas.com>
9865Date: Fri Aug 22 14:37:05 2008 -0400
9866
9867 Add note on dereferencing /aliases pointers
9868
9869 Replace the "must quote special characters" note with a hint on
9870 how to dereference /aliases pointers by omitting the leading "/".
9871 This feature was introduced by Kumar Gala as a libfdt enhancement
9872 in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
9873
9874 Example:
9875
9876 => fdt print /aliases
9877 aliases {
9878 ethernet0 = "/qe@e0100000/ucc@2000";
9879 ethernet1 = "/qe@e0100000/ucc@3000";
9880 serial0 = "/soc8360@e0000000/serial@4500";
9881 serial1 = "/soc8360@e0000000/serial@4600";
9882 pci0 = "/pci@e0008500";
9883 };
9884 => fdt print ethernet0
9885 ucc@2000 {
9886 device_type = "network";
9887 compatible = "ucc_geth";
9888 cell-index = <0x1>;
9889 reg = <0x2000 0x200>;
9890 interrupts = <0x20>;
9891 interrupt-parent = <0x2>;
9892 local-mac-address = [00 00 00 00 00 00];
9893 rx-clock-name = "none";
9894 tx-clock-name = "clk9";
9895 phy-handle = <0x3>;
9896 phy-connection-type = "rgmii-id";
9897 pio-handle = <0x4>;
9898 };
9899
9900 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
9901
9902commit feeca3f578b7f53c032ba203698751c982f8bf5a
9903Author: Kumar Gala <galak@kernel.crashing.org>
9904Date: Thu Aug 14 08:28:19 2008 -0500
9905
9906 libfdt: Add support for using aliases in fdt_path_offset()
9907
9908 If the path doesn't start with '/' check to see if it matches some alias
9909 under "/aliases" and substitute the matching alias value in the path
9910 and retry the lookup.
9911
9912 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9913 Acked-by: David Gibson <david@gibson.dropbear.id.au>
9914 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
9915
9916commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
9917Author: David Gibson <david@gibson.dropbear.id.au>
9918Date: Wed Aug 6 14:50:49 2008 +1000
9919
9920 libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
9921
9922 As well as fdt_subnode_offset(), libfdt includes an
9923 fdt_subnode_offset_namelen() function that takes the subnode name to
9924 look up not as a NUL-terminated string, but as a string with an
9925 explicit length. This can be useful when the caller has the name as
9926 part of a longer string, such as a full path.
9927
9928 However, we don't have corresponding 'namelen' versions for
9929 fdt_get_property() and fdt_getprop(). There are less obvious use
9930 cases for these variants on property names, but there are
9931 circumstances where they can be useful e.g. looking up property names
9932 which need to be parsed from a longer string buffer such as user input
9933 or a configuration file, or looking up an alias in a path with
9934 IEEE1275 style aliases.
9935
9936 So, since it's very easy to implement such variants, this patch does
9937 so. The original NUL-terminated variants are, of course, implemented
9938 in terms of the namelen versions.
9939
9940 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
9941
9942commit f171746f701ea58bf6a53e835b53d2aaebee0d81
9943Author: David Gibson <david@gibson.dropbear.id.au>
9944Date: Tue Jul 29 14:51:22 2008 +1000
9945
9946 libfdt: Forgot one function when cleaning the namespace
9947
9948 In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
9949 libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
9950 chance of collisions with things from whatever package libfdt is
9951 embedded in, pulled into the libfdt build via that environment's
9952 libfdt_env.h.
9953
9954 Except... I missed one. This patch applies the same treatment to
9955 _stringlist_contains(). While we're at it, also make it static since
9956 it's only used in the same file.
9957
9958 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
9959
9960commit 46390da15411351fc3b498bd8c1615f78fe80df0
9961Author: Wolfram Sang <w.sang@pengutronix.de>
9962Date: Wed Jul 9 11:22:44 2008 +0200
9963
9964 libfdt: Improve documentation in libfdt.h
9965
9966 Fix a few typos and mistakes.
9967
9968 Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
9969 Acked-by: David Gibson <david@gibson.dropbear.id.au>
9970
9971commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
9972Author: David Gibson <david@gibson.dropbear.id.au>
9973Date: Wed Jul 9 14:10:24 2008 +1000
9974
9975 libfdt: Increase namespace-pollution paranoia
9976
9977 libfdt is supposed to easy to embed in projects all and sundry.
9978 Often, it won't be practical to separate the embedded libfdt's
9979 namespace from that of the surrounding project. Which means there can
9980 be namespace conflicts between even libfdt's internal/static functions
9981 and functions or macros coming from the surrounding project's headers
9982 via libfdt_env.h.
9983
9984 This patch, therefore, renames a bunch of libfdt internal functions
9985 and macros and makes a few other chances to reduce the chances of
9986 namespace collisions with embedding projects. Specifically:
9987 - Internal functions (even static ones) are now named _fdt_*()
9988
9989 - The type and (static) global for the error table in
9990 fdt_strerror() gain an fdt_ prefix
9991
9992 - The unused macro PALIGN is removed
9993
9994 - The memeq and streq macros are removed and open-coded in the
9995 users (they were only used once each)
9996
9997 - Other macros gain an FDT_ prefix
9998
9999 - To save some of the bulk from the previous change, an
10000 FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
10001 FDT_ALIGN(x, FDT_TAGSIZE)
10002
10003 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
10004
10005commit c66830263af19831f2b7db307f79d1943febf7f9
10006Author: David Gibson <david@gibson.dropbear.id.au>
10007Date: Mon Jul 7 10:14:15 2008 +1000
10008
10009 dtc: Enable and fix -Wcast-qual warnings
10010
10011 Enabling -Wcast-qual warnings in dtc shows up a number of places where
10012 we are incorrectly discarding a const qualification. There are also
10013 some places where we are intentionally discarding the 'const', and we
10014 need an ugly cast through uintptr_t to suppress the warning. However,
10015 most of these are pretty well isolated with the *_w() functions. So
10016 in the interests of maximum safety with const qualifications, this
10017 patch enables the warnings and fixes the existing complaints.
10018
10019 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
10020 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
10021
10022commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
10023Author: David Gibson <david@gibson.dropbear.id.au>
10024Date: Mon Jul 7 10:10:48 2008 +1000
10025
10026 dtc: Enable and fix -Wpointer-arith warnings
10027
10028 This patch turns on the -Wpointer-arith option in the dtc Makefile,
10029 and fixes the resulting warnings due to using (void *) in pointer
10030 arithmetic. While convenient, pointer arithmetic on void * is not
10031 portable, so it's better that we avoid it, particularly in libfdt.
10032
10033 Also add necessary definition of uintptr_t needed by David Gibson's
10034 changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
10035 comes from stdint.h, which u-boot doesn't have). -- gvb
10036
10037 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
10038 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10039
10040commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
10041Author: Tirumala R Marri <tmarri@amcc.com>
10042Date: Thu Aug 21 21:54:53 2008 -0700
10043
10044 ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
10045
10046 During recent PCI-E tests it has been found that current
10047 driverl level and de-emphasis values are not set correctly.
10048 After sweeping throgh all de-ephasis values, it was found that
10049 0x130 is a right value. Where 0x13 is driver level and 0 is
10050 de-emphasis.
10051
10052 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
10053 Signed-off-by: Stefan Roese <sr@denx.de>
10054
10055commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
10056Author: Remy Bohmer <linux@bohmer.net>
10057Date: Wed Aug 20 20:46:56 2008 +0200
10058
10059 Make the YAFFS filesystem work
10060
10061 Recently the YAFFS filesystem support has been added to U-boot.
10062 However, just enabling CONFIG_YAFFS2 is not enough to get it working.
10063
10064 ymount will generate an exception (when dereferencing mtd->readoob()), because
10065 the genericDevice is a null pointer. Further, a lot of logging is produced
10066 while using YAFFS fs, so logging should also be disabled.
10067 Both issues are solved by this patch.
10068
10069 With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
10070 in U-boot, as well as in Linux.
10071
10072 Tested on a Atmel AT91SAM9261EK board.
10073
10074 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10075 Acked-by: William Juul <william.juul@tandberg.com>
10076 Signed-off-by: Scott Wood <scottwood@freescale.com>
10077
10078commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
10079Author: Kyungmin Park <kmpark@infradead.org>
10080Date: Tue Aug 19 08:42:53 2008 +0900
10081
10082 Fix OneNAND read_oob/write_oob functions compatability
10083
10084 Also sync with kernel OneNAND codes
10085
10086 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
10087 Signed-off-by: Scott Wood <scottwood@freescale.com>
10088
10089commit 8d765456c1d33f2010d2717ee58de7647fdc6346
10090Author: Scott Wood <scottwood@freescale.com>
10091Date: Mon Aug 18 17:11:20 2008 -0500
10092
10093 NAND: Remove delay from nand_boot_fsl_elbc.c.
10094
10095 It was for debugging purposes, and shouldn't have been left in.
10096
10097 Signed-off-by: Scott Wood <scottwood@freescale.com>
10098
10099commit f556483734126793522fb7a8cf36af90da78f084
10100Author: Stefan Roese <sr@denx.de>
10101Date: Thu Aug 21 11:05:03 2008 +0200
10102
10103 ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
10104
10105 This patch fixes some minor issues introduced with the patch:
10106 ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
10107
10108 - Rework memory-queue and PLB arbiter optimization code, that the
10109 local variable is not needed anymore. This removes one #ifdef.
10110 - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
10111 of XXX+ 0x01). This was not introduced by Prodyut, just a
10112 copy-paste problem.
10113
10114 Signed-off-by: Stefan Roese <sr@denx.de>
10115
10116commit 079589bcfb24ba11068460276a3cc9549ab5346f
10117Author: Prodyut Hazarika <phazarika@amcc.com>
10118Date: Wed Aug 20 09:38:51 2008 -0700
10119
10120 ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
10121 PPC405EX and PPC460EX/GT/SX
10122
10123 - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
10124 processors
10125 - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
10126 across processors (405 and 440/460)
10127 - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
10128 processors
10129 - Add register bit definitions for Memory Queue Configuration registers
10130
10131 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
10132 Signed-off-by: Stefan Roese <sr@denx.de>
10133
10134commit ba37aa03287c5483c61c0a3e320c8888bee0143a
10135Author: Kumar Gala <galak@kernel.crashing.org>
10136Date: Tue Aug 19 15:41:18 2008 -0500
10137
10138 fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
10139
10140 Move to using the environment variables 'ethaddr', 'eth1addr', etc..
10141 instead of bd->bi_enetaddr, bi_enet1addr, etc.
10142
10143 This makes the code a bit more flexible to the number of ethernet
10144 interfaces.
10145
10146 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10147
10148commit 4cacf7c64609839f809e2f9c45873f1d65861703
10149Author: Stefan Roese <sr@denx.de>
10150Date: Tue Aug 19 14:57:55 2008 +0200
10151
10152 hush: Fix printf debug macro in hush.c so that it usable in U-Boot
10153
10154 This patch changes the debug_printf() marco for U-Boot in hush.c and
10155 moves the definition of DEBUG_SHELL to a place that is actually compiled
10156 under U-Boot.
10157
10158 Signed-off-by: Stefan Roese <sr@denx.de>
10159
10160commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
10161Author: Heiko Schocher <hs@denx.de>
10162Date: Tue Aug 19 09:57:41 2008 +0200
10163
10164 cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
10165
10166 Commit 00b1883a4cac59d97cd297b1a3a398db85982865
10167 missed a few boards:
10168 include/configs/M5253DEMO.h
10169 include/configs/ml507.h
10170 include/configs/redwood.h
10171
10172 This patch fixes this.
10173
10174 Signed-off-by: Heiko Schocher <hs@denx.de>
10175
10176commit 0768b7a872964085eece8d5e9fec9175e9deb161
10177Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10178Date: Mon Aug 18 13:41:27 2008 +0200
10179
10180 Consolidate strmhz() implementation
10181
10182 ARM, i386, m68k and ppc all have identical implementations of strmhz().
10183 Other architectures don't provide this function at all.
10184
10185 This patch moves strmhz() into lib_generic, reducing code duplication
10186 and providing a more unified API across architectures.
10187
10188 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10189
10190commit a928d0df211f1d829308d335d19be3ca42558dfc
10191Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
10192Date: Mon Aug 18 12:02:51 2008 +0200
10193
10194 fix mvbc_p board build warnings
10195
10196 fix build warnings @ mvBC-P board by using correct types, i.e. change
10197 out_be32 to out_be16 and out_8 accordingly.
10198
10199 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
10200
10201commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
10202Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10203Date: Sat Aug 16 18:54:27 2008 +0200
10204
10205 Makefile: fix posix support on find
10206
10207 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10208
10209commit bef92e215d945cc574399c1a1b00a3a76d35aa03
10210Author: Axel Beierlein <belatronix@web.de>
10211Date: Sat Aug 16 00:30:48 2008 +0200
10212
10213 Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
10214
10215 Tested with TQM5200S on STK52XX.200 Board
10216
10217 Signed-off-by: Axel Beierlein <belatronix@web.de>
10218
10219commit 0800707b6d5041a840a65d556032c15c584b55f8
10220Author: Peter Tyser <ptyser@xes-inc.com>
10221Date: Fri Aug 15 14:36:32 2008 -0500
10222
10223 mod_i2c_mem() bugfix
10224
10225 The last used chip, address, and address length were not being
10226 stored for the imm and imn commands.
10227
10228 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10229
10230commit 4afbef967275b2f636abae86f91b81becee7ad03
10231Author: Steven A. Falco <sfalco@harris.com>
10232Date: Fri Aug 15 15:37:31 2008 -0400
10233
10234 Fix typo in spelling of ATAPI.
10235
10236 Correct a small spelling mistake.
10237
10238 Signed-off-by: Steven A. Falco <sfalco@harris.com>
10239
10240commit 36c2d3062ecc6ab85f8e237180eb134464c48418
10241Author: Steven A. Falco <sfalco@harris.com>
10242Date: Fri Aug 15 15:34:10 2008 -0400
10243
10244 Add a hook to allow board-specific PIO mode setting.
10245
10246 This patch adds a hook whereby a board-specific routine can be called to
10247 configure hardware for a PIO mode. The prototype for the board-specific
10248 routine is:
10249
10250 int inline ide_set_piomode(int pio_mode)
10251
10252 ide_set_piomode should be prepared to configure hardware for a pio_mode
10253 between 0 and 6, inclusive. It should return 0 on success or 1 on failure.
10254
10255 Signed-off-by: Steven A. Falco <sfalco@harris.com>
10256
10257commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
10258Author: Steven A. Falco <sfalco@harris.com>
10259Date: Fri Aug 15 15:29:12 2008 -0400
10260
10261 Replace enums in ata.h with an include of libata.h
10262
10263 This patch removes some enums from ata.h and replaces them with an
10264 include of libata.h. This way, we eliminate duplicated code, and
10265 prevent errors whereby the different versions could be out of sync.
10266
10267 Signed-off-by: Steven A. Falco <sfalco@harris.com>
10268
10269commit 0de0afbca865ecf482b4d2b635236746def8518f
10270Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10271Date: Fri Aug 15 18:32:41 2008 +0200
10272
10273 coldfire: fix CFI drivers activation with new macro
10274
10275 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
10276
10277 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10278
10279commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
10280Author: Kumar Gala <galak@kernel.crashing.org>
10281Date: Fri Aug 15 08:24:35 2008 -0500
10282
10283 fdt: fdt addr w/o any args reports back the current working address
10284
10285 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10286
10287commit f953d99fd528a496b400a706b511eaf8e3ea66af
10288Author: Kumar Gala <galak@kernel.crashing.org>
10289Date: Fri Aug 15 08:24:34 2008 -0500
10290
10291 fdt: added the ability to set initrd start/end via chosen command
10292
10293 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10294
10295commit ffa4bafacaef67058463b3d7d0099ced57569dd2
10296Author: Kumar Gala <galak@kernel.crashing.org>
10297Date: Fri Aug 15 08:24:33 2008 -0500
10298
10299 Add command to enable/disable interrupts
10300
10301 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10302
10303commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
10304Author: Nick Spence <nick.spence@freescale.com>
10305Date: Tue Aug 19 22:21:16 2008 -0700
10306
10307 CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
10308
10309 This patch fixes a missing vendor code in the flash_real_protect() function.
10310
10311 Signed-off-by: Nick Spence <nick.spence@freescale.com>
10312 Signed-off-by: Stefan Roese <sr@denx.de>
10313
10314commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
10315Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10316Date: Tue Aug 19 16:53:39 2008 +0000
10317
10318 CFI: Fix AMD Legacy sector protect
10319
10320 New implement sector lock and unlock or softlock commands
10321 do not exist in AMD legacy flash. Thus, causing issue
10322 when erasing AMD legacy flash (such as lv040)
10323
10324 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10325 Signed-off-by: Stefan Roese <sr@denx.de>
10326
10327commit 492671404140f09d5b21b3d2ce4e362c0692c069
10328Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10329Date: Wed Aug 20 09:40:16 2008 +0200
10330
10331 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
10332
10333 CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
10334
10335 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10336
10337commit 33eac2b3d946fc998a09245dfe54d017079b9056
10338Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10339Date: Wed Aug 20 09:28:36 2008 +0200
10340
10341 hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
10342
10343 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10344
10345commit 25da0b84195fdda89a943b2d25757db5afeef5b8
10346Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10347Date: Wed Aug 20 09:27:37 2008 +0200
10348
10349 favr-32-ezkit: Fix printf format warnings
10350
10351 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10352
10353commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
10354Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10355Date: Fri Aug 15 12:04:25 2008 +0200
10356
10357 MAINTAINERS: Sort avr32 section alphabetically
10358
10359 The rest of the MAINTAINERS file appears to be sorted
10360 almost-alphabetically, but entries for the newly added AVR32 boards were
10361 added somewhat randomly. This patch sorts the list alphabetically again.
10362
10363 Also update my e-mail address. The old one still works, but it may not
10364 work forever.
10365
10366 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10367
10368commit 13b50fe3bc065c48911fa373231421280855a9d6
10369Author: Mark Jackson <mpfj@mimc.co.uk>
10370Date: Wed Jul 30 13:07:27 2008 +0100
10371
10372 avr32: Add MIMC200 board
10373
10374 The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
10375 8MByte FLASH and 128KByte FRAM.
10376
10377 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
10378 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10379
10380commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
10381Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
10382Date: Wed Jul 9 21:07:34 2008 +0900
10383
10384 rtl8169: add support for RTL8110SCL
10385
10386 This patch fixes a problem that RTL8110SCL started transfer
10387 with an incorrect memory address.
10388
10389 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
10390 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10391
10392commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
10393Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10394Date: Wed Jun 25 15:48:52 2008 -0500
10395
10396 Fix dm9000 receive status and len little endian issue
10397
10398 The received status and len was in little endian
10399 format and caused the ethernet unable to proceed
10400 further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
10401
10402 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10403 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10404
10405commit fcd69a1a57fb2af4d26201422095a4be9f36963e
10406Author: Kumar Gala <galak@kernel.crashing.org>
10407Date: Fri Aug 15 08:24:32 2008 -0500
10408
10409 Clean up usage of icache_disable/dcache_disable
10410
10411 There is no point in disabling the icache on 7xx/74xx/86xx parts and not
10412 also flushing the icache. All callers of invalidate_l1_instruction_cache()
10413 call icache_disable() right after. Make it so icache_disable() calls
10414 invalidate_l1_instruction_cache() for us.
10415
10416 Also, dcache_disable() already calls dcache_flush() so there is no point
10417 in the explicit calls of dcache_flush().
10418
10419 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10420
10421commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
10422Author: Kumar Gala <galak@kernel.crashing.org>
10423Date: Fri Aug 15 08:24:31 2008 -0500
10424
10425 Update linux bootm to support ePAPR client interface
10426
10427 The ePAPR spec has some subtle differences from the current device
10428 tree based boot interface to the powerpc linux kernel. The powerpc
10429 linux kernel currently ignores the differences that ePAPR specifies.
10430
10431 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10432
10433commit b734e5556a239b3be5f9693b2f4b4b739683ec16
10434Author: Wolfgang Denk <wd@denx.de>
10435Date: Mon Aug 18 23:50:20 2008 +0200
10436
10437 Minor code cleanup: keep lists sorted.
10438
10439 Signed-off-by: Wolfgang Denk <wd@denx.de>
10440
10441commit d0039d4ed275e6ca09fb417895024ad02be118c4
10442Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
10443Date: Wed Jul 23 19:10:14 2008 +0200
10444
10445 Add support for ADT7460 I2C monitor chip
10446
10447 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
10448
10449commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
10450Author: Michal Simek <monstr@monstr.eu>
10451Date: Mon Jul 14 19:45:45 2008 +0200
10452
10453 video: Clean drivers/video/Makefile
10454
10455 Signed-off-by: Michal Simek <monstr@monstr.eu>
10456
10457commit 871c18dd301752270e1f74328c846c3104be1e2e
10458Author: Michal Simek <monstr@monstr.eu>
10459Date: Mon Jul 14 19:45:37 2008 +0200
10460
10461 rtc: Clean drivers/rtc/Makefile
10462
10463 Signed-off-by: Michal Simek <monstr@monstr.eu>
10464
10465commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
10466Author: Michal Simek <monstr@monstr.eu>
10467Date: Mon Jul 14 19:45:35 2008 +0200
10468
10469 i2c: Clean drivers/i2c/ Makefile
10470
10471 Signed-off-by: Michal Simek <monstr@monstr.eu>
10472
10473commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
10474Author: Harald Welte <laforge@openmoko.org>
10475Date: Wed Jul 9 22:30:30 2008 +0800
10476
10477 Add 'license' command to U-Boot command line
10478
10479 The 'license' command includes the U-Boot license (GPLv2) into the
10480 actual bootloader binary. The license text can be shown interactively
10481 at the U-Boot commandline.
10482
10483 For products where the commandline can actually be accessed by the
10484 end user, this helps to prevent inadvertent GPL violations, since the
10485 GPLv2 license text can no longer be 'forgotten' to be included into
10486 the product.
10487
10488 The 'license' command can be enabled by CONFIG_CMD_LICENSE.
10489
10490 Signed-off-by: Harald Welte <laforge@openmoko.org>
10491
10492commit fe2ce5500ebf43d79d227190bd2370232d5b113d
10493Author: Harald Welte <laforge@gnumonks.org>
10494Date: Sun Jul 6 15:56:38 2008 +0800
10495
10496 add 'unzip' command to u-boot commandline
10497
10498 [PATCH] add new 'unzip' command to u-boot commandline
10499
10500 common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
10501 memory to memory, and option CONFIG_CMD_UNZIP to enable it
10502
10503 Signed-off-by: Werner Almesberger <werner@openmoko.org>
10504 Signed-off-by: Harald Welte <laforge@openmoko.org>
10505
10506commit 07efc9e321619c3dec213310c32e011aa6f02783
10507Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10508Date: Wed Aug 6 19:37:17 2008 -0500
10509
10510 Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
10511
10512 The CFG_ENV_SIZE is not suitable used for SPI flash erase
10513 sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
10514 Add condition check if CFG_ENV_SIZE is larger than
10515 CFG_ENV_SECT_SIZE, calculate the right number of sectors for
10516 erasing.
10517
10518 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10519
10520commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
10521Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10522Date: Mon Aug 11 15:54:25 2008 +0000
10523
10524 ColdFire: Multiple fixes for M5282EVB
10525
10526 Incorrect CFG_HZ value, change 1000000 to 1000.
10527 Rename #waring to #warning. RAMBAR1 uses twice
10528 in start.S, rename the later to FLASHBAR. Insert
10529 nop for DRAM setup. And, env_offset in linker file.
10530
10531 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10532
10533commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
10534Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10535Date: Mon Aug 11 15:26:43 2008 +0000
10536
10537 ColdFire: Move m5282evb from board to board/freescale
10538
10539 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10540
10541commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
10542Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10543Date: Mon Aug 11 15:25:07 2008 +0000
10544
10545 ColdFire: Move m5272c3 from board to board/freescale
10546
10547 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10548
10549commit 659e9bad629a480f606b286d5703aef7159edf98
10550Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10551Date: Mon Aug 11 15:23:16 2008 +0000
10552
10553 ColdFire: Move m5271evb from board to board/freescale
10554
10555 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10556
10557commit 05316f8ece8206339a208ec052f039cd0f7ca922
10558Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10559Date: Mon Aug 11 13:41:49 2008 +0000
10560
10561 ColdFire: Add M54451EVB platform support for MCF5445x
10562
10563 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10564
10565commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
10566Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10567Date: Wed Aug 6 19:14:08 2008 -0500
10568
10569 ColdFire: Add Serial Flash support for M54455EVB
10570
10571 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10572
10573commit 9f751551456828b2d0ff417f10959fb0c7110bd0
10574Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10575Date: Wed Jul 23 20:38:53 2008 -0500
10576
10577 ColdFire: Implement SBF feature for M5445EVB
10578
10579 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10580
10581commit a7323bba229203aae2604afde131ab47bad4eadc
10582Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10583Date: Wed Jul 23 17:53:36 2008 -0500
10584
10585 ColdFire: Add SSPI feature for MCF5445x
10586
10587 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10588
10589commit b2d022d1ac3f59bffa9cec249341e77aea168abc
10590Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10591Date: Wed Jul 23 17:37:10 2008 -0500
10592
10593 ColdFire: Use CFI Flash driver for M54455EVB
10594
10595 Remove non-common flash driver in
10596 board/freescale/m54455evb/flash.c. The non-cfi flash will
10597 use CONFIG_FLASH_CFI_LEGACY to configure the flash
10598 attribute.
10599
10600 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10601
10602commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
10603Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10604Date: Wed Jul 23 17:11:47 2008 -0500
10605
10606 ColdFire: Add M5253DEMO platform support for MCF5253
10607
10608 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10609
10610commit 80ba61fd82569af40e04d4a089257b81881884f2
10611Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10612Date: Wed Aug 6 14:17:09 2008 -0500
10613
10614 ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
10615
10616 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10617
10618commit d361307e73ce1f6fc68760123f37d4876f851f3e
10619Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10620Date: Wed Aug 6 14:11:36 2008 -0500
10621
10622 ColdFire: Fix M5253EVB dram bring up issue
10623
10624 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10625
10626commit 4b0708093e15b412296328bf81325cf9b69fe512
10627Author: Wolfgang Denk <wd@denx.de>
10628Date: Thu Aug 14 14:41:06 2008 +0200
10629
10630 Coding Style cleanup, update CHANGELOG
10631
10632 Signed-off-by: Wolfgang Denk <wd@denx.de>
10633
Wolfgang Denk4b070802008-08-14 14:41:06 +020010634commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
10635Author: Scott Wood <scottwood@freescale.com>
10636Date: Wed Aug 13 18:24:05 2008 -0500
10637
10638 socrates: Update NAND driver to new API.
10639
10640 Also, fix some minor formatting issues, and simplify the handling of
10641 "state" for writes.
10642
10643 Signed-off-by: Scott Wood <scottwood@freescale.com>
10644
10645commit ba22d10f39eaeedd035e8265616e31ff88e314d5
10646Author: Scott Wood <scottwood@freescale.com>
10647Date: Wed Aug 13 18:03:40 2008 -0500
10648
10649 quad100hd: Update NAND driver to new API.
10650
10651 Signed-off-by: Scott Wood <scottwood@freescale.com>
10652
10653commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
10654Author: Scott Wood <scottwood@freescale.com>
10655Date: Wed Aug 13 17:53:48 2008 -0500
10656
10657 m5373evb: Update NAND driver to new API.
10658
10659 Signed-off-by: Scott Wood <scottwood@freescale.com>
10660
10661commit 1a23a197c8722b805f40895544bbdb1a648c1c82
10662Author: Scott Wood <scottwood@freescale.com>
10663Date: Wed Aug 13 17:04:30 2008 -0500
10664
10665 s3c24x0: Update NAND driver to new API.
10666
10667 Signed-off-by: Scott Wood <scottwood@freescale.com>
10668
10669commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
10670Author: Scott Wood <scottwood@freescale.com>
10671Date: Wed Aug 13 15:56:00 2008 -0500
10672
10673 at91: Update board NAND drivers to current API.
10674
10675 Signed-off-by: Scott Wood <scottwood@freescale.com>
10676
10677commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
10678Author: Kyungmin Park <kmpark@infradead.org>
10679Date: Wed Aug 13 09:11:02 2008 +0900
10680
10681 Fix OneNAND build break
10682
10683 Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
10684 - fix bufferram management at erase operation
10685 This patch includes the NAND/OneNAND state filed too.
10686
10687 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
10688 Signed-off-by: Scott Wood <scottwood@freescale.com>
10689
10690commit 9483df6408c25f16060432de3868901e352e23bc
10691Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10692Date: Wed Aug 13 01:40:43 2008 +0200
10693
10694 drivers/mtd/nand_legacy: Move conditional compilation to Makefile
10695
10696 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10697
10698commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
10699Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10700Date: Wed Aug 13 01:40:43 2008 +0200
10701
10702 drivers/mtd/nand: Move conditional compilation to Makefile
10703
10704 rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
10705
10706 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10707
10708commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
10709Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10710Date: Wed Aug 13 01:40:42 2008 +0200
10711
10712 drivers/mtd/onenand: Move conditional compilation to Makefile
10713
10714 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10715
10716commit 00b1883a4cac59d97cd297b1a3a398db85982865
10717Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10718Date: Wed Aug 13 01:40:42 2008 +0200
10719
10720 drivers/mtd: Move conditional compilation to Makefile
10721
10722 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
10723
10724 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10725
10726commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
10727Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10728Date: Wed Aug 13 01:40:41 2008 +0200
10729
10730 drivers/qe: Move conditional compilation to Makefile
10731
10732 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10733
10734commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
10735Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10736Date: Wed Aug 13 01:40:40 2008 +0200
10737
10738 drivers/pci: Move conditional compilation to Makefile
10739
10740 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10741
10742commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
10743Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10744Date: Wed Aug 13 01:40:40 2008 +0200
10745
10746 drivers/misc: Move conditional compilation to Makefile
10747
10748 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10749
10750commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
10751Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10752Date: Wed Aug 13 01:40:40 2008 +0200
10753
10754 drivers/input: Move conditional compilation to Makefile
10755
10756 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10757
10758commit 88f57e093114a44aa9a858d52b099bcc52034a8c
10759Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10760Date: Wed Aug 13 01:40:39 2008 +0200
10761
10762 drivers/dma: Move conditional compilation to Makefile
10763
10764 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10765
10766commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
10767Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10768Date: Wed Aug 13 01:40:39 2008 +0200
10769
10770 drivers/block: Move conditional compilation to Makefile
10771
10772 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10773
10774commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
10775Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10776Date: Wed Aug 13 01:40:39 2008 +0200
10777
10778 serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
10779
10780 move also conditional compilation to Makefile
10781
10782 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10783
10784commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
10785Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10786Date: Wed Aug 13 01:40:38 2008 +0200
10787
10788 serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
10789
10790 move also conditional compilation to Makefile
10791
10792 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10793
10794commit d6e9ee92e890f67594ab150689510df361133ead
10795Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10796Date: Wed Aug 13 01:40:38 2008 +0200
10797
10798 common: Move conditional compilation to Makefile
10799
10800 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10801
10802commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
10803Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10804Date: Wed Aug 13 01:40:09 2008 +0200
10805
10806 mx31: move freescale's mx31 boards to vendor board dir
10807
10808 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10809
10810commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
10811Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10812Date: Sat Jul 5 23:11:11 2008 +0200
10813
10814 at91: move arch-at91sam9 to arch-at91
10815
10816 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10817
10818commit 195ccfc5991d48764b2519941e3507f693851d5d
10819Author: Fathi BOUDRA <fabo@debian.org>
10820Date: Wed Aug 6 10:06:20 2008 +0200
10821
10822 OneNAND: Fill in MTD function pointers for OneNAND.
10823
10824 onenand_print_device_info():
10825 - Now returns a string to be placed in mtd->name,
10826 rather than calling printf.
10827 - Remove verbose parameter as it becomes useless.
10828
10829 Signed-off-by: Fathi Boudra <fabo@debian.org>
10830 Signed-off-by: Scott Wood <scottwood@freescale.com>
10831
10832commit aa646643b6bc250cb3a4966bf728876e0c10d329
10833Author: Guennadi Liakhovetski <lg@denx.de>
10834Date: Wed Aug 6 21:42:07 2008 +0200
10835
10836 nand_spl: Support page-aligned read in nand_load, use chipselect
10837
10838 Supporting page-aligned reads doesn't incure any sinificant overhead, just
10839 a small change in the algorithm. Also replace in_8 with readb, since there
10840 is no in_8 on ARM.
10841
10842 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10843 Signed-off-by: Scott Wood <scottwood@freescale.com>
10844
10845commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
10846Author: Scott Wood <scottwood@freescale.com>
10847Date: Tue Aug 5 11:15:59 2008 -0500
10848
10849 NAND boot: Update large page support for current API.
10850
10851 Also, remove the ctrl variable in favor of passing the constants
10852 directly, and remove redundant (u8) casts.
10853
10854 Signed-off-by: Scott Wood <scottwood@freescale.com>
10855
10856commit e4c09508545d1c45617ba45391c03c03cbc360b9
10857Author: Scott Wood <scottwood@freescale.com>
10858Date: Mon Jun 30 14:13:28 2008 -0500
10859
10860 NAND boot: MPC8313ERDB support
10861
10862 Note that with older board revisions, NAND boot may only work after a
10863 power-on reset, and not after a warm reset. I don't have a newer board
10864 to test on; if you have a board with a 33MHz crystal, please let me know
10865 if it works after a warm reset.
10866
10867 Signed-off-by: Scott Wood <scottwood@freescale.com>
10868
10869commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
10870Author: Scott Wood <scottwood@freescale.com>
10871Date: Thu Jun 26 14:06:52 2008 -0500
10872
10873 mpc8313erdb: Enable NAND in config.
10874
10875 Signed-off-by: Scott Wood <scottwood@freescale.com>
10876
10877commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
10878Author: Guennadi Liakhovetski <lg@denx.de>
10879Date: Thu Jul 31 12:38:26 2008 +0200
10880
10881 NAND: Do not write or read a whole block if it is larger than the environment
10882
10883 Environment can be smaller than NAND block size, do not need to read a whole
10884 block and minimum for writing is one page. Also remove an unused variable.
10885
10886 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10887 Signed-off-by: Scott Wood <scottwood@freescale.com>
10888
10889commit eafcabd15f00c142156235c519fcc55b10993241
10890Author: Marcel Ziswiler <marcel@ziswiler.com>
10891Date: Sun Jun 22 16:30:06 2008 +0200
10892
10893 NAND: chip->state does not always get set.
10894
10895 Fixes an issue with chip->state not always being set causing troubles.
10896
10897 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
10898 Signed-off-by: Scott Wood <scottwood@freescale.com>
10899
10900commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
10901Author: Ilya Yanok <yanok@emcraft.com>
10902Date: Mon Jun 30 15:34:40 2008 +0200
10903
10904 NAND: Scan bad blocks lazily.
10905
10906 Rather than scanning on boot, scan upon the first attempt to check the
10907 badness of a block. This speeds up boot when not using NAND, and reduces
10908 the likelihood of needing to reflash via JTAG if NAND becomes
10909 nonfunctional.
10910
10911 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
10912 Signed-off-by: Scott Wood <scottwood@freescale.com>
10913
10914commit dfbf617ff055e4216f78d358b0867c548916d14b
10915Author: Scott Wood <scottwood@freescale.com>
10916Date: Thu Jun 12 13:20:16 2008 -0500
10917
10918 NAND read/write fix
10919
10920 Implement block-skipping read/write, based on a patch from
10921 Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
10922
10923 Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
10924 Signed-off-by: Scott Wood <scottwood@freescale.com>
10925
10926commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
10927Author: Scott Wood <scottwood@freescale.com>
10928Date: Thu Jun 12 13:13:23 2008 -0500
10929
10930 NAND: Always skip blocks on read/write/boot.
10931
10932 Use of the non-skipping versions was almost always (if not always)
10933 an error, and no valid use case has been identified.
10934
10935 Signed-off-by: Scott Wood <scottwood@freescale.com>
10936
10937commit e1c3dbada349992875934575c97b328ab2cb33ca
10938Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10939Date: Thu Jun 12 11:10:21 2008 -0500
10940
10941 nand: fsl_upm: convert to updated MTD NAND infrastructure
10942
10943 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10944 Signed-off-by: Scott Wood <scottwood@freescale.com>
10945
10946commit 300253306acc72b1b2e9faf0987f86551151d7cf
10947Author: Scott Wood <scottwood@freescale.com>
10948Date: Thu May 22 15:02:46 2008 -0500
10949
10950 fsl_elbc_nand: Hard-code the FBAR/FPAR split.
10951
10952 The hardware has separate registers for block and page-within-block,
10953 but the division between the two has no apparent relation to the
10954 actual erase block size of the NAND chip.
10955
10956 Signed-off-by: Scott Wood <scottwood@freescale.com>
10957
10958commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
10959Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10960Date: Fri Mar 28 22:10:54 2008 +0300
10961
10962 fsl_elbc_nand: workaround for hangs during nand write
10963
10964 Using current driver elbc sometimes hangs during nand write. Reading back
10965 last byte helps though (thanks to Scott Wood for the idea).
10966
10967 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10968 Signed-off-by: Scott Wood <scottwood@freescale.com>
10969
10970commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
10971Author: Scott Wood <scottwood@freescale.com>
10972Date: Fri Mar 21 16:12:51 2008 -0500
10973
10974 Freescale eLBC FCM NAND driver
10975
10976 This is a driver for the Flash Control Machine of the enhanched Local Bus
10977 Controller found on some Freescale chips (such as the mpc8313 and the
10978 mpc8379).
10979
10980 Signed-off-by: Scott Wood <scottwood@freescale.com>
10981
10982commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
10983Author: Scott Wood <scottwood@freescale.com>
10984Date: Tue Mar 18 15:29:14 2008 -0500
10985
10986 Don't panic if a controller driver does ecc its own way.
10987
10988 Some hardware, such as the enhanced local bus controller used on some
10989 mpc83xx chips, does ecc transparently when reading and writing data, rather
10990 than providing a generic calculate/correct mechanism that can be exported to
10991 the nand subsystem.
10992
10993 The subsystem should not BUG() when calculate, correct, or hwctl are
10994 missing, if the methods that call them have been overridden.
10995
10996 Signed-off-by: Scott Wood <scottwood@freescale.com>
10997
10998commit e52b34d40a8a646e3d11638ea8797e96398dba13
10999Author: Stefan Roese <sr@denx.de>
11000Date: Thu Jan 10 18:47:33 2008 +0100
11001
11002 NAND: Make NAND driver less verbose per default
11003
11004 This patch turns off printing of bad blocks per default upon bootup.
11005 This can always be shown via the "nand bad" command later.
11006
11007 Signed-off-by: Stefan Roese <sr@denx.de>
11008
11009commit fe56a2772e5c59577df906163d0d4b29b056140e
11010Author: Sergey Kubushyn <ksi@koi8.net>
11011Date: Wed Jan 9 15:36:20 2008 +0100
11012
11013 NAND: Davinci driver updates
11014
11015 Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
11016 don't have hardware handy so I can not test it at the moment but changes are
11017 rather trivial so it should work. It would be nice if somebody with a
11018 hardware checked it anyways.
11019
11020 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
11021
11022commit deac913effd8d80535c9ff4687b6fcdff540c554
11023Author: Stefan Roese <sr@denx.de>
11024Date: Sat Jan 5 16:50:32 2008 +0100
11025
11026 NAND: Fix compilation warning and small coding style issue
11027
11028 Signed-off-by: Stefan Roese <sr@denx.de>
11029
11030commit c568f77acdf896fc3dd6413ce53205b17ba809a3
11031Author: Stefan Roese <sr@denx.de>
11032Date: Sat Jan 5 16:49:37 2008 +0100
11033
11034 NAND: Update nand_spl driver to match updated nand subsystem
11035
11036 This patch changes the NAND booting driver nand_spl/nand_boot.c to match
11037 the new infrastructure from the updated NAND subsystem. This NAND
11038 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
11039 subsystem.
11040
11041 Signed-off-by: Stefan Roese <sr@denx.de>
11042
11043commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
11044Author: Stefan Roese <sr@denx.de>
11045Date: Sat Jan 5 16:47:58 2008 +0100
11046
11047 NAND: Update 4xx NDFC driver to match updated nand subsystem
11048
11049 This patch changes the 4xx NAND driver ndfc.c to match the new
11050 infrastructure from the updated NAND subsystem. This NAND
11051 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
11052 subsystem.
11053
11054 Tested successfully on AMCC Sequoia and Bamboo.
11055
11056 Signed-off-by: Stefan Roese <sr@denx.de>
11057
11058commit 12072264528eba33737bc9674e19f0e925ffda23
11059Author: Stefan Roese <sr@denx.de>
11060Date: Sat Jan 5 16:43:25 2008 +0100
11061
11062 NAND: Change nand_wait_ready() to not call nand_wait()
11063
11064 This patch changes nand_wait_ready() to not just call nand_wait(),
11065 since this will send a new command to the NAND chip. We just want to
11066 wait for the chip to become ready here.
11067
11068 Signed-off-by: Stefan Roese <sr@denx.de>
11069
11070commit 9ad754fef5053144daed3b007adaf1c9bec654c9
11071Author: William Juul <william.juul@datarespons.no>
11072Date: Fri Dec 14 16:33:45 2007 +0100
11073
11074 make nand dump and nand dump.oob work
11075
11076 Signed-off-by: William Juul <william.juul@tandberg.com>
11077 Signed-off-by: Scott Wood <scottwood@freescale.com>
11078
11079commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
11080Author: William Juul <william.juul@datarespons.no>
11081Date: Mon Nov 19 14:46:00 2007 +0100
11082
11083 moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
11084
11085 Signed-off-by: William Juul <william.juul@tandberg.com>
11086
11087commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
11088Author: William Juul <william.juul@tandberg.com>
11089Date: Tue Jun 10 16:18:13 2008 -0500
11090
11091 Clean out unneeded files
11092
11093 Signed-off-by: William Juul <william.juul@tandberg.com>
11094
11095commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
11096Author: William Juul <william.juul@datarespons.no>
11097Date: Fri Nov 16 08:44:27 2007 +0100
11098
11099 Create symlinks from yaffs2/direct to yaffs2
11100
11101 Signed-off-by: William Juul <william.juul@tandberg.com>
11102
11103commit 90ef117b68387d66763291af0117677644166611
11104Author: William Juul <william.juul@datarespons.no>
11105Date: Thu Nov 15 12:23:57 2007 +0100
11106
11107 Incorporate yaffs2 into U-boot
11108
11109 To use YAFFS2 define CONFIG_YAFFS2
11110
11111 Signed-off-by: William Juul <william.juul@tandberg.com>
11112 Signed-off-by: Scott Wood <scottwood@freescale.com>
11113
11114commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
11115Author: William Juul <william.juul@datarespons.no>
11116Date: Thu Nov 15 11:13:05 2007 +0100
11117
11118 YAFFS2 import
11119
11120 Direct import of yaffs as a tarball as of 20071113 from their public
11121 CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
11122
11123 The code can also be imported on the command line with:
11124 export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
11125 (Hit return when asked for a password)
11126 cvs checkout yaffs2
11127
11128 Signed-off-by: William Juul <william.juul@tandberg.com>
11129 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
11130
11131commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
11132Author: William Juul <william.juul@datarespons.no>
11133Date: Wed Nov 14 14:28:11 2007 +0100
11134
11135 Whitespace cleanup and marking broken code.
11136
11137 Changes requested by maintainer Stefan Roese after
11138 posting patch to U-boot mailing list.
11139
11140 Signed-off-by: William Juul <william.juul@tandberg.com>
11141 Signed-off-by: Scott Wood <scottwood@freescale.com>
11142
11143commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
11144Author: William Juul <william.juul@datarespons.no>
11145Date: Fri Nov 9 13:32:30 2007 +0100
11146
11147 Fixing coding style issues
11148
11149 - Fixing leading white spaces
11150 - Fixing indentation where 4 spaces are used instead of tab
11151 - Removing C++ comments (//), wherever I introduced them
11152
11153 Signed-off-by: William Juul <william.juul@tandberg.com>
11154 Signed-off-by: Scott Wood <scottwood@freescale.com>
11155
11156commit 4cbb651b29cb64d378a06729970e1e153bb605b1
11157Author: William Juul <william.juul@datarespons.no>
11158Date: Thu Nov 8 10:39:53 2007 +0100
11159
11160 Remove white space at end.
11161
11162 Signed-off-by: William Juul <william.juul@tandberg.com>
11163 Signed-off-by: Scott Wood <scottwood@freescale.com>
11164
11165commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
11166Author: William Juul <william.juul@datarespons.no>
11167Date: Wed Oct 31 13:53:06 2007 +0100
11168
11169 Update MTD to that of Linux 2.6.22.1
11170
11171 A lot changed in the Linux MTD code, since it was last ported from
11172 Linux to U-Boot. This patch takes U-Boot NAND support to the level
11173 of Linux 2.6.22.1 and will enable support for very large NAND devices
11174 (4KB pages) and ease the compatibility between U-Boot and Linux
11175 filesystems.
11176
11177 This patch is tested on two custom boards with PPC and ARM
11178 processors running YAFFS in U-Boot and Linux using gcc-4.1.2
11179 cross compilers.
11180
11181 MAKEALL ppc/arm has some issues:
11182 * DOC/OneNand/nand_spl is not building (I have not tried porting
11183 these parts, and since I do not have any HW and I am not familiar
11184 with this code/HW I think its best left to someone else.)
11185
11186 Except for the issues mentioned above, I have ported all drivers
11187 necessary to run MAKEALL ppc/arm without errors and warnings. Many
11188 drivers were trivial to port, but some were not so trivial. The
11189 following drivers must be examined carefully and maybe rewritten to
11190 some degree:
11191 cpu/ppc4xx/ndfc.c
11192 cpu/arm926ejs/davinci/nand.c
11193 board/delta/nand.c
11194 board/zylonite/nand.c
11195
11196 Signed-off-by: William Juul <william.juul@tandberg.com>
11197 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
11198 Signed-off-by: Scott Wood <scottwood@freescale.com>
11199
11200commit cd82919e6c8a73b363a26f34b734923844e52d1c
11201Author: Wolfgang Denk <wd@denx.de>
11202Date: Tue Aug 12 16:08:38 2008 +0200
11203
11204 Coding style cleanup, update CHANGELOG, prepare release
11205
11206 Signed-off-by: Wolfgang Denk <wd@denx.de>
11207
Wolfgang Denkcd829192008-08-12 16:08:38 +020011208commit 17e900b8c0f38d922da47073246219dce2a847f2
11209Author: Wolfgang Denk <wd@denx.de>
11210Date: Tue Aug 12 14:54:04 2008 +0200
11211
11212 MVBC_P: fix compile problem
11213
11214 Signed-off-by: Wolfgang Denk <wd@denx.de>
11215
11216commit 52b047ae48219b59bebe37ba743ab103fd4f8316
11217Author: Wolfgang Denk <wd@denx.de>
11218Date: Tue Aug 12 12:10:11 2008 +0200
11219
11220 MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
11221
11222 Signed-off-by: Wolfgang Denk <wd@denx.de>
11223
11224commit c9c101c660b3d1995045c61c7c6041f52b6cf335
11225Author: Wolfgang Denk <wd@denx.de>
11226Date: Tue Aug 12 00:36:53 2008 +0200
11227
11228 ads5121: fix compiler warnings (unused variables)
11229
11230 Signed-off-by: Wolfgang Denk <wd@denx.de>
11231
11232commit 902ca09246039964d59bbcb519b1e1b5aed01308
11233Author: Kumar Gala <galak@kernel.crashing.org>
11234Date: Mon Aug 11 11:29:28 2008 -0500
11235
11236 85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
11237
11238 Use CONFIG_NUM_CPUS to match existing define used by 86xx.
11239
11240 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11241 Acked-by: Jon Loeliger <jdl@freescale.com>
11242
11243commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
11244Author: Kumar Gala <galak@kernel.crashing.org>
11245Date: Mon Aug 11 09:20:53 2008 -0500
11246
11247 Fix fallout from autostart revert
11248
11249 The autostart revert caused a bit of duplicated code as well as
11250 code that was using images->autostart that needs to get removed so
11251 we can build again.
11252
11253 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11254
11255commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
11256Author: Kumar Gala <galak@kernel.crashing.org>
11257Date: Mon Aug 11 09:16:25 2008 -0500
11258
11259 Fix compile error related to r8a66597-hcd & usb
11260
11261 When building the 8544DS board we get this error:
11262
11263 In file included from r8a66597-hcd.c:22:
11264 u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
11265 make[1]: *** [r8a66597-hcd.o] Error 1
11266
11267 The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
11268 is set.
11269
11270 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11271
11272commit 2d0daa03612338a813e3c9d22680e54eabfea378
11273Author: Becky Bruce <becky.bruce@freescale.com>
11274Date: Mon Aug 4 14:02:26 2008 -0500
11275
11276 POWERPC 86xx: Move BAT setup code to C
11277
11278 This is needed because we will be possibly be locating
11279 devices at physical addresses above 32bits, and the asm
11280 preprocessing does not appear to deal with ULL constants
11281 properly. We now call write_bat in lib_ppc/bat_rw.c.
11282
11283 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11284 Acked-by: Jon Loeliger <jdl@freescale.com>
11285
11286commit 9de67149db576c91b9c2a0a182652331e7e44211
11287Author: Becky Bruce <becky.bruce@freescale.com>
11288Date: Mon Aug 4 14:01:53 2008 -0500
11289
11290 POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
11291
11292 Perform sync/isync as required by the architecture.
11293
11294 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11295 Acked-by: Jon Loeliger <jdl@freescale.com>
11296
11297commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
11298Author: Becky Bruce <becky.bruce@freescale.com>
11299Date: Mon Aug 4 14:01:16 2008 -0500
11300
11301 POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
11302
11303 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11304 Acked-by: Jon Loeliger <jdl@freescale.com>
11305
11306commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
11307Author: Magnus Lilja <lilja.magnus@gmail.com>
11308Date: Sun Aug 3 21:44:10 2008 +0200
11309
11310 i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
11311
11312 Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
11313 contacts instead of only the first 256 ones as is the case prior to
11314 this patch.
11315
11316 Add missing MUX_* macros and update board files to use the new macros.
11317
11318 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
11319
11320commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
11321Author: Magnus Lilja <lilja.magnus@gmail.com>
11322Date: Sun Aug 3 21:43:37 2008 +0200
11323
11324 i.MX31: Fix IOMUX related typos
11325
11326 Correct the names of some IOMUX macros.
11327
11328 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
11329
11330commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
11331Author: Steve Sakoman <steve@sakoman.com>
11332Date: Mon Aug 11 20:26:16 2008 +0200
11333
11334 OneNAND: Remove unused parameters to onenand_verify_page
11335
11336 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.
11337
11338 Signed-off-by: Steve Sakoman <steve@sakoman.com>
11339 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
11340
11341commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
11342Author: Anatolij Gustschin <agust@denx.de>
11343Date: Fri Aug 8 18:00:40 2008 +0200
11344
11345 video: fix bug in cfb_console code
11346
11347 FILL_15BIT_555RGB macro extension for pixel swapping
11348 by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
11349 introduced a bug in cfb_console:
11350
11351 Bitmaps with odd-numbered width won't be rendered
11352 correctly and even U-Boot crashes are observed on
11353 some platforms while repeated rendering of such
11354 bitmaps with "bmp display". Also if a bitmap is
11355 rendered to an odd-numbered x starting position,
11356 the same problem occurs. This patch is an attempt
11357 to fix it.
11358
11359 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11360
11361commit d9015f6a50d7258125349ef5c2af836458a0029a
11362Author: Anatolij Gustschin <agust@denx.de>
11363Date: Fri Aug 8 18:00:39 2008 +0200
11364
11365 video: fix bug in logo_plot
11366
11367 If logo_plot() should ever be called with x starting
11368 position other than zero and for pixel depths greater
11369 than 8bpp, logo colors distortion will be observed.
11370 This patch fixes the issue.
11371
11372 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11373
11374commit 406819ae94f79f5b59e01d163380ca7d83709251
11375Author: Wolfgang Denk <wd@denx.de>
11376Date: Mon Aug 11 00:17:52 2008 +0200
11377
11378 MAINTAINERS: sort entries
11379
11380 Signed-off-by: Wolfgang Denk <wd@denx.de>
11381
11382commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
11383Author: Roy Zang <tie-fei.zang@freescale.com>
11384Date: Thu Aug 7 18:19:28 2008 +0800
11385
11386 Add mpc7448hpc2 maintainer information
11387
11388 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
11389
11390commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
11391Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
11392Date: Thu Aug 7 13:13:27 2008 +0530
11393
11394 common/cmd_load.c - Minor code & Coding Style cleanup
11395
11396 - os_data_header Variable is a carry over feature
11397 & unused. So removed all instance of this variable
11398 - Minor Code Style Update
11399
11400 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
11401 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11402
11403commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
11404Author: Magnus Lilja <lilja.magnus@gmail.com>
11405Date: Wed Aug 6 19:32:33 2008 +0200
11406
11407 Update the U-Boot wiki URL.
11408
11409 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
11410
11411commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
11412Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
11413Date: Sun Aug 10 17:56:36 2008 +0200
11414
11415 OneNAND: Remove base address offset usage
11416
11417 While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
11418 using OneNAND and some using NAND, we found some differences in OneNAND and
11419 NAND command address handling.
11420
11421 As this might confuse users (it already confused us), we like to align OneNAND
11422 and NAND address handling.
11423
11424 The issue is that cmd_onenand.c subtracts the onenand base address from the
11425 addresses you type into the u-boot command line so, unlike nand, you can't
11426 use addresses relative to the start of the onenand part e.g. this won't work:
11427
11428 onenand read 82000000 280000 400000
11429
11430 you have to use:
11431
11432 onenand read 82000000 20280000 400000
11433
11434 Looking at recent git, the only board currently using OneNAND is Apollon, and
11435 for this the OneNAND base address is 0 (apollon.h)
11436
11437 #define CFG_ONENAND_BASE 0x00000000
11438
11439 so patch below won't break any existing boards and will align OneNAND and NAND
11440 handling on boards where OneNAND base address is != 0.
11441
11442 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
11443 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
11444 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
11445
11446commit c11528083ef6e55e76df742228c26e39d151813d
11447Author: Kumar Gala <galak@kernel.crashing.org>
11448Date: Thu Aug 7 09:28:20 2008 -0500
11449
11450 mpc85xx: workaround old binutils bug
11451
11452 The recent change to move the .bss outside of the image gives older
11453 binutils (ld from eldk4.1/binutils-2.16) some headache:
11454
11455 ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
11456 ppc_85xx-ld: final link failed: Bad value
11457
11458 We workaround it by being explicit about the program headers and not
11459 assigning the .bss to a program header.
11460
11461 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11462
11463commit 0bf202ec586d4466c900e987720fa635c594d689
11464Author: Wolfgang Denk <wd@denx.de>
11465Date: Sun Aug 10 01:26:26 2008 +0200
11466
11467 Revert "[new uImage] Add autostart flag to bootm_headers structure"
11468
11469 This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
11470
11471 The commit was based on a misunderstanding of the (documented)
11472 meaning of the 'autostart' environment variable. It might cause
11473 boards to hang if 'autostart' was used, with the potential to brick
11474 them. Go back to the documented behaviour.
11475
11476 Conflicts:
11477
11478 common/cmd_bootm.c
11479 common/image.c
11480 include/image.h
11481
11482 Signed-off-by: Wolfgang Denk <wd@denx.de>
11483
11484commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
11485Author: Wolfgang Denk <wd@denx.de>
11486Date: Sat Aug 9 23:17:32 2008 +0200
11487
11488 TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
11489
11490 - enable CFI driver where this was forgotten
11491 - enable mtdparts support
11492 - adjust default environment
11493 etc.
11494
11495 Signed-off-by: Wolfgang Denk <wd@denx.de>
11496
11497commit 41266c9b5a5f873df3ec891bb0907616958b5602
11498Author: Peter Tyser <ptyser@xes-inc.com>
11499Date: Tue Aug 5 10:51:57 2008 -0500
11500
11501 FIT: Fix handling of images without ramdisks
11502
11503 boot_get_ramdisk() should not treat the case when a FIT image does
11504 not contain a ramdisk as an error.
11505
11506 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11507 Acked-by: Michal Simek <monstr@monstr.eu>
11508
11509commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
11510Author: Sergey Lapin <slapin@ossfans.org>
11511Date: Sat Aug 9 01:39:09 2008 +0400
11512
11513 DataFlash: AT45DB021 fix and AT45DB081 support
11514
11515 Fix for page size of AT45DB021. Also adding bigger AT45DB081
11516 which comes with some newer boards.
11517
11518 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
11519
11520commit ba9324451b662dd393afa53e5cc36fc5d3d10966
11521Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11522Date: Fri Aug 8 16:30:23 2008 +0900
11523
11524 sh: Update sh7763rdp config
11525
11526 Add sh_eth support to sh7763rdp.
11527
11528 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11529
11530commit 21f971ec265f6042ec21636d55d06a6bc0751077
11531Author: Wolfgang Denk <wd@denx.de>
11532Date: Mon Jul 7 01:22:29 2008 +0200
11533
11534 TQM823L: re-enable logo support; update LCD_INFO text
11535
11536 Signed-off-by: Wolfgang Denk <wd@denx.de>
11537
11538commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
11539Author: Wolfgang Denk <wd@denx.de>
11540Date: Fri Aug 8 16:41:56 2008 +0200
11541
11542 TQM8xxL: fix support for second flash bank
11543
11544 When switching the TQM8xxL modules to use the CFI flash driver,
11545 support for the second flash bank was broken because the CFI driver
11546 did not support dynamically sized banks. This gets fixed now.
11547
11548 Signed-off-by: Wolfgang Denk <wd@denx.de>
11549
11550commit 2a112b234d879f6390503a5f4e38246acce9d0b0
11551Author: Wolfgang Denk <wd@denx.de>
11552Date: Fri Aug 8 16:39:54 2008 +0200
11553
11554 CFI: allow for dynamically determined flash sizes and addresses
11555
11556 The CFI driver allowed only for static initializers in the
11557 CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
11558 several flash banks contiguously if the bank sizes were not known in
11559 advance, which kind of violates U-Boot's design philosophy.
11560
11561 (will be used for example by the TQM8xxL boards)
11562
11563 Signed-off-by: Wolfgang Denk <wd@denx.de>
11564
11565commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
11566Author: Ben Warren <biggerbadderben@gmail.com>
11567Date: Thu Aug 7 23:26:35 2008 -0700
11568
11569 QE UEC: Fix compiler warnings
11570
11571 Moved static functions earlier in file so forward declarations are not needed.
11572
11573 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11574
11575commit d5d28fe4aad5f4535400647a5617c11039506467
11576Author: David Saada <David.Saada@ecitele.com>
11577Date: Mon Mar 31 02:37:38 2008 -0700
11578
11579 QE UEC: Add MII Commands
11580
11581 Add MII commands to the UEC driver. Note that once a UEC device is selected,
11582 any device on its MDIO bus can be addressed.
11583
11584 Signed-off-by: David Saada <david.saada@ecitele.com>
11585 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11586
11587commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
11588Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11589Date: Wed Jul 9 21:07:38 2008 +0900
11590
11591 usb: add support for R8A66597 usb controller
11592
11593 add support for Renesas R8A66597 usb controller.
11594 This patch supports USB Host mode.
11595
11596 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
11597 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
11598
11599commit 1d10dcd041aaeae9fd7c821005692898a0303382
11600Author: Hunter, Jon <jon-hunter@ti.com>
11601Date: Sat Jul 26 18:59:16 2008 -0500
11602
11603 Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
11604
11605 Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
11606
11607 Signed-off-by: Jon Hunter <jon-hunter@ti.com>
11608 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
11609
11610commit eab1007334b93a6209f1ec33615e26ef5311ede7
11611Author: Steven A. Falco <sfalco@harris.com>
11612Date: Wed Aug 6 15:42:52 2008 -0400
11613
11614 ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
11615
11616 The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
11617 configuration to match the schematic, and also sets the SDR0_PFC1 register to
11618 select the corresponding mode for the UARTs.
11619
11620 Signed-off-by: Steven A. Falco <sfalco@harris.com>
11621 Signed-off-by: Stefan Roese <sr@denx.de>
11622
Wolfgang Denka49d10c2008-08-25 23:45:41 +020011623commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
11624Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
11625Date: Wed Aug 6 14:42:13 2008 +0200
11626
11627 avr32: add support for EarthLCD Favr-32 board
11628
11629 This patch adds support for the Favr-32 board made by EarthLCD.
11630
11631 This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
11632 has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
11633 Ethernet, audio out, USB device, SD-card slot, USART and various other
11634 connectors for cennecting stuff to SPI, I2C, GPIO, etc.
11635
11636 Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
11637 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11638
11639commit bc9019e19758a19a388fb20ef18dc771cd39fdda
11640Author: Rafael Campos <rafael.campos@hanscan.com>
11641Date: Thu Jul 31 10:22:20 2008 +0200
11642
11643 cfi-flash: Added support to flash_real_protect for Atmel flash devices
11644
11645 Some of the flash memories produced by ATMEL start in read-only mode.
11646 We need to unprotect it. This patch allows the AT49BV6416 to work with
11647 cfi_flash memories. Tested in the at91rm9200ek board.
11648
11649 Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
11650 Signed-off-by: Stefan Roese <sr@denx.de>
11651
11652commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
11653Author: Guennadi Liakhovetski <lg@denx.de>
11654Date: Tue Aug 5 15:36:39 2008 +0200
11655
11656 cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
11657
11658 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
11659 Signed-off-by: Stefan Roese <sr@denx.de>
11660
Wolfgang Denk4b070802008-08-14 14:41:06 +020011661commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
11662Author: Stefan Roese <sr@denx.de>
11663Date: Wed Aug 6 14:06:03 2008 +0200
11664
11665 Fix merge problems
11666
11667 Signed-off-by: Stefan Roese <sr@denx.de>
11668
11669commit f2302d4430e7f3f48308d6a585320fe96af8afbd
11670Author: Stefan Roese <sr@denx.de>
11671Date: Wed Aug 6 14:05:38 2008 +0200
11672
11673 Fix merge problems
11674
11675 Signed-off-by: Stefan Roese <sr@denx.de>
11676
Wolfgang Denkcd829192008-08-12 16:08:38 +020011677commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
11678Author: Kenneth Johansson <kenneth@southpole.se>
11679Date: Tue Jul 15 12:13:38 2008 +0200
11680
11681 mpc5121: Move iopin features from board specific to common files.
11682
11683 And in the process eliminate some duplicate register defines.
11684
11685 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
11686
11687commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
11688Author: John Rigby <jrigby@freescale.com>
11689Date: Tue Aug 5 17:38:57 2008 -0600
11690
11691 mpc5121: squash some fdt fixup errors
11692
11693 On ADS5121 when booting linux the following errors are seen:
11694 Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
11695 Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
11696 Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
11697
11698 This is caused by ft_cpu_setup trying to deal with
11699 both old and new soc node naming. This patch
11700 fixes this by being smarter about what to
11701 fixup.
11702
11703 Also do soc node fixups by compatible instead of by path.
11704 A new board config called OF_SOC_COMPAT defined
11705 to be "fsl,mpc5121-immr" replaces the old
11706 OF_SOC node path that was defined to be "soc@80000000".
11707
11708 Old device trees still work, but the compatiblity
11709 is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
11710 which is on by default in include/configs/ads5121.h.
11711
11712 Signed-off-by: John Rigby <jrigby@freescale.com>
11713
11714commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
11715Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11716Date: Sat Aug 2 23:48:30 2008 +0200
11717
11718 drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
11719
11720 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11721
11722commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
11723Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11724Date: Sat Aug 2 23:48:32 2008 +0200
11725
11726 nios2/sysid: fix printf warning
11727
11728 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11729
11730commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
11731Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11732Date: Sat Aug 2 23:48:33 2008 +0200
11733
11734 Fix remaining build issues with MPC8xx FADS boards.
11735
11736 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11737
11738commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
11739Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11740Date: Sat Aug 2 23:48:31 2008 +0200
11741
11742 nios2: fix phys_addr_t and phys_size_t support
11743
11744 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11745
11746commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
11747Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11748Date: Sat Aug 2 23:48:34 2008 +0200
11749
11750 mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
11751
11752 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11753
11754commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
11755Author: Mark Jackson <mpfj@mimc.co.uk>
11756Date: Fri Aug 1 09:48:29 2008 +0100
11757
11758 Fix bitmap display for atmel lcd controller
11759
11760 The current lcd_display_bitmap() function does not work properly
11761 for the Atmel LCD controller.
11762
11763 2 fixes need to be done:-
11764
11765 (a) when setting the colour map, use the lcd_setcolreg() function
11766 as provided by the Atmel driver
11767 (b) the data is never actually written to the lcd framebuffer !!
11768
11769 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
11770
11771commit 2a433c66b1e2770349fe4911be23c375f053ebd8
11772Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11773Date: Fri Aug 1 08:40:34 2008 +0200
11774
11775 qemu_mips: update README to follow qemu update about default machine
11776
11777 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11778
11779commit ac169d645f5f0e0b9a232563099209e92a355d8e
11780Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11781Date: Thu Jul 31 19:53:21 2008 -0500
11782
11783 ColdFire: Fix compilation issue caused by a missing function
11784
11785 Implement usec2ticks() which is used by fsl_i2c.c in
11786 lib_m68k/time.c
11787
11788 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11789
11790commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
11791Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11792Date: Thu Jul 31 19:53:06 2008 -0500
11793
11794 Fix compilation error for TASREG
11795
11796 TASREG is ColdFire platform, the include ppc4xx.h in
11797 board/esd/common/flash.c causes conflict.
11798
11799 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11800
11801commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
11802Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11803Date: Thu Jul 31 19:52:36 2008 -0500
11804
11805 Fix compilation error for MCF5275
11806
11807 Rename OBJ to COBJ in board/platform/Makefile
11808
11809 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11810
11811commit 5c40548f01218360a1f1395198c50ff45f3035b5
11812Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11813Date: Thu Jul 31 19:52:28 2008 -0500
11814
11815 Fix compile error caused by incorrect function return type
11816
11817 Rename int mii_init(void) to void mii_init(void) for idmr
11818 ColdFire platform
11819
11820 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11821
11822commit a58c78067c928976c082c758d3987e89ead5b191
11823Author: Wolfgang Denk <wd@denx.de>
11824Date: Fri Aug 1 12:06:22 2008 +0200
11825
11826 Fix build issues with MPC8xx FADS boards.
11827
11828 Signed-off-by: Wolfgang Denk <wd@denx.de>
11829
11830commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
11831Author: Wolfgang Denk <wd@denx.de>
11832Date: Thu Jul 31 17:54:03 2008 +0200
11833
11834 Prepare v1.3.4-rc2: update CHANGELOG
11835
11836 Signed-off-by: Wolfgang Denk <wd@denx.de>
11837
Wolfgang Denk4b50cd12008-07-31 17:54:03 +020011838commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
11839Author: Mark Jackson <mpfj@mimc.co.uk>
11840Date: Thu Jul 31 16:09:00 2008 +0100
11841
11842 Add gzipped logo support
11843
11844 The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
11845
11846 If this option is set, additionally to standard BMP
11847 images, gzipped BMP images can be displayed via the
11848 splashscreen support or the bmp command.
11849
11850 However, the splashscreen function *only* supports standard BMP images.
11851
11852 This patch adds the documented gzip support.
11853
11854 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
11855
11856commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
11857Author: Mark Jackson <mpfj@mimc.co.uk>
11858Date: Thu Jul 31 15:56:48 2008 +0100
11859
11860 Fix Atmel LCD controller endianess for AVR32 processors
11861
11862 The Atmel lcd controller is used on Atmel's AT91 (little endian) and
11863 AVR32 (big endian) platforms.
11864
11865 As such, the controller can handle both big and little endian memory.
11866
11867 This patch fixes the driver for the AVR32 platform.
11868
11869 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
11870
11871commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
11872Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11873Date: Thu Jul 31 15:56:01 2008 +0200
11874
11875 apollon: fix build out of tree
11876
11877 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11878
11879commit 2e752be39d3e398d4ab89ffa6634c397df298297
11880Author: Guennadi Liakhovetski <lg@denx.de>
11881Date: Thu Jul 31 12:35:04 2008 +0200
11882
11883 Uncompressed images loaded to their start address shall set load_end too
11884
11885 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
11886 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
11887
11888commit c37207d7f51e19c17f859966f314e27cc1231801
11889Author: Wolfgang Denk <wd@denx.de>
11890Date: Wed Jul 16 16:38:59 2008 +0200
11891
11892 Fix printf() format problems with configurable prompts
11893
11894 U-Boot allows for configurable prompt strings using the
11895 CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
11896 the assumption was that any such user defined problts would contain
11897 exactly one "%d" format specifier. But some boards did not.
11898
11899 To allow for flexible boot prompts without adding too complex code we
11900 now allow to specify the whole list of printf() arguments in the user
11901 definition. This is powerful, but requires a responsible user who
11902 really understands what he is doing, as he needs to know for exanple
11903 which variables are available in the respective context.
11904
11905 Signed-off-by: Wolfgang Denk <wd@denx.de>
11906
11907commit 54754120637b6a7f4ff774fb199fc550bcfea1da
11908Author: Wolfgang Denk <wd@denx.de>
11909Date: Thu Jul 31 17:02:14 2008 +0200
11910
11911 TQM85xx: fix typo introduce by commit ffbb5cb9
11912
11913 Signed-off-by: Wolfgang Denk <wd@denx.de>
11914
11915commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
11916Author: Wolfgang Denk <wd@denx.de>
11917Date: Thu Jul 31 15:27:01 2008 +0200
11918
11919 mvbc_p board: fix most build warnings.
11920
11921 Signed-off-by: Wolfgang Denk <wd@denx.de>
11922
11923commit c4ec6db074051d2f6fc76a66411c60621b22bc02
11924Author: Wolfgang Denk <wd@denx.de>
11925Date: Thu Jul 31 13:57:20 2008 +0200
11926
11927 E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
11928
11929 Avoid "integer constant is too large for 'long' type" warnings.
11930 And simplify the code.
11931
11932 Signed-off-by: Wolfgang Denk <wd@denx.de>
11933
11934commit 9196b44334c330cc13de2464c59181e4db71f549
11935Author: Matvejchikov Ilya <matvejchikov@gmail.com>
11936Date: Wed Jul 30 23:21:19 2008 +0400
11937
11938 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
11939
11940 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
11941
11942commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
11943Author: Matvejchikov Ilya <matvejchikov@gmail.com>
11944Date: Wed Jul 30 23:20:32 2008 +0400
11945
11946 PPC: Add pci_clk in the global_data for CPM2 processors
11947
11948 This patch adds pci_clk field to the global_data structure for the
11949 processors which have CPM2 module in case the CONFIG_PCI is defined.
11950
11951 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
11952
11953commit f0ff885ca64655bee6540eb8a25eed90b1152686
11954Author: Kumar Gala <galak@kernel.crashing.org>
11955Date: Wed Jul 30 14:13:30 2008 -0500
11956
11957 mpc85xx: Update linker scripts for Freescale boards
11958
11959 * Move to using absolute addressing always. Makes the scripts a bit more
11960 portable and common
11961 * Moved .bss after the end of the image. These allows us to have more
11962 room in the resulting binary image for code and data.
11963 * Removed .text object files that aren't really needed
11964 * Make sure _end is 4-byte aligned as the .bss init code expects this.
11965 (Its possible that the end of .bss isn't 4-byte aligned)
11966
11967 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11968
11969commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
11970Author: Kumar Gala <galak@kernel.crashing.org>
11971Date: Wed Jul 30 08:01:15 2008 -0500
11972
11973 Fix compile warnings in dlmalloc
11974
11975 The origional code was using on odd reference to get to the first
11976 real element in av_[]. The first two elements of the array are
11977 not used for actual bins, but for house keeping. If we are more
11978 explicit about how use the first few elements we can get rid of the
11979 warnings:
11980
11981 dlmalloc.c: In function 'malloc_extend_top':
11982 dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
11983 dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
11984 dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
11985 ...
11986
11987 The logic of how this code came to be is:
11988 bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
11989
11990 SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
11991 bin_at(0) = &(av_[0])
11992
11993 Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
11994
11995 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11996
11997commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
11998Author: Stefan Roese <sr@denx.de>
11999Date: Wed Jul 30 10:21:01 2008 +0200
12000
12001 ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
12002
12003 Signed-off-by: Stefan Roese <sr@denx.de>
12004
12005commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
12006Author: Stefan Roese <sr@denx.de>
12007Date: Wed Jul 30 09:59:51 2008 +0200
12008
12009 cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
12010
12011 A recent patch used '#if (CONFIG_CMD_USB)' instead of
12012 '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
12013 common/bootm.c compile again.
12014
12015 Signed-off-by: Stefan Roese <sr@denx.de>
12016 Acked-by: Markus Klotzbuecher <mk@denx.de>
12017
12018commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
12019Author: Kyungmin Park <kmpark@infradead.org>
12020Date: Tue Jul 22 08:01:43 2008 +0900
12021
12022 Remove unused I2C at apollon board
12023
12024 There are no I2C devices on this board.
12025
12026 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12027
12028commit 3c95960e526b3b026da20201db64526f46faf14b
12029Author: Wolfgang Denk <wd@denx.de>
12030Date: Thu Jul 31 10:12:09 2008 +0200
12031
12032 at91rm9200dk, csb637: fix NAND related build problems
12033
12034 Tried fixing NAND support for the at91rm9200dk board; untested.
12035 Disabled NAND support in the csb637 board config file.
12036
12037 Signed-off-by: Wolfgang Denk <wd@denx.de>
12038
Wolfgang Denk4b070802008-08-14 14:41:06 +020012039commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
12040Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12041Date: Wed Jul 30 12:39:28 2008 +0200
12042
12043 ppc4xx: ML507: Environment in flash and MTD Support
12044
12045 - Relocate the location of U-Boot in the flash
12046 - Save the environment in one sector of the flash memory
12047 - MTD Support
12048
12049 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12050 Signed-off-by: Stefan Roese <sr@denx.de>
12051
12052commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
12053Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12054Date: Tue Jul 29 17:16:10 2008 +0200
12055
12056 ppc4xx: ML507: Use of get_ram_size in board ml507
12057
12058 - Change suggested by WD
12059
12060 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12061 Signed-off-by: Stefan Roese <sr@denx.de>
12062
12063commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
12064Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12065Date: Mon Jul 21 20:30:07 2008 +0200
12066
12067 ppc4xx: ML507: U-Boot in flash and System ACE
12068
12069 This patch allows booting from FLASH the ML507 board by Xilinx.
12070 Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
12071
12072 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12073 Signed-off-by: Stefan Roese <sr@denx.de>
12074
Wolfgang Denka49d10c2008-08-25 23:45:41 +020012075commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
12076Author: Julien May <mailinglist@miromico.ch>
12077Date: Mon Jun 23 13:57:52 2008 +0200
12078
12079 Add support for the hammerhead (AVR32) board
12080
12081 The Hammerhead platform is built around a AVR32 32-bit microcontroller
12082 from Atmel. It offers versatile peripherals, such as ethernet, usb
12083 device, usb host etc.
12084
12085 The board also incooperates a power supply and is a Power over Ethernet
12086 (PoE) Powered Device (PD).
12087
12088 Additonally, a Cyclone III FPGA from Altera is integrated on the board.
12089 The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
12090 DDR2 SDRAM interfaces, which will cover even the most exceptional need
12091 of memory bandwidth. Together with the onboard video decoder the board
12092 is ready for video processing.
12093
12094 For more information see: http:///www.miromico.com/hammerhead
12095
12096 Signed-off-by: Julien May <mailinglist@miromico.ch>
12097 [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
12098 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12099
Wolfgang Denk4b50cd12008-07-31 17:54:03 +020012100commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
12101Author: Kumar Gala <galak@kernel.crashing.org>
12102Date: Tue Jul 29 12:23:49 2008 -0500
12103
12104 fsl_i2c: Use timebase timer functions instead of get_timer()
12105
12106 The current implementation of get_timer() is only really useful after we
12107 have relocated u-boot to memory. The i2c code is used before that as part
12108 of the SPD DDR setup.
12109
12110 We actually have a bug when using the get_timer() code before relocation
12111 because the .bss hasn't been setup and thus we could be reading/writing
12112 a random location (probably in flash).
12113
12114 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12115
12116commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
12117Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
12118Date: Tue Jul 29 14:49:31 2008 +0200
12119
12120 Adder8xx: Fix CFG_MONITOR_LEN
12121
12122 Due to increased space usage, U-Boot can no longer be stored in three sectors.
12123 The current U-Boot use just over three flash sectors (197k), and U-Boot will
12124 become corrupt after saving environment variables. This patch adds another 64k
12125 to CFG_MONITOR_LEN.
12126
12127 Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
12128
12129commit a4c59ad4a21140550ada6f97690d2527c4146ce5
12130Author: Kyungmin Park <kmpark@infradead.org>
12131Date: Tue Jul 29 08:47:57 2008 +0900
12132
12133 Add OneNAND IPL related files to gitignore
12134
12135 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12136
12137commit 8d87589e8e874df7120a3d9667f051bc33bac250
12138Author: Rafal Jaworowski <raj@semihalf.com>
12139Date: Mon Jul 28 20:38:25 2008 +0200
12140
12141 API: Teach the storage layer about SATA and MMC options.
12142
12143 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
12144 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12145
12146commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
12147Author: Rafal Jaworowski <raj@semihalf.com>
12148Date: Mon Jul 28 20:37:48 2008 +0200
12149
12150 API: Dump contents of sector 0 in the demo application.
12151
12152 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
12153 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12154
12155commit 13ca6305f2eba49c175f6370c35286141059c789
12156Author: Rafal Jaworowski <raj@semihalf.com>
12157Date: Mon Jul 28 20:37:10 2008 +0200
12158
12159 API: Correct storage enumeration routine, other minor fixes in API storage area.
12160
12161 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
12162 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12163
12164commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
12165Author: Rafal Jaworowski <raj@semihalf.com>
12166Date: Mon Jul 28 20:36:19 2008 +0200
12167
12168 API: Fix compilation warnings in api_examples/demo.c.
12169
12170 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
12171
12172commit c14eefcc48212af2f3314809605698dd8393a90a
12173Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12174Date: Sun Jul 27 17:09:43 2008 +0200
12175
12176 Fix more printf() format warnings
12177
12178 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12179
12180commit 936897d4d1365452bbbdf8430db5e7769ef08d38
12181Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12182Date: Fri Jul 25 15:18:16 2008 +0200
12183
12184 Fix remaining CFG_CMD_ define, ifdef and comments
12185
12186 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12187
12188commit 5d1d00fb36005482e1803a00ddc46efa11d719af
12189Author: Stefano Babic <sbabic@denx.de>
12190Date: Fri Jul 25 08:57:40 2008 +0200
12191
12192 Add include for config.h in command.h.
12193
12194 Because the cmd_tbl_s structure depends on the configuration file, it
12195 must be assured that config.h is included before the structure is
12196 evaluated by the compiler. If this is not certain, it could happen
12197 that the compiler generates structures of different size, depending
12198 on the fact if the source file includes <config.h> before or after
12199 <command.h>.
12200
12201 The effect is that u-boot crashes when tries to relocate the command
12202 table (for ppc) or try to access to the command table for other
12203 architectures.
12204
12205 The problem can happen on board-depending commands. All general
12206 commands under /common are unaffected, because they include already
12207 config.h before command.h.
12208
12209 Signed-off-by: Stefano Babic <sbabic@denx.de>
12210
12211commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
12212Author: Scott Wood <scottwood@freescale.com>
12213Date: Wed Jul 23 13:16:06 2008 -0500
12214
12215 NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
12216
12217 This fixes building out-of-tree.
12218
12219 Signed-off-by: Scott Wood <scottwood@freescale.com>
12220
12221commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
12222Author: Heiko Schocher <hs@denx.de>
12223Date: Wed Jul 23 07:30:46 2008 +0200
12224
12225 Fix warnings if compiling with IDE support.
12226
12227 cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
12228 cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
12229
12230 Signed-off-by: Heiko Schocher <hs@denx.de>
12231
12232commit 7610db17fd4d59c51d825488526d85ede2f06767
12233Author: Adrian Filipi <adrian.filipi@eurotech.com>
12234Date: Tue Jul 22 14:28:11 2008 -0400
12235
12236 Removed support for the adsvix board.
12237
12238 Support for the adsvix was originally provided by Applied Data
12239 Systems (ADS), inc., now EuroTech, Inc.
12240 The board never shipped aside from some sample boards.
12241
12242 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
12243
12244commit f96b44cef897bd372beb86dde1b33637c119d84d
12245Author: Remy Bohmer <linux@bohmer.net>
12246Date: Tue Jul 22 16:22:11 2008 +0200
12247
12248 ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
12249
12250 If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
12251 never set, because relocation to RAM is actually never done by U-boot
12252 itself. However, several pieces of code check if this flag is set at
12253 some time.
12254
12255 So, to make sure this flag is set on boards skipping relocation, this
12256 is added to the initialisation of U-boot at a moment where it is safe
12257 to do so.
12258
12259 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12260
12261commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
12262Author: Timur Tabi <timur@freescale.com>
12263Date: Mon Jul 21 14:26:23 2008 -0500
12264
12265 fsl-i2c: fix writes to data segment before relocation
12266
12267 Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
12268 relocation. Commit d8c82db4 added the ability for i2c_init() to program the
12269 I2C bus speed and save the value in i2c_bus_speed[], which is a global
12270 variable. It is an error to write to the data segment before relocation,
12271 which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
12272
12273 Signed-off-by: Timur Tabi <timur@freescale.com>
12274
12275commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
12276Author: Wolfgang Ocker <weo@reccoware.de>
12277Date: Mon Jul 28 16:56:51 2008 +0200
12278
12279 mips: Fix baudrate divisor computation on alchemy cpus
12280
12281 Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
12282 on alchemy cpus.
12283
12284 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
12285 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
12286
Wolfgang Denka49d10c2008-08-25 23:45:41 +020012287commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
12288Author: Ben Warren <biggerbadderben@gmail.com>
12289Date: Sat Jul 5 00:08:48 2008 -0700
12290
12291 Moved initialization of AVR32 Ethernet controllers to board_eth_init()
12292
12293 Renamed initialization functions for atngw100 and atstk1000.
12294 Removed initializations for these boards from net/eth.c
12295
12296 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12297 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12298
Wolfgang Denk4b50cd12008-07-31 17:54:03 +020012299commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
12300Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12301Date: Wed Jul 23 10:55:46 2008 +0200
12302
12303 spi flash: Fix printf() format warnings
12304
12305 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12306
12307commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
12308Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12309Date: Wed Jul 23 10:55:31 2008 +0200
12310
12311 atmel_mci: Fix printf() format warnings
12312
12313 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12314
12315commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
12316Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12317Date: Wed Jul 23 10:55:15 2008 +0200
12318
12319 avr32: Fix printf() format warnings
12320
12321 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12322
12323commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
12324Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12325Date: Wed Jul 23 10:52:19 2008 +0200
12326
12327 avr32: asm/io.h needs asm/types.h
12328
12329 map_physmem() takes a phys_addr_t as parameter. This type is defined in
12330 asm/types.h, so we need to include that file.
12331
12332 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12333
12334commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
12335Author: Michal Simek <monstr@monstr.eu>
12336Date: Thu Jul 17 12:25:46 2008 +0200
12337
12338 microblaze: Fix printf() format issues
12339
12340 Signed-off-by: Michal Simek <monstr@monstr.eu>
12341
12342commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
12343Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
12344Date: Thu Jul 17 07:27:51 2008 +0530
12345
12346 Remove unused code from lib_arm/bootm.c
12347
12348 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
12349
12350commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
12351Author: Detlev Zundel <dzu@denx.de>
12352Date: Wed Jul 16 18:56:45 2008 +0200
12353
12354 tqm85xx: Demystify 'DK: !!!' comment
12355
12356 Signed-off-by: Detlev Zundel <dzu@denx.de>
12357
12358commit b2f44ba570f3a01113bbb745daf46f3858d22f53
12359Author: Detlev Zundel <dzu@denx.de>
12360Date: Wed Jul 16 18:56:44 2008 +0200
12361
12362 83xx/85xx/86xx: Add LTEDR local bus definitions
12363
12364 Signed-off-by: Detlev Zundel <dzu@denx.de>
12365
12366commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
12367Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12368Date: Wed Jul 16 16:22:32 2008 +0200
12369
12370 serial_xuartlite.c: fix compiler warnings
12371
12372 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12373 Acked-by: Grant Likely <grant.likely@secretlab.ca>
12374
12375commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
12376Author: Stefan Roese <sr@denx.de>
12377Date: Fri Jul 18 11:03:35 2008 +0200
12378
12379 POST: Add disable interrupts in some of the missing CPU POST tests
12380
12381 Some CPU POST tests did not disable the interrupts while running. This
12382 seems to be necessary to protect this self modifying code.
12383
12384 Signed-off-by: Stefan Roese <sr@denx.de>
12385
12386commit 97a3bf268d096e0e97e54048448c35114edcf557
12387Author: Stefan Roese <sr@denx.de>
12388Date: Fri Jul 18 10:43:24 2008 +0200
12389
12390 ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
12391
12392 This is needed for boards that define CFG_64BIT_STRTOUL but don't define
12393 CFG_64BIT_LBA.
12394
12395 Signed-off-by: Stefan Roese <sr@denx.de>
12396
12397commit 0043ac55024963295fc79b39af85b6dc3b261e17
12398Author: Niklaus Giger <niklaus.giger@netstal.com>
12399Date: Fri Jul 18 11:22:23 2008 +0200
12400
12401 POST PPC4xx/spr IVPR only if PPC440
12402
12403 The SPR IVPR register is only present (as far as I know) for
12404 processors with a PPC440 core.
12405
12406 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
12407 Acked-by: Stefan Roese <sr@denx.de>
12408
12409commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
12410Author: Stefan Roese <sr@denx.de>
12411Date: Fri Jul 18 10:42:29 2008 +0200
12412
12413 ppc4xx: Enable 64bit printf format on 440/460 platforms
12414
12415 This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
12416 440/460 platforms. This may be needed since those platforms support
12417 36bit physical address space.
12418
12419 Signed-off-by: Stefan Roese <sr@denx.de>
12420
12421commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
12422Author: Stefan Roese <sr@denx.de>
12423Date: Fri Jul 18 15:57:23 2008 +0200
12424
12425 ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
12426
12427 This patch fixes a problem with incorrect MODTx (On Die Termination)
12428 setup for a configuration with multiple DIMM's and multiple ranks.
12429 Without this change Katmai was unable to boot Linux with DDR2 frequency
12430 >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
12431 with DDR2 frequency = 640MHz and mem=4GB.
12432
12433 Signed-off-by: Stefan Roese <sr@denx.de>
12434
Wolfgang Denk4b070802008-08-14 14:41:06 +020012435commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
12436Author: Stefan Roese <sr@denx.de>
12437Date: Fri Jul 18 12:24:41 2008 +0200
12438
12439 ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
12440
12441 Signed-off-by: Stefan Roese <sr@denx.de>
12442
12443commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
12444Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12445Date: Thu Jul 17 12:47:09 2008 +0200
12446
12447 ppc4xx: ML507 Board Support
12448
12449 The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
12450 among others:
12451 -Virtex 5 FX FPGA (With a ppc440x5 in it)
12452 -256MB of SDRAM2
12453 -32MB of Flash
12454 -I2C Eeprom
12455 -System ACE chip
12456 -Serial ATA connectors
12457 -RS232 Level Conversors
12458 -Ethernet Transceiver
12459
12460 This patch gives support to a standard design produced by EDK for this
12461 board: ppc440, uartlite, xilinx_int and flash
12462
12463 - Includes Changes propossed by Stefan Roese and Michal Simek
12464
12465 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12466 Acked-by: Stefan Roese <sr@denx.de>
12467
12468commit d865fd09809a3a18669f35f970781820af40e4de
12469Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12470Date: Thu Jul 17 11:44:12 2008 +0200
12471
12472 ppc4xx: CPU PPC440x5 on Virtex5 FX
12473
12474 -This patchs gives support for the embbedded ppc440
12475 on the Virtex5 FPGAs
12476 -interrupts.c divided in uic.c and interrupts.c
12477 -xilinx_irq.c for xilinx interrupt controller
12478 -Include modifications propossed by Stefan Roese
12479
12480 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12481 Acked-by: Stefan Roese <sr@denx.de>
12482
Wolfgang Denk4b50cd12008-07-31 17:54:03 +020012483commit 340ccb260f21516be360745d5c5e3bd0657698df
12484Author: Sebastian Siewior <bigeasy@linutronix.de>
12485Date: Wed Jul 16 20:04:49 2008 +0200
12486
12487 cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
12488
12489 This got broken by commits 93c56f212c
12490 [cfi_flash: support of long cmd in U-boot.]
12491
12492 That command needs to be in little endian format on BE machines
12493 with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
12494 gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
12495 the cmdbuf in case portwidth = chipwidth = 8bit.
12496
12497 Cc: Alexey Korolev <akorolev@infradead.org>
12498 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
12499 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
12500
Wolfgang Denk4b070802008-08-14 14:41:06 +020012501commit 11188d55bc16dd907451c00282e00a038f73dd62
12502Author: Stefan Roese <sr@denx.de>
12503Date: Thu Jul 17 10:40:51 2008 +0200
12504
12505 ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
12506
12507 Signed-off-by: Stefan Roese <sr@denx.de>
12508
Wolfgang Denk285db742008-08-27 01:02:48 +020012509commit 021f6df6e96af5b387810cf96d24848da1faa55c
12510Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12511Date: Thu Jul 10 17:20:51 2008 +0400
12512
12513 83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
12514
12515 The thinko was quite silly indeed, I messed with !ptr. Normally this
12516 would trigger some fault, but in U-Boot NULL pointer is equal to phys
12517 0, so the code was working still, just didn't actually test mpc8315erdb
12518 environment variable value. Heh.
12519
12520 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12521 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12522
12523commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
12524Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12525Date: Tue Jul 8 21:00:04 2008 +0400
12526
12527 83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
12528
12529 Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
12530 support, or without TSEC1 but with USB ULPI PHY support in addition.
12531 With this patch user can specify desired USB PHY.
12532
12533 Also, it seems that we can't distinguish the two boards in software, so
12534 user have to set `mpc8315erdb' environment variable to either 'tsec1'
12535 (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
12536 Linux will not probe for TSEC1.
12537
12538 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12539 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12540
12541commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
12542Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12543Date: Tue Jul 8 20:59:43 2008 +0400
12544
12545 fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
12546
12547 Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
12548 MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
12549 (connected to the four-ports hub, usb host only).
12550
12551 This patch implements support for passing Dual-Role USB controller's
12552 device tree property phy_type through the usb_phy_type environment
12553 variable.
12554
12555 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12556 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
12557 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12558
Wolfgang Denk4b50cd12008-07-31 17:54:03 +020012559commit 699f05125509249072a0b865c8d35520d97cd501
12560Author: Wolfgang Denk <wd@denx.de>
12561Date: Tue Jul 15 22:22:44 2008 +0200
12562
12563 Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
12564
12565 Signed-off-by: Wolfgang Denk <wd@denx.de>
12566
Wolfgang Denk699f0512008-07-15 22:22:44 +020012567commit bcab74baa6b1b1c969038ab6f64a186239180405
12568Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12569Date: Tue Jul 15 11:23:02 2008 -0400
12570
12571 Round the serial port clock divisor value returned by calc_divisor()
12572
12573 Round the serial port clock divisor value returned by
12574 calc_divisor()
12575
12576 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12577 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
12578
12579commit 0328ef0edfe950f0b7b8b368dae482531506b74a
12580Author: Robin Getz <rgetz@blackfin.uclinux.org>
12581Date: Tue Jul 15 21:44:46 2008 +0200
12582
12583 Fix DHCP protocol so U-Boot does not respond too early
12584 on the network with it's offered IP number; it should not reply until
12585 after it has received a DHCP ACK message. Also ensures that U-Boot
12586 does it's DHCPREQUEST as broadcast (per RFC 2131).
12587
12588 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
12589 Acked-by: Ben Warren <biggerbadderben@gmail.com>
12590 Signed-off-by: Wolfgang Denk <wd@denx.de>
12591
12592commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
12593Author: Sebastian Siewior <bigeasy@linutronix.de>
12594Date: Tue Jul 15 13:35:23 2008 +0200
12595
12596 cfi_flash: make the command u32 only
12597
12598 This got changed by commit 93c56f212c
12599 [cfi_flash: support of long cmd in U-boot.]
12600
12601 Long is the wrong type because it will behave differently on 64bit
12602 machines in a way that is probably not expected. u32 should be
12603 enough.
12604
12605 Cc: Alexey Korolev <akorolev@infradead.org>
12606 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
12607 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
12608
12609commit 31cfe57491b183acae575d486729e158f016c27b
12610Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12611Date: Mon Jul 14 23:48:41 2008 +0200
12612
12613 tools/gitignore: update to all generated files
12614
12615 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12616
12617commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
12618Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
12619Date: Wed Jul 9 18:30:44 2008 +0200
12620
12621 mpc5xxx: Add MVBC_P board support
12622
12623 The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
12624 controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
12625
12626 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12627 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
12628
12629commit e2d31fb3450653115452144363d5bde4e5e3e693
12630Author: Timur Tabi <timur@freescale.com>
12631Date: Thu Jun 19 17:56:11 2008 -0500
12632
12633 Update Freescale sys_eeprom.c to handle CCID formats
12634
12635 Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats. The
12636 NXID format replaces the older CCID format, but it's important to support both
12637 since most boards out there still use the CCID format. This change is in
12638 preparation for using one file to handle both formats. This will also unify
12639 EEPROM support for all Freescale 85xx and 86xx boards.
12640
12641 Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
12642 instead of ID_EEPROM_ADDR.
12643
12644 Signed-off-by: Timur Tabi <timur@freescale.com>
12645
12646commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
12647Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12648Date: Fri Jul 11 17:22:43 2008 +0900
12649
12650 pci: sh: Add pci_skip_dev and pci_print_dev function
12651
12652 Add function of new PCI, pci_skip_dev and pci_print_dev.
12653
12654 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12655 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12656
12657commit 1107014e835ec9d46c0333f4211d104f77442db0
12658Author: Andy Fleming <afleming@freescale.com>
12659Date: Mon Jul 14 20:29:07 2008 -0500
12660
12661 Clean up INIT_RAM options
12662
12663 The L2_INIT_RAM option was unused, and recent changes to the TLB code
12664 meant that the INIT_RAM TLBs weren't being cleared out. In order to reduce
12665 the amount of mapped space attached to nothing, we change things so the TLBs
12666 get cleared.
12667
12668 Signed-off-by: Andy Fleming <afleming@freescale.com>
12669
12670commit 4524561820a9327e89107854b3a7187800ccf719
12671Author: Andy Fleming <afleming@freescale.com>
12672Date: Mon Jul 14 20:26:57 2008 -0500
12673
12674 Remove fake flash bank from 8544 DS
12675
12676 The fake flash bank was generating errors for anyone who didn't have a
12677 PromJET hooked up to the board. As that constitutes the vast majority of
12678 users, we remove it.
12679
12680 Signed-off-by: Andy Fleming <afleming@freescale.com>
12681
12682commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
12683Author: Kumar Gala <galak@kernel.crashing.org>
12684Date: Mon Jul 14 14:07:03 2008 -0500
12685
12686 MPC8544DS: Add ATI Video card support
12687
12688 Add support for using a PCIe ATI Video card on PCIe2.
12689
12690 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12691
12692commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
12693Author: Kumar Gala <galak@kernel.crashing.org>
12694Date: Mon Jul 14 14:07:02 2008 -0500
12695
12696 85xx: Add some L1/L2 SPR register definitions
12697
12698 Add new L1/L2 SPRs related to e500mc cache config and control.
12699
12700 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12701
12702commit e5852787f0c3c442a276262f13d91ca450605ac0
12703Author: Kumar Gala <galak@kernel.crashing.org>
12704Date: Mon Jul 14 14:07:01 2008 -0500
12705
12706 MPC8544DS: Report board id, board version and fpga version.
12707
12708 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12709
12710commit 73f15a060f67a2462551c334215bd20fac6b81d1
12711Author: Kumar Gala <galak@kernel.crashing.org>
12712Date: Mon Jul 14 14:07:00 2008 -0500
12713
12714 85xx: Cleanup L2 cache size detection
12715
12716 The L2 size detection code was a bit confusing and we kept having to add
12717 code to it to handle new processors. Change the sense of detection so we
12718 look for the older processors that aren't changing.
12719
12720 Also added support for 1M cache size on 8572.
12721
12722 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12723
12724commit c3ca7e5e00a24451f20df3bded9a61ba541921df
12725Author: Paul Gortmaker <paul.gortmaker@windriver.com>
12726Date: Fri Jul 11 15:33:08 2008 -0400
12727
12728 sbc8560: enable CONFIG_OF_LIBFDT by default
12729
12730 Make the default build for the sbc8560 board be powerpc
12731 capable with libfdt support.
12732
12733 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12734
12735commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
12736Author: Andy Fleming <afleming@freescale.com>
12737Date: Mon Jul 14 20:04:40 2008 -0500
12738
12739 Fix indentation for default boot environment variables
12740
12741 This was proposed by Paul Gortmaker in response to Wolfgang's comments on
12742 similar #defines in sbc8560.h.
12743
12744 Signed-off-by: Andy Fleming <afleming@freescale.com>
12745
12746commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
12747Author: Paul Gortmaker <paul.gortmaker@windriver.com>
12748Date: Fri Jul 11 15:33:07 2008 -0400
12749
12750 sbc8560: add default fdt values
12751
12752 Add in the default fdt settings and the typical EXTRA_ENV
12753 settings as borrowed from the mpc8560ads. Fix a couple
12754 of stale references to the mpc8560ads dating back to the
12755 original clone/fork.
12756
12757 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12758 Signed-off-by: Andy Fleming <afleming@freescale.com>
12759
12760commit d04e76edf92f7f89696989e8702b97e020455af3
12761Author: Paul Gortmaker <paul.gortmaker@windriver.com>
12762Date: Fri Jul 11 15:33:06 2008 -0400
12763
12764 sbc8560: add in ft_board_setup()
12765
12766 Add in for the sbc8560, the ft_board_setup() routine, based on what is
12767 in use for the Freescale MPC8560ADS board.
12768
12769 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12770
12771commit c158bcaca3b31cbe38c4143812e6170e38a57393
12772Author: Paul Gortmaker <paul.gortmaker@windriver.com>
12773Date: Fri Jul 11 15:33:05 2008 -0400
12774
12775 sbc8560: define eth0 and eth1 instead of eth1 and eth2
12776
12777 The existing config doesn't define CONFIG_HAS_ETH0, and so the
12778 fdt support doesn't update the zeros in the dtb local-mac with
12779 real data from the u-boot env. Since the existing config is
12780 tailored to just two interfaces, get rid of the ETH2 definitions
12781 at the same time.
12782
12783 Also don't include any end user specific data into the environment
12784 by default -- things like MAC address, network parameters etc. need
12785 to come from the end user.
12786
12787 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12788 Signed-off-by: Andy Fleming <afleming@freescale.com>
12789
12790commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
12791Author: Paul Gortmaker <paul.gortmaker@windriver.com>
12792Date: Fri Jul 11 15:33:04 2008 -0400
12793
12794 sbc8560: properly set cs0_bnds for 512MB
12795
12796 The sbc8560 board ships with 512MB of memory installed,
12797 but the current cs0_bnds is hard coded for 256MB. Set the
12798 value based on CFG_SDRAM_SIZE.
12799
12800 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12801
12802commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
12803Author: Paul Gortmaker <paul.gortmaker@windriver.com>
12804Date: Fri Jul 11 15:33:03 2008 -0400
12805
12806 sbc8560: proper definitions for TSEC.
12807
12808 The definitions for the TSEC have become out of date. There is no
12809 longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
12810 Update to match those of other boards, like the MPC8560ADS.
12811
12812 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12813 Acked-by: Ben Warren <biggerbadderben@gmail.com>
12814
12815commit 71074abbe0c76429577aff58aeff0a24ad210b23
12816Author: Paul Gortmaker <paul.gortmaker@windriver.com>
12817Date: Wed Jul 9 13:23:05 2008 -0400
12818
12819 8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
12820
12821 Some boards that have external 16550 UARTs don't have a direct
12822 tie between bi_busfreq and the clock used for the UARTs. Boards
12823 that do have such a tie should set CFG_NS16550_CLK to be
12824 get_bus_freq(0) -- which most of them do already.
12825
12826 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12827 Acked-by: Kim Phillips <kim.phillips@freescale.com>
12828
12829commit 24ef76f320fbadf074105229826514db140f939f
12830Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
12831Date: Wed Jul 2 07:03:53 2008 -0700
12832
12833 Change the temp map to ROM to align addresses to page size.
12834
12835 With a page size of BOOKE_PAGESZ_16M, both the real and effective
12836 addresses must be multiples of 16MB. The hardware silently truncates
12837 them so the code happens to work. This patch clarifies the situation
12838 by establishing addresses that the hardware doesn't need to truncate.
12839
12840 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
12841 Signed-off-by: Andy Fleming <afleming@freescale.com>
12842
12843commit 06b4186c10204b6683edb047ac5f506fb0ce0937
12844Author: Kim Phillips <kim.phillips@freescale.com>
12845Date: Tue Jun 17 17:45:22 2008 -0500
12846
12847 mpc85xx: use IS_E_PROCESSOR macro
12848
12849 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12850
12851commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
12852Author: Kim Phillips <kim.phillips@freescale.com>
12853Date: Mon Jun 16 15:55:53 2008 -0500
12854
12855 fdt: add crypto node handling for MPC8{3, 5}xxE processors
12856
12857 Delete the crypto node if not on an E-processor. If on 8360 or 834x family,
12858 check rev and up-rev crypto node (to SEC rev. 2.4 property values)
12859 if on an 'EA' processor, e.g. MPC8349EA.
12860
12861 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12862
12863commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
12864Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12865Date: Fri Jul 11 15:10:11 2008 -0400
12866
12867 ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
12868
12869 ARM DaVinci: Remove extern phy_t declaration by moving
12870 code to proper place.
12871
12872 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12873
12874commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
12875Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12876Date: Fri Jul 11 15:10:10 2008 -0400
12877
12878 ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
12879
12880 ARM DaVinci: Remove duplicate definitions of MACH_TYPE
12881 and prototype of i2c_init().
12882
12883 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12884
12885commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
12886Author: Kumar Gala <galak@kernel.crashing.org>
12887Date: Mon Jul 14 14:03:02 2008 -0500
12888
12889 Fix some more printf() format problems.
12890
12891 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12892
12893commit 45b16d22c64674ccd8c4637456a987463609141c
12894Author: Wolfgang Denk <wd@denx.de>
12895Date: Mon Jul 14 22:38:42 2008 +0200
12896
12897 Fix coding style; make code better parsable by external tools
12898
12899 Signed-off-by: Wolfgang Denk <wd@denx.de>
12900
12901commit b880cbf207b1c109d3a661417a8feddcbd729a9d
12902Author: Wolfgang Denk <wd@denx.de>
12903Date: Mon Jul 14 21:19:08 2008 +0200
12904
12905 cpu/i386/serial.c: Fix syntax errors
12906
12907 Signed-off-by: Wolfgang Denk <wd@denx.de>
12908
12909commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
12910Author: Wolfgang Denk <wd@denx.de>
12911Date: Mon Jul 14 20:41:35 2008 +0200
12912
12913 elppc board: Coding style cleanup.
12914
12915 Signed-off-by: Wolfgang Denk <wd@denx.de>
12916
12917commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
12918Author: Wolfgang Denk <wd@denx.de>
12919Date: Mon Jul 14 20:40:22 2008 +0200
12920
12921 elppc board: fix syntax error.
12922
12923 Signed-off-by: Wolfgang Denk <wd@denx.de>
12924
12925commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
12926Author: Wolfgang Denk <wd@denx.de>
12927Date: Mon Jul 14 20:38:26 2008 +0200
12928
12929 EB+MCF-EV123 board: fix coding style (alingment)
12930
12931 Signed-off-by: Wolfgang Denk <wd@denx.de>
12932
12933commit 6841785a0bb0f38175456a923edd634fb7dd6947
12934Author: Wolfgang Denk <wd@denx.de>
12935Date: Mon Jul 14 20:36:44 2008 +0200
12936
12937 EB+MCF-EV123 board: fix syntx error
12938
12939 Signed-off-by: Wolfgang Denk <wd@denx.de>
12940
12941commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
12942Author: Andy Fleming <afleming@freescale.com>
12943Date: Mon Jul 7 18:02:08 2008 -0500
12944
12945 Remove LBC_CACHE_BASE from 8544 DS
12946
12947 The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping
12948 space for some anyway, we were allowing speculative loads into unmapped space,
12949 which would cause an exception (annoying, even if ultimately harmless).
12950 Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
12951 problem.
12952
12953 Signed-off-by: Andy Fleming <afleming@freescale.com>
12954
12955commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
12956Author: Wolfgang Denk <wd@denx.de>
12957Date: Mon Jul 14 15:19:07 2008 +0200
12958
12959 Code cleanup: fix old style assignment ambiguities like "=-" etc.
12960
12961 Signed-off-by: Wolfgang Denk <wd@denx.de>
12962
12963commit d7854223c5c85b5849fbf422cc8ac0efef461c37
12964Author: Wolfgang Denk <wd@denx.de>
12965Date: Mon Jul 14 15:10:53 2008 +0200
12966
12967 AmigaOneG3SE: remove dead and incomplete files
12968
12969 Signed-off-by: Wolfgang Denk <wd@denx.de>
12970
12971commit b64f190b7a34224df09b559ca111eb1b733f00ad
12972Author: Wolfgang Denk <wd@denx.de>
12973Date: Mon Jul 14 15:06:35 2008 +0200
12974
12975 Fix printf() format issues with sizeof_t types by using %zu
12976
12977 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12978 Signed-off-by: Wolfgang Denk <wd@denx.de>
12979
12980commit f354b73e16a86f9e9085471a830605f74f84ea5d
12981Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12982Date: Mon Jul 14 14:11:45 2008 +0200
12983
12984 vsprintf: add z and t options
12985
12986 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12987
12988commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
12989Author: Wolfgang Denk <wd@denx.de>
12990Date: Sun Jul 13 23:07:35 2008 +0200
12991
12992 Fix some more printf() format issues.
12993
12994 Signed-off-by: Wolfgang Denk <wd@denx.de>
12995
12996commit d5996dd555edf52721b7691a4c59de016251ed39
12997Author: Wolfgang Denk <wd@denx.de>
12998Date: Sun Jul 13 19:51:00 2008 +0200
12999
13000 Fix some more printf() format problems.
13001
13002 Signed-off-by: Wolfgang Denk <wd@denx.de>
13003
13004commit 0f9d5f6d6e814907794995c6a22af752040c35d9
13005Author: Wolfgang Denk <wd@denx.de>
13006Date: Sun Jul 13 19:48:26 2008 +0200
13007
13008 ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
13009
13010 Signed-off-by: Wolfgang Denk <wd@denx.de>
13011
13012commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
13013Author: Anatolij Gustschin <agust@denx.de>
13014Date: Sat Jul 12 17:31:36 2008 +0200
13015
13016 Fix bug in Lime video driver
13017
13018 We need to wait while drawing engine clears frame
13019 buffer before any further software accesses to frame
13020 buffer will be initiated. Otherwise software drawn
13021 parts could be partially destroyed by the drawing
13022 engine or even GDC chip freeze could occur (as
13023 observed on socrates board).
13024
13025 Signed-off-by: Anatolij Gustschin <agust@denx.de>
13026
13027commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
13028Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13029Date: Sat Jul 12 14:36:34 2008 +0200
13030
13031 Fix some more printf() format issues.
13032
13033 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13034
13035commit 18c8a28aad49803780bd8d52432ded528e37e701
13036Author: Michal Simek <monstr@monstr.eu>
13037Date: Fri Jul 11 15:11:57 2008 +0200
13038
13039 hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
13040
13041 Signed-off-by: Michal Simek <monstr@monstr.eu>
13042 Acked-by: Stefan Roese <sr@denx.de>
13043
13044commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
13045Author: Michal Simek <monstr@monstr.eu>
13046Date: Fri Jul 11 11:50:53 2008 +0200
13047
13048 hwmon: Cleaning hwmon devices
13049
13050 Clean Makefile
13051 Move device specific values to driver for better reading
13052
13053 Signed-off-by: Michal Simek <monstr@monstr.eu>
13054 Acked-by: Stefan Roese <sr@denx.de>
13055
13056commit c78fce699c7ff467ecd841da6a79f065180bf578
13057Author: Michal Simek <monstr@monstr.eu>
13058Date: Fri Jul 11 10:43:13 2008 +0200
13059
13060 FIS: repare incorrect return value with ramdisk handling
13061
13062 Microblaze and PowerPC use boot_get_ramdisk for loading
13063 ramdisk to memory with checking return value.
13064 Return 0 means success. Return 1 means failed.
13065 Here is correspond part of code from bootm.c which check
13066 return code.
13067
13068 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
13069 &rd_data_start, &rd_data_end);
13070 if (ret)
13071 goto error;
13072
13073 Signed-off-by: Michal Simek <monstr@monstr.eu>
13074
13075commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
13076Author: Michal Simek <monstr@monstr.eu>
13077Date: Fri Jul 11 10:10:32 2008 +0200
13078
13079 microblaze: Remove useless ancient headers
13080
13081 Signed-off-by: Michal Simek <monstr@monstr.eu>
13082
13083commit 53ea981c3124b13c137c2d10e975b7c6672266e0
13084Author: Michal Simek <monstr@monstr.eu>
13085Date: Fri Jul 11 10:10:31 2008 +0200
13086
13087 microblaze: Clean uartlite driver
13088
13089 Redesign uartlite driver to in_be32 and out_be32 macros
13090 Fix missing header in io.h
13091
13092 Signed-off-by: Michal Simek <monstr@monstr.eu>
13093 Acked-by: Grant Likely <grant.likely@secretlab.ca>
13094
13095commit dbf3dfb386a2d5d2381814e39985ab2e21894550
13096Author: Marcel Ziswiler <marcel@ziswiler.com>
13097Date: Fri Jul 11 02:39:14 2008 +0200
13098
13099 Enable passing of ATAGs required by latest Linux kernel.
13100
13101commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
13102Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13103Date: Fri Jul 11 10:24:15 2008 -0400
13104
13105 Fix integer overflow warning in calc_divisor()
13106
13107 which happened when rounding the serial port clock divisor
13108
13109 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13110
13111commit 6b760189d77f001684e3160b355c185ca3804961
13112Author: Marcel Ziswiler <marcel@ziswiler.com>
13113Date: Fri Jul 11 01:09:59 2008 +0200
13114
13115 Fix build time warnings in function mmc_decode_csd()
13116
13117 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13118
13119commit c15947d6ce0d59925c97fdfac692476af6e262d0
13120Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13121Date: Thu Jul 10 10:46:33 2008 -0400
13122
13123 ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
13124
13125 caused by missing dcache status/enable/disable functions.
13126
13127 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13128
13129commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
13130Author: Stefan Roese <sr@denx.de>
13131Date: Thu Jul 10 13:53:31 2008 +0200
13132
13133 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
13134
13135 This patch removes some ft_board_setup() functions from some 4xx boards.
13136 This can be done since we now have a default weak implementation for this
13137 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
13138 implementation like canyonlands need their own version.
13139
13140 Signed-off-by: Stefan Roese <sr@denx.de>
13141
13142commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
13143Author: Wolfgang Denk <wd@denx.de>
13144Date: Sun Jul 13 14:58:16 2008 +0200
13145
13146 Add last known maintainer for orphaned boards; reformat.
13147
13148 Signed-off-by: Wolfgang Denk <wd@denx.de>
13149
13150commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
13151Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13152Date: Thu Jul 10 13:16:04 2008 +0200
13153
13154 Remove kharris@nexus-tech.net from MAINTAINERS
13155
13156 Mail to kharris@nexus-tech.net bounces because the user doesn't exist
13157 anymore. You can't be a maintainer without a valid e-mail address, so
13158 move all boards that used to be maintained by Kyle Harris to the
13159 "orphaned" list.
13160
13161 Currently, only PowerPC has a list of orphaned boards, so this patch
13162 creates one for ARM as well.
13163
13164 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13165
13166commit 17bd17071463b0cde391ac4a0863d600474b4ea1
13167Author: Anatolij Gustschin <agust@denx.de>
13168Date: Thu Jul 10 01:15:10 2008 +0200
13169
13170 at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
13171
13172 On the at91sam9260ep development board there is an EEPROM
13173 connected to the TWI interface (PA23, PA24 Peripheral A
13174 multiplexing), so we cannot use these pins as ETX2, ETX3.
13175 This patch configures PA10, PA11 pins for ETX2, ETX3
13176 instead of PA23, PA24 pins.
13177
13178 Signed-off-by: Anatolij Gustschin <agust@denx.de>
13179 Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
13180
13181commit f889265753ddf4465d9d580827bb9289bfac55d6
13182Author: Kenneth Johansson <kenneth@southpole.se>
13183Date: Sat Jul 12 13:18:34 2008 -0600
13184
13185 fix DIU for small screens
13186
13187 The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
13188 so it was not possible to set a slow pixel clock and thus prevented
13189 display on small screens.
13190
13191 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
13192 Acked-by: John Rigby <jrigby@freescale.com>
13193
13194commit b60b8573875e650e4c69be667bfc88d3ed474a7c
13195Author: John Rigby <jrigby@freescale.com>
13196Date: Fri Jul 11 14:44:09 2008 -0600
13197
13198 ADS5121 cleanup compile warnings
13199
13200 board/ads5121/iopin.c
13201 Replace bit fields in struct iopin_t with a single
13202 field and intialize it via plain old macros.
13203 This fixes the type pun warnings and makes the code
13204 more readable.
13205
13206 board/ads5121/ads5121.c
13207 Add include iopin.h to ads5121.c for the iopin_initialize
13208 prototype.
13209
13210 Add an extern void ads5121_diu_init(void)
13211
13212 Signed-off-by: John Rigby <jrigby@freescale.com>
13213
13214commit bde63587622c4b830a27d1ddf7265843de9e994f
13215Author: Wolfgang Denk <wd@denx.de>
13216Date: Fri Jul 11 22:56:11 2008 +0200
13217
13218 Fix some more printf() format issues.
13219
13220 Signed-off-by: Wolfgang Denk <wd@denx.de>
13221
13222commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
13223Author: Wolfgang Denk <wd@denx.de>
13224Date: Fri Jul 11 22:55:31 2008 +0200
13225
13226 Fixed some out-of-tree build issues
13227
13228 Signed-off-by: Wolfgang Denk <wd@denx.de>
13229
13230commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
13231Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13232Date: Wed Jul 9 16:20:23 2008 -0500
13233
13234 ColdFire: Fix FB CS not setup properly for Mcf5282
13235
13236 Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
13237 CFG_CSn_RO is defined as 0, the chipselect will not
13238 be assigned.
13239
13240 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13241
13242commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
13243Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13244Date: Wed Jul 9 15:47:27 2008 -0500
13245
13246 ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
13247
13248 Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
13249 clock module in cpu/<cf arch>/cpu_init.c
13250
13251 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13252
13253commit f94945b517f10e01927101679c62361e03d4e837
13254Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13255Date: Wed Jul 9 15:25:01 2008 -0500
13256
13257 ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
13258
13259 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13260
13261commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
13262Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13263Date: Wed Jul 9 15:21:44 2008 -0500
13264
13265 Fix compile error caused by missing timer function
13266
13267 Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
13268
13269 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13270
13271commit c37ea031175b807c54e6bad9b270e9bede6c0078
13272Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13273Date: Wed Jul 9 15:14:25 2008 -0500
13274
13275 Fix compile error caused by incorrect function return type
13276
13277 Rename int mii_init(void) to void mii_init(void)
13278
13279 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13280
13281commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
13282Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13283Date: Wed Jun 18 19:27:23 2008 -0500
13284
13285 ColdFire: Fix power up issue for MCF5235
13286
13287 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13288
13289commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
13290Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13291Date: Wed Jun 18 19:19:07 2008 -0500
13292
13293 ColdFire: Fix compiling error for MCF5275
13294
13295 The compiling error was caused by missing a closed parentheses
13296 in speed.c
13297
13298 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13299
13300commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
13301Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13302Date: Wed Jun 18 19:14:01 2008 -0500
13303
13304 ColdFire: Fix timer issue for MCF5272
13305
13306 The timer was assigned to wrong timer memory mapped which
13307 caused udelay() and timer() not working properly.
13308
13309 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13310
13311commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
13312Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13313Date: Wed Jun 18 19:12:13 2008 -0500
13314
13315 ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
13316
13317 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
13318
13319commit 8371dc2066136be21e10b7b9293e469297d77298
13320Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13321Date: Wed Jun 18 19:05:23 2008 -0500
13322
13323 ColdFire: Add -got=single param for new linux v4e toolchains
13324
13325 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
13326
13327commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
13328Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13329Date: Wed Jun 18 13:21:19 2008 -0500
13330
13331 ColdFire: Fix code flash configuration for M547x/M548x boards
13332
13333 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
13334
13335commit 6e37091afc07fdcc15590093fd066b0cb7399f85
13336Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13337Date: Tue Jun 24 12:12:16 2008 -0500
13338
13339 ColdFire: Fix warning messages by passing correct data type in board.c
13340
13341 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13342
13343commit 81cc32322acb1b3225ee45606ced48e2a14824dc
13344Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13345Date: Thu May 29 12:21:54 2008 -0500
13346
13347 ColdFire: Fix UART baudrate formula
13348
13349 The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
13350 can generate the wrong divisor due to integer division truncation.
13351 Round the calculated divisor value by adding 1/2 the baudrate
13352 before dividing by the baudrate.
13353
13354 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13355 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
13356
13357commit b578fb471444cbd7db1285701ba51343baaf73fb
13358Author: Stefan Roese <sr@denx.de>
13359Date: Thu Jul 10 11:38:26 2008 +0200
13360
13361 ppc4xx: Fix include sequence in 4xx_pcie.c
13362
13363 This patch now moves common.h to the top of the inlcude list. This
13364 is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
13365 the phys_size_t/phys_addr_t are defined to the correct size in this
13366 driver.
13367
13368 Signed-off-by: Stefan Roese <sr@denx.de>
13369
Wolfgang Denk4b070802008-08-14 14:41:06 +020013370commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
13371Author: Stefan Roese <sr@denx.de>
13372Date: Fri Jul 11 13:10:56 2008 +0200
13373
13374 ppc4xx: Fix compile warning in 44x_spd_ddr2.c
13375
13376 Signed-off-by: Stefan Roese <sr@denx.de>
13377
13378commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
13379Author: Stefan Roese <sr@denx.de>
13380Date: Fri Jul 11 11:40:13 2008 +0200
13381
13382 ppc4xx: Fix small korat merge problem
13383
13384 Signed-off-by: Stefan Roese <sr@denx.de>
13385
13386commit 1d0554736a0a1dd59718acda660871ce56b69e18
13387Author: Stefan Roese <sr@denx.de>
13388Date: Fri Jul 11 11:34:52 2008 +0200
13389
13390 ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
13391
13392 Signed-off-by: Stefan Roese <sr@denx.de>
13393
13394commit 3a82113ed5934d498f25080441a8261fc9454b15
13395Author: Stefan Roese <sr@denx.de>
13396Date: Thu Jul 10 16:37:09 2008 +0200
13397
13398 ppc4xx: Add 460SX UIC defines
13399
13400 Only the really needed ones are added (cascading and EMAC/MAL).
13401
13402 Signed-off-by: Stefan Roese <sr@denx.de>
13403
13404commit 26173fc6f60521c2a8072f652f863617fc11ba9a
13405Author: Stefan Roese <sr@denx.de>
13406Date: Mon Jun 30 14:11:07 2008 +0200
13407
13408 ppc4xx: Continue cleanup of ppc440.h
13409
13410 This patch continues the ppc440.h cleanup by removing some of the unused
13411 defines.
13412
13413 Signed-off-by: Stefan Roese <sr@denx.de>
13414
13415commit d9056b7913ed6a228d2f33671d916efedee541dd
13416Author: Stefan Roese <sr@denx.de>
13417Date: Mon Jun 30 14:05:05 2008 +0200
13418
13419 ppc4xx: Cleanup Katmai & Yucca PCIe register usage
13420
13421 This patch cleans up the 440SPe PCIe register usage. Now only defines
13422 from the include/asm-ppc/4xx_pcie.h are used.
13423
13424 Signed-off-by: Stefan Roese <sr@denx.de>
13425
13426commit 5de851403b01489b493fa83137ad990b8ce60d1c
13427Author: Stefan Roese <sr@denx.de>
13428Date: Thu Jun 26 17:36:39 2008 +0200
13429
13430 ppc4xx: Rework 440GX UIC handling
13431
13432 This patch reworks the 440GX interrupt handling so that the common 4xx
13433 code can be used. The 440GX is an exception to all other 4xx variants
13434 by having the cascading interrupt vectors not on UIC0 but on a special
13435 UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
13436 the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
13437 handling is simpler without any 440GX special cases.
13438
13439 Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
13440
13441 Signed-off-by: Stefan Roese <sr@denx.de>
13442
13443commit d1631fe1a05b063ccaf62ea892a8887b829847d1
13444Author: Stefan Roese <sr@denx.de>
13445Date: Thu Jun 26 13:40:57 2008 +0200
13446
13447 ppc4xx: Consolidate PPC4xx UIC defines
13448
13449 This 2nd patch now removes all UIC mask bit definition. They should be
13450 generated from the vectors by using the UIC_MASK() macro from now on.
13451 This way only the vectors need to get defined for new PPC's.
13452
13453 Also only the really used interrupt vectors are now defined. This makes
13454 definitions for new PPC versions easier and less error prone.
13455
13456 Another part of this patch is that the 4xx emac driver got a little
13457 cleanup, since now the usage of the interrupts is clearer.
13458
13459 Signed-off-by: Stefan Roese <sr@denx.de>
13460
13461commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
13462Author: Stefan Roese <sr@denx.de>
13463Date: Wed Jun 25 10:59:22 2008 +0200
13464
13465 ppc4xx: Consolidate PPC4xx UIC defines
13466
13467 This patch is the first step to consolidate the UIC related defines in the
13468 4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
13469 asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
13470 steps.
13471
13472 Signed-off-by: Stefan Roese <sr@denx.de>
13473
13474commit 7ee2619c20ccecd57966d74d844e6329e141261c
13475Author: Stefan Roese <sr@denx.de>
13476Date: Tue Jun 24 17:18:50 2008 +0200
13477
13478 ppc4xx: Consolidate PPC4xx EBC defines
13479
13480 This patch removes all EBC related defines from the PPC4xx headers
13481 ppc405.h and ppc440.h and introduces a new header
13482
13483 include/asm-ppc/ppc4xx-ebc.h
13484
13485 with all those defines.
13486
13487 Signed-off-by: Stefan Roese <sr@denx.de>
13488
13489commit e321801bed5a6d896d298c00fd20046f039d5d66
13490Author: Stefan Roese <sr@denx.de>
13491Date: Thu Jul 10 13:52:44 2008 +0200
13492
13493 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
13494
13495 This patch removes some ft_board_setup() functions from some 4xx boards.
13496 This can be done since we now have a default weak implementation for this
13497 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
13498 implementation like canyonlands need their own version.
13499
13500 Signed-off-by: Stefan Roese <sr@denx.de>
13501
13502commit 08250eb2edbd96514d049602d9e134110ac3185f
13503Author: Stefan Roese <sr@denx.de>
13504Date: Thu Jul 10 15:32:32 2008 +0200
13505
13506 ppc4xx: Fix merge problems in 44x_spd_ddr2.c
13507
13508 Signed-off-by: Stefan Roese <sr@denx.de>
13509
13510commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
13511Author: Grant Erickson <gerickson@nuovations.com>
13512Date: Tue Jul 8 08:35:00 2008 -0700
13513
13514 ppc4xx: Add MII mode support to the EMAC RGMII Bridge
13515
13516 This patch adds support for placing the RGMII bridge on the
13517 PPC405EX(r) into MII/GMII mode and allows a board-specific
13518 configuration to specify the bridge mode at compile-time.
13519
13520 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13521 Signed-off-by: Stefan Roese <sr@denx.de>
13522
13523commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
13524Author: Grant Erickson <gerickson@nuovations.com>
13525Date: Wed Jul 9 16:46:35 2008 -0700
13526
13527 ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
13528
13529 This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
13530 controller registers (MODT and INITPLR) used by the
13531 PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
13532 peer values used for the INITPLR MR and EMR registers,
13533 respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
13534
13535 With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
13536 Kilauea are replaced by equivalent mnemonics to make it easier to
13537 compare and contrast other 405EX(r)-based boards (e.g. during board
13538 bring-up).
13539
13540 Finally, unified the SDRAM controller register dump routine such that
13541 it can be used across all processor variants that utilize the IBM DDR2
13542 SDRAM controller core. It produces output of the form:
13543
13544 PPC4xx IBM DDR2 Register Dump:
13545 ...
13546 SDRAM_MB0CF[40] = 0x00006701
13547 ...
13548
13549 which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
13550 since it is not uncommon that the DCR values in header files get mixed
13551 up and it helps to validate, at a glance, they match what is printed
13552 in the user manual.
13553
13554 Tested on:
13555 AMCC Kilauea/Haleakala:
13556 - NFS Linux Boot: PASSED
13557 - NAND Linux Boot: PASSED
13558
13559 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13560 Signed-off-by: Stefan Roese <sr@denx.de>
13561
13562commit ad7382d828982e9c1bafc4313ef1b666f6145f58
13563Author: Grant Erickson <gerickson@nuovations.com>
13564Date: Wed Jul 9 16:31:59 2008 -0700
13565
13566 ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
13567
13568 Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
13569 revision ID DCR based on 405EX, and add field mnemonics for bus error
13570 status and ECC error status registers.
13571
13572 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13573 Signed-off-by: Stefan Roese <sr@denx.de>
13574
13575commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
13576Author: Grant Erickson <gerickson@nuovations.com>
13577Date: Wed Jul 9 16:31:36 2008 -0700
13578
13579 ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
13580
13581 This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
13582
13583 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13584 Signed-off-by: Stefan Roese <sr@denx.de>
13585
13586commit 5b457d00730d4aa0c6450d21a9104723e606fb98
13587Author: Grant Erickson <gerickson@nuovations.com>
13588Date: Wed Jul 9 11:55:46 2008 -0700
13589
13590 PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
13591
13592 While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
13593 controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
13594 the 405EX(r), SDRAM_MCSTAT has a different DCR value.
13595
13596 Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
13597 which causes SDRAM initialization to periodically fail since it can
13598 prematurely indicate SDRAM ready status.
13599
13600 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13601 Signed-off-by: Stefan Roese <sr@denx.de>
13602
13603commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
13604Author: Feng Kan <fkan@amcc.com>
13605Date: Tue Jul 8 22:48:42 2008 -0700
13606
13607 ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
13608
13609 Add AMCC Redwood reference board that uses the latest
13610 PPC 464 CPU processor combined with a rich mix of peripheral
13611 controllers. The board will support PCIe, mutiple Gig ethernet
13612 ports, advanced hardware RAID assistance and IEEE 1588.
13613
13614 Signed-off-by: Feng Kan <fkan@amcc.com>
13615 Signed-off-by: Stefan Roese <sr@denx.de>
13616
13617commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
13618Author: Feng Kan <fkan@amcc.com>
13619Date: Tue Jul 8 22:48:07 2008 -0700
13620
13621 ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
13622
13623 Signed-off-by: Feng Kan <fkan@amcc.com>
13624 Signed-off-by: Stefan Roese <sr@denx.de>
13625
13626commit 7d30793685efcada183891c78fc892e6c9ba50c7
13627Author: Feng Kan <fkan@amcc.com>
13628Date: Tue Jul 8 22:47:31 2008 -0700
13629
13630 ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
13631
13632 Signed-off-by: Feng Kan <fkan@amcc.com>
13633 Signed-off-by: Stefan Roese <sr@denx.de>
13634
Wolfgang Denk699f0512008-07-15 22:22:44 +020013635commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
13636Author: Wolfgang Denk <wd@denx.de>
13637Date: Fri Jul 11 01:16:00 2008 +0200
13638
13639 Fix some more print() format errors.
13640
13641 Signed-off-by: Wolfgang Denk <wd@denx.de>
13642
13643commit fdd70d1921b87287d9a99d1be99bc35226c2b412
13644Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13645Date: Thu Jul 10 20:57:54 2008 +0200
13646
13647 MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
13648
13649 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13650
13651commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
13652Author: Sergey Lapin <slapin@ossfans.org>
13653Date: Thu Jun 5 11:06:29 2008 +0400
13654
13655 DataFlash AT45DB021 support
13656
13657 Some boards based on AT91SAM926X-EK use smaller DF chips to keep
13658 bootstrap, u-boot and its environment, using NAND or other external
13659 storage for kernel and rootfs. This patch adds support for
13660 small 1024x263 chip.
13661
13662 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
13663
13664commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
13665Author: Kim Phillips <kim.phillips@freescale.com>
13666Date: Thu Jul 10 14:00:15 2008 -0500
13667
13668 silence misc printf formatting compiler warnings
13669
13670 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13671
13672commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
13673Author: Markus Klotzbücher <mk@denx.de>
13674Date: Thu Jul 10 14:47:09 2008 +0200
13675
13676 USB: shutdown USB before booting
13677
13678 This patch fixes a potentially serious issue related to USB which was
13679 discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
13680 ARM920T. Martin wrote:
13681
13682 Turn off USB to prevent the host controller from writing to the
13683 SDRAM while Linux is booting. This could happen, because the HCCA
13684 (Host Controller Communication Area) lies within the SDRAM and the
13685 host controller writes continously to this area (as busmaster!), for
13686 example to increase the HccaFrameNumber variable, which happens
13687 every 1 ms.
13688
13689 This is a slightly modified version of the patch in order to shutdown
13690 USB when booting on all architectures.
13691
13692 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
13693
13694commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
13695Author: Martha Marx <mmarx@silicontkx.com>
13696Date: Thu May 29 14:23:25 2008 -0400
13697
13698 Configuration changes for ADS5121 Rev 3
13699
13700 ADS5121 Rev 3 board is now the default config
13701
13702 config targets are now
13703
13704 ads5121_config
13705 Rev 3 board with
13706 PCI
13707 M41T62 on board RTC
13708 512MB DRAM
13709
13710 ads5121_rev2_config
13711 Rev 2 board with
13712 No PCI
13713 256MB DRAM
13714
13715 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
13716 Acked-by: Grant Likely <grant.likely@secretlab.ca>
13717 Acked-by: John Rigby <jrigby@freescale.com>
13718
13719commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
13720Author: Martha Marx <mmarx@silicontkx.com>
13721Date: Thu May 29 15:37:21 2008 -0400
13722
13723 Consolidate ADS5121 IO Pin configuration
13724
13725 Consolidate ADS5121 IO Pin configuration to one file
13726 board/ads5121/iopin.c.
13727
13728 Remove pin config from cpu/mpc512x/fec.c
13729
13730 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
13731 Acked-by: Grant Likely <grant.likely@secretlab.ca>
13732 Acked-by: John Rigby <jrigby@freescale.com>
13733
13734commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
13735Author: Christian Eggers <christian@p2400.wgnetz.xx>
13736Date: Fri Jun 27 19:46:51 2008 +0200
13737
13738 Fix "usb part" command
13739
13740 Only print partition for selected device if user supplied the <dev>
13741 arg with the "usb part [dev]" command.
13742
13743 Signed-off-by: Christian Eggers <ceggers@gmx.de>
13744 Acked-by: Markus Klotzbuecher <mk@denx.de>
13745
13746commit cc83b27217f7380041fea386ddb6d6d9b261617d
13747Author: Harald Welte <laforge@gnumonks.org>
13748Date: Mon Jul 7 00:58:05 2008 +0800
13749
13750 fix USB devices with multiple configurations
13751
13752 This patch fixes bugs in usbdcore*.c related to the use of devices
13753 with multiple configurations.
13754
13755 The original code made mistakes about the meaning of configuration value and
13756 configuration index, and the resulting off-by-one errors resulted in:
13757
13758 * SET_CONFIGURATION always selected the first configuration, no matter what
13759 wValue is being passed.
13760 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
13761 configuration (index 0).
13762
13763 Signed-off-by: Harald Welte <laforge@openmoko.org>
13764 Acked-by: Markus Klotzbuecher <mk@denx.de>
13765
13766commit 06c53beae1a726e707971c555613f09b270a2461
13767Author: Wolfgang Denk <wd@denx.de>
13768Date: Thu Jul 10 13:16:09 2008 +0200
13769
13770 Fix some more print() format errors.
13771
13772 Signed-off-by: Wolfgang Denk <wd@denx.de>
13773
13774commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
13775Author: Christian Eggers <christian@p2400.wgnetz.xx>
13776Date: Fri Jun 27 19:46:51 2008 +0200
13777
13778 Fix "usb part" command
13779
13780 Only print partition for selected device if user supplied the <dev>
13781 arg with the "usb part [dev]" command.
13782
13783 Signed-off-by: Christian Eggers <ceggers@gmx.de>
13784 Acked-by: Markus Klotzbuecher <mk@denx.de>
13785
13786commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
13787Author: Harald Welte <laforge@gnumonks.org>
13788Date: Mon Jul 7 00:58:05 2008 +0800
13789
13790 fix USB devices with multiple configurations
13791
13792 This patch fixes bugs in usbdcore*.c related to the use of devices
13793 with multiple configurations.
13794
13795 The original code made mistakes about the meaning of configuration value and
13796 configuration index, and the resulting off-by-one errors resulted in:
13797
13798 * SET_CONFIGURATION always selected the first configuration, no matter what
13799 wValue is being passed.
13800 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
13801 configuration (index 0).
13802
13803 Signed-off-by: Harald Welte <laforge@openmoko.org>
13804 Acked-by: Markus Klotzbuecher <mk@denx.de>
13805
13806commit e870690bdca154943ecadd5212d2d59c1b9d391b
13807Author: Stefan Roese <sr@denx.de>
13808Date: Thu Jul 10 10:10:54 2008 +0200
13809
13810 MTD/NAND: Fix printf format warning in nand code
13811
13812 This patch fixes NAND related printf format warning. Those warnings are
13813 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
13814 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
13815 really helpful.
13816
13817 Signed-off-by: Stefan Roese <sr@denx.de>
13818
13819commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
13820Author: Stefan Roese <sr@denx.de>
13821Date: Thu Jul 10 10:00:45 2008 +0200
13822
13823 rtc: Fix printf format warning in m41t60.c
13824
13825 Signed-off-by: Stefan Roese <sr@denx.de>
13826
13827commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
13828Author: Stefan Roese <sr@denx.de>
13829Date: Tue Jul 8 12:01:47 2008 +0200
13830
13831 pci: Move PCI device configuration check into a separate weak function
13832
13833 This patch moves the check, if a device should be skipped in PCI PNP
13834 configuration into the function pci_skip_dev(). This function is defined
13835 as weak so that it can be overwritten by a platform specific one if
13836 needed. The check if the device should get printed in the PCI summary upon
13837 bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
13838 pci_print_dev() which is also defined as weak too.
13839
13840 Signed-off-by: Stefan Roese <sr@denx.de>
13841
13842commit b002144e1dc21374b1ef5281fe6b5d014af96650
13843Author: Stefan Roese <sr@denx.de>
13844Date: Thu Jul 10 09:58:06 2008 +0200
13845
13846 ppc4xx: Fix printf format warnings now visible with the updated format check
13847
13848 This patch fixes ppc4xx related printf format warning. Those warnings are
13849 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
13850 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
13851 really helpful.
13852
13853 Signed-off-by: Stefan Roese <sr@denx.de>
13854
13855commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
13856Author: Stefan Roese <sr@denx.de>
13857Date: Wed Jul 9 17:33:57 2008 +0200
13858
13859 ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
13860
13861 Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
13862 To support such configurations, we "only" map the first 2GB via the TLB's. We
13863 need some free virtual address space for the remaining peripherals like, SoC
13864 devices, FLASH etc.
13865
13866 Note that ECC is currently not supported on configurations with more than 2GB
13867 SDRAM. This is because we only map the first 2GB on such systems, and therefore
13868 the ECC parity byte of the remaining area can't be written.
13869
13870 Signed-off-by: Stefan Roese <sr@denx.de>
13871
13872commit cf1c2ed91df26903b956948f37f82de9e1158a89
13873Author: Larry Johnson <lrj@acm.org>
13874Date: Sat Jun 14 17:02:49 2008 -0400
13875
13876 ppc4xx: Remove implementation of testdram() from Korat board support
13877
13878 Signed-off-by: Larry Johnson <lrj@acm.org>
13879 Signed-off-by: Stefan Roese <sr@denx.de>
13880
13881commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
13882Author: Larry Johnson <lrj@acm.org>
13883Date: Sat Jun 14 16:53:02 2008 -0400
13884
13885 ppc4xx: Update and add FDT to Korat board support
13886
13887 Signed-off-by: Larry Johnson <lrj@acm.org>
13888 Signed-off-by: Stefan Roese <sr@denx.de>
13889
13890commit 4188f0491886b3b486164e819c0a83fdb97efd7d
13891Author: Wolfgang Denk <wd@denx.de>
13892Date: Thu Jul 10 01:13:30 2008 +0200
13893
13894 Minor coding style cleanup; update CHANGELOG
13895
13896 Signed-off-by: Wolfgang Denk <wd@denx.de>
13897
Wolfgang Denk4188f042008-07-10 01:13:30 +020013898commit 8915f1189c1d29d8be7f4de325702d90a8988219
13899Author: Paul Gortmaker <paul.gortmaker@windriver.com>
13900Date: Wed Jul 9 17:50:45 2008 -0400
13901
13902 e1000: add support for 82545GM 64bit PCI-X copper variant
13903
13904 This PCI-X e1000 variant works by just adding in the correct
13905 PCI IDs in the appropriate places.
13906
13907 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
13908
13909commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
13910Author: Daniel Hellstrom <daniel@gaisler.com>
13911Date: Wed Jul 9 12:34:11 2008 +0000
13912
13913 SPARC: Build error fix
13914
13915 (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
13916
13917 This patch makes SPARC targets build again. It is caused by
13918 phys_addr_t and phys_size_t being defined in the wrong header
13919 file. include/lmb.h need those typedefs to build.
13920
13921 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
13922
13923commit 11ccc33fa21acce108f6b4a6936e3271af904c64
13924Author: Marcel Ziswiler <marcel@ziswiler.com>
13925Date: Wed Jul 9 08:17:15 2008 +0200
13926
13927 Many spelling fixes in README.
13928
13929 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13930
13931commit dbab0691d2533560f7e91b92ae844046a9ad1df3
13932Author: Marcel Ziswiler <marcel@ziswiler.com>
13933Date: Wed Jul 9 08:17:06 2008 +0200
13934
13935 Minor spelling fix in comment.
13936
13937 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13938
13939commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
13940Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13941Date: Tue Jul 8 14:54:58 2008 -0400
13942
13943 Round the serial port clock divisor value returned by calc_divisor()
13944
13945 Round the serial port clock divisor value returned by
13946 calc_divisor().
13947
13948 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13949 Signed-off-by: John Roberts <john.roberts@pwav.com>
13950
13951commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
13952Author: Scott Wood <scottwood@freescale.com>
13953Date: Wed Jul 9 17:47:52 2008 -0500
13954
13955 NAND: ifdef-protect most of nand.h when using legacy NAND.
13956
13957 Some macros such as NAND_CTL_SETALE conflict between current and legacy
13958 NAND, being defined by the subsystem in the former case and the board
13959 config file in the latter.
13960
13961 Signed-off-by: Scott Wood <scottwood@freescale.com>
13962
13963commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
13964Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13965Date: Tue Jul 8 11:02:05 2008 -0400
13966
13967 ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
13968
13969 ARM: Fix for incorrect version of patch applied when
13970 adding support for the Lyrtech SFF-SDR board.
13971
13972 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13973 Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
13974
13975commit 47042b363ee5022b8180c65d3f4558e7972c79cd
13976Author: Kyungmin Park <kmpark@infradead.org>
13977Date: Tue Jul 8 09:08:40 2008 +0900
13978
13979 Remove useless print message at apollon
13980
13981 Remove useless print message at apollon
13982
13983 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13984
13985commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
13986Author: Andy Fleming <afleming@freescale.com>
13987Date: Mon Jul 7 14:24:39 2008 -0500
13988
13989 Fix LMB type issues
13990
13991 The LMB code now uses phys_addr_t and phys_size_t. Also, there were a couple
13992 of casting problems in the bootm code that called the LMB functions.
13993
13994 Signed-off-by: Andy Fleming <afleming@freescale.com>
13995
13996commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
13997Author: Kumar Gala <galak@kernel.crashing.org>
13998Date: Mon Jul 7 09:39:06 2008 -0500
13999
14000 Fix compiler warnings
14001
14002 gcc-4.3.x generates the following:
14003
14004 bootm.c: In function 'do_bootm_linux':
14005 bootm.c:208: warning: cast from pointer to integer of different size
14006 bootm.c:215: warning: cast from pointer to integer of different size
14007
14008 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14009
14010commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
14011Author: Harald Welte <laforge@gnumonks.org>
14012Date: Mon Jul 7 15:40:39 2008 +0800
14013
14014 Remove code duplication for setting the default environment
14015
14016 common/env_common.c (default_env): new function that resets the environment to
14017 the default value
14018 common/env_common.c (env_relocate): use default_env instead of own copy
14019 common/env_nand.c (env_relocate_spec): use default_env instead of own copy
14020 include/environment.h: added default_env prototype
14021
14022 Signed-off-by: Werner Almesberger <werner@openmoko.org>
14023 Signed-off-by: Harald Welte <laforge@openmoko.org>
14024
14025commit 99c2b434d37863df5dda5207a53760c6506fc2be
14026Author: Marcel Ziswiler <marcel@ziswiler.com>
14027Date: Sun Jun 22 16:13:46 2008 +0200
14028
14029 NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
14030
14031 The writeenv() and readenv() calls introduced by the recently added bad block
14032 management for environment variables were missing casts therefore producing
14033 compile time warnings.
14034 While at it fixing some typo in a comment and indentation.
14035
14036 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
14037 Signed-off-by: Scott Wood <scottwood@freescale.com>
14038
14039commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
14040Author: Scott Wood <scottwood@freescale.com>
14041Date: Fri Jun 20 12:38:57 2008 -0500
14042
14043 NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
14044
14045 This is particularly problematic now that non-NAND-specific code is
14046 including <nand.h>, and thus all debugging code is being compiled
14047 regardless of whether it was requested, as reported by Scott McNutt
14048 <smcnutt@psyent.com>.
14049
14050 Signed-off-by: Scott Wood <scottwood@freescale.com>
14051
14052commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
14053Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14054Date: Thu Jun 12 19:27:58 2008 +0200
14055
14056 mmc: Move atmel_mci driver into drivers/mmc
14057
14058 This makes it easier to use the driver on other platforms.
14059
14060 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14061 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14062
14063commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
14064Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14065Date: Thu Jun 12 19:27:57 2008 +0200
14066
14067 avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
14068
14069 After we move the atmel_mci driver into drivers/mmc, we can't select
14070 it with CONFIG_MMC anymore. Introduce a new symbol specifically for
14071 this driver so that there's no ambiguity.
14072
14073 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14074 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14075
14076commit 5ce13051a48c62bda9723df3b4778c492fb47f36
14077Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14078Date: Thu Jun 12 19:27:56 2008 +0200
14079
14080 Create drivers/mmc subdirectory
14081
14082 In order to consolidate more of the various MMC drivers around the
14083 tree, we must first have a common place to put them.
14084
14085 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14086 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14087
14088commit b502611b51f02718c2d1117d4981dabceb5af6de
14089Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
14090Date: Sun Jul 6 12:30:09 2008 +0200
14091
14092 Change env_get_char from a global function ptr to a function
14093
14094 This avoids an early global data reference.
14095
14096 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
14097
14098commit 27269417ade432189b234d9fbac98b54e37b978c
14099Author: Matvejchikov Ilya <matvejchikov@gmail.com>
14100Date: Sun Jul 6 13:57:58 2008 +0400
14101
14102 Some copy-n-paste fixes in printf usage
14103
14104 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
14105
14106commit 0e6989b9faf1588e8723535539e88a0df3c71356
14107Author: Matvejchikov Ilya <matvejchikov@gmail.com>
14108Date: Sun Jul 6 13:57:00 2008 +0400
14109
14110 FDT memory and pci node fixes for MPC8260ADS
14111
14112 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
14113
14114commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
14115Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
14116Date: Mon Jul 7 06:41:14 2008 -0700
14117
14118 Fix printf errors.
14119
14120 The compiler will help find mismatches between printf formats and
14121 arguments if you let it. This patch adds the necessary attributes to
14122 declarations in include/common.h, then begins to correct the resulting
14123 compiler warnings. Some of these were bugs, e.g., "$d" instead of
14124 "%d" and incorrect arguments. Others were just annoying, like
14125 int-long mismatches on a system where both are 32 bits. It's worth
14126 fixing the annoying errors to catch the real ones.
14127
14128 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
14129
14130commit 417faf285b2527acb2de24c5cd3e2621d385408c
14131Author: Becky Bruce <becky.bruce@freescale.com>
14132Date: Wed Jul 9 11:09:41 2008 -0500
14133
14134 Allow print_size to print in GB
14135
14136 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14137
14138commit e7c374529c87525c9aa463e0557c287887ae4e9e
14139Author: Jason McMullan <mcmullan@netapp.com>
14140Date: Sun Jun 8 23:56:00 2008 -0400
14141
14142 mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
14143
14144 Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
14145 they are set in the U-Boot environment.
14146
14147 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
14148 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14149
14150commit 0192d7d56e9320819dea262f49789ae18fdd2c72
14151Author: Stefan Roese <sr@denx.de>
14152Date: Tue Jul 8 12:57:14 2008 +0200
14153
14154 jedec_flash: Fix AM29DL800BB device ID
14155
14156 As pointed out by Jerry Hicks, this patch corrects the device ID of
14157 the Spansion AM29DL800BB NOR device. Verified against latest Spansion
14158 datasheet (rev C4 from Dezember 2006).
14159
14160 Signed-off-by: Stefan Roese <sr@denx.de>
14161
14162commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
14163Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14164Date: Mon Jul 7 11:22:37 2008 +0900
14165
14166 sh: Fix compile error sh7763rdp board
14167
14168 Disable SH ether driver.
14169
14170 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14171
14172commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
14173Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14174Date: Tue Jul 8 12:03:24 2008 +0900
14175
14176 sh: Fix SH-boards compile error
14177
14178 By Cleanup out-or-tree building for some boards (.depend)
14179 (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
14180 because filse ware changed, some SH-boards have compile error.
14181 I revised this problem.
14182
14183 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14184
Wolfgang Denk699f0512008-07-15 22:22:44 +020014185commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
14186Author: Jason Jin <Jason.jin@freescale.com>
14187Date: Tue May 13 11:50:36 2008 +0800
14188
14189 Feed the watchdog in u-boot for 8610 board.
14190
14191 The watchdog on 8610 board is enabled by setting sw[6]
14192 to on. Once enabled, the watchdog can not be disabled
14193 by software. So feed the dog in u-boot is necessary for
14194 normal operation.
14195
14196 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
14197
Wolfgang Denk4188f042008-07-10 01:13:30 +020014198commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
14199Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14200Date: Wed Jun 18 12:10:33 2008 -0400
14201
14202 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
14203
14204 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
14205
14206 Remove duplicate code in a if/else block in
14207 cpu/arm926ejs/davinci/lxt972.c.
14208 Fixed style issues.
14209
14210 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14211 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14212
14213commit fec61431a003f5778bafa2624073a571af8bec9f
14214Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14215Date: Wed Jun 18 12:10:31 2008 -0400
14216
14217 Remove duplicate definitions in include/lxt971a.h.
14218
14219 Remove duplicate definitions in include/lxt971a.h.
14220
14221 Remove duplicate registers and bits definitions in
14222 include/lxt971a.h for standard MII registers, and
14223 use values in include/miiphy.h instead.
14224
14225 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14226 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14227
14228commit 9751ee0990f467941da0b095a4e995f863672d7a
14229Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14230Date: Wed Jun 11 21:05:00 2008 +0900
14231
14232 net: sh: Renesas SH7763 Ethernet device support
14233
14234 Renesas SH7763 has 2 channel Ethernet device.
14235 This is 10/100/1000 Base support.
14236 But this patch check 10/100 Base only.
14237
14238 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14239 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14240
14241commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
14242Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14243Date: Tue Jun 17 16:28:05 2008 +0900
14244
14245 sh: Update Renesas R2DPlus board
14246
14247 New NOR Flash board support and remove old type flash board config.
14248 And Remove network setting from config file.
14249
14250 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14251 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14252
14253commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
14254Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14255Date: Tue Jun 17 16:28:01 2008 +0900
14256
14257 sh: Update Renesas R7780MP board
14258
14259 New NOR Flash board support and remove network setting from config file.
14260
14261 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14262 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14263
14264commit c001cd604e9f133743effbddb1c215b48e761c5a
14265Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14266Date: Tue Jun 17 16:27:56 2008 +0900
14267
14268 sh: Update Renesas Migo-R board
14269
14270 Remove network setting from config file.
14271
14272 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14273 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14274
14275commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
14276Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14277Date: Tue Jun 17 16:27:52 2008 +0900
14278
14279 sh: Update Hitachi MS7722SE board
14280
14281 Remove network setting from config file.
14282
14283 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14284 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14285
14286commit 26209e48e8791670c93108029a5c31a30016c6df
14287Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14288Date: Tue Jun 17 16:27:48 2008 +0900
14289
14290 sh: Cleanup source code of SH7763RDP
14291
14292 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14293 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14294
14295commit 5cd5b2c96ef0025762931349d350287aec03ab47
14296Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14297Date: Tue Jun 17 16:27:44 2008 +0900
14298
14299 sh: Cleanup source code of R2DPlus
14300
14301 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14302 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14303
14304commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
14305Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14306Date: Tue Jun 17 16:27:41 2008 +0900
14307
14308 sh: Cleanup source code of R7780MP
14309
14310 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14311 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14312
14313commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
14314Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14315Date: Tue Jun 17 16:27:38 2008 +0900
14316
14317 sh: Cleanup source code of MS7722SE
14318
14319 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14320 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14321
14322commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
14323Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14324Date: Tue Jun 17 16:27:34 2008 +0900
14325
14326 sh: Cleanup source code of MS7720SE
14327
14328 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14329 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14330
14331commit 3ab4827cbe409488ebea1a2ee5094783f2672214
14332Author: Wolfgang Denk <wd@denx.de>
14333Date: Mon Jul 7 00:45:03 2008 +0200
14334
14335 SH: fix out of tree building
14336
14337 Signed-off-by: Wolfgang Denk <wd@denx.de>
14338
14339commit 9047bfa1e737d787be460387dd6f45737eeceb10
14340Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14341Date: Thu Jul 3 23:16:06 2008 +0900
14342
14343 net: smc911x: Fix typo
14344
14345 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14346
14347commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
14348Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
14349Date: Wed Jul 2 18:54:08 2008 +0200
14350
14351 update mvBL-M7 board config
14352
14353 update mvBL-M7 config file to use UBOOT_VERSION and define
14354 CONFIG_HIGH_BATS.
14355
14356 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
14357
14358commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
14359Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14360Date: Mon Jun 30 17:45:01 2008 +0900
14361
14362 net: fix compile problem in smc911x driver.
14363
14364 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14365 Acked-by: Ben Warren <biggerbadderben@gmail.com>
14366
14367commit 9fea65a6c469b1b474b27446feb58738baba2d31
14368Author: Michal Simek <monstr@monstr.eu>
14369Date: Tue Jun 24 09:54:09 2008 +0200
14370
14371 ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
14372
14373 This change helps with better handling with others
14374 Xilinx based platform.
14375
14376 Signed-off-by: Michal Simek <monstr@monstr.eu>
14377 Acked-by: Stefan Roese <sr@denx.de>
14378
14379commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
14380Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14381Date: Tue Jun 17 13:07:11 2008 +0900
14382
14383 net: ne2000: Move dev_addr variable from grobal to local.
14384
14385 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14386 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14387
14388commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
14389Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14390Date: Tue Jun 17 13:07:15 2008 +0900
14391
14392 net: ne2000: Fix compile error of NE2000
14393
14394 If enable DEBUG, can not compile ne2000 driver.
14395
14396 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14397 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14398
14399commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
14400Author: Ben Warren <biggerbadderben@gmail.com>
14401Date: Mon Jun 23 22:57:27 2008 -0700
14402
14403 Add mechanisms for CPU and board-specific Ethernet initialization
14404
14405 This patch is the first step in cleaning up net/eth.c, by moving Ethernet
14406 initialization to CPU or board-specific code. Initial implementation is
14407 only on the Freescale TSEC controller, but others will be added soon.
14408
14409 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14410
14411commit 7754f2be5d1835d263aad21b5a629526f3e680b0
14412Author: Wolfgang Denk <wd@denx.de>
14413Date: Sun Jul 6 01:21:46 2008 +0200
14414
14415 include/sha256.h: fix file permissions.
14416
14417 Signed-off-by: Wolfgang Denk <wd@denx.de>
14418
14419commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
14420Author: Patrice Vilchez <patrice.vilchez@atmel.com>
14421Date: Tue May 27 11:15:29 2008 +0200
14422
14423 [AT91SAM9] Fix NAND FLASH timings
14424
14425 Fix NAND FLASH timings for at91sam9x evaluation kits.
14426
14427 New timings are based on application note
14428 "NAND Flash Support on AT91SAM9 Microcontrollers" available at
14429 http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
14430
14431 Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
14432 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14433 Acked-by: Stelian Pop <stelian@popies.net>
14434
14435commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
14436Author: Stelian Pop <stelian@popies.net>
14437Date: Thu May 22 00:15:40 2008 +0200
14438
14439 Fix boot from NOR due to incorrect reset delay.
14440
14441 AT91 RSTC registers are battery-backuped, so their values
14442 are not reset across power cycles. One of those registers,
14443 the AT91_RSTC_MR register, is being modified by U-Boot, in
14444 the ethernet initialisation routine, to generate a 500ms
14445 user reset.
14446
14447 Unfortunately, this value is not being restored afterwards,
14448 causing subsequent resets to also last for 500ms.
14449
14450 This long reset sequence causes problems (at least) in the
14451 boot sequence from NOR: by the time the CPU tries to load
14452 a program from the NOR flash, the latter is still in reset
14453 and not yet available.
14454
14455 Additionaly, this patch fixes a bug in the original code which
14456 caused the reset delay to last for 2s instead of 500ms.
14457
14458 Signed-off-by: Stelian Pop <stelian@popies.net>
14459 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14460
14461commit f492dd636fbbae529e17533995bc6e5813c007f6
14462Author: Wolfgang Denk <wd@denx.de>
14463Date: Fri Jul 4 20:11:49 2008 +0200
14464
14465 Update CHANGELOG
14466
14467 Signed-off-by: Wolfgang Denk <wd@denx.de>
14468
Wolfgang Denkf492dd62008-07-04 20:11:49 +020014469commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
14470Author: Wolfgang Denk <wd@denx.de>
14471Date: Fri Jul 4 20:07:35 2008 +0200
14472
14473 CCM/SCM boards: fix out of tree building
14474
14475 Signed-off-by: Wolfgang Denk <wd@denx.de>
14476
14477commit ab4c3a490df9a964711556d2a05b0c787db45fde
14478Author: Wolfgang Denk <wd@denx.de>
14479Date: Thu Jul 3 23:22:27 2008 +0200
14480
14481 SCM board: fix build errors.
14482
14483 Signed-off-by: Wolfgang Denk <wd@denx.de>
14484
14485commit a566466f17ba0e2d2b6c250e77da678fb932470d
14486Author: Wolfgang Denk <wd@denx.de>
14487Date: Thu Jul 3 23:06:36 2008 +0200
14488
14489 IAD210 board: fix ``"ALIGN" redefined'' warning.
14490
14491 Signed-off-by: Wolfgang Denk <wd@denx.de>
14492
14493commit ad756314797c16fa5dca23e115aab881011f164f
14494Author: Wolfgang Denk <wd@denx.de>
14495Date: Thu Jul 3 23:00:24 2008 +0200
14496
14497 CCM board: fix build errors.
14498
14499 Signed-off-by: Wolfgang Denk <wd@denx.de>
14500
Wolfgang Denk4188f042008-07-10 01:13:30 +020014501commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
14502Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
14503Date: Wed Jul 2 18:54:08 2008 +0200
14504
14505 update mvBL-M7 board config
14506
14507 update mvBL-M7 config file to use UBOOT_VERSION.
14508
14509 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
14510 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14511
Wolfgang Denkf492dd62008-07-04 20:11:49 +020014512commit ced209c50e80c25f13c083099b05044048d21f4f
14513Author: Wolfgang Denk <wd@denx.de>
14514Date: Thu Jul 3 22:39:21 2008 +0200
14515
14516 sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
14517
14518 Signed-off-by: Wolfgang Denk <wd@denx.de>
14519
14520commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
14521Author: Wolfgang Denk <wd@denx.de>
14522Date: Thu Jul 3 22:34:08 2008 +0200
14523
14524 Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
14525
14526 Signed-off-by: Wolfgang Denk <wd@denx.de>
14527
14528commit 730f298485984b011b6ee8f4acb511cb45a843dd
14529Author: Wolfgang Denk <wd@denx.de>
14530Date: Thu Jul 3 22:04:17 2008 +0200
14531
14532 lmb: fix "implicit declaration of function 'lmb_free'" warning
14533
14534 Signed-off-by: Wolfgang Denk <wd@denx.de>
14535
14536commit 322ef5e28d2dc62571afc699b00add22a8e006e4
14537Author: Wolfgang Denk <wd@denx.de>
14538Date: Wed Jul 2 23:53:23 2008 +0200
14539
14540 Cleanup: remove redundant deleting on *~ files
14541
14542 Signed-off-by: Wolfgang Denk <wd@denx.de>
14543
14544commit c8a3b109f07f02342d097b30908965f7261d9f15
14545Author: Wolfgang Denk <wd@denx.de>
14546Date: Wed Jul 2 23:49:18 2008 +0200
14547
14548 Cleanup out-or-tree building for some boards (.depend)
14549
14550 Signed-off-by: Wolfgang Denk <wd@denx.de>
14551
14552commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
14553Author: Wolfgang Denk <wd@denx.de>
14554Date: Wed Jul 2 23:38:50 2008 +0200
14555
14556 Cleanup: fix out-of-tree building for some boards
14557
14558 Signed-off-by: Wolfgang Denk <wd@denx.de>
14559
14560commit 461fa68d20861811487944d22291db5a13410e20
14561Author: Wolfgang Denk <wd@denx.de>
14562Date: Wed Jul 2 23:00:14 2008 +0200
14563
14564 Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
14565
14566 Signed-off-by: Wolfgang Denk <wd@denx.de>
14567
14568commit 5981ebd32017e062b08aa6747cf591276f2db779
14569Author: Detlev Zundel <dzu@denx.de>
14570Date: Fri Jun 20 22:26:24 2008 +0200
14571
14572 fdt: Fix typo in variable name.
14573
14574 Signed-off-by: Detlev Zundel <dzu@denx.de>
14575
14576commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
14577Author: Gary Jennejohn <garyj@denx.de>
14578Date: Thu Jun 19 11:11:19 2008 +0200
14579
14580 Add logos for RRvision board
14581
14582 Signed-off-by: Gary Jennejohn <garyj@denx.de>
14583
14584commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
14585Author: Esben Haabendal <EsbenHaabendal@gmail.com>
14586Date: Wed Jun 18 11:03:57 2008 +0200
14587
14588 mpc8260: add fdt_fixup_ethernet support
14589
14590 Add support for updating mac-address and local-mac-address in fdt for
14591 all MPC8260 targets.
14592
14593 Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
14594
14595commit f6a69559d64498a04e1e0b087a9b920e5775f866
14596Author: Steven A. Falco <sfalco@harris.com>
14597Date: Thu Jun 12 13:24:42 2008 -0400
14598
14599 cmd_nvedit.c: clean up syntax highlighting
14600
14601 My text-editor (vim) has a bit of trouble syntax-highlighting the
14602 cmd_nvedit.c file, because it apparently does not parse C
14603 ifdef/else/endif. The following patch does not change the behavior of
14604 the code at all, but does allow the editor to properly
14605 syntax-highlight the file.
14606
14607 Signed-off-by: Steve Falco <sfalco@harris.com>
14608
14609commit 75678c807a6272ecc5541eb32898c93887f08400
14610Author: Steven A. Falco <sfalco@harris.com>
14611Date: Thu Jun 12 13:22:12 2008 -0400
14612
14613 Make setenv() return status
14614
14615 Currently, the setenv function does not return an error code.
14616 This patch allows to test for errors.
14617
14618 Signed-off-by: Steve Falco <sfalco@harris.com>
14619
14620commit 4928e97c8531283ca9b368b7c29a8a12e726562a
14621Author: Kumar Gala <galak@kernel.crashing.org>
14622Date: Wed Jun 11 10:14:06 2008 -0500
14623
14624 PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
14625
14626 fls64, __ilog2_u64, ffs64 are variants that work on an u64,
14627 and fls is used to implement them.
14628
14629 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14630
14631commit 83002a77cbdf383015ca384eff5fa31722d8e571
14632Author: Magnus Lilja <lilja.magnus@gmail.com>
14633Date: Mon Jun 9 22:58:48 2008 +0200
14634
14635 i.MX31: Cleanup comments in lowlevel_init.S.
14636
14637 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
14638
14639commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
14640Author: Ben Warren <biggerbadderben@gmail.com>
14641Date: Sun Jun 8 23:28:33 2008 -0700
14642
14643 Move conditional compilation of MPC8XXX SPI driver to Makefile
14644
14645 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14646
14647commit d92ea21bafb674ee2bf27447970b047845e7b0a2
14648Author: Juergen Kilb <J.Kilb@gmx.de>
14649Date: Sun Jun 8 17:59:53 2008 +0200
14650
14651 i.MX31: fixed CTRL-C detection
14652
14653 The Register URXD contains status information in bits [15..8].
14654 With status bit 15 set, CTRL-C was reported as 0x8003 instead
14655 of 0x03. Therefore CTRL-C was not detected.
14656 To solve this, bits [15..8] were masked out now.
14657
14658 Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
14659 Acked-by: Felix Radensky <felix@embedded-sol.com>
14660
Wolfgang Denk699f0512008-07-15 22:22:44 +020014661commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
14662Author: Stefan Roese <sr@denx.de>
14663Date: Tue Jul 1 17:03:19 2008 +0200
14664
14665 ppc4xx: Fix 460EX/GT PCIe port initialization
14666
14667 This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
14668 configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
14669 this out.
14670
14671 Signed-off-by: Stefan Roese <sr@denx.de>
14672
Wolfgang Denkf492dd62008-07-04 20:11:49 +020014673commit b571afde0295b007a45055ee49f8822c753a5651
14674Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14675Date: Sat Jun 7 12:29:52 2008 +0200
14676
14677 add SHA256 support
14678
14679 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14680 Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
14681
14682commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
14683Author: Marian Balakowicz <m8@semihalf.com>
14684Date: Fri Jun 6 23:07:40 2008 +0200
14685
14686 Delay FIT format check on sector based devices
14687
14688 Global FIT image operations like format check cannot be performed on
14689 a first sector data, defer them to the point when whole FIT image was
14690 uploaded to a system RAM.
14691
14692 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
14693 Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
14694 NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
14695
14696commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
14697Author: Dave Liu <r63238@freescale.com>
14698Date: Tue Jun 3 17:38:19 2008 +0800
14699
14700 sata: wait for device updating signature to host
14701
14702 The driver need wait for the device updating signature to host.
14703 If we don't wait for it, the driver can not detect the device(disk)
14704 when the system powers up.
14705
14706 Signed-off-by: Dave Liu <daveliu@freescale.com>
14707
Wolfgang Denk4188f042008-07-10 01:13:30 +020014708commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
14709Author: Stefan Roese <sr@denx.de>
14710Date: Sat Jun 28 14:56:17 2008 +0200
14711
14712 ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
14713
14714 This patch implements a fix provided by AMCC so that the lockup upon
14715 simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
14716 anymore:
14717
14718 Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
14719 (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
14720 USB 2.0 host and SATA.
14721
14722 This errata is not officially available yet. I'll update the comment
14723 to add the errata number later.
14724
14725 Signed-off-by: Stefan Roese <sr@denx.de>
14726
Wolfgang Denkf492dd62008-07-04 20:11:49 +020014727commit 8b616edb118e37d05f6401389eaee1c636b22828
14728Author: Stuart Wood <stuart.wood@labxtechnologies.com>
14729Date: Mon Jun 2 16:42:19 2008 -0400
14730
14731 serial_pl010.c: add watchdog support
14732
14733 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
14734
14735commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
14736Author: Stuart Wood <stuart.wood@labxtechnologies.com>
14737Date: Mon Jun 2 16:40:08 2008 -0400
14738
14739 jffs2_1pass.c: add watchdog support
14740
14741 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
14742
14743commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
14744Author: Sascha Laue <sascha.laue@liebherr.com>
14745Date: Fri May 30 09:48:14 2008 +0200
14746
14747 Configure DSP POST; add watchdog reset to diag command
14748
14749 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
14750
14751commit f13526517859bf6b573e23ff47199e107d1009b5
14752Author: Tor Krill <tor@excito.com>
14753Date: Thu May 29 10:40:17 2008 +0200
14754
14755 Add sata sil3114 support
14756
14757 Signed-off-by: Tor Krill <tor@excito.com>
14758
14759commit e093a247628228100f405b6d7f6b1bfc16141938
14760Author: Wolfgang Denk <wd@denx.de>
14761Date: Sat Jun 28 23:34:37 2008 +0200
14762
14763 Coding Style Cleanup
14764
14765 Signed-off-by: Wolfgang Denk <wd@denx.de>
14766
14767commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
14768Author: Wolfgang Denk <wd@denx.de>
14769Date: Sat Jun 28 23:16:01 2008 +0200
14770
14771 Update CHANGELOG
14772
14773 Signed-off-by: Wolfgang Denk <wd@denx.de>
14774
Wolfgang Denk01db2322008-06-28 23:16:01 +020014775commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
14776Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14777Date: Wed May 21 13:58:41 2008 -0400
14778
14779 ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
14780
14781 This patch adds support for the Lyrtech SFF-SDR board,
14782 based on the TI DaVinci architecture (ARM926EJS).
14783
14784 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14785 Signed-off-by: Philip Balister <philip@balister.org>
14786 Signed-off-by: Wolfgang Denk <wd@denx.de>
14787
14788commit 341188b9ccaa8d4462d772cc067aca8d7618633a
14789Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14790Date: Thu May 22 11:09:59 2008 +0200
14791
14792 MMC: Consolidate MMC/SD command definitions
14793
14794 This moves the MMC and SD Card command definitions from
14795 include/asm/arch/mmc.h into include/mmc.h. These definitions are
14796 given by the MMC and SD Card standards, not by any particular
14797 architecture.
14798
14799 There's a lot more room for consolidation in the MMC drivers which
14800 I'm hoping to get done eventually, but this patch is a start.
14801
14802 Compile-tested for all avr32 boards as well as lpc2292sodimm and
14803 lubbock. This should cover all three mmc drivers in the tree.
14804
14805 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14806
14807commit fa60edfc4c952626e048c0e065f654b3c1822fa5
14808Author: Kyungmin Park <kmpark@infradead.org>
14809Date: Wed May 21 14:38:08 2008 +0900
14810
14811 Use better Ethernet timings for apollon board
14812
14813 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
14814
14815commit 41c5eaa7253ed82bbae1eda5667755872c615164
14816Author: Andy Fleming <afleming@freescale.com>
14817Date: Mon Jun 16 13:58:56 2008 -0500
14818
14819 Resize device tree to allow space for board changes and the chosen node
14820
14821 Current code requires that a compiled device tree have space added to the end to
14822 leave room for extra nodes added by board code (and the chosen node). This
14823 requires that device tree creators anticipate how much space U-Boot will add to
14824 the tree, which is absurd. Ideally, the code would resize and/or relocate the
14825 tree when it needed more space, but this would require a systemic change to the
14826 fdt code, which is non-trivial. Instead, we resize the tree inside
14827 boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
14828 where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
14829
14830 Signed-off-by: Andy Fleming <afleming@freescale.com>
14831
14832commit 7570a9941fc565922078679a72d246fe208d696d
14833Author: Andy Fleming <afleming@freescale.com>
14834Date: Mon Jun 16 13:58:55 2008 -0500
14835
14836 Fix an underflow bug in __lmb_alloc_base
14837
14838 __lmb_alloc_base can underflow if it fails to find free space. This was fixed
14839 in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc. This patch
14840 merely updates __lmb_alloc_base to resemble the current version in Linux.
14841
14842 Signed-off-by: Andy Fleming <afleming@freescale.com>
14843
14844commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
14845Author: Andy Fleming <afleming@freescale.com>
14846Date: Mon Jun 16 13:58:54 2008 -0500
14847
14848 Add lmb_free
14849
14850 lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
14851 lmb_reserve to temporarily reserve some memory.
14852
14853 Signed-off-by: Andy Fleming <afleming@freescale.com>
14854
14855commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
14856Author: Andy Fleming <afleming@freescale.com>
14857Date: Mon Jun 16 13:58:53 2008 -0500
14858
14859 Add ALIGN() macro
14860
14861 ALIGN() returns the smallest aligned value greater than the passed
14862 in address or size. Taken from Linux.
14863
14864 Signed-off-by: Andy Fleming <afleming@freescale.com>
14865
Wolfgang Denk4188f042008-07-10 01:13:30 +020014866commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
14867Author: Stefan Roese <sr@denx.de>
14868Date: Tue Jun 24 17:15:22 2008 +0200
14869
14870 ppc4xx: Fix compilation problems with phys_size_t
14871
14872 This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
14873 board specific files where it has been missing.
14874
14875 Signed-off-by: Stefan Roese <sr@denx.de>
14876
Wolfgang Denk01db2322008-06-28 23:16:01 +020014877commit 28eab0d77352b84885f938759bf2612b7bf0bc44
14878Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
14879Date: Mon May 19 12:26:38 2008 +0200
14880
14881 Conditionally add -fno-stack-protector to CFLAGS
14882
14883 When compile-testing on powerpc, I get errors like this:
14884
14885 net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
14886
14887 This seems to be because -fstack-protector is on by default, so
14888 let's explicitly disable it on all architectures that support the
14889 option.
14890
14891 The Ubuntu toolchain is affected by this problem, and according to
14892 Mike Frysinger, Gentoo has been running with SSP enabled for years.
14893 More and more distros are turning SSP on by default, so this problem
14894 is likely to get worse in the future.
14895
14896 Also, powerpc just happens to be one of the arches I do
14897 compile-testing on. There may be other arches affected by this too.
14898
14899 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
14900
14901commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
14902Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14903Date: Sun May 18 19:09:52 2008 +0200
14904
14905 pcmcia/ti_pci1410a: Move compile condition to the Makefile
14906
14907 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14908
14909commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
14910Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14911Date: Sun May 18 19:09:51 2008 +0200
14912
14913 pxa_pcmcia: Move compile condition to the Makefile
14914
14915 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14916
14917commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
14918Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14919Date: Sun May 18 19:09:50 2008 +0200
14920
14921 marabun_pcmcia: Move compile condition to the Makefile
14922
14923 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14924
Wolfgang Denk4188f042008-07-10 01:13:30 +020014925commit 6a19c46cae43c16c528eddefae3db97134f1915d
14926Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
14927Date: Mon Jun 23 13:25:34 2008 +0200
14928
14929 fix non-working mvBL-M7
14930
14931 Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
14932
14933 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
14934 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14935
14936commit 846f1574ddddeda2bc227655e687308695f41cdc
14937Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
14938Date: Mon Jun 23 11:40:56 2008 +0200
14939
14940 fix system config overwrite @ MPC834x and MPC8313
14941
14942 During 83xx setup the "System I/O configuration register high" gets
14943 overwritten with user defined value if CFG_SICRH is defined.
14944
14945 Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
14946 must keep their reset value regardless of configuration.
14947
14948 On my board (using RGMII) those bits are set after reset - yet it's
14949 unclear where they come from.
14950
14951 The patch keeps both bits on MPC834x and MPC8313.
14952
14953 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
14954 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14955
14956commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
14957Author: Kim Phillips <kim.phillips@freescale.com>
14958Date: Tue Jun 17 17:45:27 2008 -0500
14959
14960 mpc83xx: move CPU_TYPE_ENTRY over to processor.h
14961
14962 to avoid this:
14963
14964 cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
14965 In file included from cpu.c:33:
14966 /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
14967
14968 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14969
14970commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
14971Author: Stefan Roese <sr@denx.de>
14972Date: Mon Jun 23 11:15:09 2008 +0200
14973
14974 ppc4xx: Fix problem in gpio_config()
14975
14976 As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
14977 left by one. So the additional shift is bogus.
14978
14979 Signed-off-by: Stefan Roese <sr@denx.de>
14980
14981commit 40777812316fc252c941665c0f60c148fd79d50f
14982Author: Detlev Zundel <dzu@denx.de>
14983Date: Fri Jun 20 22:24:05 2008 +0200
14984
14985 fdt: Fix typo in variable name.
14986
14987 Signed-off-by: Detlev Zundel <dzu@denx.de>
14988
14989commit 5f723a3b98c630bde33de74351f2121691fdef14
14990Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14991Date: Fri Jun 20 10:41:05 2008 +0200
14992
14993 avr32: Enable SPI flash support on ATNGW100
14994
14995 The ATNGW100 has 8MB DataFlash on board. Give users access to it through
14996 the new SPI flash framework.
14997
14998 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14999
15000commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
15001Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
15002Date: Fri Jun 20 12:44:28 2008 +0200
15003
15004 avr32: Fix SPI portmux initialization
15005
15006 Use the new GPIO manipulation functions to set up the chip select lines,
15007 and make sure both busses use GPIO for chip select control.
15008
15009 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
15010
15011commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
15012Author: Peter Ma <pma@mediamatech.com>
15013Date: Sun Jun 1 22:59:24 2008 -0700
15014
15015 avr32: Add GPIO manipulation functions
15016
15017 Adds GPIO manipulation functions for AVR32 AP7 platform.
15018
15019 Signed-off-by: Peter Ma <pma@mediamatech.com>
15020 [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
15021 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
15022
Wolfgang Denk01db2322008-06-28 23:16:01 +020015023commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
15024Author: Wolfgang Grandegger <wg@grandegger.com>
15025Date: Thu Jun 5 13:02:30 2008 +0200
15026
15027 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
15028
15029 This patch is based on the following patch sent a few minutes ago:
15030 "NAND FSL UPM: driver re-write using the hwcontrol callback"
15031 It is untested, of course. Anton, could you please give it a try.
15032
15033 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15034 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15035
15036commit 96026d42fa4e646d28318c0a1438aac4b2017909
15037Author: Anatolij Gustschin <agust@denx.de>
15038Date: Thu Jun 12 12:40:11 2008 +0200
15039
15040 Fix 4xx build issue
15041
15042 Building for 4xx doesn't work since commit 4dbdb768:
15043
15044 In file included from 4xx_pcie.c:28:
15045 include/asm/processor.h:971: error: expected ')' before 'ver'
15046 make[1]: *** [4xx_pcie.o] Error 1
15047
15048 This patch fixes the problem.
15049
15050 Signed-off-by: Anatolij Gustschin <agust@denx.de>
15051 Acked-by: Stefan Roese <sr@denx.de>
15052 Acked-by: Kumar Gala <galak@kernel.crashing.org>
15053
Wolfgang Denk699f0512008-07-15 22:22:44 +020015054commit a036b0443657fe0f4773786de9092251869f08ac
15055Author: Kumar Gala <galak@kernel.crashing.org>
15056Date: Thu Jun 19 01:45:50 2008 -0500
15057
15058 MPC8610HPCD: Report board id, board version and fpga version.
15059
15060 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15061
15062commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
15063Author: Kumar Gala <galak@kernel.crashing.org>
15064Date: Thu Jun 19 01:45:27 2008 -0500
15065
15066 MPC8641HPCN: Report board id, board version and fpga version.
15067
15068 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15069
Wolfgang Denk01db2322008-06-28 23:16:01 +020015070commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
15071Author: Stefan Roese <sr@denx.de>
15072Date: Mon Jun 16 10:40:02 2008 +0200
15073
15074 cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
15075
15076 This patch simplifies flash_toggle() (AMD commandset), which is used to
15077 detect if a FLASH device is still busy with erase/program operations. On
15078 800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
15079 did not detect the busy state reliably, resulting in non erased sectors
15080 etc. This patch now simplifies this function by "just" comparing the
15081 complete data-word instead of ANDing it with the command-word (0x40)
15082 before the compatison. It is done the same way in the Linux implementation
15083 chip_ready() in cfi_cmdset_0002.c.
15084
15085 Signed-off-by: Stefan Roese <sr@denx.de>
15086
15087commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
15088Author: Philip Balister <philip@balister.org>
15089Date: Mon Jun 16 08:58:07 2008 -0400
15090
15091 NAND: Add missing declaration to non-redundant saveenv().
15092
15093 Signed-off-by: Scott Wood <scottwood@freescale.com>
15094
15095commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
15096Author: Wolfgang Grandegger <wg@grandegger.com>
15097Date: Mon Jun 2 15:09:55 2008 +0200
15098
15099 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
15100
15101 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15102 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15103 Signed-off-by: Scott Wood <scottwood@freescale.com>
15104
15105commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
15106Author: Stefan Roese <sr@denx.de>
15107Date: Tue Jun 10 15:34:11 2008 +0200
15108
15109 ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
15110
15111 This patch disables the square wave output of the M41T62 RTC used on
15112 Canyonlands & Glacier. Here the explanation:
15113
15114 The serial real-time clock part used in the design is an
15115 STMicro M41T62. This part has a full-time 32KHz square wave
15116 output that is connected to the TmrClk input to the
15117 processor. The default state for this square wave output is
15118 enabled so the output runs continuously when the board is
15119 powered normally and also from the battery. The TmrClk input
15120 to the processor goes to ground when the power is removed
15121 from the board/processor, and therefore the running square
15122 wave output is driving ground which drains the battery quickly.
15123
15124 Signed-off-by: Stefan Roese <sr@denx.de>
15125
15126commit a94f22f08f280905926219e568568964cb9eeb9d
15127Author: Andy Fleming <afleming@freescale.com>
15128Date: Wed Jun 11 18:10:20 2008 -0500
15129
15130 Fix build issue with string.h and linux/string.h
15131
15132 This commit:
15133 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
15134 Author: Wolfgang Denk <wd@denx.de>
15135 Date: Fri Jun 6 14:28:14 2008 +0200
15136
15137 tools/mkimage: fix compiler warnings on some systems.
15138
15139 Broke building on some systems, because the host's string.h was interfering
15140 with u-boot's linux/string.h. It doesn't look like we need the u-boot one if
15141 we're building for the host, so now we only include when building inside
15142 u-boot.
15143
15144 Signed-off-by: Andy Fleming <afleming@freescale.com>
15145
15146commit 9973e3c614721bbf169882ffc3be266a6611cd60
15147Author: Becky Bruce <becky.bruce@freescale.com>
15148Date: Mon Jun 9 16:03:40 2008 -0500
15149
15150 Change initdram() return type to phys_size_t
15151
15152 This patch changes the return type of initdram() from long int to phys_size_t.
15153 This is required for a couple of reasons: long int limits the amount of dram
15154 to 2GB, and u-boot in general is moving over to phys_size_t to represent the
15155 size of physical memory. phys_size_t is defined as an unsigned long on almost
15156 all current platforms.
15157
15158 This patch *only* changes the return type of the initdram function (in
15159 include/common.h, as well as in each board's implementation of initdram). It
15160 does not actually modify the code inside the function on any of the platforms;
15161 platforms which wish to support more than 2GB of DRAM will need to modify
15162 their initdram() function code.
15163
15164 Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
15165 MPC8641HPCN.
15166
15167 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
15168
15169commit 391fd93ab23e15ab3dd58a54f5b609024009c378
15170Author: Becky Bruce <becky.bruce@freescale.com>
15171Date: Mon Jun 9 20:37:18 2008 -0500
15172
15173 Change lmb to use phys_size_t/phys_addr_t
15174
15175 This updates the lmb code to use phys_size_t
15176 and phys_addr_t instead of unsigned long. Other code
15177 which interacts with this code, like getenv_bootm_size()
15178 is also updated.
15179
15180 Booted on MPC8641HPCN, build-tested ppc, arm, mips.
15181
15182 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
15183
15184commit 61b09fc2952dc636017df4e7970e3de132276ba1
15185Author: Becky Bruce <becky.bruce@freescale.com>
15186Date: Mon Jun 9 20:37:17 2008 -0500
15187
15188 Change print_size to take phys_size_t
15189
15190 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
15191
15192commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
15193Author: Becky Bruce <becky.bruce@freescale.com>
15194Date: Mon Jun 9 20:37:16 2008 -0500
15195
15196 Change bd/gd memsize/ram_size to be phys_size_t.
15197
15198 Currently, both are defined as an unsigned long, but
15199 should be phys_size_t. This should result in no real change,
15200 since phys_size_t is currently an unsigned long for all the
15201 default configs. Also add print_lnum to cmd_bdinfo to deal
15202 with the potentially wider memsize.
15203
15204 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
15205
15206commit ba04f7010958e88a8910f2a123fee53fdc72e013
15207Author: Kumar Gala <galak@kernel.crashing.org>
15208Date: Tue Jun 10 16:16:02 2008 -0500
15209
15210 FSL LAW: Add new interface to use the last free LAW
15211
15212 LAWs have the concept of priority so its useful to be able to allocate
15213 the lowest (highest number) priority. We will end up using this with the
15214 new DDR code.
15215
15216 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15217
15218commit 859a86a25c569d3665ff413d1d923394b8a961f3
15219Author: Kumar Gala <galak@kernel.crashing.org>
15220Date: Wed Jun 11 00:51:45 2008 -0500
15221
15222 85xx/86xx: Move to dynamic mgmt of LAWs
15223
15224 With the new LAW interface (set_next_law) we can move to letting the
15225 system allocate which LAWs are used for what purpose. This makes life
15226 a bit easier going forward with the new DDR code.
15227
15228 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15229 Signed-off-by: Andy Fleming <afleming@freescale.com>
15230 Acked-by: Jon Loeliger <jdl@freescale.com>
15231 Acked-by: Becky Bruce <becky.bruce@freescale.com>
15232
15233commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
15234Author: Kumar Gala <galak@kernel.crashing.org>
15235Date: Wed Jun 11 00:44:10 2008 -0500
15236
15237 FSL LAW: Keep track of LAW allocations
15238
15239 Make it so we keep track of which LAWs have allocated and provide
15240 a function (set_next_law) which can allocate a LAW for us if one is
15241 free.
15242
15243 In the future we will move to doing more "dynamic" LAW allocation
15244 since the majority of users dont really care about what LAW number
15245 they are at.
15246
15247 Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
15248
15249 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15250 Signed-off-by: Andy Fleming <afleming@freescale.com>
15251
15252commit ddde74a159caa6e18b481fec01d40b885aebb566
15253Author: Kumar Gala <galak@kernel.crashing.org>
15254Date: Mon Jun 9 22:31:57 2008 -0500
15255
15256 85xx: remove dummy board_early_init_f
15257
15258 A number of board ports have empty version of board_early_init_f
15259 for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
15260
15261 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15262
15263commit 81e56e9af0d43712db8efb843606a8d62eab454f
15264Author: Kumar Gala <galak@kernel.crashing.org>
15265Date: Mon Jun 9 18:55:38 2008 -0500
15266
15267 MPC8544DS: Update config.h
15268
15269 * Enable flash progress
15270 * remove CLEAR_LAW0 since we dont really use it
15271
15272 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15273
15274commit 978e81604c1b28526ed580df0fbe64eb8384e94f
15275Author: Kumar Gala <galak@kernel.crashing.org>
15276Date: Mon Jun 9 13:37:24 2008 -0500
15277
15278 85xx: Remove unused and unconfigured memory test code.
15279
15280 Remove unused and unconfigured DDR test code from FSL 85xx boards.
15281 Besides, other common code exists.
15282
15283 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15284
15285commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
15286Author: Sergei Poselenov <sposelenov@emcraft.com>
15287Date: Fri Jun 6 15:42:45 2008 +0200
15288
15289 Socrates: Added FPGA base address update in FDT.
15290
15291 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
15292
15293commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
15294Author: Sergei Poselenov <sposelenov@emcraft.com>
15295Date: Fri Jun 6 15:42:44 2008 +0200
15296
15297 Socrates: NAND support added. Changed the U-Boot base address and
15298
15299 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
15300
15301commit 248ae5cfc8bf69074d1da099dc495d8e06070547
15302Author: Sergei Poselenov <sposelenov@emcraft.com>
15303Date: Fri Jun 6 15:42:43 2008 +0200
15304
15305 NAND: Added support for 128-bit OOB, adapted
15306
15307 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
15308
15309commit 31ca0208612f2eb57690110d7c2815953650e47b
15310Author: Sergei Poselenov <sposelenov@emcraft.com>
15311Date: Fri Jun 6 15:42:42 2008 +0200
15312
15313 Socrates: added missed file with UPMA configuration data.
15314
15315 Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
15316
15317commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
15318Author: Sergei Poselenov <sposelenov@emcraft.com>
15319Date: Fri Jun 6 15:42:41 2008 +0200
15320
15321 Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
15322
15323 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
15324
15325commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
15326Author: Sergei Poselenov <sposelenov@emcraft.com>
15327Date: Fri Jun 6 15:42:40 2008 +0200
15328
15329 Added the upmconfig() function for 85xx.
15330
15331 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
15332 Signed-off-by: Andy Fleming <afleming@freescale.com>
15333
15334commit d39e68514ff943930ee692cff3fde03532eb7fec
15335Author: Sergei Poselenov <sposelenov@emcraft.com>
15336Date: Fri Jun 6 15:42:39 2008 +0200
15337
15338 Socrates: config file cleanup.
15339
15340 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
15341
15342commit e8cc3f04b124f757af4528206e60d8eb715ae083
15343Author: Wolfgang Grandegger <wg@grandegger.com>
15344Date: Thu Jun 5 13:12:10 2008 +0200
15345
15346 TQM85xx: Change memory map to support Flash memory > 128 MiB
15347
15348 Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
15349 memory. The current memory map only supports up to 128 MiB Flash.
15350 This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
15351 set, up to 1 GiB flash is supported. To achieve this, the memory
15352 map has to be adjusted in great parts (for example the CCSRBAR is
15353 moved from 0xE0000000 to 0xA0000000).
15354
15355 If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
15356 memory map also has to be considered in the kernel (changed
15357 CCSRBAR address, changed PCI IO base address, ...). Please use
15358 an appropriate Flat Device Tree blob (tqm8548.dtb).
15359
15360 Signed-off-by: Martin Krause <martin.krause@tqs.de>
15361 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15362
15363commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
15364Author: Wolfgang Grandegger <wg@grandegger.com>
15365Date: Thu Jun 5 13:12:09 2008 +0200
15366
15367 TQM85xx: NAND support via local bus UPMB
15368
15369 This patch adds support for NAND FLASH on the TQM8548. It is disabled by
15370 default and can be enabled for the TQM8548 modules. It is now based on
15371 the re-written FSL NAND UPM driver. A patch has been posted earlier today
15372 with the subject:
15373
15374 "NAND FSL UPM: driver re-write using the hwcontrol callback"
15375
15376 Note that the R/B pin is not supported by that module requiring to use
15377 the specified maximum delay time.
15378
15379 Note: With NAND support enabled the size of the U-Boot image exceeds
15380 256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
15381 doubling the image size :-(.
15382
15383 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
15384 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15385
15386commit b9e8078bb3f3c48111a7081e27279938c3a445e1
15387Author: Wolfgang Grandegger <wg@grandegger.com>
15388Date: Thu Jun 5 13:12:08 2008 +0200
15389
15390 TQM8548: PCI express support
15391
15392 This patch adds support for PCI express cards. The board support
15393 now uses common FSL PCI init code, for both, PCI and PCIe on all
15394 TQM85xx modules.
15395
15396 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
15397 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15398
15399commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
15400Author: Wolfgang Grandegger <wg@grandegger.com>
15401Date: Thu Jun 5 13:12:07 2008 +0200
15402
15403 TQM8548: Basic support for the TQM8548 modules
15404
15405 This patch adds basic support for the TQM8548 module from TQ-Components
15406 (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
15407 eTSEC 3 and 4
15408
15409 Furthermore Flash buffer write has been enabled to speed up output to
15410 the Flash by approx. a factor of 10.
15411
15412 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
15413 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15414
15415commit 25991353204c78b094c3c1fec90182dcd607ab8f
15416Author: Wolfgang Grandegger <wg@grandegger.com>
15417Date: Thu Jun 5 13:12:06 2008 +0200
15418
15419 TQM85xx: Support for Flat Device Tree
15420
15421 This patch adds support for Linux kernels using the Flat Device Tree.
15422 It also re-defines the default environment settings for booting Linux
15423 with the FDT blob.
15424
15425 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15426
15427commit d9ee843d54c54776e1fdb86336ce554906a87331
15428Author: Wolfgang Grandegger <wg@grandegger.com>
15429Date: Thu Jun 5 13:12:05 2008 +0200
15430
15431 TQM85xx: Support for Intel 82527 compatible CAN controller
15432
15433 This patch adds initialization of the UPMC RAM to support up to two
15434 Intel 82527 compatible CAN controller on the TQM85xx modules.
15435
15436 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
15437 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15438
15439commit 518d5cfe72916323c746af1647764459914f555f
15440Author: Wolfgang Grandegger <wg@grandegger.com>
15441Date: Thu Jun 5 13:12:04 2008 +0200
15442
15443 TQM85xx: Bugfix in the SDRAM initialisation
15444
15445 The CS0_BNDS register is now set according to the detected
15446 memory size.
15447
15448 Signed-off-by Martin Krause <martin.krause@tqs.de>
15449
15450commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
15451Author: Wolfgang Grandegger <wg@grandegger.com>
15452Date: Thu Jun 5 13:12:03 2008 +0200
15453
15454 TQM85xx: Fix chip select configuration for second FLASH bank
15455
15456 This patch fixes the re-calculation of the automatic chip select
15457 configuration for boards with two populated FLASH banks.
15458
15459 Signed-off-by: Martin Krause <martin.krause@tqs.de>
15460
15461commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
15462Author: Wolfgang Grandegger <wg@grandegger.com>
15463Date: Thu Jun 5 13:12:02 2008 +0200
15464
15465 TQM85xx: Support for Spansion 'N' type flashes added
15466
15467 The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
15468 than the formerly used 'M' types (S29GLxxxM series), so the flash layout
15469 needs to be changed -> new start address of the environment. The macro
15470 definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
15471 defined for boards with 'N' type flashes.
15472
15473 Signed-off-by: Martin Krause <martin.krause@tqs.de>
15474 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15475
15476commit 5d5bd838f76eade22c0ea40a500389f924d0da36
15477Author: Wolfgang Grandegger <wg@grandegger.com>
15478Date: Thu Jun 5 13:12:01 2008 +0200
15479
15480 TQM85xx: Fix CPM port pin configuration
15481
15482 Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
15483 board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
15484 as serial interface anyway. Worse, on some board variants configuring the
15485 pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
15486
15487 Signed-off-by: Martin Krause <martin.krause@tqs.de>
15488
15489commit b99ba1679e8cd51b023e67098c89e606e47137d2
15490Author: Wolfgang Grandegger <wg@grandegger.com>
15491Date: Thu Jun 5 13:12:00 2008 +0200
15492
15493 TQM85xx: Various coding style fixes
15494
15495 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15496
15497commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
15498Author: Gerald Van Baren <vanbaren@cideas.com>
15499Date: Tue Jun 10 22:15:58 2008 -0400
15500
15501 libfdt: Move the working_fdt pointer to cmd_fdt.c
15502
15503 The working_fdt pointer was declared in common/fdt_support.c but was
15504 not used there. Move it to common/cmd_fdt.c where it is used (it is
15505 also used in lib_ppc/bootm.c).
15506
15507 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
15508
15509commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
15510Author: Kim Phillips <kim.phillips@freescale.com>
15511Date: Tue Jun 10 11:06:17 2008 -0500
15512
15513 fdt: unshadow global working fdt variable
15514
15515 differentiate with local variables of the same name by renaming the
15516 global 'fdt' variable 'working_fdt'.
15517
15518 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15519
15520commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
15521Author: Andy Fleming <afleming@freescale.com>
15522Date: Tue Jun 10 18:49:34 2008 -0500
15523
15524 socrates: Fix PCI clk fix patch
15525
15526 The submitted patch seems to have been more up-to-date, but an older patch was
15527 already in the repository. This patch encompasses the differences
15528
15529 Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
15530
15531 Signed-off-by: Andy Fleming <afleming@freescale.com>
15532
15533commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
15534Author: Wolfgang Grandegger <wg@grandegger.com>
15535Date: Thu Jun 5 13:02:29 2008 +0200
15536
15537 NAND FSL UPM: driver re-write using the hwcontrol callback
15538
15539 This is a re-write of the NAND FSL UPM driver using the more universal
15540 hwcontrol callback (instead of the cmdfunc callback). Here is a brief
15541 list of furher modifications:
15542
15543 - For the time being, the UPM setup writing the UPM array has been
15544 removed from the driver and must now be done by the board specific
15545 code.
15546
15547 - The bus width definition in "struct fsl_upm_nand" is now in bits to
15548 comply with the corresponding Linux driver and 8, 16 and 32 bit
15549 accesses are supported.
15550
15551 - chip->dev_read is only set if fun->dev_ready != NULL, which is
15552 required for boards not connecting the R/B pin.
15553
15554 - A few issue have been fixed with MxMR bit manipulation like in the
15555 corresponding Linux driver.
15556
15557 Note: I think the "io_addr" field of "struct fsl_upm" could be removed
15558 as well, because the address is already determined by
15559 "nand->IO_ADDR_[RW]", but I'm not 100% sure.
15560
15561 This patch has been tested on a TQM8548 modules with the NAND chip
15562 Micron MT29F8G08FABWP.
15563
15564 This patch is based on the following patches posted to this list a few
15565 minutes ago:
15566
15567 PPC: add accessor macros to clear and set bits in one shot
15568 83xx/85xx/86xx: add more MxMR local bus definitions
15569
15570 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15571 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15572
15573commit 6beecfbb542992eede5831240cd58678274683a9
15574Author: Wolfgang Grandegger <wg@grandegger.com>
15575Date: Thu Jun 5 13:11:59 2008 +0200
15576
15577 MPC85xx: Beautify boot output of L2 cache configuration
15578
15579 The boot output is now aligned poperly with other boot output
15580 lines, e.g.:
15581
15582 FLASH: 128 MB
15583 L2: 512 KB enabled
15584
15585 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15586
15587commit 398415114f0a705163a14543e9fef03f734b1ffa
15588Author: Wolfgang Grandegger <wg@grandegger.com>
15589Date: Wed Jun 4 12:45:22 2008 +0200
15590
15591 PPC: add accessor macros to clear and set bits in one shot
15592
15593 PPC: add accessor macros to clear and set bits in one shot
15594
15595 This patch adds macros from linux/include/asm-powerpc/io.h to clear and
15596 set bits in one shot using the in_be32, out_be32, etc. accessor functions.
15597 They are very handy to manipulate bits it I/O registers.
15598
15599 This patch is required for my forthcoming FSL NAND UPM driver re-write and
15600 the support for the TQM8548 module.
15601
15602 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15603
15604commit 4677988c7edc070c3786d3db7994abeca3ab82a0
15605Author: Wolfgang Grandegger <wg@grandegger.com>
15606Date: Wed Jun 4 13:52:17 2008 +0200
15607
15608 TQM: move TQM boards to board/tqc
15609
15610 Move all TQM board directories to the vendor specific directory "tqc"
15611 for modules from TQ-Components GmbH (http://www.tqc.de).
15612
15613 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15614
15615commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
15616Author: Wolfgang Grandegger <wg@grandegger.com>
15617Date: Mon Jun 2 12:09:30 2008 +0200
15618
15619 83xx/85xx/86xx: add more MxMR local bus definitions
15620
15621 83xx/85xx/86xx: add more MxMR local bus definitions
15622
15623 This patch adds more macro definitions for the UPM Machine Mode Registers
15624 They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
15625 common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
15626 required for my forthcoming FSL NAND UPM driver re-write and the support
15627 for the TQM8548 module.
15628
15629 This patch is based on the following two patches from Anton Vorontsov:
15630
15631 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
15632 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
15633
15634 I leave coding style violation fixes, code beautification and name
15635 corrections to somebody else ;-(.
15636
15637 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
15638
15639commit c8c5fc266e4499e283c293ccb972863156aa4134
15640Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15641Date: Thu May 29 18:14:56 2008 +0400
15642
15643 83xx/85xx: further localbus cleanups
15644
15645 Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
15646 from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
15647
15648 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15649
15650commit 42dbd667c88d496882d53e22656e89b654205492
15651Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15652Date: Wed May 28 18:20:15 2008 +0400
15653
15654 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
15655
15656 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
15657 use it on MPC85xx and MPC86xx processors.
15658
15659 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15660
15661commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
15662Author: Kumar Gala <galak@kernel.crashing.org>
15663Date: Thu May 29 11:22:06 2008 -0500
15664
15665 85xx: Add setting of cache props in the device tree.
15666
15667 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15668
15669commit 4dbdb7681e243431530df0725627192a0c4aefda
15670Author: Kumar Gala <galak@kernel.crashing.org>
15671Date: Tue Jun 10 16:53:46 2008 -0500
15672
15673 85xx: expose cpu identification
15674
15675 The current cpu identification code is used just to return the name
15676 of the processor at boot. There are some other locations that the name
15677 is useful (device tree setup). Expose the functionality to other bits
15678 of code.
15679
15680 Also, drop the 'E' suffix and add it on by looking at the SVR version
15681 when we print this out. This is mainly to allow the most flexible use
15682 of the name. The device tree code tends to not care about the 'E' suffix.
15683
15684 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15685
15686commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
15687Author: Kim Phillips <kim.phillips@freescale.com>
15688Date: Tue Jun 10 13:25:24 2008 -0500
15689
15690 mpc83xx: MVBLM7: minor build fixups
15691
15692 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15693
15694commit a1293e549b56da135ef32ffca5b9d35a16aa6802
15695Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
15696Date: Tue Jun 10 09:14:05 2008 +0200
15697
15698 add MPC8343 based board mvBlueLYNX-M7 (board+make files)
15699
15700 Add MPC8343 based board mvBlueLYNX-M7.
15701 It's a single board stereo camera system.
15702 Please read doc/README.mvblm7 for details.
15703
15704 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
15705 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15706
15707commit c005b93925ba49f07da2aa748527996d927e172f
15708Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
15709Date: Tue Jun 10 09:13:16 2008 +0200
15710
15711 add MPC8343 based board mvBlueLYNX-M7 (doc+config)
15712
15713 Add MPC8343 based board mvBlueLYNX-M7.
15714 It's a single board stereo camera system.
15715 Please read doc/README.mvblm7 for details.
15716
15717 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
15718 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15719
15720commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
15721Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15722Date: Thu May 29 18:14:56 2008 +0400
15723
15724 83xx/85xx: further localbus cleanups
15725
15726 move the BRx_* and ORx_* left behind in mpc85xx.h
15727
15728 The same is needed for mpc8xx.h and mpc8260.h (defines are almost
15729 the same, just few differences which needs some attention though).
15730
15731 But the bad news for mpc8xx and mpc8260 is that there are a lot of users
15732 of these defines. So this cleanup I'll leave for the "better times".
15733
15734 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15735 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15736
15737commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
15738Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15739Date: Wed May 28 18:20:15 2008 +0400
15740
15741 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
15742
15743 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
15744 use it on MPC85xx and MPC86xx processors.
15745
15746 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15747 Acked-by: Andy Fleming <afleming@freescale.com>
15748 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15749
15750commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
15751Author: Tor Krill <tor@excito.com>
15752Date: Mon Jun 2 15:09:30 2008 +0200
15753
15754 Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
15755
15756 Signed-off-by: Tor Krill <tor@excito.com>
15757 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15758
15759commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
15760Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15761Date: Mon Jun 9 23:37:44 2008 +0900
15762
15763 net: Conditional COBJS inclusion of network drivers
15764
15765 Replace COBJS-y with appropriate driver config names.
15766
15767 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15768 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15769
15770commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
15771Author: Gerald Van Baren <vanbaren@cideas.com>
15772Date: Mon Jun 9 21:02:17 2008 -0400
15773
15774 Use strncmp() for the fdt command
15775
15776 Cleaner than doing multiple conditionals on characters.
15777
15778 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
15779
15780commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
15781Author: Gerald Van Baren <vanbaren@cideas.com>
15782Date: Sat Jun 7 12:25:05 2008 -0400
15783
15784 The fdt boardsetup command criteria was not unique
15785
15786 It was checking just for "b", which is not unique with respect to the
15787 "boot" command. Change to check for "boa"[rdsetup].
15788
15789 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
15790
15791commit 2f08bfa9526bae4f461e043530cfb903fec0d273
15792Author: David Gibson <david@gibson.dropbear.id.au>
15793Date: Tue May 20 17:19:11 2008 +1000
15794
15795 libfdt: Several cleanups to parameter checking
15796
15797 This patch makes a couple of small cleanups to parameter checking of
15798 libfdt functions.
15799
15800 - In several functions which take a node offset, we use an
15801 idiom involving fdt_next_tag() first to check that we have indeed been
15802 given a node offset. This patch adds a helper function
15803 _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
15804
15805 - In fdt_rw.c in several places we have the expanded version
15806 of the RW_CHECK_HEADER() macro for no particular reason. This patch
15807 replaces those instances with an invocation of the macro; that's what
15808 it's for.
15809
15810 - In fdt_sw.c we rename the check_header_sw() function to
15811 sw_check_header() to match the analgous function in fdt_rw.c, and we
15812 provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
15813 functions in fdt_rw.c
15814
15815 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
15816
15817commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
15818Author: Gerald Van Baren <vanbaren@cideas.com>
15819Date: Tue Jun 3 20:34:45 2008 -0400
15820
15821 Remove the deprecated CONFIG_OF_FLAT_TREE
15822
15823 Use CONFIG_OF_LIBFDT instead to support flattened device trees. It is
15824 cleaner, has better functionality, and is better supported.
15825
15826 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
15827
15828commit 62bcdda293efa752f8281fbd9da03822b27ce82f
15829Author: Gerald Van Baren <vanbaren@cideas.com>
15830Date: Tue Jun 3 20:26:29 2008 -0400
15831
15832 Change the stxxst to CONFIG_OF_LIBFDT
15833
15834 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
15835 to CONFIG_OF_LIBFDT.
15836
15837 WARNING: It appears that this board lost its ability to boot via a
15838 flattened device tree prior to this changeset.
15839
15840 WARNING: This conversion was untested because I do not have a board to
15841 test it on.
15842
15843 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
15844
15845commit 589c04271d129729a8b01391453851ab9cc4069c
15846Author: Gerald Van Baren <vanbaren@cideas.com>
15847Date: Tue Jun 3 20:24:58 2008 -0400
15848
15849 Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
15850
15851 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
15852 to CONFIG_OF_LIBFDT.
15853
15854 WARNING: This conversion is untested because I do not have a board to
15855 test it on.
15856
15857 NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
15858 /aliases/ethernet1 property for the ethernet to work.
15859
15860 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
15861
15862commit ee1e35bede91debc8bff9b02f75574486033b652
15863Author: Kumar Gala <galak@kernel.crashing.org>
15864Date: Thu May 29 01:21:24 2008 -0500
15865
15866 85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
15867
15868 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15869
15870commit 3b9519fc50802436e417c839e69df7b2016cade5
15871Author: Becky Bruce <becky.bruce@freescale.com>
15872Date: Wed May 14 13:10:04 2008 -0500
15873
15874 MPC85xx: Change traps.c to not reference non-addressable memory
15875
15876 Currently, END_OF_RAM is used by the trap code to determine if
15877 we should attempt to access the stack pointer or not. However,
15878 on systems with a lot of RAM, only a subset of the RAM is
15879 guaranteed to be mapped in and accessible. Change END_OF_RAM
15880 to use get_effective_memsize() instead of using the raw ram
15881 size out of the bd.
15882
15883 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
15884
15885commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
15886Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
15887Date: Mon Jun 9 13:39:57 2008 +0900
15888
15889 sh: Renesas Solutions SH7763RDP board support
15890
15891 SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
15892 In this patch, support SCIF, NOR Flash, and Ethernet.
15893
15894 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
15895 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
15896
15897commit 60179098a95eaa972007d7ec58e4c1588029720f
15898Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
15899Date: Fri Jun 6 16:24:13 2008 +0900
15900
15901 sh: Add support Renesas SH7763
15902
15903 Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
15904 This patch supprts CPU register's header file.
15905
15906 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
15907 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
15908
15909commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
15910Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
15911Date: Fri Jun 6 16:16:08 2008 +0900
15912
15913 sh: SH7763 SCIF support
15914
15915 SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
15916 but only SCIF2 is different. This patch work all SCIF channel.
15917
15918 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
15919 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
15920
15921commit 79b51ff8205f0354d5300570614c1d2db499679c
15922Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15923Date: Sat Jun 7 20:51:59 2008 +0900
15924
15925 [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
15926
15927 Also get rid of some #ifdefs in *.c files.
15928
15929 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15930
15931commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
15932Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15933Date: Sat Jun 7 20:51:56 2008 +0900
15934
15935 [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
15936
15937 CONFIG_SOC_AU1X00
15938
15939 Common Alchemy Au1x00 stuff. All Alchemy processor based machines
15940 need to have this config as a system type specifier.
15941
15942 CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
15943 CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
15944
15945 Machine type specifiers. Each port should have one of aboves.
15946
15947 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15948
15949commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
15950Author: Stuart Wood <stuart.wood@labxtechnologies.com>
15951Date: Fri May 30 16:05:28 2008 -0400
15952
15953 env_nand.c: Added bad block management for environment variables
15954
15955 Modified to check for bad blocks and to skipping over them when
15956 CFG_ENV_RANGE has been defined.
15957 CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
15958 flash block size.
15959
15960 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
15961 Signed-off-by: Scott Wood <scottwood@freescale.com>
15962
15963commit 279726bd00558e80263d44581c44167625b7fb9a
15964Author: Becky Bruce <becky.bruce@freescale.com>
15965Date: Wed May 14 13:09:58 2008 -0500
15966
15967 MPC86xx: Change traps.c to not reference non-addressable memory
15968
15969 Currently, END_OF_RAM is used by the trap code to determine if
15970 we should attempt to access the stack pointer or not. However,
15971 on systems with a lot of RAM, only a subset of the RAM is
15972 guaranteed to be mapped in and accessible. Change END_OF_RAM
15973 to use get_effective_memsize() instead of using the raw ram
15974 size out of the bd to prevent us from trying to access
15975 non-mapped memory.
15976
15977 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
15978
15979commit 338cc038461a6c7709c5b86fd9a240209338a1ae
15980Author: Wolfgang Denk <wd@denx.de>
15981Date: Fri Jun 6 14:28:14 2008 +0200
15982
15983 tools/mkimage: fix compiler warnings on some systems.
15984
15985 Signed-off-by: Wolfgang Denk <wd@denx.de>
15986
15987commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
15988Author: Stefan Roese <sr@denx.de>
15989Date: Fri Jun 6 16:10:41 2008 +0200
15990
15991 ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
15992
15993 We use upper case letters for the AMCC processor defines (like
15994 CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
15995 not CONFIG_440SPe. This patch fixes the last misspelled config options.
15996
15997 Signed-off-by: Stefan Roese <sr@denx.de>
15998
15999commit 72675dc6c06a48846d180106161d49dd714383cc
16000Author: Stefan Roese <sr@denx.de>
16001Date: Fri Jun 6 15:55:21 2008 +0200
16002
16003 ppc4xx: Unify AMCC's board config files (part 3/3)
16004
16005 This patch series unifies the AMCC eval board ports by introducing
16006 a common include header for all AMCC eval boards:
16007
16008 include/configs/amcc-common.h
16009
16010 This header now includes all common configuration options/defines which
16011 are removed from the board specific headers.
16012
16013 The reason for this is ease of maintenance and unified look and feel
16014 of all AMCC boards.
16015
16016 Signed-off-by: Stefan Roese <sr@denx.de>
16017
16018commit 490f204096d6e2c9940f67816f154a8125bab116
16019Author: Stefan Roese <sr@denx.de>
16020Date: Fri Jun 6 15:55:03 2008 +0200
16021
16022 ppc4xx: Unify AMCC's board config files (part 2/3)
16023
16024 This patch series unifies the AMCC eval board ports by introducing
16025 a common include header for all AMCC eval boards:
16026
16027 include/configs/amcc-common.h
16028
16029 This header now includes all common configuration options/defines which
16030 are removed from the board specific headers.
16031
16032 The reason for this is ease of maintenance and unified look and feel
16033 of all AMCC boards.
16034
16035 Signed-off-by: Stefan Roese <sr@denx.de>
16036
16037commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
16038Author: Stefan Roese <sr@denx.de>
16039Date: Fri Jun 6 15:54:31 2008 +0200
16040
16041 ppc4xx: Unify AMCC's board config files (part 1/3)
16042
16043 This patch series unifies the AMCC eval board ports by introducing
16044 a common include header for all AMCC eval boards:
16045
16046 include/configs/amcc-common.h
16047
16048 This header now includes all common configuration options/defines which
16049 are removed from the board specific headers.
16050
16051 The reason for this is ease of maintenance and unified look and feel
16052 of all AMCC boards.
16053
16054 Signed-off-by: Stefan Roese <sr@denx.de>
16055
16056commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
16057Author: Remy Bohmer <linux@bohmer.net>
16058Date: Thu Jun 5 13:03:36 2008 +0200
16059
16060 DM9000 fix status check fail 0x6d error for trizeps board
16061
16062 According to the Application Notes of the DM9000, only the 2 bits 0:1 of
16063 the status byte need to be checked to identify a valid packet in the fifo
16064
16065 But, The several different Application Notes do not all speak the same
16066 language on these bits. They do not disagree, but only 1 Application Note
16067 noted explicitly that only these 2 bits need to be checked.
16068 Even the datasheets do not mention anything about these 2 bits.
16069
16070 Because the old code, and the kernel check the whole byte, I left this piece
16071 untouched.
16072
16073 However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
16074 it should work.
16075
16076 Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
16077 in the fifo) is much shorter now, compared to the older U-boot driver code,
16078 so that we can maybe run into a hardware condition now that was never seen
16079 before, or maybe was seen very unfrequently.
16080
16081 Additionaly added a cleanup of a stack variable.
16082
16083 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16084 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16085
16086commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
16087Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16088Date: Thu Jun 5 22:29:00 2008 +0900
16089
16090 [MIPS] Update <asm/addrspace.h> header
16091
16092 - Fix traditional KSEG names
16093 - Replace PHYSADDR with CPHYSADDR
16094
16095 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16096
16097commit f0d5a6f060d00358b85c62a921a423ea8df71184
16098Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16099Date: Thu Jun 5 22:29:00 2008 +0900
16100
16101 [MIPS] mips_config.mk: Misc fixes
16102
16103 - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
16104 - Modify comments
16105
16106 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16107
16108commit 5f64d21c9a2998794f255b469165b91f092dfc2d
16109Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16110Date: Thu Jun 5 22:29:00 2008 +0900
16111
16112 [MIPS] Kill unused <version.h> inclusions
16113
16114 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16115
16116commit a55d48174cfd1a5bc184159513f48dcbbe409c83
16117Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16118Date: Thu Jun 5 22:29:00 2008 +0900
16119
16120 [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
16121
16122 MIPS port has two problems in timer routines. One is now we assume CFG_HZ
16123 equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
16124 in the U-Boot system.
16125
16126 The other is we don't have a proper time management counter like timestamp
16127 other ARCHs have. We need the 32-bit millisecond clock counter.
16128
16129 This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
16130 32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
16131 of calculated CP0 counter cycles in a CFG_HZ.
16132
16133 STRATEGY:
16134
16135 * Fix improper CFG_HZ value to have 1000
16136
16137 * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
16138
16139 * timer_init: initialize timestamp and set up the first timer expiration.
16140 Note that we don't need to initialize CP0 count/compare registers here
16141 as they have been already zeroed out on the system reset. Leave them as
16142 they are.
16143
16144 * get_timer: calculate how many timestamps have been passed, then return
16145 base-relative timestamp. Make sure we can easily count missed timestamps
16146 regardless of CP0 count/compare value.
16147
16148 * get_ticks: return the current timestamp, that is get_timer(0).
16149
16150 Most parts are from good old Linux v2.6.16 kernel.
16151
16152 v2:
16153 - Remove FIXME comments as they turned out to be trivial.
16154 - Use CP0 compare register as a global variable for expirelo.
16155 - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
16156 instead.
16157
16158 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16159
16160commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
16161Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16162Date: Thu Jun 5 22:29:00 2008 +0900
16163
16164 [MIPS] lib_mips/time.c: Fix udelay
16165
16166 What we have to do is just to wait for given micro-seconds. No need to
16167 take into account current time, get_timer and CFG_HZ.
16168
16169 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16170
16171commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
16172Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16173Date: Thu Jun 5 22:28:59 2008 +0900
16174
16175 [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
16176
16177 We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
16178 This patch replaces mips_{compare,count}_set and mips_count_get with
16179 existing macros.
16180
16181 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16182
16183commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
16184Author: Remy Bohmer <linux@bohmer.net>
16185Date: Tue Jun 3 15:48:17 2008 +0200
16186
16187 Get rid of annoying/superfluous bad-checksum warning message
16188
16189 U-boot can complain a lot about 'checksum bad' when it is attached to the network.
16190 It is annoying for ordinary users who start to doubt the network connection
16191 in general when they see messages like this.
16192
16193 This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
16194 than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
16195 now before checking the checksum.
16196
16197 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16198 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16199
16200commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
16201Author: Remy Bohmer <linux@bohmer.net>
16202Date: Wed Jun 4 10:47:25 2008 +0200
16203
16204 Fix order for reading rx-status registers in 32bit mode of DM9000
16205
16206 A last minute cleanup before submitting the DM9000A patch series yesterday introduced
16207 a bug in reading the rx-status registers in 32bit mode only.
16208 This patch repairs this.
16209
16210 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16211 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16212
16213commit 98291e2e689096420465074cce926b226d2e71b4
16214Author: Remy Bohmer <linux@bohmer.net>
16215Date: Tue Jun 3 15:26:26 2008 +0200
16216
16217 DM9000: Some minor code cleanups
16218
16219 Some lines of the U-boot DM9000x driver are longer than 80 characters, or
16220 need some other minor cleanup.
16221
16222 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16223 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16224
16225commit 850ba7555dbd4ca8d14fc475b864d534797adab3
16226Author: Remy Bohmer <linux@bohmer.net>
16227Date: Tue Jun 3 15:26:25 2008 +0200
16228
16229 DM9000: Make driver work properly for DM9000A
16230
16231 The DM9000A network controller does not work with the U-boot DM9000x driver.
16232 Analysis showed that many incoming packets are lost.
16233
16234 The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
16235 check for a valid rx packet be done on the interrupt status register, not
16236 directly by performing the dummy read and the rx status check as is currently
16237 the case in the u-boot driver.
16238
16239 When the recommended poll is done as suggested the driver starts working
16240 correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
16241 can be more than 1 package in the fifo at the same time.
16242
16243 The driver must perform the rx-status check in a loop and read and handle all
16244 packages until there is no more left _after_ the interrupt RX flag is set.
16245
16246 This change has been tested with DM9000A, DM9000E, DM9000EP.
16247
16248 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16249 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16250
16251commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
16252Author: Remy Bohmer <linux@bohmer.net>
16253Date: Tue Jun 3 15:26:24 2008 +0200
16254
16255 DM9000: Improve eth_reset() routine
16256
16257 According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
16258 reset procedure must be done twice to properly reset the DM9000 by means of software.
16259 This errata is not needed anymore for the DM9000A, but it does not bother it.
16260
16261 This change has been tested with DM9000A, DM9000E, DM9000EP.
16262
16263 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16264 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16265
16266commit acba31847fad9ae40708cc2c9f3a634ec35f3416
16267Author: Remy Bohmer <linux@bohmer.net>
16268Date: Tue Jun 3 15:26:23 2008 +0200
16269
16270 DM9000: improve eth_send() routine
16271
16272 The eth_send routine of the U-boot DM9000x driver does not match the
16273 DM9000 or DM9000A application notes/programming guides.
16274
16275 This change improves the stability of the DM9000A network controller.
16276
16277 This change has been tested with DM9000A, DM9000E, DM9000EP.
16278
16279 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16280 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16281
16282commit 134e266253c02a7832560da59d394989c4f64453
16283Author: Remy Bohmer <linux@bohmer.net>
16284Date: Tue Jun 3 15:26:22 2008 +0200
16285
16286 DM9000: repair debug logging
16287
16288 It seems that the debugging code of the DM9000x driver in U-boot has not been
16289 compiled for a long time, because it cannot compile...
16290
16291 Also rearranged some loglines to get more useful info while debugging.
16292
16293 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16294 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16295
16296commit a101361bfe23c120321e45d114c0603b8e0763e9
16297Author: Remy Bohmer <linux@bohmer.net>
16298Date: Tue Jun 3 15:26:21 2008 +0200
16299
16300 DM9000: Add data bus-width auto detection.
16301
16302 The U-boot DM9000x driver contains a compile time bus-width definition for
16303 the databus connected to the network controller.
16304
16305 This compile check makes the code unclear, inflexible and is unneccessary.
16306 It can be asked to the network controller what its bus-width is by reading bits
16307 6 and 7 of the interrupt status register.
16308
16309 The linux kernel already uses a runtime mechanism to determine this bus-width,
16310 so the implementation below looks somewhat like that implementation.
16311
16312 This change has been tested with DM9000A, DM9000E, DM9000EP.
16313
16314 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16315 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16316
16317commit 63a0afa0c32e5f4ea98a9439542870072437404d
16318Author: Stefan Roese <sr@denx.de>
16319Date: Wed Jun 4 19:19:20 2008 +0200
16320
16321 ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
16322
16323 This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
16324 introduced by the commit:
16325
16326 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
16327
16328 With this patch SDRAM will get initialized again and booting from NAND
16329 is working again.
16330
16331 Signed-off-by: Stefan Roese <sr@denx.de>
16332 Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
16333
16334commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
16335Author: Wolfgang Denk <wd@denx.de>
16336Date: Tue May 27 14:19:30 2008 +0200
16337
16338 Socrates: Fix PCI bus frequency report
16339
16340 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
16341
16342commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
16343Author: Tor Krill <tor@excito.com>
16344Date: Thu May 29 11:10:30 2008 +0200
16345
16346 Fix incorrect switch for IF_TYPE in part.c
16347
16348 Use correct field in block_dev_desc_t when writing interface type in
16349 dev_print. Error introduced in 574b3195.
16350
16351 Also added fix from Martin Krause
16352
16353 Signed-off-by: Tor Krill <tor@excito.com>
16354
16355commit b64b8a0bd310935b70af69ac970952f2b364ae56
16356Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16357Date: Tue May 27 10:25:39 2008 +0200
16358
16359 Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
16360
16361 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16362
16363commit 35ef877f0a8f6232cdef748f442fed5accb2b641
16364Author: Peter Tyser <ptyser@xes-inc.com>
16365Date: Thu May 22 18:56:52 2008 -0500
16366
16367 Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
16368
16369 Removed unneeded command line history initialization. Also, the original
16370 code would access the 'initted' variable before relocation to SDRAM
16371 which resulted in erratic behavior since the bss is not initialized when
16372 executing from flash.
16373
16374 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16375
16376commit 22f371b63038a4ecab04068877c1089e51a01ba1
16377Author: Grant Erickson <gerickson@nuovations.com>
16378Date: Wed May 21 13:28:30 2008 -0700
16379
16380 PPC4xx: Simplified post_word_{load, store}
16381
16382 This patch simplifies post_word_{load,store} by using the preprocessor
16383 to eliminate redundant, copy-and-pasted code.
16384
16385 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
16386
16387commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
16388Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
16389Date: Wed May 7 21:25:33 2008 +0400
16390
16391 cfi_flash: enable M18 flash chips family support.
16392
16393 Added new command set ID. Buffered write command processing is changed
16394 in order to support M18 flash chips family.
16395
16396 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
16397 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
16398
16399commit 93c56f212ccdadc182018f0769cb284426b88f1d
16400Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
16401Date: Wed May 7 21:24:44 2008 +0400
16402
16403 cfi_flash: support of long cmd in U-boot.
16404
16405 Some NOR flash chips needs support of commands with length grether than max
16406 value size of uchar. For example all M18 family chips use 0x1ff command in
16407 buffered write mode as value of program loops count.
16408
16409 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
16410 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
16411
16412commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
16413Author: Stefan Roese <sr@denx.de>
16414Date: Fri May 16 11:06:06 2008 +0200
16415
16416 DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
16417
16418 On AD7414 the first value upon bootup is not read correctly.
16419 This is most likely because of the 800ms update time of the
16420 temp register in normal update mode. To get current values
16421 each time we issue the "dtt" command including upon powerup
16422 we switch into one-short mode.
16423
16424 This patch fixes the problem on AD7414 equipped boards (Sequoia,
16425 Canyonlands etc), that temp value printed in the bootup log was
16426 incorrect.
16427
16428 Signed-off-by: Stefan Roese <sr@denx.de>
16429
16430commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
16431Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16432Date: Fri May 30 16:55:06 2008 +0200
16433
16434 ppc4xx: Cleanup CPCI405 variant's config file
16435
16436 This patch removes some dead code from CPCI405 board's
16437 config files. JFFS2 support is also removed. It's not used and
16438 CPCI4052 does not build anymore without some size reduction.
16439
16440 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16441
16442commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
16443Author: Kenneth Johansson <kenneth@southpole.se>
16444Date: Thu May 29 16:32:33 2008 +0200
16445
16446 Remove shell variable UNDEF_SYM.
16447
16448 UNDEF_SYM is a shell variable in the main Makefile used to force the
16449 linker to add all u-boot commands to the final image. It has no use here.
16450
16451 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
16452
16453commit 8c66497e06bf803489c589df58ee591d71033274
16454Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16455Date: Fri May 16 11:10:35 2008 +0200
16456
16457 Add support for environment in SPI flash
16458
16459 This is pretty incomplete...it doesn't handle reading the environment
16460 before relocation, it doesn't support redundant environment, and it
16461 doesn't support embedded environment. But apart from that, it does
16462 seem to work.
16463
16464 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16465
16466commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
16467Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16468Date: Fri May 16 11:10:34 2008 +0200
16469
16470 SPI Flash: Add "sf" command
16471
16472 This adds a new command, "sf" which can be used to manipulate SPI
16473 flash. Currently, initialization, reading, writing and erasing is
16474 supported.
16475
16476 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16477
16478commit d25ce7d24cc0f93881559f4009175ea305af65e8
16479Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16480Date: Fri May 16 11:10:33 2008 +0200
16481
16482 SPI Flash subsystem
16483
16484 This adds a new SPI flash subsystem.
16485
16486 Currently, only AT45 DataFlash in non-power-of-two mode is supported,
16487 but some preliminary support for other flash types is in place as
16488 well.
16489
16490 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16491
16492commit 60445cb5c3eb77ed1a07f2d908eef09174483698
16493Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
16494Date: Fri May 16 11:10:32 2008 +0200
16495
16496 atmel_spi: Driver for the Atmel SPI controller
16497
16498 This adds a driver for the SPI controller found on most AT91 and AVR32
16499 chips, implementing the new SPI API.
16500
16501 Changed in v4:
16502 - Update to new API
16503 - Handle zero-length transfers appropriately. The user may send a
16504 zero-length SPI transfer with SPI_XFER_END set in order to
16505 deactivate the chip select after a series of transfers with chip
16506 select active. This is useful e.g. when polling the status
16507 register of DataFlash.
16508
16509 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16510
16511commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
16512Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
16513Date: Fri May 16 11:10:31 2008 +0200
16514
16515 SPI API improvements
16516
16517 This patch gets rid of the spi_chipsel table and adds a handful of new
16518 functions that makes the SPI layer cleaner and more flexible.
16519
16520 Instead of the spi_chipsel table, each board that wants to use SPI
16521 gets to implement three hooks:
16522 * spi_cs_activate(): Activates the chipselect for a given slave
16523 * spi_cs_deactivate(): Deactivates the chipselect for a given slave
16524 * spi_cs_is_valid(): Determines if the given bus/chipselect
16525 combination can be activated.
16526
16527 Not all drivers may need those extra functions however. If that's the
16528 case, the board code may just leave them out (assuming they know what
16529 the driver needs) or rely on the linker to strip them out (assuming
16530 --gc-sections is being used.)
16531
16532 To set up communication parameters for a given slave, the driver needs
16533 to call spi_setup_slave(). This returns a pointer to an opaque
16534 spi_slave struct which must be passed as a parameter to subsequent SPI
16535 calls. This struct can be freed by calling spi_free_slave(), but most
16536 driver probably don't want to do this.
16537
16538 Before starting one or more SPI transfers, the driver must call
16539 spi_claim_bus() to gain exclusive access to the SPI bus and initialize
16540 the hardware. When all transfers are done, the driver must call
16541 spi_release_bus() to make the bus available to others, and possibly
16542 shut down the SPI controller hardware.
16543
16544 spi_xfer() behaves mostly the same as before, but it now takes a
16545 spi_slave parameter instead of a spi_chipsel function pointer. It also
16546 got a new parameter, flags, which is used to specify chip select
16547 behaviour. This may be extended with other flags in the future.
16548
16549 This patch has been build-tested on all powerpc and arm boards
16550 involved. I have not tested NIOS since I don't have a toolchain for it
16551 installed, so I expect some breakage there even though I've tried
16552 fixing up everything I could find by visual inspection.
16553
16554 I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
16555 DataFlash drivers posted as a follow-up. I'd like some help testing
16556 other boards that use the existing SPI API.
16557
16558 But most of all, I'd like some comments on the new API. Is this stuff
16559 usable for everyone? If not, why?
16560
16561 Changed in v4:
16562 - Build fixes for various boards, drivers and commands
16563 - Provide common struct spi_slave definition that can be extended by
16564 drivers
16565 - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
16566 - Make default bus and mode build-time configurable
16567 - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
16568
16569 Changed in v3:
16570 - Add opaque struct spi_slave for controller-specific data associated
16571 with a slave.
16572 - Add spi_claim_bus() and spi_release_bus()
16573 - Add spi_free_slave()
16574 - spi_setup() is now called spi_setup_slave() and returns a
16575 struct spi_slave
16576 - soft_spi now supports four SPI modes (CPOL|CPHA)
16577 - Add bus parameter to spi_setup_slave()
16578 - Convert the new i.MX32 SPI driver
16579 - Convert the new MC13783 RTC driver
16580
16581 Changed in v2:
16582 - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
16583 new API.
16584
16585 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16586 Tested-by: Guennadi Liakhovetski <lg@denx.de>
16587
16588commit 289011207d999b2e4085150d2aa30d547ad9b800
16589Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16590Date: Fri May 16 11:10:30 2008 +0200
16591
16592 Move definition of container_of() to common.h
16593
16594 AVR32 and AT91SAM9 both have their own identical definitions of
16595 container_of() taken from the Linux kernel. Move it to common.h so
16596 that all architectures can use it.
16597
16598 container_of() is already used by some drivers, and will be used
16599 extensively by the new and improved SPI API.
16600
16601 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16602
16603commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
16604Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16605Date: Fri May 16 11:08:11 2008 +0200
16606
16607 soft_i2c: Pull SDA high before reading
16608
16609 Spotted by Dean Capindale.
16610
16611 Systems that support open-drain GPIO properly are allowed provide an
16612 empty I2C_TRISTATE define. However, this means that we need to be
16613 careful not to drive SDA low when the slave is expected to respond.
16614
16615 This patch adds a missing I2C_SDA(1) to read_byte() required to
16616 tristate the SDA line on systems that support open-drain GPIO.
16617
16618 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16619
16620commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
16621Author: Stefan Roese <sr@denx.de>
16622Date: Mon May 19 11:34:53 2008 +0200
16623
16624 ppc4xx: Remove implementations of testdram()
16625
16626 This patch removes the used testdram() implementations of the board
16627 that are maintained by myself.
16628
16629 Signed-off-by: Stefan Roese <sr@denx.de>
16630
16631commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
16632Author: Stefan Roese <sr@denx.de>
16633Date: Mon Jun 2 17:37:28 2008 +0200
16634
16635 ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
16636
16637 Historically the 405 U-Boot port had a dram_init() call in early init
16638 stage. This function was still called from start.S and most of the time
16639 coded in assembler. This is not needed anymore (since a long time) and
16640 boards should implement the common initdram() function in C instead.
16641
16642 This patch now removed the dram_init() call from start.S and removes the
16643 empty implementations that are scattered through most of the 405 board
16644 ports. Some older board ports really implement this dram_init() though.
16645 These are:
16646
16647 csb272
16648 csb472
16649 ERIC
16650 EXBITGEN
16651 W7OLMC
16652 W7OLMG
16653
16654 I changed those boards to call this assembler dram_init() function now
16655 from their board specific initdram() instead. This *should* work, but please
16656 test again on those platforms. And it is perhaps a good idea that those
16657 boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
16658 some time. So further patches welcome here.
16659
16660 Signed-off-by: Stefan Roese <sr@denx.de>
16661
16662commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
16663Author: Stefan Roese <sr@denx.de>
16664Date: Mon Jun 2 17:22:11 2008 +0200
16665
16666 ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
16667
16668 Signed-off-by: Stefan Roese <sr@denx.de>
16669
16670commit 39b32be18cd33b53a84065edcd4e465165cc5564
16671Author: Stefan Roese <sr@denx.de>
16672Date: Mon Jun 2 17:20:03 2008 +0200
16673
16674 ppc4xx: Fix common ECC generation code for 440GP style platforms
16675
16676 This patch makes the common 4xx ECC code really usable on 440GP style
16677 platforms.
16678
16679 Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
16680 compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
16681 we need to make some processor dependant defines used later on by the
16682 driver.
16683
16684 Signed-off-by: Stefan Roese <sr@denx.de>
16685
16686commit ec724f883ee3f3925e6c55027e8ffa70ada83303
16687Author: Stefan Roese <sr@denx.de>
16688Date: Mon Jun 2 17:13:55 2008 +0200
16689
16690 ppc4xx: Change Kilauea to use the common DDR2 init function
16691
16692 This patch changes the kilauea and kilauea_nand (for NAND booting)
16693 board port to not use a board specific DDR2 init routine anymore. Now
16694 the common code from cpu/ppc4xx is used.
16695
16696 Thanks to Grant Erickson for all his basic work on this 405EX early
16697 bootup.
16698
16699 Signed-off-by: Stefan Roese <sr@denx.de>
16700
16701commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
16702Author: Stefan Roese <sr@denx.de>
16703Date: Mon Jun 2 14:59:21 2008 +0200
16704
16705 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
16706
16707 This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
16708 ppc4xx related SDRAM/DDR/DDR2 controller defines.
16709
16710 Signed-off-by: Stefan Roese <sr@denx.de>
16711
16712commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
16713Author: Stefan Roese <sr@denx.de>
16714Date: Mon Jun 2 14:57:41 2008 +0200
16715
16716 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
16717
16718 This patch removes all SDRAM related defines from the PPC4xx headers
16719 ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
16720 the same SDRAM controller as 440 systems do (like 405EX and 440SP).
16721
16722 It also introduces new defines for the equipped SDRAM controller based on
16723 which PPC variant is used. There new defines are:
16724
16725 used on 405GR/CR/EP and some Xilinx Virtex boards.
16726
16727 used on 440GP/GX/EP/GR.
16728
16729 used on 440EPx/GRx.
16730
16731 used on 405EX/r/440SP/SPe/460EX/GT.
16732
16733 Signed-off-by: Stefan Roese <sr@denx.de>
16734
16735commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
16736Author: Stefan Roese <sr@denx.de>
16737Date: Mon Jun 2 14:35:44 2008 +0200
16738
16739 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
16740
16741 This patch consolidates the 405 and 440 parts of the NAND booting code
16742 selected via CONFIG_NAND_SPL. Now common code is used to initialize the
16743 SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
16744 Only *after* running from this location, nand_boot() is called.
16745
16746 Please note that the initsdram() call is now moved from nand_boot.c
16747 to start.S. I experienced problems with some boards like Kilauea
16748 (405EX), which don't have internal SRAM (OCM) and relocation needs to
16749 be done to SDRAM before the NAND controller can get accessed. When
16750 initdram() is called later on in nand_boot(), this can lead to problems
16751 with variables in the bss sections like nand_ecc_pos[].
16752
16753 Signed-off-by: Stefan Roese <sr@denx.de>
16754 Acked-by: Scott Wood <scottwood@freescale.com>
16755
16756commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
16757Author: Grant Erickson <gerickson@nuovations.com>
16758Date: Thu May 22 14:44:24 2008 -0700
16759
16760 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
16761
16762 This patch (Part 2 of 2):
16763
16764 * Rolls up a suite of changes to enable correct primordial stack and
16765 global data handling when the data cache is used for such a purpose
16766 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
16767
16768 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
16769 eliminating redundant ECC initialization implementations and moving
16770 redundant SDRAM initialization out of board code into shared 4xx
16771 code.
16772
16773 * Enables MCSR visibility on the 405EX(r).
16774
16775 * Enables the use of the data cache for initial RAM on
16776 both AMCC's Kilauea and Makalu and removes a redundant
16777 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
16778
16779 - Removed, per Stefan Roese's request, defunct memory.c file for
16780 Makalu and rolled sdram_init from it into makalu.c.
16781
16782 With respect to the 4xx DDR initialization and ECC unification, there
16783 is certainly more work that can and should be done (file renaming,
16784 etc.). However, that can be handled at a later date on a second or
16785 third pass. As it stands, this patch moves things forward in an
16786 incremental yet positive way for those platforms that utilize this
16787 code and the features associated with it.
16788
16789 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
16790 Signed-off-by: Stefan Roese <sr@denx.de>
16791
16792commit c821b5f120bedf73867513466412587c6912a8f8
16793Author: Grant Erickson <gerickson@nuovations.com>
16794Date: Thu May 22 14:44:14 2008 -0700
16795
16796 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
16797
16798 This patch (Part 1 of 2):
16799
16800 * Rolls up a suite of changes to enable correct primordial stack and
16801 global data handling when the data cache is used for such a purpose
16802 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
16803
16804 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
16805 eliminating redundant ECC initialization implementations and moving
16806 redundant SDRAM initialization out of board code into shared 4xx
16807 code.
16808
16809 * Enables MCSR visibility on the 405EX(r).
16810
16811 * Enables the use of the data cache for initial RAM on
16812 both AMCC's Kilauea and Makalu and removes a redundant
16813 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
16814
16815 - Removed, per Stefan Roese's request, defunct memory.c file for
16816 Makalu and rolled sdram_init from it into makalu.c.
16817
16818 With respect to the 4xx DDR initialization and ECC unification, there
16819 is certainly more work that can and should be done (file renaming,
16820 etc.). However, that can be handled at a later date on a second or
16821 third pass. As it stands, this patch moves things forward in an
16822 incremental yet positive way for those platforms that utilize this
16823 code and the features associated with it.
16824
16825 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
16826 Signed-off-by: Stefan Roese <sr@denx.de>
16827
16828commit a439680019e06171d4a5694b7992accce87f590e
16829Author: Grant Erickson <gerickson@nuovations.com>
16830Date: Wed May 21 13:28:30 2008 -0700
16831
16832 PPC4xx: Simplified post_word_{load, store}
16833
16834 This patch simplifies post_word_{load,store} by using the preprocessor
16835 to eliminate redundant, copy-and-pasted code.
16836
16837 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
16838
16839commit f979690ee337450b2030aba128f95b7a8d9881c0
16840Author: Kumar Gala <galak@kernel.crashing.org>
16841Date: Thu May 15 15:13:08 2008 -0500
16842
16843 Fix warnings from gcc-4.3.0 build on a ppc host
16844
16845 * The cfi_flash.c memset fix actual allows the board to boot so there is
16846 a bit more going on here than just resolving warnings associated with
16847 uninitialized variables.
16848
16849 * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
16850 inline function 'ext2_find_next_zero_bit' which is not static
16851
16852 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16853
16854commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
16855Author: Becky Bruce <becky.bruce@freescale.com>
16856Date: Wed May 14 13:09:51 2008 -0500
16857
16858 MPC512x: Change traps.c to not reference non-addressable memory
16859
16860 Currently, END_OF_RAM is used by the trap code to determine if
16861 we should attempt to access the stack pointer or not. However,
16862 on systems with a lot of RAM, only a subset of the RAM is
16863 guaranteed to be mapped in and accessible. Change END_OF_RAM
16864 to use get_effective_memsize() instead of using the raw ram
16865 size out of the bd.
16866
16867 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
16868
16869commit 81673e9ae14b771cd13faf19947192599cae3959
16870Author: Kumar Gala <galak@kernel.crashing.org>
16871Date: Tue May 13 19:01:54 2008 -0500
16872
16873 Make sure common.h is the first include.
16874
16875 If common.h isn't first we can get CONFIG_ options defined in the
16876 board config file ignored. This can cause an issue if any of those
16877 config options impact the size of types of data structures
16878 (eg CONFIG_PHYS_64BIT).
16879
16880 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16881
16882commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
16883Author: Marian Balakowicz <m8@semihalf.com>
16884Date: Tue May 13 15:53:29 2008 +0200
16885
16886 Avoid initrd and logbuffer area overlaps
16887
16888 Add logbuffer to reserved LMB areas to prevent initrd allocation
16889 from overlaping with it.
16890
16891 Make sure to use correct logbuffer base address.
16892
16893 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16894
16895commit 6956d53d9934862507f83f0e3255dfd4662e7482
16896Author: Sascha Laue <sascha.laue@liebherr.com>
16897Date: Tue May 13 13:29:54 2008 +0200
16898
16899 lwmon5: add memory-pattern-test to FPGA POST.
16900
16901commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
16902Author: Becky Bruce <becky.bruce@freescale.com>
16903Date: Thu May 8 19:02:51 2008 -0500
16904
16905 PPC: 86xx Add bat registers to reginfo command
16906
16907 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
16908
16909commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
16910Author: Becky Bruce <becky.bruce@freescale.com>
16911Date: Fri May 9 15:41:35 2008 -0500
16912
16913 PPC: Add print_bats() to lib_ppc/bat_rw.c
16914
16915 This function prints the values of all the BAT register
16916 pairs - I needed this for debug earlier this week; adding it to
16917 lib_ppc so others can use it (and add it to reginfo commands
16918 if so desired).
16919
16920 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
16921
16922commit c148f24c15743a02e855636e6bed013bd121f7f2
16923Author: Becky Bruce <becky.bruce@freescale.com>
16924Date: Thu May 15 21:29:04 2008 -0500
16925
16926 PPC: Change lib_ppc/bat_rw.c to use high bats
16927
16928 Currently, this code only deals with BATs 0-3, which makes
16929 it useless on systems that support BATs 4-7. Add the
16930 support for these registers.
16931
16932 Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
16933
16934commit 31d826722434931e1152a09d140187dcf72f8aac
16935Author: Becky Bruce <becky.bruce@freescale.com>
16936Date: Thu May 8 19:02:12 2008 -0500
16937
16938 PPC: Create and use CONFIG_HIGH_BATS
16939
16940 Change all code that conditionally operates on high bat
16941 registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
16942 instead of the myriad ways this is done now. Define the option
16943 for every config for which high bats are supported (and
16944 enabled by early boot, on parts where they're not always
16945 enabled)
16946
16947 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
16948
16949commit aa3b8bf9c30065bb2ea852799d32db5020598495
16950Author: Wolfgang Grandegger <wg@grandegger.com>
16951Date: Wed May 28 19:55:19 2008 +0200
16952
16953 E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
16954
16955 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16956 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16957
16958commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
16959Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16960Date: Wed May 28 13:06:25 2008 -0500
16961
16962 ColdFire: Add 10 base ethernet support for mcf5445x
16963
16964 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16965 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16966
16967commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
16968Author: Jason McMullan <mcmullan@netapp.com>
16969Date: Fri May 30 00:53:38 2008 +0900
16970
16971 mips: Add an 'include/asm/errno.h', like all other architectures
16972
16973 All other u-boot architectures have an include/asm/errno.h, so
16974 this change adds it to the mips include/asm-mips headers also.
16975
16976 Stolen from Linux 2.6.25.
16977
16978 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
16979
16980commit e2ad8426624bac457acc6925b6ff408e9bf20466
16981Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16982Date: Fri May 30 00:53:38 2008 +0900
16983
16984 [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
16985
16986 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16987
16988commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
16989Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16990Date: Fri May 30 00:53:38 2008 +0900
16991
16992 [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
16993
16994 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16995
16996commit bf462ae450a7f2eeeddc699ed345b391e3263540
16997Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16998Date: Fri May 30 00:53:37 2008 +0900
16999
17000 [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
17001
17002 No functional changes.
17003
17004 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17005
17006commit 89a1550ec6b74452274a7a23127936e2c7eec711
17007Author: Jason McMullan <mcmullan@netapp.com>
17008Date: Fri May 30 00:53:37 2008 +0900
17009
17010 mips: If CONFIG_CMD_SPI is defined, call spi_init()
17011
17012 The mips architecture currently does not call 'spi_init()' in the generic
17013 board initialization routine is CONFIG_CMD_SPI is defined.
17014
17015 This patch rectifies that problem.
17016
17017 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
17018 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17019
17020commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
17021Author: Jason McMullan <mcmullan@netapp.com>
17022Date: Fri May 30 00:53:37 2008 +0900
17023
17024 [MIPS] lib_mips/board.c: Add nand_init
17025
17026 This patch adds the standard 'nand_init()' call to the mips generic
17027 'board_init_r()' call, bringing MIPS in line with the other architectures.
17028
17029 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
17030 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17031
17032commit d6ac2ed893c2168738aee01579d6283af8d37045
17033Author: Scott Wood <scottwood@freescale.com>
17034Date: Thu May 22 10:49:46 2008 -0500
17035
17036 Remove prototypes of nand_init() in favor of including nand.h.
17037
17038 Likewise with onenand_init().
17039
17040 Signed-off-by: Scott Wood <scottwood@freescale.com>
17041
17042commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
17043Author: Scott Wood <scottwood@freescale.com>
17044Date: Thu May 22 10:49:00 2008 -0500
17045
17046 Make onenand_uboot.h self-sufficient.
17047
17048 Don't assume types are provided by previously included headers.
17049
17050 Signed-off-by: Scott Wood <scottwood@freescale.com>
17051
17052commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
17053Author: Dirk Behme <dirk.behme@gmail.com>
17054Date: Wed Jan 16 14:26:59 2008 +0100
17055
17056 nand: Correct NAND erase percentage output
17057
17058 For NAND erase sizes smaller than one NAND erase block, erase
17059 percentage output becomes grater than 100% e.g.
17060
17061 -- cut --
17062 > nand info
17063 Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
17064 > nand erase 0x100000 0x2000
17065 NAND erase: device 0 offset 0x100000, size 0x2000
17066 Erasing at 0x100000 -- 200% complete.
17067 OK
17068 >
17069 -- cut --
17070
17071 Correct this and give user a warning that more is erased than specified:
17072
17073 -- cut --
17074 > nand erase 0x100000 0x2000
17075 NAND erase: device 0 offset 0x100000, size 0x2000
17076 Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
17077 Erasing 0x00004000 instead
17078 Erasing at 0x100000 -- 100% complete.
17079 OK
17080 >
17081 -- cut --
17082
17083 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
17084
17085commit 5922db6c0948506be91e0de44e7a6863a18a417f
17086Author: Stelian Pop <stelian@popies.net>
17087Date: Tue May 13 17:31:24 2008 +0200
17088
17089 Cleanup nand_info[] declaration.
17090
17091 The nand_info array is declared as extern in several .c files.
17092 Those days, nand.h contains a reference to the array, so there is
17093 no need to declare it elsewhere.
17094
17095 Signed-off-by: Stelian Pop <stelian@popies.net>
17096 Signed-off-by: Scott Wood <scottwood@freescale.com>
17097
17098commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
17099Author: Scott Wood <scottwood@freescale.com>
17100Date: Mon May 19 09:30:43 2008 -0500
17101
17102 NAND: Provide a sane default for NAND_MAX_CHIPS.
17103
17104 This allows the header to be included regardless of whether a board's
17105 config file provides NAND-related defininitions.
17106
17107 Signed-off-by: Scott Wood <scottwood@freescale.com>
17108
17109commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
17110Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17111Date: Mon May 26 12:19:10 2008 +0200
17112
17113 avr32: Fix theoretical race in udelay()
17114
17115 If the specified delay is very short, the cycle counter may go past the
17116 "end" time we are waiting for before we get around to reading it.
17117
17118 Fix it by checking the different between the cycle count "now" and the
17119 cycle count at the beginning. This will work as long as the delay
17120 measured in number of cycles is below 2^31.
17121
17122 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17123
17124commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
17125Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17126Date: Wed May 21 13:01:09 2008 +0200
17127
17128 avr32: Compile atmel_mci.o conditionally
17129
17130 Remove #ifdef CONFIG_MMC from the source file and use conditional
17131 compilation in the Makefile instead.
17132
17133 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17134
17135commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
17136Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17137Date: Thu May 22 12:28:25 2008 +0200
17138
17139 avr32: Fix wrong error flags in atmel_mci driver
17140
17141 Make sure we check for CRC errors when sending commands that use CRC
17142 checking.
17143
17144 Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
17145 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17146
17147commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
17148Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17149Date: Wed May 21 11:10:59 2008 +0200
17150
17151 avr32: Fix two warnings in atmel_mci.c
17152
17153 The warnings are harmless but annoying. Let's fix them.
17154
17155 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17156
17157commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
17158Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17159Date: Mon May 19 11:36:28 2008 +0200
17160
17161 avr32: Rework SDRAM initialization code
17162
17163 This cleans up the SDRAM initialization and related code a bit, and
17164 allows faster booting.
17165
17166 * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
17167 * Remove memory test from sdram_init() and make caller responsible
17168 for verifying the SDRAM and determining its size.
17169 * Remove base_address member from struct sdram_config (was sdram_info)
17170 * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
17171 * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
17172
17173 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17174
17175commit 95107b7c028806919630bf02c653aa8f4f867c94
17176Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17177Date: Mon May 19 11:27:37 2008 +0200
17178
17179 avr32: Do stricter stack checking in the exception handler
17180
17181 Don't do a stack dump if the stack pointer is outside the memory area
17182 reserved for stack.
17183
17184 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17185
17186commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
17187Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17188Date: Fri May 2 15:32:57 2008 +0200
17189
17190 avr32: Use the same entry point for reset and exception handling
17191
17192 Since the reset vector is always aligned to a very large boundary, we
17193 can save a couple of KB worth of alignment padding by placing the
17194 exception vectors at the same address.
17195
17196 Deciding which one it is is easy: If we're handling an exception, the
17197 CPU is in Exception mode. If we're starting up after reset, the CPU is
17198 in Supervisor mode. So this adds a very minimal overhead to the reset
17199 path (only executed once) and the exception handling path (normally
17200 never executed at all.)
17201
17202 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17203
17204commit 0c16eed2189a190bd5655b33c029f809a9b31128
17205Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17206Date: Fri May 2 15:24:22 2008 +0200
17207
17208 avr32: Put memset in its own section
17209
17210 All C code is compiled with -ffunction-sections -fdata-sections.
17211 Assembly functions should get their own sections as well so that
17212 everything looks consistent.
17213
17214 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17215
17216commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
17217Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17218Date: Fri May 2 15:21:40 2008 +0200
17219
17220 avr32: Rename pm_init() as clk_init() and make SoC-specific
17221
17222 pm_init() was always more about clock initialization than anything
17223 else. Dealing with PLLs, clock gating and such is also inherently
17224 SoC-specific, so move it into a SoC-specific directory.
17225
17226 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17227
17228commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
17229Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17230Date: Wed Apr 30 16:15:57 2008 +0200
17231
17232 avr32: Use new-style Makefile for the at32ap platform
17233
17234 This makes it easier to avoid compiling certain files later.
17235
17236 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17237
17238commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
17239Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17240Date: Wed Apr 30 14:36:47 2008 +0200
17241
17242 avr32: Remove unused file cpu/at32ap/pm.c
17243
17244 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17245
17246commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
17247Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17248Date: Wed Apr 30 14:19:28 2008 +0200
17249
17250 avr32: Clean up the HMATRIX code
17251
17252 Rework the HMATRIX configuration interface so that it becomes easier
17253 to configure the HMATRIX for boards with special needs, and add new
17254 parts.
17255
17256 The HMATRIX header file has been split into a general,
17257 chip-independent part with register definitions, etc. and a
17258 chip-specific part with SFR bitfield definitions and master/slave
17259 identifiers.
17260
17261 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17262
17263commit 0a2e48792dd372c90b80059f3235e67a567e16fc
17264Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17265Date: Thu Nov 22 12:14:11 2007 +0100
17266
17267 avr32: Add support for the ATSTK1006 board
17268
17269 This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
17270 board. It's currently in production and will be available soon.
17271
17272 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17273
17274commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
17275Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17276Date: Tue Apr 29 12:53:05 2008 +0200
17277
17278 avr32: Get rid of the .flashprog section
17279
17280 The .flashprog section was only needed back when we were running
17281 directly from flash, and it's even more useless on NGW100 since it
17282 uses the CFI flash driver which never used this workaround in the
17283 first place.
17284
17285 Remove it on STK1000 as well, and get rid of all the associated code and
17286 annotations.
17287
17288 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17289
17290commit cdd42c0c7a5205fc380912d83229069a71ea3abf
17291Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17292Date: Wed Apr 30 13:09:56 2008 +0200
17293
17294 avr32: Use correct condition around macb clock accessors
17295
17296 get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
17297 the chip has a MACB controller, not when it has a USART.
17298
17299 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17300
17301commit f793a3581901ff39c2abb94012d9bbc8573ccf02
17302Author: David Brownell <david-b@pacbell.net>
17303Date: Wed Apr 16 22:57:58 2008 -0700
17304
17305 avr32: Disable the AP7000 internal watchdog on startup
17306
17307 This patch forces the watchdog off in all cases. That will at least
17308 get rid of the constant reboot cycle, though it won't let the watchdog
17309 actually run in the new kernels: its probe() comes up with a polite
17310 warning.
17311
17312 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17313
17314commit 55ac7a7490b55da56659f95d82a0c83b9756df27
17315Author: David Brownell <david-b@pacbell.net>
17316Date: Fri Feb 22 12:54:39 2008 -0800
17317
17318 avr32: stk1002 and ngw100 convergence
17319
17320 Make STK1002 and NGW100 boards act more alike:
17321 - STK boards can use as many arguments as NGW
17322 - STK boards don't need to manage FPGAs either
17323 - NGW commands should match STK ones
17324
17325 Also spell U-Boot right in prompts for STK1002 and NGW100.
17326
17327 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17328 [haavard.skinnemoen@atmel.com: update STK100[34] as well]
17329 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17330
17331commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
17332Author: Sergei Poselenov <sposelenov@emcraft.com>
17333Date: Tue May 27 13:47:00 2008 +0200
17334
17335 Socrates: Fix PCI bus frequency report
17336
17337 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17338
17339commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
17340Author: Sergei Poselenov <sposelenov@emcraft.com>
17341Date: Tue May 27 11:49:13 2008 +0200
17342
17343 Socrates: Added USB support.
17344
17345 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17346
17347commit 5a904e5637cff1d708dc67098004f83ba9e84c54
17348Author: Sergei Poselenov <sposelenov@emcraft.com>
17349Date: Tue May 27 11:35:02 2008 +0200
17350
17351 USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
17352
17353 In case of several PCI USB controllers on a board this variable
17354 specifys which controller to use.
17355 See doc/README.generic_usb_ohci for details.
17356
17357 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17358
17359commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
17360Author: Sergei Poselenov <sposelenov@emcraft.com>
17361Date: Tue May 27 10:36:07 2008 +0200
17362
17363 Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
17364
17365 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17366
17367commit 83e9d7a2614d4006b92690afa3390c291734267e
17368Author: Sergei Poselenov <sposelenov@emcraft.com>
17369Date: Mon May 26 18:16:04 2008 +0200
17370
17371 Socrates: Config file cleanup.
17372
17373 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17374
17375commit 602cac1389b755b223272f2328a47e6f8c240848
17376Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17377Date: Sat May 24 12:47:46 2008 +0200
17378
17379 MAKEALL: add at91 list
17380
17381 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17382
17383commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
17384Author: Ron Madrid <ron_madrid@sbcglobal.net>
17385Date: Fri May 23 15:37:05 2008 -0700
17386
17387 Add Marvell 88E1118 support for TSEC
17388
17389 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
17390 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17391
17392commit 557b377d8bfc8b833b6e749457bcdfa298331a24
17393Author: Jens Gehrlein <sew_s@tqs.de>
17394Date: Mon May 5 14:06:11 2008 +0200
17395
17396 smc911x: add 16 bit support
17397
17398 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
17399 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17400
Wolfgang Denkcd829192008-08-12 16:08:38 +020017401commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
17402Author: Christian Eggers <ceggers@gmx.de>
17403Date: Wed May 21 21:29:10 2008 +0200
17404
17405 Fix endianess conversion in usb_ohci.c
17406
17407 Sorry, I forgot this line:
17408
17409 Signed-off-by: Christian Eggers <ceggers@gmx.de>
17410
17411 I think this must be swapped (result may be equal).
17412
Wolfgang Denk01db2322008-06-28 23:16:01 +020017413commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
17414Author: Christian Eggers <ceggers@gmx.de>
17415Date: Wed May 21 22:12:00 2008 +0200
17416
17417 USB: replace old swap_ with proper endianess conversion macros
17418
17419 Signed-off-by: Christian Eggers <ceggers@gmx.de>
17420 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17421
17422commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
17423Author: Christian Eggers <ceggers@gmx.de>
17424Date: Wed May 21 21:29:10 2008 +0200
17425
17426 Fix endianess conversion in usb_ohci.c
17427
17428 Signed-off-by: Christian Eggers <ceggers@gmx.de>
17429 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17430
17431commit 477434c63c2ea5baa5c6c4e43500786f436511ff
17432Author: Sergei Poselenov <sposelenov@emcraft.com>
17433Date: Thu May 22 01:15:53 2008 +0200
17434
17435 USB: add support for multiple PCI OHCI controllers
17436
17437 Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
17438 In case of several PCI USB controllers on a board this variable
17439 specifys which controller to use.
17440
17441 Also add USB support for sokrates board.
17442
17443 See doc/README.generic_usb_ohci for details.
17444
17445 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17446 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17447
17448commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
17449Author: Wolfgang Denk <wd@denx.de>
17450Date: Wed May 21 16:56:08 2008 +0200
17451
17452 Fix some whitespace issues
17453
17454 introduced by 53677ef18 "Big white-space cleanup."
17455
17456 Signed-off-by: Wolfgang Denk <wd@denx.de>
17457
17458commit 4416603aeb06861b468b06a981e52c3ff805db7b
17459Author: York Sun <yorksun@freescale.com>
17460Date: Mon May 12 14:36:39 2008 -0500
17461
17462 Make ads5121 out-of-tree compiling safe
17463
17464 Reuse the existing DIU driver in board/freescale/common.
17465
17466 Signed-off-by: York Sun <yorksun@freescale.com>
17467
17468commit 0e1bad47cd345c76c91a64caf41011e431b62599
17469Author: York Sun <yorksun@freescale.com>
17470Date: Mon May 5 10:20:01 2008 -0500
17471
17472 Adding DIU support for Freescale 5121ADS
17473
17474 Add DIU and cfb console support to FSL 5121ADS board.
17475
17476 Use #define CONFIG_VIDEO in config file to enable fb console.
17477
17478 Signed-off-by: York Sun <yorksun@freescale.com>
17479
17480commit a48ff68d235e671176f6b496c44246dbe5e0a93f
17481Author: York Sun <yorksun@freescale.com>
17482Date: Mon May 5 10:20:00 2008 -0500
17483
17484 Replace DPRINTF with debug
17485
17486 Remove DPRINTF macro and replace it with generic debug macro.
17487
17488 Signed-off-by: York Sun <yorksun@freescale.com>
17489
17490commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
17491Author: York Sun <yorksun@freescale.com>
17492Date: Mon May 5 10:19:59 2008 -0500
17493
17494 Move pixel clock setting to board file
17495
17496 The clock divider has different format in 5121 and 8610. This patch moves it to
17497 board specific code.
17498
17499 Signed-off-by: York Sun <yorksun@freescale.com>
17500
17501commit 53677ef18e25c97ac613349087c5cb33ae5a2741
17502Author: Wolfgang Denk <wd@denx.de>
17503Date: Tue May 20 16:00:29 2008 +0200
17504
17505 Big white-space cleanup.
17506
17507 This commit gets rid of a huge amount of silly white-space issues.
17508 Especially, all sequences of SPACEs followed by TAB characters get
17509 removed (unless they appear in print statements).
17510
17511 Also remove all embedded "vim:" and "vi:" statements which hide
17512 indentation problems.
17513
17514 Signed-off-by: Wolfgang Denk <wd@denx.de>
17515
17516commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
17517Author: Sergei Poselenov <sposelenov@emcraft.com>
17518Date: Thu May 8 17:46:23 2008 +0200
17519
17520 socrates: fix second TSEC configuration (it is actually TSEC3)
17521
17522 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17523
17524commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
17525Author: Sergei Poselenov <sposelenov@emcraft.com>
17526Date: Thu May 8 14:17:08 2008 +0200
17527
17528 Fixed reset for socrates
17529
17530 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17531
17532commit e18575d5f589a62e19c70d471d4b4e27cad3af56
17533Author: Sergei Poselenov <sposelenov@emcraft.com>
17534Date: Wed May 7 15:10:49 2008 +0200
17535
17536 socrates: changes to support FDT
17537
17538 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17539 Signed-off-by: Wolfgang Denk <wd@denx.de>
17540
17541commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
17542Author: Sergei Poselenov <sposelenov@emcraft.com>
17543Date: Wed Apr 30 11:42:50 2008 +0200
17544
17545 Initial support for "Socrates" board
17546
17547 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17548
17549commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
17550Author: Yuri Tikhonov <yur@emcraft.com>
17551Date: Thu May 8 15:46:42 2008 +0200
17552
17553 POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
17554
17555 This way we become able to utilize the full post_log_word for POST
17556 activities (overwise, POST ECC, which has 0x8000 ID, could be
17557 erroneously treated as started in post_output_backlog() even if there
17558 was actually no POST ECC run (because of OCM POST failure, for
17559 example).
17560
17561 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
17562
17563commit 7845d49094c81321021b50a4dbb8864d2f3777e4
17564Author: Yuri Tikhonov <yur@emcraft.com>
17565Date: Thu May 8 15:46:02 2008 +0200
17566
17567 POST: mark OCM test as POST_STOP
17568
17569 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
17570
17571commit 28a385065882d6cb6ac5f443311ff87887ed7c13
17572Author: Yuri Tikhonov <yur@emcraft.com>
17573Date: Thu May 8 15:45:26 2008 +0200
17574
17575 POST: add POST_STOP flag
17576
17577 Don't run futher tests in case of a test fails that is marked as
17578 POST_STOP.
17579
17580 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
17581 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
17582
17583commit a525145d8110d15b4389d23c3ea8a78f22509d3f
17584Author: Yuri Tikhonov <yur@emcraft.com>
17585Date: Thu May 8 15:44:16 2008 +0200
17586
17587 POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
17588
17589 Switch the OCM testid with the codec one. The reason is that current
17590 implementation requires the POST_ROM testid to fit into lower 16
17591 bits, and the codec test will never run with POST_ROM hopefully.
17592
17593 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
17594
17595commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
17596Author: Yuri Tikhonov <yur@emcraft.com>
17597Date: Thu May 8 15:43:28 2008 +0200
17598
17599 lwmon5: enable OCM post test on lwmon5 board
17600
17601 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
17602
17603commit 6e8ec682268493b8d098f99e17b1ce71b4448977
17604Author: Yuri Tikhonov <yur@emcraft.com>
17605Date: Thu May 8 15:42:47 2008 +0200
17606
17607 POST: OCM test added.
17608
17609 Added OCM test to POST layer. This version runs before all other tests
17610 but doesn't yet interrupt post sequence on failure.
17611
17612 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
17613 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
17614
17615commit 6891260bdd935a382c95d9fa333922b0dfded68a
17616Author: Yuri Tikhonov <yur@emcraft.com>
17617Date: Thu May 8 15:40:39 2008 +0200
17618
17619 POST: typo fix
17620
17621 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
17622
17623commit 727f63334676e760877d43bfb8f0e9331ac8b101
17624Author: Hebbar <gururajakr@sanyo.co.in>
17625Date: Tue May 20 02:16:36 2008 -0700
17626
17627 common/usb.c: fix incorrect escape sequence
17628
17629 Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
17630
17631commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
17632Author: York Sun <yorksun@freescale.com>
17633Date: Thu May 15 15:26:27 2008 -0500
17634
17635 Fix 8313ERDB board configuration
17636
17637 Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
17638 Correct TSEC1 vs TSEC2 assignment.
17639 Define ETHADDR and ETH1ADDR always.
17640
17641 Signed-off-by: York Sun <yorksun@freescale.com>
17642 Signed-off-by: Timur Tabi <timur@freescale.com>
17643
17644commit 2c289e320dcfb3760e99cf1d765cb067194a1202
17645Author: Jon Loeliger <jdl@freescale.com>
17646Date: Mon May 19 09:47:25 2008 -0500
17647
17648 mpc86xx: Removed unused and unconfigured memory test code.
17649
17650 Besides, other common code exists.
17651
17652 Signed-off-by: Jon Loeliger <jdl@freescale.com>
17653
17654commit 180a90abdae72587c0f679edf8991455e559440d
17655Author: Wolfgang Denk <wd@denx.de>
17656Date: Mon May 19 12:47:11 2008 +0200
17657
17658 Release v1.3.3
17659
17660 Update CHANGELOG for release.
17661
17662 Signed-off-by: Wolfgang Denk <wd@denx.de>
17663
Wolfgang Denk180a90a2008-05-19 12:47:11 +020017664commit 16bedc661de0dae767b1377d8413373a3fbcfa79
17665Author: Stefan Roese <sr@denx.de>
17666Date: Mon May 19 07:14:38 2008 +0200
17667
17668 ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
17669
17670 When SATA is selected (via jumper J6) we need to disable the first PCIe
17671 node in the device tree, so that Linux doesn't initialize it. Otherwise
17672 the Linux SATA driver will fail to detect the devices.
17673
17674 The same goes the other way around too. So if PCIe is selected we need
17675 to disable the SATA node in the device tree.
17676
17677 This is because PCIe port 0 and SATA on 460EX share the same pins
17678 (multiplexed) and we have to configure in U-Boot which peripheral is
17679 enabled.
17680
17681 Signed-off-by: Stefan Roese <sr@denx.de>
17682
17683commit 3cc27b426aeefe2930f911692e9df3143fb2565f
17684Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17685Date: Sun May 18 19:09:58 2008 +0200
17686
17687 i386: Fix multiple definitions of __show_boot_progress
17688
17689 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17690
17691commit 311f3446930c1e64c12026c1cfd00500b05be52d
17692Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17693Date: Sun May 18 19:09:57 2008 +0200
17694
17695 sc530_spunk: add missing SOBJS entry
17696
17697 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17698
17699commit a559317143b4f95927b08cd388707e6f077e95fa
17700Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17701Date: Sun May 18 19:09:56 2008 +0200
17702
17703 sc520_spunk: Fix flash
17704
17705 flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
17706 flash.c:398: error: label at end of compound statement
17707
17708 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17709
17710commit 91f221317af64191ee8caf303ea9305943158691
17711Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17712Date: Sun May 18 19:09:49 2008 +0200
17713
17714 drivers/pcmcia: add missing i82365
17715
17716 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17717
17718commit dd223944132f97ffa52977ea95e5a52428f5cc2f
17719Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17720Date: Sun May 18 19:09:47 2008 +0200
17721
17722 i386/bootm: remove unused var
17723
17724 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17725
17726commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
17727Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17728Date: Sun May 18 19:09:45 2008 +0200
17729
17730 example/gitignore: update with all generated examples
17731
17732 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17733
17734commit a38dc3ea8614f8b0c41e432b445a9959b9711295
17735Author: Wolfgang Denk <wd@denx.de>
17736Date: Thu May 15 00:42:45 2008 +0200
17737
17738 TQM8272: fix out-of-tree building
17739
17740 ...and add to MAKEALL script
17741
17742 Signed-off-by: Wolfgang Denk <wd@denx.de>
17743
17744commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
17745Author: Wolfgang Denk <wd@denx.de>
17746Date: Wed May 14 23:34:53 2008 +0200
17747
17748 environment: fix bug introduced by commit a8409f4f1ac8
17749
17750 env_get_char is not a function, but a pointer to one.
17751
17752 Signed-off-by: Wolfgang Denk <wd@denx.de>
17753
Wolfgang Denk01db2322008-06-28 23:16:01 +020017754commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
17755Author: Gary Jennejohn <garyj@denx.de>
17756Date: Wed May 14 13:39:22 2008 +0200
17757
17758 ppc4xx: QUAD100HD: Allow the environment to be put into flash.
17759
17760 After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect. Also
17761 use a redundant environment.
17762
17763 Signed-off-by: Gary Jennejohn <garyj@denx.de>
17764
Wolfgang Denk180a90a2008-05-19 12:47:11 +020017765commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
17766Author: Wolfgang Denk <wd@denx.de>
17767Date: Wed May 14 13:55:30 2008 +0200
17768
17769 Fix config files for out-of-tree building
17770
17771 Several board/<...>/config.mk files include dynamically built (by
17772 the Makefile) config files but used the wrong file name of
17773 $(TOPDIR)/board/$(BOARDDIR)/config.tmp
17774 instead if the correct
17775 $(OBJTREE)/board/$(BOARDDIR)/config.tmp
17776
17777 The bug is nasty because the build result is correct for the (normal)
17778 in-tree builds, and because 'sinclude' is used no errors get raised
17779 even for out-of-tree build tests. But out-of-tree builds use an
17780 incomplete and thus usually incorrect configuration...
17781
17782 Signed-off-by: Wolfgang Denk <wd@denx.de>
17783
17784commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
17785Author: Stefan Roese <sr@denx.de>
17786Date: Wed May 14 13:40:03 2008 +0200
17787
17788 ppc4xx: Fix bogus Canyonlands config.mk
17789
17790 This patch fixes the canyonlands config.mk file to enable correct
17791 out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
17792
17793 Signed-off-by: Stefan Roese <sr@denx.de>
17794
17795commit fdd1247a66d788a3446244f6fde9955a93c26322
17796Author: Stefan Roese <sr@denx.de>
17797Date: Wed May 14 10:32:32 2008 +0200
17798
17799 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
17800
17801 Canyonlands has a file ddr2_fixed.c which needs special treatment when
17802 building in separate directory. It has to be linked to build directory
17803 otherwise it is not seen.
17804
17805 Signed-off-by: Stefan Roese <sr@denx.de>
17806
17807commit a8409f4f1ac84c36273c1a1e341189662521bcfb
17808Author: Wolfgang Denk <wd@denx.de>
17809Date: Wed May 14 12:22:49 2008 +0200
17810
17811 environment: cleanup prototype declarations of env functions.
17812
17813 Signed-off-by: Wolfgang Denk <wd@denx.de>
17814
17815commit cf39b07948015c480b72a6e732cf7d839aa93a9e
17816Author: Wolfgang Denk <wd@denx.de>
17817Date: Wed May 14 12:21:48 2008 +0200
17818
17819 linkstation_HGLAN: Fix out of tree building.
17820
17821 Signed-off-by: Wolfgang Denk <wd@denx.de>
17822
17823commit 085551c05ca09e6c491ea11a1c6727a36776a545
17824Author: Stefan Roese <sr@denx.de>
17825Date: Wed May 14 10:32:32 2008 +0200
17826
17827 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
17828
17829 Canyonlands has a file ddr2_fixed.c which needs special treatment when
17830 building in separate directory. It has to be linked to build directory
17831 otherwise it is not seen.
17832
17833 Signed-off-by: Stefan Roese <sr@denx.de>
17834
17835commit 1510b82d50615f344e89d42533e8224cce067dc0
17836Author: Wolfgang Denk <wd@denx.de>
17837Date: Tue May 13 23:15:52 2008 +0200
17838
17839 Makefile: fix "error: version_autogenerated.h: No such file or directory"
17840
17841 Signed-off-by: Wolfgang Denk <wd@denx.de>
17842
Wolfgang Denk01db2322008-06-28 23:16:01 +020017843commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
17844Author: Stelian Pop <stelian@popies.net>
17845Date: Tue May 13 17:31:24 2008 +0200
17846
17847 Cleanup nand_info[] declaration.
17848
17849 The nand_info array is declared as extern in several .c files.
17850 Those days, nand.h contains a reference to the array, so there is
17851 no need to declare it elsewhere.
17852
17853 Signed-off-by: Stelian Pop <stelian@popies.net>
17854 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17855
Wolfgang Denk180a90a2008-05-19 12:47:11 +020017856commit 70fab1908fc1734a403711eaabbef546bc4b77dc
17857Author: Stefan Roese <sr@denx.de>
17858Date: Tue May 13 20:22:01 2008 +0200
17859
17860 ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
17861
17862 Signed-off-by: Stefan Roese <sr@denx.de>
17863
17864commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
17865Author: Wolfgang Denk <wd@denx.de>
17866Date: Mon May 12 01:11:21 2008 +0200
17867
17868 Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
17869
17870 This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
17871 which broke many PowerPC boards.
17872
17873commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
17874Author: Wolfgang Denk <wd@denx.de>
17875Date: Mon May 12 00:56:28 2008 +0200
17876
17877 Revert "Avoid initrd and logbuffer area overlaps"
17878
17879 This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
17880 which breaks building on all PPC boards that don't use a log buffer.
17881
17882commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
17883Author: Nick Spence <nick.spence@freescale.com>
17884Date: Sat May 10 14:02:04 2008 -0700
17885
17886 Fix offset calculation for multi-type legacy images.
17887
17888 Calculation of tail was incorrect when size % 4 == 0.
17889
17890 New code removes the conditional and does the same thing but with arithmetic
17891
17892 Signed-off-by: Nick Spence <nick.spence@freescale.com>
17893
17894commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
17895Author: Wolfgang Denk <wd@denx.de>
17896Date: Mon May 12 00:40:58 2008 +0200
17897
17898 Revert "Change env_get_char from a global function ptr to a function."
17899
17900 This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
17901 which is known to break booting from dataflash and NAND.
17902
17903commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
17904Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17905Date: Sun May 11 23:13:57 2008 +0200
17906
17907 API: remove duplicate syscall check
17908
17909 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17910
Wolfgang Denk01db2322008-06-28 23:16:01 +020017911commit 67e3beb52c320b0a31cf030716c99392cde2d532
17912Author: Stelian Pop <stelian@popies.net>
17913Date: Fri May 9 21:46:51 2008 +0200
17914
17915 AT91: Cleanup unused config header file definitions.
17916
17917 CONFIG_ENV_OVERWRITE is commented out in the config header files,
17918 so let's cleanup the files by removing the whole definition.
17919
17920 Signed-off-by: Stelian Pop <stelian@popies.net>
17921 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17922
17923commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
17924Author: Stelian Pop <stelian@popies.net>
17925Date: Thu May 8 14:52:34 2008 +0200
17926
17927 Support AT91CAP9 revC CPUs
17928
17929 The AT91CAP9 revC CPU has a few differences over the previous,
17930 revB CPU which was distributed in small quantities only (revA was
17931 an internal Atmel product only).
17932
17933 The revC silicon needs a special initialisation sequence to
17934 switch from the internal (imprecise) RC oscillator to the
17935 external 32k clock.
17936
17937 Signed-off-by: Stelian Pop <stelian@popies.net>
17938 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17939
17940commit 098b7b4b441b12c2a64dd517930f43c793542759
17941Author: Stelian Pop <stelian@popies.net>
17942Date: Thu May 8 14:52:33 2008 +0200
17943
17944 Use custom logo for Atmel boards
17945
17946 This patch adds a custom vendor logo for the Atmel AT91 boards.
17947
17948 Signed-off-by: Stelian Pop <stelian@popies.net>
17949 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17950
17951commit 761c70b80cdd3bead40146b96a8e713d6ae01632
17952Author: Stelian Pop <stelian@popies.net>
17953Date: Thu May 8 14:52:32 2008 +0200
17954
17955 AT91SAM9RLEK: hook up the ATMEL LCD driver
17956
17957 This patch makes the necessary adaptations (PIO configurations and
17958 defines in config header file) to hook up the Atmel LCD driver to the
17959 AT91SAM9RLEK board.
17960
17961 Signed-off-by: Stelian Pop <stelian@popies.net>
17962 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17963
17964commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
17965Author: Stelian Pop <stelian@popies.net>
17966Date: Thu May 8 14:52:31 2008 +0200
17967
17968 AT91SAM9263EK: hook up the ATMEL LCD driver
17969
17970 This patch makes the necessary adaptations (PIO configurations and
17971 defines in config header file) to hook up the Atmel LCD driver to the
17972 AT91SAM9263EK board.
17973
17974 Signed-off-by: Stelian Pop <stelian@popies.net>
17975 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17976
17977commit 820f2a958325061a446115f3035e48e4726b3390
17978Author: Stelian Pop <stelian@popies.net>
17979Date: Thu May 8 14:52:30 2008 +0200
17980
17981 AT91SAM9261EK: hook up the ATMEL LCD driver
17982
17983 This patch makes the necessary adaptations (PIO configurations and
17984 defines in config header file) to hook up the Atmel LCD driver to the
17985 AT91SAM9261EK board.
17986
17987 Signed-off-by: Stelian Pop <stelian@popies.net>
17988 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17989
17990commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
17991Author: Stelian Pop <stelian@popies.net>
17992Date: Thu May 8 14:52:29 2008 +0200
17993
17994 AT91CAP9ADK: hook up the ATMEL LCD driver
17995
17996 This patch makes the necessary adaptations (PIO configurations and
17997 defines in config header file) to hook up the Atmel LCD driver to the
17998 AT91CAP9ADK board.
17999
18000 Signed-off-by: Stelian Pop <stelian@popies.net>
18001 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18002
18003commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
18004Author: Stelian Pop <stelian@popies.net>
18005Date: Fri May 9 21:57:18 2008 +0200
18006
18007 Add ATMEL LCD driver
18008
18009 This patch adds support for the ATMEL LCDC driver which is used on some
18010 AT91 and AVR platforms.
18011
18012 Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
18013 AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
18014
18015 Signed-off-by: Stelian Pop <stelian@popies.net>
18016 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18017
18018commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
18019Author: Stelian Pop <stelian@popies.net>
18020Date: Thu May 8 18:52:25 2008 +0200
18021
18022 AT91SAM9RLEK support
18023
18024 This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
18025 board.
18026
18027 Signed-off-by: Stelian Pop <stelian@popies.net>
18028 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18029
18030commit 8e429b3eee23927c1222679f6b6f53667b21595c
18031Author: Stelian Pop <stelian@popies.net>
18032Date: Thu May 8 18:52:23 2008 +0200
18033
18034 AT91SAM9263EK support
18035
18036 This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
18037 board.
18038
18039 Signed-off-by: Stelian Pop <stelian@popies.net>
18040 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18041
18042commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
18043Author: Stelian Pop <stelian@popies.net>
18044Date: Thu May 8 20:52:22 2008 +0200
18045
18046 AT91SAM9261EK support
18047
18048 This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
18049 board.
18050
18051 Signed-off-by: Stelian Pop <stelian@popies.net>
18052 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18053
18054commit 86c8c8a414988c50104a3b02c29f50af2be738c0
18055Author: Stelian Pop <stelian@popies.net>
18056Date: Thu May 8 20:52:21 2008 +0200
18057
18058 AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
18059
18060 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
18061 in order to cope with the changes in DataFlash partitionning scheme
18062 (cset c3a60cb3).
18063
18064 Signed-off-by: Stelian Pop <stelian@popies.net>
18065 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18066
18067commit 96996ac25d5222611a8888968db6e53a6d3726da
18068Author: Stelian Pop <stelian@popies.net>
18069Date: Thu May 8 20:52:20 2008 +0200
18070
18071 AT91SAM9260EK: Normalize BOOTARGS
18072
18073 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
18074 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
18075 variable.
18076
18077 Signed-off-by: Stelian Pop <stelian@popies.net>
18078 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18079
18080commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
18081Author: Stelian Pop <stelian@popies.net>
18082Date: Thu May 8 20:52:19 2008 +0200
18083
18084 AT91SAM9260EK: Normalize SPI timings
18085
18086 This patch changes the SPI timings to closely match the ones
18087 used by the Linux kernel and the Atmel's own bootstrap project.
18088
18089 Signed-off-by: Stelian Pop <stelian@popies.net>
18090 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18091
18092commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
18093Author: Stelian Pop <stelian@popies.net>
18094Date: Thu May 8 20:52:18 2008 +0200
18095
18096 AT91SAM9260EK: Handle 8 or 16 bit NAND
18097
18098 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
18099 makes the support configurable in the board config header file
18100 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
18101
18102 Signed-off-by: Stelian Pop <stelian@popies.net>
18103 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18104
18105commit ab52640fc01624e208424e527af0b7b3a5a65a12
18106Author: Stelian Pop <stelian@popies.net>
18107Date: Thu May 8 20:52:17 2008 +0200
18108
18109 AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
18110
18111 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
18112 in order to cope with the changes in DataFlash partitionning scheme
18113 (cset c3a60cb3).
18114
18115 Signed-off-by: Stelian Pop <stelian@popies.net>
18116 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18117
18118commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
18119Author: Stelian Pop <stelian@popies.net>
18120Date: Thu May 8 20:52:16 2008 +0200
18121
18122 AT91CAP9ADK: Normalize BOOTARGS
18123
18124 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
18125 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
18126 variable.
18127
18128 Signed-off-by: Stelian Pop <stelian@popies.net>
18129 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18130
18131commit 93da48b910511911ce110656e17ed733c8ac4c45
18132Author: Stelian Pop <stelian@popies.net>
18133Date: Thu May 8 20:52:15 2008 +0200
18134
18135 AT91CAP9ADK: Normalize SPI timings
18136
18137 This patch changes the SPI timings to closely match the ones
18138 used by the Linux kernel and the Atmel's own bootstrap project.
18139
18140 Signed-off-by: Stelian Pop <stelian@popies.net>
18141 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18142
18143commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
18144Author: Stelian Pop <stelian@popies.net>
18145Date: Thu May 8 20:52:14 2008 +0200
18146
18147 AT91CAP9ADK: Handle 8 or 16 bit NAND
18148
18149 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
18150 makes the support configurable in the board config header file
18151 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
18152
18153 Signed-off-by: Stelian Pop <stelian@popies.net>
18154 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18155
18156commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
18157Author: Stelian Pop <stelian@popies.net>
18158Date: Thu May 8 20:52:13 2008 +0200
18159
18160 Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
18161
18162 All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
18163 below avoids the duplication of u-boot.lds by putting the file in the
18164 cpu directory instead of the board one.
18165
18166 Signed-off-by: Stelian Pop <stelian@popies.net>
18167 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18168
18169commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
18170Author: Stelian Pop <stelian@popies.net>
18171Date: Thu May 8 20:52:12 2008 +0200
18172
18173 Add proper copyright notices in Atmel boards Makefiles
18174
18175 The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
18176 copyright notice. This patch adds the missing pieces.
18177
18178 Signed-off-by: Stelian Pop <stelian@popies.net>
18179 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18180
18181commit e817a042cef6164bf26fee86f90326f2ec9e6745
18182Author: Stelian Pop <stelian@popies.net>
18183Date: Thu May 8 20:52:11 2008 +0200
18184
18185 Add copyright information in Atmel boards partition.c
18186
18187 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
18188 the new created files. This patch fixes the problem.
18189
18190 Signed-off-by: Stelian Pop <stelian@popies.net>
18191 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18192
18193commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
18194Author: Stelian Pop <stelian@popies.net>
18195Date: Thu May 8 20:52:10 2008 +0200
18196
18197 Update origin and copyright information in arch-at91sam9 header files
18198
18199 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
18200 copied from the Linux kernel sources. This patch explicitly specifies
18201 this origin for all the copied headers, and for those missing copyright
18202 information, adds it.
18203
18204 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
18205 in the latest kernel sources by 'at91sam9_smc.h'.
18206
18207 The copyright information has been confirmed by the AT91 Linux kernel
18208 maintainer, Andrew Victor <avictor.za@gmail.com>.
18209
18210 Signed-off-by: Stelian Pop <stelian@popies.net>
18211 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18212
Wolfgang Denk180a90a2008-05-19 12:47:11 +020018213commit 79dd1712689d6a5031d7cbff54957049680751c7
18214Author: Markus Klotzbücher <mk@denx.de>
18215Date: Thu May 8 16:00:55 2008 +0200
18216
18217 ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
18218
18219 When using dhcp/bootp the "netmask" environment variable is not set
18220 because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
18221 desireable, so the following patch adds this this option to the board
18222 config.
18223
18224 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
18225 Signed-off-by: Stefan Roese <sr@denx.de>
18226
18227commit 869d14b4cc2e47de2ddcb117bad0407a44436684
18228Author: Stefan Roese <sr@denx.de>
18229Date: Sat May 10 10:30:36 2008 +0200
18230
18231 ppc4xx: Update Makalu defconfig to use device-tree booting as default
18232
18233 This patch reworks the default environment on Makalu. Now "net_nfs" for
18234 example uses the device-tree style booting formerly know as "net_nfs_fdt".
18235 Also the addresses in RAM were changed because of the new image booting
18236 support, which check for image overwriting. So the addresses needed to
18237 get adjusted.
18238
18239 Signed-off-by: Stefan Roese <sr@denx.de>
18240
18241commit f3612a7b199cab3942f60d9c1392eb39d58cc699
18242Author: Becky Bruce <bgill@freescale.com>
18243Date: Wed May 7 13:28:16 2008 -0500
18244
18245 PPC: fix map_physmem build warning
18246
18247 map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
18248 enabled. This quiets the warning.
18249
18250 Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
18251
18252commit 36f32675f40292002ee1fed252c180a43022d2d4
18253Author: Becky Bruce <bgill@freescale.com>
18254Date: Wed May 7 13:24:57 2008 -0500
18255
18256 Update pci code to use phys_addr_t
18257
18258 Physical addrs need to be represented by phys_addr_t, not
18259 unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT
18260 are going to fail mightily.
18261
18262 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
18263
18264commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
18265Author: Nick Spence <nick.spence@freescale.com>
18266Date: Thu May 8 22:32:22 2008 -0700
18267
18268 Support legacy multi-type images without FDT section.
18269
18270 This patch enables legacy multi-type images containing only a Linux kernel
18271 and root file system to be loaded, maintaining compatibility with previous
18272 versions of u-boot.
18273
18274 This is required when using old image files such as a Linux 2.4 kernel /
18275 filesystem.
18276
18277 Signed-off-by: Nick Spence <nick.spence@freescale.com>
18278 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
18279
18280commit 881031d9732783b7aeae2198fc7eb480ae8974a6
18281Author: Wolfgang Denk <wd@denx.de>
18282Date: Sat May 10 00:38:02 2008 +0200
18283
18284 Update CHANGELOG.
18285
18286 Signed-off-by: Wolfgang Denk <wd@denx.de>
18287
Wolfgang Denk881031d2008-05-10 00:38:02 +020018288commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
18289Author: Wolfgang Denk <wd@denx.de>
18290Date: Sat May 10 00:36:09 2008 +0200
18291
18292 post/cpu/ppc4xx/Makefile: line length cleanup
18293
18294 Signed-off-by: Wolfgang Denk <wd@denx.de>
18295
18296commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
18297Author: Stelian Pop <stelian@popies.net>
18298Date: Thu May 8 22:52:09 2008 +0200
18299
18300 Fix @ -> <at> substitution
18301
18302 When applying the AT91CAP9 patches upstream, something transformed
18303 the '@' character into the ' <at> ' sequence.
18304
18305 The patch below restores the original form in all the places where
18306 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
18307 were copied from AT91CAP9, and a couple of other files where the
18308 ' <at> ' sequence was present).
18309
18310 Signed-off-by: Stelian Pop <stelian@popies.net>
18311
18312commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
18313Author: Stelian Pop <stelian@popies.net>
18314Date: Thu May 8 22:52:10 2008 +0200
18315
18316 Update origin and copyright information in arch-at91sam9 header files
18317
18318 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
18319 copied from the Linux kernel sources. This patch explicitly specifies
18320 this origin for all the copied headers, and for those missing copyright
18321 information, adds it.
18322
18323 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
18324 in the latest kernel sources by 'at91sam9_smc.h'.
18325
18326 The copyright information has been confirmed by the AT91 Linux kernel
18327 maintainer, Andrew Victor <avictor.za@gmail.com>.
18328
18329 Signed-off-by: Stelian Pop <stelian@popies.net>
18330
18331commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
18332Author: Stelian Pop <stelian@popies.net>
18333Date: Thu May 8 22:52:11 2008 +0200
18334
18335 Add copyright information in Atmel boards partition.c
18336
18337 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
18338 the new created files. This patch fixes the problem.
18339
18340 Signed-off-by: Stelian Pop <stelian@popies.net>
18341
18342commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
18343Author: Guennadi Liakhovetski <lg@denx.de>
18344Date: Thu May 8 10:09:27 2008 +0200
18345
18346 mx31ads: fix 32kHz clock handling
18347
18348 According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
18349 oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
18350 Also fix a typo when verifying a jumper configuration. While at it, make
18351 two needlessly global functions static.
18352
18353 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18354
18355commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
18356Author: Marian Balakowicz <m8@semihalf.com>
18357Date: Wed May 7 13:10:04 2008 +0200
18358
18359 Avoid initrd and logbuffer area overlaps
18360
18361 Add logbuffer to reserved LMB areas to prevent initrd allocation
18362 from overlaping with it.
18363
18364 Make sure to use correct logbuffer base address.
18365
18366 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
18367
18368commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
18369Author: Marian Balakowicz <m8@semihalf.com>
18370Date: Wed May 7 13:08:54 2008 +0200
18371
18372 ppc: Cleanup get_effective_memsize() use
18373
18374 Removed duplicated effective memory size calculation code.
18375
18376 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
18377
18378commit 273c37d843d5b581090378016cd12dd9c586907b
18379Author: Marian Balakowicz <m8@semihalf.com>
18380Date: Wed May 7 09:03:53 2008 +0200
18381
18382 Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
18383
18384 Recent modifcations to LOGBUFFER handling code were incorrecly
18385 introduced to fit_check_kernel() routine during
18386 "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
18387 commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
18388
18389 This patch cleans up this merge issue.
18390
18391 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
18392
18393commit bc11756daff89a3de09ca80adac962b88cf06e6e
18394Author: Grant Erickson <gerickson@nuovations.com>
18395Date: Tue May 6 20:16:15 2008 -0700
18396
18397 Propagate Error Status to the Shell on fw_printenv Errors
18398
18399 Changed implementation such that fw_printenv returns failure status
18400 when one or more specified variables do not exist or when incorrect
18401 command syntax is used.
18402
18403 This aids scripting fw_printenv such that the script can key of the
18404 return status rather than relying on standard error "scraping".
18405
18406 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
18407 Signed-off-by: Wolfgang Denk <wd@denx.de>
18408
18409commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
18410Author: Grant Erickson <gerickson@nuovations.com>
18411Date: Tue May 6 16:18:00 2008 -0700
18412
18413 Fix Compilation Errors with 'tools/env/fw_printenv'
18414
18415 In the current top-of-tree, 1.3.3.-rc2, the optional tool
18416 'tools/env/fw_printenv' fails to compile for two reasons:
18417
18418 1) The header watchdog.h cannot be found.
18419 2) The header zlib.h is picked up from the tool chain rather than the
18420 project causing a prototype conflict for crc32.
18421
18422 This patch addresses both of these issues.
18423
18424 Platforms Tested On:
18425 - AMCC "Kilauea"
18426
18427 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
18428
18429commit 597f6c26a18b389903a64692bacbf9a1ca69355b
18430Author: James Yang <James.Yang@freescale.com>
18431Date: Mon May 5 10:22:53 2008 -0500
18432
18433 Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
18434
18435 When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
18436 work before relocating to RAM because command history is written into
18437 a global array that is not writable before relocation. This patch
18438 defers to the no-editing and no-history code in readline_into_buffer()
18439 if it is called before relocation.
18440
18441 Signed-off-by: James Yang <James.Yang@freescale.com>
18442 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18443
18444commit 726c0f1e5f108dccea052965123b95837d2bd402
18445Author: Detlev Zundel <dzu@denx.de>
18446Date: Mon May 5 16:11:22 2008 +0200
18447
18448 cosmetic: Adjust coding style for switch statements to be consistent
18449
18450 Signed-off-by: Detlev Zundel <dzu@denx.de>
18451
18452commit 574b319512b13e10800f0045e39b993f4ca25e42
18453Author: Detlev Zundel <dzu@denx.de>
18454Date: Mon May 5 16:11:21 2008 +0200
18455
18456 Fix disk type output in disk/part.c
18457
18458 Signed-off-by: Detlev Zundel <dzu@denx.de>
18459
18460commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
18461Author: Vlad Lungu <vlad.lungu@windriver.com>
18462Date: Mon May 5 14:20:03 2008 +0300
18463
18464 Mail address change, documentation modified
18465
18466 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
18467
18468commit 4d49b28038e2819088e8356a77212fc95a89ce5a
18469Author: Michal Simek <monstr@monstr.eu>
18470Date: Sun May 4 15:42:41 2008 +0200
18471
18472 microblaze: Repare intc handling
18473
18474 Signed-off-by: Michal Simek <monstr@monstr.eu>
18475
18476commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
18477Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18478Date: Sun May 4 15:17:52 2008 +0200
18479
18480 include/gitignore: update to all architectures
18481
18482 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18483
18484commit 1df368aed3b8bc240fe1595d290b0e91b22961da
18485Author: Marcel Ziswiler <marcel@ziswiler.com>
18486Date: Mon May 5 02:12:06 2008 +0200
18487
18488 ide: Remove spurious second include of io.h
18489
18490 Removed the second include, with all the #ifdef around as suggested by Wolfgang.
18491
18492 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
18493
18494commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
18495Author: Adrian Filipi <adrian.filipi@eurotech.com>
18496Date: Tue May 6 16:46:37 2008 -0400
18497
18498 Fix some typos
18499
18500 This patch fixes three typos.
18501 The first is a repetition of CONFIG_CMD_BSP.
18502 The second makes the #endif comment match its #if.
18503 The third is a spelling error.
18504
18505 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
18506
18507commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
18508Author: Grant Erickson <gerickson@nuovations.com>
18509Date: Sun May 4 16:45:01 2008 -0700
18510
18511 Recognize 'powerpc' As an Alias for IH_ARCH_PPC
18512
18513 Add support for the recognition of 'powerpc' as an alias for the PowerPC
18514 architecture type since Linux is already trending in that direction,
18515 preferring 'powerpc' to 'ppc'.
18516
18517 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
18518
18519commit f5a24259190c388c2527bdc49fee34577d862cc7
18520Author: Wheatley Travis <Travis.Wheatley@freescale.com>
18521Date: Fri May 2 13:35:15 2008 -0700
18522
18523 7450 and 86xx L2 cache invalidate bug corrections
18524
18525 The 7610 and related parts have an L2IP bit in the L2CR that is
18526 monitored to signal when the L2 cache invalidate is complete whereas the
18527 7450 and related parts utilize L2I for this purpose. However, the
18528 current code does not account for this difference. Additionally the 86xx
18529 L2 cache invalidate code used an "andi" instruction where an "andis"
18530 instruction should have been used.
18531
18532 This patch addresses both of these bugs.
18533
18534 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
18535 Acked-By: Jon Loeliger <jdl@freescale.com>
18536
18537commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
18538Author: Wolfgang Denk <wd@denx.de>
18539Date: Fri May 9 10:16:13 2008 +0200
18540
18541 Avoid infinite loop "Generating include/autoconf.mk"
18542
18543 Fix a bogus circular dependency that caused an infinite loop of
18544 "Generating include/autoconf.mk" again and again.
18545
18546 Signed-off-by: Wolfgang Denk <wd@denx.de>
18547
Wolfgang Denk01db2322008-06-28 23:16:01 +020018548commit 567fb852178dbf59529d7301620a3f3732a4b02d
18549Author: Stelian Pop <stelian@popies.net>
18550Date: Thu May 8 22:52:09 2008 +0200
18551
18552 Fix @ -> <at> substitution
18553
18554 When applying the AT91CAP9 patches upstream, something transformed
18555 the '@' character into the ' <at> ' sequence.
18556
18557 The patch below restores the original form in all the places where
18558 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
18559 were copied from AT91CAP9, and a couple of other files where the
18560 ' <at> ' sequence was present).
18561
18562 Signed-off-by: Stelian Pop <stelian@popies.net>
18563 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18564
18565commit 73ccb3410a0785593cda7aee455dfc51f790e281
18566Author: Gary Jennejohn <gary.jennejohn@freenet.de>
18567Date: Mon Apr 28 14:04:32 2008 +0200
18568
18569 ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
18570
18571 Signed-off-by: Gary Jennejohn <garyj@denx.de>
18572 Signed-off-by: Stefan Roese <sr@denx.de>
18573
Wolfgang Denk881031d2008-05-10 00:38:02 +020018574commit ef2642625cbfb1c3695e3478d08ae515052a4950
18575Author: Stefan Roese <sr@denx.de>
18576Date: Thu May 8 11:10:46 2008 +0200
18577
18578 ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
18579
18580 Signed-off-by: Stefan Roese <sr@denx.de>
18581
18582commit a00eccfebc954ad9485161efeca7d9aaf626d530
18583Author: Stefan Roese <sr@denx.de>
18584Date: Thu May 8 11:05:15 2008 +0200
18585
18586 ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
18587
18588 This patch adds fdt (flattened device tree) support to all remaining AMCC
18589 eval boards. Most newer boards already support device tree. With this patch,
18590 all AMCC boards now enable device tree passing from U-Boot to Linux
18591 arch/powerpc kernels.
18592
18593 Signed-off-by: Stefan Roese <sr@denx.de>
18594
18595commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
18596Author: Stefan Roese <sr@denx.de>
18597Date: Thu May 8 11:01:09 2008 +0200
18598
18599 ppc4xx: Add weak default ft_board_setup() routine
18600
18601 This patch adds a default ft_board_setup() routine to the 4xx fdt code.
18602 This routine is defined as weak and can be overwritten by a board specific
18603 one if needed.
18604
18605 Signed-off-by: Stefan Roese <sr@denx.de>
18606
18607commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
18608Author: Stefan Roese <sr@denx.de>
18609Date: Thu May 8 10:48:58 2008 +0200
18610
18611 ppc4xx: acadia: Add fdt support and fix section overlap problem
18612
18613 This patch adds fdt (flattened device tree) support to the AMCC
18614 Acadia eval board. This increases the image size and it doesn't
18615 fit anymore into 256kByte. Since we didn't want to remove features
18616 from the configuration, we decided to increase the U-Boot image size
18617 (add one flash sector).
18618
18619 Also changed the default environment definition to make it
18620 independent of such changes.
18621
18622 Signed-off-by: Stefan Roese <sr@denx.de>
18623
18624commit 4adb3023de75bc150f088c8935db340930ad38c8
18625Author: Ira Snyder <iws@ovro.caltech.edu>
18626Date: Tue Apr 29 11:18:54 2008 -0700
18627
18628 ppc4xx: Add device tree support to AMCC Yosemite
18629
18630 Add support for booting with a device tree blob. This is needed to boot
18631 ARCH=powerpc kernels. Also add support for setting the eth0 mac address
18632 via the ethaddr variable.
18633
18634 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
18635 Signed-off-by: Stefan Roese <sr@denx.de>
18636
18637commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
18638Author: Dave Mitchell <dmitchell@amcc.com>
18639Date: Wed May 7 09:00:23 2008 -0700
18640
18641 ppc4xx: Fix typos in 460GT/EX FBDV array
18642
18643 Corrected two typos in the 460GT/EX FBDV array.
18644
18645 Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
18646 Signed-off-by: Stefan Roese <sr@denx.de>
18647
18648commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
18649Author: Andy Fleming <afleming@freescale.com>
18650Date: Wed May 7 16:54:31 2008 -0500
18651
18652 85xx: Limit CPU2 workaround to parts that have the errata
18653
18654 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
18655 Signed-off-by: Andy Fleming <afleming@freescale.com>
18656
18657commit a5fe514e8ace564300d2c1d73846ddff49654243
18658Author: Lee Nipper <lee.nipper@freescale.com>
18659Date: Fri Apr 25 15:44:45 2008 -0500
18660
18661 mpc83xx: system performance settings for MPC8349EMDS.
18662
18663 These same settings are used on MPC8349ITX, and
18664 improve performance on MPC8349EMDS.
18665
18666 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
18667 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18668
18669commit 49387dba910e485640b575e920ee463b7e611dc3
18670Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18671Date: Tue May 6 13:22:52 2008 +0900
18672
18673 [MIPS] cpu/mips/cache.S: Fix build warning
18674
18675 Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
18676 warns illegal global symbol references by bal (and jal also) instruction.
18677 This does not happen with the latest binutils v2.18.
18678
18679 Here's an example on gth2_config:
18680
18681 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
18682 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
18683 c -EB -c -o cache.o cache.S
18684 cache.S: Assembler messages:
18685 cache.S:243: Warning: Pretending global symbol used as branch target is local.
18686 cache.S:250: Warning: Pretending global symbol used as branch target is local.
18687
18688 In principle, gas might be sensitive to global symbol references in PIC
18689 code because they should be processed through GOT (global offset table).
18690 But if `bal' instruction is used, it results in PC-based offset jump.
18691 This is the cause of this warning.
18692
18693 In practice, we know it doesn't matter whether PC-based reference or GOT-
18694 based. As for this case, both will work before/after relocation. But let's
18695 fix the code.
18696
18697 This patch explicitly sets up a target address, then jump there.
18698 Here's an example of disassembled code with/without this patch.
18699
18700 90000668: 1485ffef bne a0,a1,90000628 <mips_cache_reset+0x20>
18701 9000066c: ac80fffc sw zero,-4(a0)
18702 90000670: 01402821 move a1,t2
18703 -90000674: 0411ffba bal 90000560 <mips_init_icache>
18704 -90000678: 01803021 move a2,t4
18705 -9000067c: 01602821 move a1,t3
18706 -90000680: 0411ffcc bal 900005b4 <mips_init_dcache>
18707 -90000684: 01a03021 move a2,t5
18708 -90000688: 03000008 jr t8
18709 -9000068c: 00000000 nop
18710 +90000674: 01803021 move a2,t4
18711 +90000678: 8f8f83ec lw t7,-31764(gp)
18712 +9000067c: 01e0f809 jalr t7
18713 +90000680: 00000000 nop
18714 +90000684: 01602821 move a1,t3
18715 +90000688: 01a03021 move a2,t5
18716 +9000068c: 8f8f81e0 lw t7,-32288(gp)
18717 +90000690: 01e0f809 jalr t7
18718 +90000694: 00000000 nop
18719 +90000698: 03000008 jr t8
18720 +9000069c: 00000000 nop
18721
18722 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18723
18724commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
18725Author: Vlad Lungu <vlad.lungu@windriver.com>
18726Date: Mon May 5 14:04:00 2008 +0300
18727
18728 Allow building mips versions with ELDK 3.1.1
18729
18730 .gpword works only with local symbols on certain binutils versions
18731
18732 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
18733
18734commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
18735Author: Wolfgang Denk <wd@denx.de>
18736Date: Mon May 5 12:52:36 2008 +0200
18737
18738 MAKEALL: add inka4x0 board
18739
18740 Signed-off-by: Wolfgang Denk <wd@denx.de>
18741
18742commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
18743Author: Wolfgang Denk <wd@denx.de>
18744Date: Sun May 4 21:34:23 2008 +0200
18745
18746 kb9202 board: fix build problem.
18747
18748 Signed-off-by: Wolfgang Denk <wd@denx.de>
18749
18750commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
18751Author: Wolfgang Denk <wd@denx.de>
18752Date: Sun May 4 12:10:33 2008 +0200
18753
18754 Prepare for v1.3.3-rc3
18755
18756 Update ChNAGELOG, minor white space cleanup.
18757
18758 Signed-off-by: Wolfgang Denk <wd@denx.de>
18759
Wolfgang Denk6adf61d2008-05-04 12:10:33 +020018760commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
18761Author: Wolfgang Denk <wd@denx.de>
18762Date: Sun May 4 00:35:15 2008 +0200
18763
18764 drivers/net/tsec.c: Fix typo.
18765
18766 Signed-off-by: Wolfgang Denk <wd@denx.de>
18767
18768commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
18769Author: Mike Frysinger <vapier@gentoo.org>
18770Date: Fri May 2 21:45:12 2008 -0400
18771
18772 version_autogenerated.h: use printf rather than echo -n
18773
18774 Some systems are dumb and do not implement the -n flag to echo (like OS X).
18775 Convert the Makefile to use printf as this should work everywhere.
18776
18777 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18778 Signed-off-by: Wolfgang Denk <wd@denx.de>
18779
18780commit 4acc2a108ad0a669165924704a6cb083f9138242
18781Author: Mike Frysinger <vapier@gentoo.org>
18782Date: Fri May 2 18:17:50 2008 -0400
18783
18784 fix building when saveenv is disabled in some setups
18785
18786 If you enable environment in the flash, but disable the embedded
18787 option, and you disable the saveenv command, then the #if nested
18788 logic will trigger a compile failure:
18789 env_flash.c: In function 'env_relocate_spec':
18790 env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
18791 The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
18792
18793 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18794
18795commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
18796Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
18797Date: Fri May 2 16:10:04 2008 -0400
18798
18799 SBC8548: fix address mask to allow 64M flash
18800
18801 Fix incorrect mask to enable all 64MB of onboard flash.
18802 Previously U-Boot incorrectly mapped only 8MB of flash, this
18803 patch correctly maps all the available flash.
18804
18805 Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
18806
18807commit 3648085c464c8c22ef76fab006ca4344d3796124
18808Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18809Date: Fri May 2 19:48:56 2008 +0200
18810
18811 qemu_mips: add README
18812
18813 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18814
18815commit 6fdd002689190a0022c7b3dbab37fcba724580ce
18816Author: Marcel Ziswiler <marcel@ziswiler.com>
18817Date: Fri May 2 02:35:59 2008 +0200
18818
18819 Fix misspelled comment
18820
18821 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
18822
18823commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
18824Author: Mike Frysinger <vapier@gentoo.org>
18825Date: Thu May 1 04:13:05 2008 -0400
18826
18827 mkimage: make mmap() checks consistent
18828
18829 The mmap() related code is full of inconsistent casts/constants when
18830 it comes to error checking, and may break when building on some
18831 systems (like ones that do not implicitly define the caddr_t type).
18832 Let's just avoid the whole mess by writing the code nice and clean in
18833 the first place.
18834
18835 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18836
18837commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
18838Author: Marcel Ziswiler <marcel@ziswiler.com>
18839Date: Thu May 1 09:05:34 2008 +0200
18840
18841 Fix defined but not used build warning
18842
18843 - warning: 'srom' defined but not used
18844
18845 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
18846
18847commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
18848Author: Marcel Ziswiler <marcel@ziswiler.com>
18849Date: Thu May 1 09:05:26 2008 +0200
18850
18851 Fix implicit declaration build warnings
18852
18853 - warning: implicit declaration of function ‘serial_initialize’
18854
18855 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
18856
18857commit 9acde129cc3f9c1b3bc11a821480dd446774d618
18858Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
18859Date: Tue Apr 29 19:18:32 2008 +0200
18860
18861 TSEC: add config options for VSC8601 RGMII PHY
18862
18863 The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
18864 and Tx clock lines. They are configured using 2 bits in extended
18865 register 0x17.
18866 Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
18867 been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
18868
18869 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
18870 Acked-by: Andy Fleming <afleming@freescale.com>
18871 Acked-by: Ben Warren <biggerbadderben@gmail.com>
18872 --
18873
18874 drivers/net/tsec.c | 6 ++++++
18875 drivers/net/tsec.h | 3 +++
18876 2 files changed, 9 insertions(+), 0 deletions(-)
18877
18878commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
18879Author: Wolfgang Denk <wd@denx.de>
18880Date: Sat May 3 23:07:15 2008 +0200
18881
18882 Revert "ColdFire: Get information from the correct GCC"
18883
18884 This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
18885 (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
18886
18887commit c4e5f52a58d278eebb87f476e353972c5dacea40
18888Author: Wolfgang Denk <wd@denx.de>
18889Date: Sat May 3 22:25:00 2008 +0200
18890
18891 config.mk: use correct (cross) compiler
18892
18893 Some config.mk files reference $(CC) to test for specific tool chain
18894 features, so make sure $(CC) gets set before including any such
18895 config files.
18896
18897 This patch replaces commit b7166e05a5 ("ColdFire: Get information from
18898 the correct GCC").
18899
18900 Signed-off-by: Wolfgang Denk <wd@denx.de>
18901
18902commit 27c38689d0cfde0e444239345f97b5eecc9f4067
18903Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18904Date: Thu May 1 02:13:44 2008 +0200
18905
18906 pxa: fix previous definition on cpu init
18907
18908 start.S:183:1: warning: "ICMR" redefined
18909 In file included from start.S:33:
18910 include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
18911 start.S:187:1: warning: "RCSR" redefined
18912 ...
18913
18914 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18915
18916commit 6d12e697de794d700767f22f950e3026ccf4daf6
18917Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18918Date: Thu May 1 02:13:43 2008 +0200
18919
18920 pxa: fix pcmcia operation on 'i' may be undefined
18921
18922 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18923 Signed-off-by: Wolfgang Denk <wd@denx.de>
18924
18925commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
18926Author: Kumar Gala <galak@kernel.crashing.org>
18927Date: Wed Apr 30 16:24:35 2008 -0500
18928
18929 MPC8610HPCD: Drop -O2 from the build flags
18930
18931 Make the flags use -Os like all other boards
18932
18933 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18934
18935commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
18936Author: Stefan Roese <sr@denx.de>
18937Date: Wed Apr 30 15:50:39 2008 +0200
18938
18939 RTC: Fix month offset by one problem in M41T62 RTC driver
18940
18941 This patch fixes a problem with the month being read and written
18942 incorrectly (offset by one). This only gets visible by also using
18943 the Linux driver (rtc-m41t80).
18944
18945 Tested on AMCC Canyonlands.
18946
18947 Signed-off-by: Stefan Roese <sr@denx.de>
18948
18949commit 141ba1cad8e6598a2466e7e2976c6a12285df619
18950Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18951Date: Sat May 3 13:51:44 2008 +0900
18952
18953 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
18954
18955 Current trick to pick up GNU assembler minor version uses a dot(.) as a
18956 delimiter, and take the second field to obtain minor version number. But
18957 as can be expected, this doesn't work with a version string which has
18958 dots more than needs.
18959
18960 Here's an example:
18961
18962 $ mips-linux-gnu-as --version | grep 'GNU assembler'
18963 GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
18964 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
18965 2-129) 2
18966 $
18967
18968 This patch restricts the version format to 2.XX.XX... This will work
18969 in most cases.
18970
18971 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
18972 2.18.50.20080215
18973 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
18974 18
18975 $
18976
18977 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18978
18979commit ea638951acead7f1086c908c0b9f086beab82a22
18980Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18981Date: Sat May 3 13:51:28 2008 +0900
18982
18983 [MIPS] cpu/mips/cache.S: Add dcache_enable
18984
18985 Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
18986 "allow ports to override bootelf behavior") requires ports to have this
18987 function.
18988
18989 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18990 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18991
18992commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
18993Author: Wolfgang Denk <wd@denx.de>
18994Date: Thu May 1 21:30:16 2008 +0200
18995
18996 onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
18997
18998 Onenand needs a version of memcpy() which performs 16 bit accesses
18999 only; make sure the name does not conflict with the standard
19000 function.
19001
19002 Signed-off-by: Wolfgang Denk <wd@denx.de>
19003
19004commit 12bc4e94251c369c529ffa505cf58b148c372f7f
19005Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19006Date: Wed Apr 30 22:38:17 2008 +0200
19007
19008 cmd_nand: fix warning: str2long ncompatible pointer type
19009
19010 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19011
19012commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
19013Author: Timur Tabi <timur@freescale.com>
19014Date: Fri Apr 4 11:16:11 2008 -0500
19015
19016 Fix calculation of I2C clock for some 86xx chips
19017
19018 Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
19019 There is no pattern that can be used to determine which chips use which
19020 frequency, so the only way to determine is to look up the actual SOC
19021 designation and use the right value for that SOC.
19022
19023 Signed-off-by: Timur Tabi <timur@freescale.com>
19024
19025commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
19026Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19027Date: Wed Apr 30 12:11:19 2008 -0500
19028
19029 ColdFire: Fix ethernet hang issue for mcf547x_8x
19030
19031 The ethernet hang is caused by receiving buffer in DRAM is not
19032 yet ready due to access cycles require longer time in DRAM.
19033 Relocate DMA buffer descriptors from DRAM to internal SRAM.
19034
19035 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19036
19037commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
19038Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19039Date: Wed Apr 30 12:10:47 2008 -0500
19040
19041 ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
19042
19043 Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
19044 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19045
19046commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
19047Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19048Date: Wed Apr 30 12:10:23 2008 -0500
19049
19050 ColdFire: Get information from the correct GCC
19051
19052 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
19053 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19054
19055commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
19056Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
19057Date: Wed Apr 30 18:02:59 2008 +0200
19058
19059 Fix warning in env_nand.c if compiled for DaVinci Schmoogie
19060
19061 Fix warnings
19062
19063 nv_nand.c: In function 'saveenv':
19064 env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
19065 env_nand.c: In function 'env_relocate_spec':
19066 env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
19067
19068 if compiled for davinci_schmoogie_config.
19069
19070 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
19071 Ack by: Sergey Kubushyn <ksi@koi8.net>
19072
19073commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
19074Author: Anatolij Gustschin <agust@denx.de>
19075Date: Wed Apr 30 13:34:40 2008 +0200
19076
19077 Fix warnings while compiling net/net.c for MPC8610HPCD board
19078
19079 MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
19080 causing overriding default -Os option. New gcc (ver. 4.2.2)
19081 produces warnings while compiling net/net.c file with -O2
19082 option. The patch is an attempt to fix this.
19083
19084 Signed-off-by: Anatolij Gustschin <agust@denx.de>
19085
19086commit 58b575e575c25fdf8c88141e145db201f3092149
19087Author: Sascha Laue <Sascha.Laue@gmx.biz>
19088Date: Wed Apr 30 15:23:38 2008 +0200
19089
19090 lwmon5: fix offset error in sysmon0 POST
19091
19092 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
19093 Signed-off-by: Wolfgang Denk <wd@denx.de>
19094
19095commit e7419b243a373de4ee042f7d4f45f66de787240d
19096Author: Sascha Laue <Sascha.Laue@gmx.biz>
19097Date: Wed Apr 30 15:16:35 2008 +0200
19098
19099 lwmon5: fix manual merge error in POST
19100
19101 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
19102
19103commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
19104Author: Wolfgang Denk <wd@denx.de>
19105Date: Wed Apr 30 17:46:26 2008 +0200
19106
19107 cmd_nand.c: fix another 'incompatible pointer type' warning.
19108
19109 Signed-off-by: Wolfgang Denk <wd@denx.de>
19110
19111commit de109d909707e2dfe806be5efc3cdb103b47c8ad
19112Author: Wolfgang Denk <wd@denx.de>
19113Date: Wed Apr 30 17:25:07 2008 +0200
19114
19115 Makefile: fix parallel builds
19116
19117 This problem shows up with parallel builds only; it results in
19118 somewhat cryptic error messages like
19119
19120 $ JOBS=-j6 MAKEALL netstar
19121 Configuring for netstar board...
19122 arm-linux-ld: cannot find -lgeneric
19123 make[1]: *** [eeprom.srec] Error 1
19124
19125 A few boards (like netstar and voiceblue) need some libraries for
19126 building; however, the board Makefile does not contain any such
19127 dependencies which may cause problems with parallel builds. Adding
19128 such dependencies is difficult as we would also have to provide build
19129 rules, which already exist in the respective library Makefiles.
19130
19131 To solve this, we make sure that all libraries get built before the
19132 board code.
19133
19134 Signed-off-by: Wolfgang Denk <wd@denx.de>
19135
19136commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
19137Author: Stefan Roese <sr@denx.de>
19138Date: Wed Apr 30 14:51:36 2008 +0200
19139
19140 ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
19141
19142 This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
19143 used for NAND booting to match the values needed for the new 512MB
19144 DIMM modules shipped with the productions boards:
19145
19146 Crucial: CT6464AC667.8FB
19147
19148 Signed-off-by: Stefan Roese <sr@denx.de>
19149
19150commit ea9202a659dc75996facf1475f1866a19a9d3129
19151Author: Stefan Roese <sr@denx.de>
19152Date: Wed Apr 30 10:49:43 2008 +0200
19153
19154 ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
19155
19156 This patch fixes a problem with DIMMs that have 8 banks. Now the
19157 MCIF0_MBxCF register will be setup correctly for this setup too.
19158
19159 This was noticed with the 512MB DIMM on Canyonlands/Glacier.
19160
19161 Signed-off-by: Stefan Roese <sr@denx.de>
19162
19163commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
19164Author: Wolfgang Denk <wd@denx.de>
19165Date: Tue Apr 29 23:41:06 2008 +0200
19166
19167 Prepare v1.3.3-rc2, again.
19168
19169 Signed-off-by: Wolfgang Denk <wd@denx.de>
19170
Wolfgang Denk76617292008-04-29 23:41:06 +020019171commit b7fcc4c13993782342cf5cd20d237a6281648a0b
19172Author: Wolfgang Denk <wd@denx.de>
19173Date: Tue Apr 29 23:35:24 2008 +0200
19174
19175 Prepare v1.3.3-rc2
19176
19177 Signed-off-by: Wolfgang Denk <wd@denx.de>
19178
Wolfgang Denkb7fcc4c2008-04-29 23:35:24 +020019179commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
19180Author: Wolfgang Denk <wd@denx.de>
19181Date: Tue Apr 29 23:32:20 2008 +0200
19182
19183 common/env_nand.c: fix one more incompatible pointer type issue
19184
19185 Signed-off-by: Wolfgang Denk <wd@denx.de>
19186
19187commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
19188Author: Wolfgang Denk <wd@denx.de>
19189Date: Tue Apr 29 21:33:08 2008 +0200
19190
19191 post/board/lwmon5/sysmon.c: fix manual merge error.
19192
19193 Signed-off-by: Wolfgang Denk <wd@denx.de>
19194
19195commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
19196Author: Kumar Gala <galak@kernel.crashing.org>
19197Date: Tue Apr 29 12:54:59 2008 -0500
19198
19199 85xx: Add -mno-spe to e500/85xx builds
19200
19201 Newer gcc's might be configured to enable autovectorization by default.
19202 If we happen to build with one of those compilers we will get SPE
19203 instructions in random code.
19204
19205 -mno-spe disables the compiler for automatically generating SPE
19206 instructions without our knowledge.
19207
19208 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19209
19210commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
19211Author: Kumar Gala <galak@kernel.crashing.org>
19212Date: Tue Apr 29 10:18:34 2008 -0500
19213
19214 Update .gitignore for zlib.h
19215
19216 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19217
19218commit 45239cf4152109caa925145ccd433529902df887
19219Author: Kumar Gala <galak@kernel.crashing.org>
19220Date: Tue Apr 29 10:27:08 2008 -0500
19221
19222 85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
19223
19224 All the 85xx and 86xx UM describe the register as timing_cfg_3
19225 not as ext_refrec.
19226
19227 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19228
19229commit ef7d30b14394e4c4a153118f5845760cadada02a
19230Author: Kumar Gala <galak@kernel.crashing.org>
19231Date: Tue Apr 29 10:28:34 2008 -0500
19232
19233 85xx/86xx: Rename DDR init address and init extended address register
19234
19235 Rename init_addr and init_ext_addr to match the docs between
19236 85xx and 86xx. Both now use 'init_addr' and 'init_ext_addr'.
19237
19238 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19239
19240commit cf6cc014270549684873a5972d2595052c468cb6
19241Author: Kumar Gala <galak@kernel.crashing.org>
19242Date: Mon Apr 28 02:24:04 2008 -0500
19243
19244 85xx: Additional fixes and cleanup of MP code
19245
19246 * adjust __spin_table alignment to match ePAPR v0.94 spec
19247 * loop over all cpus when determing who is up. This fixes an issue if
19248 the "boot cpu" isn't core0. The "boot cpu" will already be in the
19249 cpu_up_mask so there is no harm
19250 * Added some protection in the code to ensure proper behavior. These
19251 changes are explicitly needed but don't hurt:
19252 - Added eieio to ensure the "hot word" of the table is written after
19253 all other table updates have occurred.
19254 - Added isync to ensure we don't prefetch loading of table entries
19255 until we a released
19256
19257 These issues we raised by Dave Liu.
19258
19259 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19260
19261commit b2d527a8b9fb50afccbaf79b5540952585cdc760
19262Author: Yuri Tikhonov <yur@emcraft.com>
19263Date: Tue Apr 29 15:06:41 2008 +0200
19264
19265 lwmon5: minor clean-up to include/configs/lwmon5.h
19266
19267 LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
19268 the CFG_DSPIC_TEST_ADDR definition more readable.
19269
19270 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19271
19272commit f4c4d21a885ccc222fd0acdf653b683249e85117
19273Author: Stefan Roese <sr@denx.de>
19274Date: Tue Apr 29 16:08:05 2008 +0200
19275
19276 ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
19277
19278 Signed-off-by: Stefan Roese <sr@denx.de>
19279
19280commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
19281Author: Yuri Tikhonov <yur@emcraft.com>
19282Date: Tue Apr 29 13:32:45 2008 +0200
19283
19284 ppc flush_cache: add watch-dog triggering into the loops.
19285
19286 Some boards (e.g. lwmon5) need rather a frequent watch-dog
19287 kicking. Since the time it takes for the flush_cache() function
19288 to complete its job depends on the size of data being flushed, one
19289 may encounter watch-dog resets on such boards when, for example,
19290 download big files over ethernet.
19291
19292 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19293
19294commit cab99d6f3281ab6784feccf98b9b425daa58418a
19295Author: Stefan Roese <sr@denx.de>
19296Date: Tue Apr 29 14:44:54 2008 +0200
19297
19298 ppc4xx: Fix compilation warning in denali_spd_ddr2.c
19299
19300 Signed-off-by: Stefan Roese <sr@denx.de>
19301
19302commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
19303Author: Stefan Roese <sr@denx.de>
19304Date: Tue Apr 29 14:12:07 2008 +0200
19305
19306 ppc4xx: Fix Katmai CFG_MONITOR_LEN
19307
19308 Signed-off-by: Stefan Roese <sr@denx.de>
19309
19310commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
19311Author: Stefan Roese <sr@denx.de>
19312Date: Tue Apr 29 13:57:07 2008 +0200
19313
19314 ppc4xx: Complete remove bogus dflush()
19315
19316 Since the current dflush() implementation is know to have some problems
19317 (as seem on lwmon5 ECC init) this patch removes it completely and replaces
19318 it by using clean_dcache_range().
19319
19320 Tested on Katmai with ECC DIMM.
19321
19322 Signed-off-by: Stefan Roese <sr@denx.de>
19323
19324commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
19325Author: Stefan Roese <sr@denx.de>
19326Date: Tue Apr 29 13:36:51 2008 +0200
19327
19328 ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
19329
19330 As it seems the "old" ECC initialization routine by using dflush() didn't
19331 write all lines in the dcache back to memory on lwmon5. This could lead
19332 to ECC error upon Linux booting. This patch changes the program_ecc()
19333 routine to now use clean_dcache_range() instead of dflush().
19334 clean_dcache_range() uses dcbst which is exactly what we want in this
19335 case.
19336
19337 Since dflush() is known is cause problems, this routine will be
19338 removed completely and replaced by clean_dcache_range() with an
19339 additional patch.
19340
19341 Signed-off-by: Stefan Roese <sr@denx.de>
19342
19343commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
19344Author: Yuri Tikhonov <yur@emcraft.com>
19345Date: Mon Apr 28 18:19:34 2008 +0200
19346
19347 POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
19348
19349 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19350
19351commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
19352Author: Markus Brunner <super.firetwister@googlemail.com>
19353Date: Mon Apr 28 08:47:47 2008 +0200
19354
19355 ppc4xx: Fixup ebc clock in FDT for 405GP/EP
19356
19357 On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
19358 and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
19359 doesn't exist.
19360
19361 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
19362
Wolfgang Denk76617292008-04-29 23:41:06 +020019363commit 2ef7503a593c77a80c2a054011970227c4b62774
19364Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19365Date: Thu Apr 24 07:57:17 2008 +0200
19366
19367 NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
19368
19369 Move non-inlied functions into specific drivers file
19370 Set get_prom as weak
19371
19372 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19373 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
19374 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19375
19376commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
19377Author: Guennadi Liakhovetski <lg@denx.de>
19378Date: Thu Apr 3 17:04:19 2008 +0200
19379
19380 net: make ARP timeout configurable
19381
19382 Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
19383 On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
19384 to the boards get lost, which typically are ARP replies. By configuring
19385 the timeout to a lower value we significantly improve the first network
19386 transfer time on this board. The timeout is specified in milliseconds,
19387 later internally it is converted to deciseconds, because it has to be
19388 converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
19389 different boards.
19390
19391 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19392 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19393
19394commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
19395Author: Guennadi Liakhovetski <lg@denx.de>
19396Date: Thu Apr 3 13:36:18 2008 +0200
19397
19398 minor cs8900 driver clean up
19399
19400 Remove a redundant register definition, clean up some coding style
19401 violations.
19402
19403 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19404 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19405
Wolfgang Denkb7fcc4c2008-04-29 23:35:24 +020019406commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
19407Author: Wolfgang Denk <wd@denx.de>
19408Date: Mon Apr 28 22:01:04 2008 +0200
19409
19410 jffs2_1pass.c: fix incompatible pointer type warning
19411
19412 Signed-off-by: Wolfgang Denk <wd@denx.de>
19413
19414commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
19415Author: Sascha Laue <Sascha.Laue@gmx.biz>
19416Date: Tue Apr 1 10:10:18 2008 +0200
19417
19418 lwmon5: update dsPIC POST spezification
19419
19420 The specification for the lwmon5 board dsPIC POST got changed.
19421 Also add defines for the temperatures and voltages.
19422
19423 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
19424
19425commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
19426Author: Sascha Laue <Sascha.Laue@gmx.biz>
19427Date: Tue Apr 1 15:13:03 2008 +0200
19428
19429 Fix watchdog POST for lwmon5
19430
19431 If the hardware watchdog detects a voltage error, the watchdog sets
19432 GPIO62 to low. The watchdog POST has to detect this low level.
19433
19434 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
19435 Signed-off-by: Wolfgang Denk <wd@denx.de>
19436
19437commit dd5748bcd669f46aeb6686c1b341323843738ccc
19438Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
19439Date: Mon Apr 28 14:37:14 2008 +0200
19440
19441 rtl8169: fix compiler warnings
19442
19443 Fix multiple compiler warnings related to argument type mismatch.
19444
19445 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
19446
19447commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
19448Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
19449Date: Mon Apr 28 14:36:06 2008 +0200
19450
19451 IDE: fix compiler warnings
19452
19453 The IDE driver can use 32-bit addresses in LBA mode, in which case it
19454 spits multiple warnings during compilation. Fix them.
19455
19456 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
19457
19458commit db9084de28c46ac81c8f681722cb0d7411be4d7f
19459Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
19460Date: Mon Apr 28 14:35:57 2008 +0200
19461
19462 LinkStation: fix compiler warning, add a maintainer
19463
19464 out_8 wants a pointer to an unsigned as the first argument. Add a
19465 maintainer for Linkstation boards.
19466
19467 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
19468
19469commit c71abba3cb67b063f789f17abf6c7447727c0cd5
19470Author: Wolfgang Denk <wd@denx.de>
19471Date: Mon Apr 28 14:55:12 2008 +0200
19472
19473 cmd_nand.c: fix "differ in signedness" problem
19474
19475 Signed-off-by: Wolfgang Denk <wd@denx.de>
19476
19477commit f2c288a35341ad02ac03b1563d786763c9c8f159
19478Author: Wolfgang Denk <wd@denx.de>
19479Date: Mon Apr 28 12:48:47 2008 +0200
19480
19481 pcnet.c: fix a merge issue
19482
19483 Signed-off-by: Wolfgang Denk <wd@denx.de>
19484
19485commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
19486Author: Wolfgang Denk <wd@denx.de>
19487Date: Mon Apr 28 12:08:18 2008 +0200
19488
19489 NAND: fix some strict-aliasing compiler warnings
19490
19491 Signed-off-by: Wolfgang Denk <wd@denx.de>
19492
19493commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
19494Author: Stefan Roese <sr@denx.de>
19495Date: Mon Apr 28 11:37:14 2008 +0200
19496
19497 ppc4xx: Fix compile warning of hcu4 board
19498
19499 Signed-off-by: Stefan Roese <sr@denx.de>
19500
19501commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
19502Author: Wolfgang Denk <wd@denx.de>
19503Date: Mon Apr 28 11:31:23 2008 +0200
19504
19505 MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
19506
19507 Signed-off-by: Wolfgang Denk <wd@denx.de>
19508
19509commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
19510Author: Guennadi Liakhovetski <lg@denx.de>
19511Date: Mon Apr 28 00:25:32 2008 +0200
19512
19513 mx31ads: fix loadaddr environment variable define
19514
19515 Arithmetic expressions do not get evaluated under stringification. Remove
19516 default network configuration, add DHCP command support. Thanks to Felix
19517 Radensky for reporting.
19518
19519 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19520
19521commit 144eec777ac07bcb12bd38245a5a289f694a7f98
19522Author: Wolfgang Denk <wd@denx.de>
19523Date: Mon Apr 28 10:55:24 2008 +0200
19524
19525 katmai: fix section overlap problem
19526
19527 Since we didn't want to remove features from the configuration, we
19528 decided to increase the U-Boot image size (add one flash sector).
19529
19530 Also changed the default environment definition to make it
19531 independent of such changes.
19532
19533 Signed-off-by: Wolfgang Denk <wd@denx.de>
19534 Acked-by: Stefan Roese <sr@denx.de>
19535
19536commit 941d696d25624e3cc65ebf924199541acf52d74e
19537Author: Wolfgang Denk <wd@denx.de>
19538Date: Mon Apr 28 10:55:24 2008 +0200
19539
19540 katmai: fix section overlap problem
19541
19542 Since we didn't want to remove features from the configuration, we
19543 decided to increase the U-Boot image size (add one flash sector).
19544
19545 Also changed the default environment definition to make it
19546 independent of such changes.
19547
19548 Signed-off-by: Wolfgang Denk <wd@denx.de>
19549 Acked-by: Stefan Roese <sr@denx.de>
19550
19551commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
19552Author: Kumar Gala <galak@kernel.crashing.org>
19553Date: Sat Apr 26 11:44:44 2008 -0500
19554
19555 post: Fix building with O=
19556
19557 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19558
19559commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
19560Author: Wolfgang Denk <wd@denx.de>
19561Date: Sat Apr 26 01:55:00 2008 +0200
19562
19563 Prepare v1.3.3-rc1
19564
19565 Signed-off-by: Wolfgang Denk <wd@denx.de>
19566
Wolfgang Denkfd7531c2008-04-26 01:55:00 +020019567commit 19cf2ec90d8ce52da60c1693693c4048cb810967
19568Author: Wolfgang Denk <wd@denx.de>
19569Date: Sat Apr 26 01:25:39 2008 +0200
19570
19571 post/Makefile: make sure to use the correct flags
19572
19573 ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
19574 messages to be printed.
19575
19576 Signed-off-by: Wolfgang Denk <wd@denx.de>
19577
19578commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
19579Author: Wolfgang Denk <wd@denx.de>
19580Date: Sat Apr 26 00:34:42 2008 +0200
19581
19582 Coding Style cleanup, update CHANGELOG
19583
19584 Signed-off-by: Wolfgang Denk <wd@denx.de>
19585
Wolfgang Denk7ed40112008-04-26 00:34:42 +020019586commit f9204e15173834ff8d123e36279ce49c3c6c74fc
19587Author: Magnus Lilja <lilja.magnus@gmail.com>
19588Date: Sun Apr 20 10:38:12 2008 +0200
19589
19590 i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
19591
19592 This patch enables SPI and MC13783/RTC support for the Litekit board.
19593
19594 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19595
19596commit f97abbfb47d9e407354e157cae3f6369e460cd37
19597Author: Ed Swarthout <Ed.Swarthout@freescale.com>
19598Date: Fri Apr 25 01:08:32 2008 -0500
19599
19600 MPC8544DS: decode pcie3 end-point configuration correctly.
19601
19602 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
19603 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19604
19605commit 292188e15523c165c4269403fdcd33c26d89176e
19606Author: Roy Zang <tie-fei.zang@freescale.com>
19607Date: Fri Apr 25 00:55:09 2008 -0500
19608
19609 MPC8544DS: Removes the unknown flash message information
19610
19611 This patch removes the unknown flash message information:
19612 '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
19613 This unknown flash message is caused by PromJet.
19614 Some of the board user is unhappy with this information.
19615
19616 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
19617 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19618
19619commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
19620Author: Kim Phillips <kim.phillips@freescale.com>
19621Date: Thu Apr 24 14:07:38 2008 -0500
19622
19623 mpc83xx: bump loadaddr over fdtaddr to 0x500000
19624
19625 this seems as a good compromise between human memory, typing,
19626 and last but not least, to accommodate for current and future kernel bloat.
19627
19628 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19629 Acked-by: Dave Liu <daveliu@freescale.com>
19630
19631commit be5a7190265a34d968578ff266549c60f6f57654
19632Author: Dave Liu <r63238@freescale.com>
19633Date: Tue Apr 15 13:12:23 2008 +0800
19634
19635 mpc83xx: clean up the readme for 83xx boards
19636
19637 1. correct the typo
19638 2. correct the memory map for 837xerdb board
19639
19640 Signed-off-by: Dave Liu <daveliu@freescale.com>
19641
19642commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
19643Author: Dave Liu <r63238@freescale.com>
19644Date: Tue Apr 15 13:11:11 2008 +0800
19645
19646 mpc83xx: remove the unused CPM's stuff
19647
19648 The MPC83xx family never have CPM block, so remove it from 83xx.
19649
19650 Signed-off-by: Dave Liu <daveliu@freescale.com>
19651
19652commit c63ad6325a8ac0097a54b418a3288926b0484b18
19653Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19654Date: Fri Apr 18 16:29:40 2008 +0200
19655
19656 cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
19657
19658 This patch adds a configurable flash auto protection list that can be used
19659 to make U-Boot protect flash regions in flash_init().
19660
19661 The idea has been discussed on the u-boot mailing list starting
19662 on Nov 18th, 2007.
19663
19664 Even this patch brings a new feature it is used as a bugfix for 4xx
19665 platforms where flash_init() does not completely protect the
19666 monitor's flash range in all situations.
19667
19668 U-Boot protects the flash range from CFG_MONITOR_BASE to
19669 (CFG_MONITOR_BASE + monitor_flash_len - 1) by default. This does not
19670 include the reset vector at 0xfffffffc.
19671
19672 Example:
19673 #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
19674
19675 This config option will auto protect the last 512k of flash that
19676 contains the bootloader on board like APC405 and PMC405.
19677
19678 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19679
19680commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
19681Author: Stefan Roese <sr@denx.de>
19682Date: Fri Apr 25 13:59:03 2008 +0200
19683
19684 ppc4xx: Remove double defines in lwmon5.h
19685
19686 introduced with latest lwmon5/POST merge
19687
19688 Signed-off-by: Stefan Roese <sr@denx.de>
19689
19690commit 7590378fb9c686709492ceb142825cd058255956
19691Author: Bartlomiej Sieka <tur@semihalf.com>
19692Date: Fri Apr 25 13:54:02 2008 +0200
19693
19694 Use watchdog-aware functions when calculating hashes of images - take two
19695
19696 Some files didn't get updated properly with the "Use watchdog-aware
19697 functions when calculating hashes of images" commit, this commit
19698 fixes this.
19699
19700 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19701 Signed-off-by: Wolfgang Denk <wd@denx.de>
19702
19703commit 8e048c438e20ec89b49da5f085f8f756eba6e587
19704Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19705Date: Fri Apr 25 12:01:39 2008 +0200
19706
19707 ppc4xx: Add bootcount limit handling for APC405 boards
19708
19709 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19710
19711commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
19712Author: Bartlomiej Sieka <tur@semihalf.com>
19713Date: Fri Apr 25 12:10:09 2008 +0200
19714
19715 Use watchdog-aware functions when calculating hashes of images
19716
19717 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19718
19719commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
19720Author: Wolfgang Denk <wd@denx.de>
19721Date: Fri Apr 25 12:44:08 2008 +0200
19722
19723 USB: fix more GCC 4.2.x aliasing warnings
19724
19725 Signed-off-by: Wolfgang Denk <wd@denx.de>
19726 Acked-by: Markus Klotzbuecher <mk@denx.de>
19727
19728commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
19729Author: Wolfgang Denk <wd@denx.de>
19730Date: Fri Apr 25 12:41:53 2008 +0200
19731
19732 lib_generic/crc32.c: add missing #include <watchdog.h>
19733
19734 Signed-off-by: Wolfgang Denk <wd@denx.de>
19735
19736commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
19737Author: Wolfgang Denk <wd@denx.de>
19738Date: Fri Apr 25 11:52:21 2008 +0200
19739
19740 lib_generic/crc32.c: fix compile problem
19741
19742 Signed-off-by: Wolfgang Denk <wd@denx.de>
19743
19744commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
19745Author: Stefan Roese <sr@denx.de>
19746Date: Tue Apr 22 12:20:32 2008 +0200
19747
19748 ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
19749
19750 The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
19751 environment variable will now get passed to the Linux kernel by setting
19752 the device_type property of the PCIe device tree node. For normal root-
19753 complex configuration it will keep its defaults value of "pci" and for
19754 endpoint configuration it will get changed to "pci-endpoint".
19755
19756 Signed-off-by: Stefan Roese <sr@denx.de>
19757
19758commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
19759Author: Yuri Tikhonov <yur@emcraft.com>
19760Date: Thu Apr 24 10:30:53 2008 +0200
19761
19762 lwmon5: watchdog POST fix
19763
19764 Use the GPT0_MASKx registers as the temporary storage for watch-dog
19765 timer POST test instead of GPT0_COMPx. The latter
19766 (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
19767
19768 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19769 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19770
19771commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
19772Author: Kim Phillips <kim.phillips@freescale.com>
19773Date: Mon Apr 21 18:10:14 2008 -0500
19774
19775 lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
19776
19777 This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
19778 proven problematic getting right from the start at least on 83xx and
19779 4xx.
19780
19781 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19782
19783commit a99715b8ebfc500f3f40e01b36b64d473938443d
19784Author: Detlev Zundel <dzu@denx.de>
19785Date: Fri Apr 18 14:50:01 2008 +0200
19786
19787 Realining some header definitions.
19788
19789 Signed-off-by: Detlev Zundel <dzu@denx.de>
19790
19791commit 4acbc6c7f993cae409c424615415a3e76820f13d
19792Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19793Date: Thu Apr 24 07:57:16 2008 +0200
19794
19795 NE2000: coding style cleanup
19796
19797 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19798
19799commit b4aff1ffaf7120032c653357c007faa14f74d29d
19800Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19801Date: Wed Apr 23 00:11:47 2008 +0900
19802
19803 qemu-mips.h: Add CFI support
19804
19805 CONFIG_ENV_OVERWRITE is also added.
19806
19807 This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
19808
19809 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19810 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19811
19812commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
19813Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19814Date: Tue Apr 22 22:47:27 2008 +0900
19815
19816 doc/README.mips: Add MIPS notes
19817
19818 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19819
19820commit 215b01bba8bc662d35f72b084700b192d367dfb4
19821Author: Bartlomiej Sieka <tur@semihalf.com>
19822Date: Tue Apr 22 12:27:56 2008 +0200
19823
19824 Add support for calculating hashes with watchdog triggering
19825
19826 Implement watchodg-aware variants of hash calculation functions:
19827 - crc32_wd()
19828 - md5_wd()
19829 - sha1_csum_wd()
19830 The above functions calculate the hash of the input buffer in chunks,
19831 triggering the watchdog after processing each chunk. The chunk size
19832 is given as a function call parameter.
19833
19834 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19835
19836commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
19837Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
19838Date: Wed Apr 23 11:02:12 2008 +0900
19839
19840 qemu-mips: Cleanup whitespace, indentation, etc.
19841
19842 No functional change.
19843
19844 This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
19845 Then I re-created from scratch, and changed more lines than the original.
19846
19847 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19848 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19849
19850commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
19851Author: Vlad Lungu <vlad@comsys.ro>
19852Date: Wed Oct 10 23:02:09 2007 +0300
19853
19854 Fixed pcnet io_base
19855
19856 Bus and phys address are not always the same
19857
19858 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
19859
19860commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
19861Author: Wolfgang Denk <wd@denx.de>
19862Date: Thu Apr 24 23:44:26 2008 +0200
19863
19864 drivers/net/pcnet.c: Coding Style cleanup.
19865
19866 Signed-off-by: Wolfgang Denk <wd@denx.de>
19867
19868commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
19869Author: Vlad Lungu <vlad@comsys.ro>
19870Date: Wed Oct 10 23:04:23 2007 +0300
19871
19872 Added Am79C970A chip id to pcnet
19873
19874 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
19875
19876commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
19877Author: Magnus Lilja <lilja.magnus@gmail.com>
19878Date: Sun Apr 20 10:35:03 2008 +0200
19879
19880 i.MX31: Fix architecture numbers for ADS and Litekit boards
19881
19882 Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
19883
19884 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19885
19886commit e7ae84d6c7288790e88639f57cb60daf89c11369
19887Author: Magnus Lilja <lilja.magnus@gmail.com>
19888Date: Sun Apr 20 10:36:36 2008 +0200
19889
19890 i.MX31: Use symbolic names for Litekit membases.
19891
19892 Use symbolic names instead of hard coded addresses for Litekit membases.
19893
19894 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19895
19896commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
19897Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19898Date: Sat Apr 19 17:59:20 2008 +0200
19899
19900 Fix show_boot_progress prototype
19901
19902 in commit fad634071 "make show_boot_progress () weak."
19903 show_boot_progress is supposed to be declared as weak but declared as
19904 inline instead.
19905
19906 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19907
19908commit edbed247a14d70b94958010f736621212285de91
19909Author: Bartlomiej Sieka <tur@semihalf.com>
19910Date: Fri Apr 18 12:39:23 2008 +0200
19911
19912 Memory footprint optimizations
19913
19914 As suggested by Wolfgang Denk:
19915 - image printing functions:
19916 - remove wrappers
19917 - remove indentation prefix from functions' signatures
19918 - merge getenv_verify and getenv_autostart into one parametrized function
19919
19920 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19921
19922commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
19923Author: Guennadi Liakhovetski <lg@denx.de>
19924Date: Tue Apr 15 13:33:11 2008 +0200
19925
19926 MX31ADS environment variable update, spi and rtc support
19927
19928 Update MX31ADS default environment to better match the flash layout and
19929 the memory map, support SPI and RTC.
19930
19931 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19932
19933commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
19934Author: Kumar Gala <galak@kernel.crashing.org>
19935Date: Mon Apr 21 09:28:36 2008 -0500
19936
19937 85xx: Round up frequency calculations to get reasonable output
19938
19939 eg. because of rounding error we can get 799Mhz instead of 800Mhz.
19940
19941 Introduced DIV_ROUND_UP and roundup taken from linux kernel.
19942
19943 Signed-off-by: Dejan Minic <minic@freescale.com>
19944 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
19945 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19946 Acked-by: Andy Fleming <afleming@freescale.com>
19947
19948commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
19949Author: Kumar Gala <galak@kernel.crashing.org>
19950Date: Wed Apr 23 16:58:04 2008 -0500
19951
19952 fsl_pci: Only modify registers if we have them
19953
19954 pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
19955
19956 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19957
19958commit 83fe32334337def160b302aa9d152d808bfcc68e
19959Author: Markus Klotzbücher <mk@denx.de>
19960Date: Wed Apr 23 10:57:33 2008 +0200
19961
19962 USB: remove a cpu bug workaround for an unsupported architecture.
19963
19964 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
19965
19966commit f957576cb53e6cfab412709cfc8db1afd39d21c3
19967Author: Markus Klotzbücher <mk@denx.de>
19968Date: Wed Apr 23 10:53:23 2008 +0200
19969
19970 USB: fix those pesky aliasing warnings issued by gcc-4.2
19971
19972 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
19973 Signed-off-by: Detlev Zundel <dzu@denx.de>
19974
19975commit 89cdab788f3716b335fefb60b836ebcf975aceab
19976Author: Mike Frysinger <vapier@gentoo.org>
19977Date: Mon Mar 31 11:02:01 2008 -0400
19978
19979 crc32: use uint32_t rather than unsigned long
19980
19981 The envcrc.c does sizeof(unsigned long) when calculating the crc, but
19982 this is done with the build toolchain instead of the target tool
19983 chain, so if the build is a 64bit system but the target is 32bits,
19984 the size will obviously be wrong. This converts all unsigned long
19985 stuff related to crc32 to uint32_t types. Compile tested only: output
19986 of ./tools/envcrc when run on a 32bit build system matches that of a
19987 64bit build system.
19988
19989 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19990 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19991
19992commit 80c40b765b3642ddb9f3392b7898715aab44a29c
19993Author: Dirk Behme <dirk.behme@googlemail.com>
19994Date: Wed Mar 26 09:53:29 2008 +0100
19995
19996 ARM: Davinci: Fix DM644x timer overflow handling and cleanup
19997
19998 Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
19999
20000 Changes:
20001
20002 - Remove *_masked() functions as noted by Wolfgang
20003
20004 - Adapt register naming to recent TI spec (sprue26, March 2007)
20005
20006 - Fix reset_timer() handling
20007
20008 - 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.
20009
20010 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
20011
20012 - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
20013
20014 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
20015
20016 Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
20017
20018 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
20019 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
20020
20021commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
20022Author: Sergei Poselenov <sposelenov@emcraft.com>
20023Date: Wed Apr 9 16:09:41 2008 +0200
20024
20025 Added watchdog triggering calls in the "mtest" test function.
20026
20027 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
20028
20029commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
20030Author: Yuri Tikhonov <yur@emcraft.com>
20031Date: Sun Apr 6 19:19:14 2008 +0200
20032
20033 lwmon5 watchdog: limit trigger rate
20034
20035 Limit the rate of h/w watch-dog triggering on the LWMON5 board by
20036 the CONFIG_WD_MAX_RATE value.
20037
20038 Note that an earlier version of this patch which used microseconds
20039 instead of ticks dis not work. The problem was that we used
20040 usec2ticks() to convert microseconds into ticks. usec2ticks() uses
20041 get_tbclk(), which in turn calls get_sys_info(). It turns out that
20042 this function does a lot of prolonged operations (like divisions)
20043 which take too much time so we do not trigger the watchdog in time,
20044 and it resets the system.
20045
20046 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
20047
20048commit 2d2b994a30bb100774dc747ae9865b7f95285a88
20049Author: Yuri Tikhonov <yur@emcraft.com>
20050Date: Mon Mar 31 10:51:37 2008 +0200
20051
20052 POST: move CONFIG_POST to Makefiles
20053
20054 Introduce the new logical option CONFIG_HAS_POST which is set when the
20055 platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
20056 to determine should the POST libs be compiled for the selected target
20057 platform, or not.
20058
20059 To avoid breaking u-boot linking process, the empty post/libpost.a file is
20060 created for platforms which do not have POSTs.
20061
20062 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
20063 Signed-off-by: Wolfgang Denk <wd@denx.de>
20064
20065commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
20066Author: Yuri Tikhonov <yur@emcraft.com>
20067Date: Mon Mar 31 10:49:34 2008 +0200
20068
20069 POST: preparations for moving CONFIG_POST to Makefiles
20070
20071 Remove CONFIG_POST ifdefs from the post/ source files.
20072
20073 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
20074 Signed-off-by: Wolfgang Denk <wd@denx.de>
20075
20076commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
20077Author: Stefan Roese <sr@denx.de>
20078Date: Tue Apr 22 14:14:20 2008 +0200
20079
20080 ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
20081
20082 This patch fixes the Canyonlands and Glacier default environment to better
20083 fit to the arch/powerpc device-tree kernels. The variables dealing with
20084 arch/ppc booting are removed, since these boards are supported only in
20085 arch/powerpc. Glacier uses the same config file as Canyonlands.
20086
20087 Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
20088
20089 Signed-off-by: Stefan Roese <sr@denx.de>
20090
20091commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
20092Author: Stefan Roese <sr@denx.de>
20093Date: Tue Apr 22 14:06:42 2008 +0200
20094
20095 ppc4xx: Small coding style cleanup for the latest esd patches
20096
20097 Signed-off-by: Stefan Roese <sr@denx.de>
20098
20099commit 79941d63bc03aed8c48d7602f18217cc200ee931
20100Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20101Date: Mon Apr 21 18:01:07 2008 +0200
20102
20103 ppc4xx: Update CPU strapping for PMC440 boards
20104
20105 This patch removes the temporary 'test' strapping option
20106 of the sbe command. The '667' strapping option now uses
20107 a PLB/PCI divider of 3.
20108
20109 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20110
20111commit f00cf3193a6635355b121e90debb2f54e777e7da
20112Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20113Date: Mon Apr 21 14:42:21 2008 +0200
20114
20115 ppc4xx: Remove unused APC405 strataflash driver
20116
20117 The APC405 board support has been migrated to use the common
20118 CFI flash driver.
20119
20120 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20121
20122commit 1c686676a86473bbd92151f0544e109413f6ed06
20123Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20124Date: Mon Apr 21 14:42:17 2008 +0200
20125
20126 ppc4xx: Update APC405 configuration
20127
20128 - enable esd's auto_update mechanism
20129 - support alternative flash layout on rev. 1.8 boards
20130 - update default environment
20131 - use common CFI flash driver
20132 - coding style cleanup
20133
20134 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20135
20136commit 0b9872515a521bf7866dc24b85ddce708e60d702
20137Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20138Date: Mon Apr 21 14:42:11 2008 +0200
20139
20140 ppc4xx: Update APC405 board support
20141
20142 - enable esd's auto_update mechanism
20143 - fix LCD support on latest hardware revision (uses other LCD controller)
20144 - support alternative flash layout on rev. 1.8 boards
20145 - coding style cleanup
20146
20147 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20148
20149commit 83975d02e225e231960784972e7820a8b303756b
20150Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20151Date: Mon Apr 21 14:42:06 2008 +0200
20152
20153 ppc4xx: update esd's common auto_update code for 405 boards
20154
20155 - Coding style cleanup (long lines)
20156 - improve handling of protected flash regions
20157 - remove dead code
20158
20159 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20160
20161commit b9233fe5d59cb25d975071616bd1035d6f4c2285
20162Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20163Date: Mon Apr 21 14:41:59 2008 +0200
20164
20165 ppc4xx: Update esd's common LCD code for 405 boards
20166
20167 - Coding style cleanup (long lines)
20168 - Add s1d13505 support
20169 - Make some functions return a result code instead of void
20170
20171 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20172
20173commit dea68189424c3f1242427a8146a3861bf093173c
20174Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20175Date: Mon Apr 21 11:36:55 2008 +0200
20176
20177 ppc4xx: Update FPGA image for APC405 boards
20178
20179 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20180
20181commit 2a05b152924acfcec3b037693329e517e6d3578f
20182Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20183Date: Mon Apr 21 11:36:08 2008 +0200
20184
20185 ppc4xx: Update bootlogo for APC405 boards
20186
20187 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20188
20189commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
20190Author: Stefan Roese <sr@denx.de>
20191Date: Fri Apr 18 16:41:31 2008 +0200
20192
20193 ppc4xx: Add dcache_enable() for 440
20194
20195 dcache_enable() was missing for 440 and the patch
20196 017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
20197 "] behavior uses this function.
20198
20199 Note: Currently the cache handling functions like
20200 d/icache_disable/enable() are NOP's on 440. This may be changed in the
20201 future.
20202
20203 Signed-off-by: Stefan Roese <sr@denx.de>
20204
20205commit a49e0d177a0749614b316ec847fb623f09c82c07
20206Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20207Date: Mon Apr 21 11:19:04 2008 +0200
20208
20209 video: Add missing free for logo memory
20210
20211 This patch adds two missing free()s.
20212
20213 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20214
20215commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
20216Author: Troy Kisky <troy.kisky@boundarydevices.com>
20217Date: Mon Sep 24 16:41:43 2007 -0700
20218
20219 PATCH - Fix oob data copied into supplied buffer
20220
20221 This patch correctly sets the oobavail variable
20222 and fixes a bug where the oob data was not valid when
20223 there where multiple groups in oobfree.
20224
20225 First segment fixes a typo
20226 Second segment fixes a bug where oob data may be copied incorrectly.
20227 Third segment adds an error message when exiting due to write protect.
20228 Forth segment fixes a bug where oobavail may be set incorrectly.
20229
20230 Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
20231
20232commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
20233Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20234Date: Fri Apr 18 17:24:32 2008 +0200
20235
20236 ppc4xx: Fix sys_get_info() for 405GP(r)
20237
20238 This patch assigns the correct EBC clock for 405GP(r) CPUs
20239 to PPC4xx_SYS_INFO structure. Without this patch U-Boot
20240 uses an uninitialized EBC clock in its startup message.
20241
20242 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20243
20244commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
20245Author: Wolfgang Denk <wd@denx.de>
20246Date: Sun Apr 20 15:39:38 2008 -0700
20247
20248 Makefile: remove nand_spl/System.map when cleaning up.
20249
20250commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
20251Author: Wolfgang Denk <wd@denx.de>
20252Date: Sun Apr 20 15:35:52 2008 -0700
20253
20254 MAKEALL: sort entries / lists.
20255
20256 Signed-off-by: Wolfgang Denk <wd@denx.de>
20257
20258commit 0878af169b181868a105b5c33f3a6423e2c9fd60
20259Author: Kumar Gala <galak@kernel.crashing.org>
20260Date: Fri Apr 18 11:29:01 2008 -0500
20261
20262 85xx: Fix size of cpu-release-addr property
20263
20264 The cpu-release-addr is defined as always being a 64-bit quanity regardless
20265 if we are running on a 32-bit or 64-bit machine.
20266
20267commit 88353a985109562a639b2f8a0c90d77011bfe374
20268Author: Timur Tabi <timur@freescale.com>
20269Date: Fri Apr 4 11:15:58 2008 -0500
20270
20271 Fix calculation of I2C clock for some 85xx chips
20272
20273 Some 85xx chips use CCB as the base clock for the I2C. Some use CCB/2, and
20274 some use CCB/3. There is no pattern that can be used to determine which
20275 chips use which frequency, so the only way to determine is to look up the
20276 actual SOC designation and use the right value for that SOC.
20277
20278 Update immap_85xx.h to include the GUTS PORDEVSR2 register.
20279
20280 Signed-off-by: Timur Tabi <timur@freescale.com>
20281
20282commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
20283Author: Wolfgang Denk <wd@denx.de>
20284Date: Fri Apr 18 11:44:27 2008 -0700
20285
20286 Fix build breakage casued by commit c0559be371b2
20287
20288 Change env_get_char from a global function ptr to a function.
20289
20290 Signed-off-by: Wolfgang Denk <wd@denx.de>
20291
20292commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
20293Author: Wolfgang Denk <wd@denx.de>
20294Date: Fri Apr 18 10:53:41 2008 -0700
20295
20296 Coding Style cleanup, update CHANGELOG.
20297
20298 Signed-off-by: Wolfgang Denk <wd@denx.de>
20299
Wolfgang Denk268a8042008-04-18 10:53:41 -070020300commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
20301Author: Mike Frysinger <vapier@gentoo.org>
20302Date: Tue Apr 8 14:00:57 2008 -0400
20303
20304 Add support for u-boot in svn and localversion-* files
20305
20306 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20307
20308commit d23ff6827decf121461fbc5622612fd7effe207e
20309Author: Guennadi Liakhovetski <lg@denx.de>
20310Date: Thu Apr 3 17:04:22 2008 +0200
20311
20312 MX31ADS network and flash updates
20313
20314 This patch allows U-Boot to use buffered writes to the Spansion NOR
20315 flash installed on this board, and eliminates long delays in network
20316 transfers after the board startup.
20317
20318 Also modify flash layout to embed main and redundant environment
20319 blocks in the U-Boot image.
20320
20321 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20322
20323commit b5dc9b304d289831f291843ff88a45cbdf1a6290
20324Author: Guennadi Liakhovetski <lg@denx.de>
20325Date: Mon Apr 14 10:53:12 2008 +0200
20326
20327 Support for the MX31ADS evaluation board from Freescale
20328
20329 This patch adds support for the MX31ADS evaluation board from Freescale,
20330 initialization code is copied from RedBoot sources, also provided by
20331 Freescale.
20332
20333 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20334
Wolfgang Denk7ed40112008-04-26 00:34:42 +020020335commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
20336Author: Stefan Roese <sr@denx.de>
20337Date: Tue Apr 8 10:33:29 2008 +0200
20338
20339 ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
20340
20341 Signed-off-by: Stefan Roese <sr@denx.de>
20342
20343commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
20344Author: Stefan Roese <sr@denx.de>
20345Date: Tue Apr 8 10:33:28 2008 +0200
20346
20347 ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
20348
20349 Signed-off-by: Stefan Roese <sr@denx.de>
20350
20351commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
20352Author: Stefan Roese <sr@denx.de>
20353Date: Tue Apr 8 10:33:27 2008 +0200
20354
20355 ppc4xx: Add Glacier NAND booting target
20356
20357 Signed-off-by: Stefan Roese <sr@denx.de>
20358
20359commit 46f373838e384a4c23d13581b1dfa5acb66b5810
20360Author: Stefan Roese <sr@denx.de>
20361Date: Tue Apr 8 10:31:00 2008 +0200
20362
20363 nand_spl: Update nand_spl to support 2k page size NAND devices
20364
20365 This patch adds support for booting from 2k page sized NAND device
20366 (e.g. Micron 29F2G08AAC).
20367
20368 Tested on AMCC Canyonlands.
20369
20370 Signed-off-by: Stefan Roese <sr@denx.de>
20371
Wolfgang Denk268a8042008-04-18 10:53:41 -070020372commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
20373Author: Anatolij Gustschin <agust@denx.de>
20374Date: Thu Apr 17 18:18:00 2008 +0200
20375
20376 Fix crash on sequoia in ppc_4xx_eth_init
20377
20378 Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
20379 with cache enabled (TLB Parity exeption). This patch
20380 fixes the problem.
20381
20382 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20383
20384commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
20385Author: Anatolij Gustschin <agust@denx.de>
20386Date: Thu Apr 17 18:15:27 2008 +0200
20387
20388 ppc4xx: Fix crash on sequoia with cache enabled
20389
20390 Currently U-Boot crashes on sequoia board in CPU POST if
20391 cache is enabled (CONFIG_4xx_DCACHE defined). The cache
20392 won't be disabled by change_tlb before CPU POST because
20393 there is an insufficient adress range check since
20394 CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
20395 this problem.
20396
20397 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20398
20399commit 43c509254fab375c49936498da944658117ed07c
20400Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20401Date: Thu Apr 17 23:35:13 2008 +0900
20402
20403 Use jr as register jump instruction
20404
20405 Current assembler codes are inconsistent in the way of register jump
20406 instruction usage; some use jr, some use j. Of course GNU as allows both
20407 usages, but as can be expected from `Jump Register' the mnemonic `jr' is
20408 more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
20409 at all.
20410
20411 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20412
20413commit 7ce63709828d37b08866e537339a169bd0db2bd3
20414Author: Guennadi Liakhovetski <lg@denx.de>
20415Date: Tue Apr 15 14:15:30 2008 +0200
20416
20417 RTC driver for MC13783
20418
20419 MC13783 is a multifunction IS with an SPI interface to the host. This
20420 driver handles the RTC controller in this chip.
20421
20422 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20423
20424commit 38254f45b0b412332726c90d3184ad47479fcffb
20425Author: Guennadi Liakhovetski <lg@denx.de>
20426Date: Tue Apr 15 14:14:25 2008 +0200
20427
20428 New i.MX31 SPI driver
20429
20430 This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
20431 only implemented and tested on i.MX31, can with a modified register layout
20432 and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
20433 controllers too.
20434
20435 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20436
20437commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
20438Author: Magnus Lilja <lilja.magnus@gmail.com>
20439Date: Tue Apr 15 19:09:10 2008 +0200
20440
20441 Fix name of i.MX31 boards in config file header
20442
20443 Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
20444
20445 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
20446
20447commit a49864593e083a5d0779fb9ca98e5a0f2053183d
20448Author: Mike Frysinger <vapier@gentoo.org>
20449Date: Sun Apr 13 19:42:19 2008 -0400
20450
20451 allow ports to override go behavior
20452
20453 Split the arch-specific logic out of the common go code and into a dedicated
20454 weak function called do_go_exec() that lives in cpu directories. This will
20455 need review from i386/nios people to make sure I didn't break them.
20456
20457commit 017e9b7925f74878d0e9475388cca9bda5ef9482
20458Author: Mike Frysinger <vapier@gentoo.org>
20459Date: Sun Apr 13 19:42:18 2008 -0400
20460
20461 allow ports to override bootelf behavior
20462
20463 Change the bootelf setup function into a dedicated weak function called
20464 do_bootelf_exec. This way ports can control the behavior however they
20465 like before/after calling the ELF entry point.
20466
20467commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
20468Author: Ulf Samuelsson <ulf@atmel.com>
20469Date: Sat Apr 12 20:56:03 2008 +0200
20470
20471 Reorder ARM boards in Makefile
20472
20473 Rearrange ARM boards in Makefile so that ARM926EJ-S boards
20474 are no longer under ARM92xT header.
20475
20476 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
20477 Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20478
20479commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
20480Author: Ulf Samuelsson <ulf@atmel.com>
20481Date: Sat Apr 12 20:29:44 2008 +0200
20482
20483 Clean up dataflash partitioning
20484
20485 This patch removes the board dependent parts from
20486 "drivers/mtd/dataflash.c".
20487 Each board relying on this, will have the appropriate
20488 code in a new file, "partition.c" in the board directory.
20489 board Makefiles updated to use the file.
20490
20491 The dataflash partitions are aligned on sector/page boundaries.
20492
20493 The CONFIG_NEW_DF_PARTITION was used to create named partitions
20494 This is now the default operation, and the CONFIG variable is removed.
20495
20496 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
20497
20498commit 51ecde946fec511a16346e498204ca10ad71080d
20499Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20500Date: Sat Apr 12 14:08:45 2008 +0200
20501
20502 gitignore: udpate stgit generated and .patch file
20503
20504 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20505
20506commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
20507Author: Wolfgang Denk <wd@denx.de>
20508Date: Fri Apr 18 00:15:36 2008 -0700
20509
20510 Get rid of redundant copy of renamed header file.
20511
20512 Signed-off-by: Wolfgang Denk <wd@denx.de>
20513
20514commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
20515Author: Vlad Lungu <vlad@comsys.ro>
20516Date: Fri Apr 11 21:20:14 2008 +0300
20517
20518 Fix dependency generation for older gcc versions
20519
20520 With gcc 3.3.3 at least, compilation fails with
20521
20522 Generating include/autoconf.mk
20523 gcc: compilation of header file requested
20524 make: *** [include/autoconf.mk] Error 1
20525
20526 since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
20527
20528 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
20529
20530commit cb1c4896905ab22fcd982e6a8a539f0031942e71
20531Author: Marian Balakowicz <m8@semihalf.com>
20532Date: Fri Apr 11 11:07:49 2008 +0200
20533
20534 Restore the ability to continue booting after legacy image overwrite
20535
20536 Before new uImage code was merged, bootm code allowed for the kernel image to
20537 get overwritten during decompresion. new uImage introduced a check for image
20538 overwrites and refused to boot the image that got overwritten. This patch
20539 restores the old behavior. It also adds a warning when the image overwriten is
20540 a multi-image file, because in such case accessing componentes other than the
20541 first one will fail.
20542
20543 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20544
20545commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
20546Author: Marian Balakowicz <m8@semihalf.com>
20547Date: Fri Apr 11 11:07:43 2008 +0200
20548
20549 ppc: Fix ftd_blob variable init when processing raw blob
20550
20551 Set fdt_blob variable before its value is printed out.
20552
20553 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20554
20555commit 3d36be030043cd841a2551d00a395135e363a64b
20556Author: Jason Wessel <jason.wessel@windriver.com>
20557Date: Thu Apr 10 14:30:16 2008 -0500
20558
20559 Remove all the search paths from the .lds files.
20560
20561 The cross compiler is responsible for providing the correct libraries
20562 and the logic to find the linking libraries.
20563
20564 Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
20565
20566commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
20567Author: Bartlomiej Sieka <tur@semihalf.com>
20568Date: Mon Apr 14 15:44:16 2008 +0200
20569
20570 Boot-related documentation update
20571
20572 - document 'bootm_low' and 'bootm_size' environment variables
20573 - update inaccurate CFG_BOOTMAPSZ entry
20574
20575 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
20576
20577commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
20578Author: Guennadi Liakhovetski <lg@denx.de>
20579Date: Wed Apr 9 17:34:08 2008 +0200
20580
20581 Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
20582
20583 Restore logic reverted by commit
20584
20585 commit 80767a6cead9990d9e77e62be947843c2c72f469
20586 Author: Peter Pearse <peter.pearse@arm.com>
20587 Date: Wed Sep 5 16:04:41 2007 +0100
20588
20589 Changed API name to coloured_led.h
20590 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
20591 Tidied other cpu/arm920t/start.S code
20592
20593 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20594
20595commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
20596Author: Mike Frysinger <vapier@gentoo.org>
20597Date: Tue Apr 8 10:24:24 2008 -0400
20598
20599 Remove conflicting NAND ID
20600
20601 There are two NAND entries with ID 0xDC and this obviously causes problems.
20602 In the kernel, they punted the first entry, so we should do the same.
20603
20604 See this upstream e-mail for more info:
20605 http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
20606
20607 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
20608 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20609
20610commit 188e94c370621708d13547d58dbc6ed3c5602aa8
20611Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
20612Date: Tue Apr 8 16:20:35 2008 +0900
20613
20614 cpu/mips/cpu.c: Fix flush_cache bug
20615
20616 Cache operations have to take line address (addr), not start_addr.
20617 I noticed this bug when debugging ping failure.
20618
20619 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
20620
20621commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
20622Author: Martin Krause <martin.krause@tqs.de>
20623Date: Thu Apr 3 14:29:01 2008 +0200
20624
20625 TQM5200: fix default IDE reset level
20626
20627 Before the first call of ide_reset(), the level of the IDE reset
20628 signal on the TQM5200 is low (reset asserted). This patch sets the
20629 default value to high (reset not asserted).
20630
20631 Currently this patch fixes no real problem, but it is cleaner to
20632 assert the reset signal only on demand, and not permanently.
20633
20634 Signed-off-by: Martin Krause <martin.krause@tqs.de>
20635
20636commit c61e033d6e8abb7b4060ee36060961e1399f6079
20637Author: Detlev Zundel <dzu@denx.de>
20638Date: Thu Apr 3 14:18:48 2008 +0200
20639
20640 mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
20641
20642 Signed-off-by: Detlev Zundel <dzu@denx.de>
20643
20644commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
20645Author: Detlev Zundel <dzu@denx.de>
20646Date: Thu Apr 3 14:18:47 2008 +0200
20647
20648 mgcoge, mgsuv: rename 'addcon' to 'addcons'
20649
20650 The latter name with 13 users is already established, so we will use
20651 that.
20652
20653 Signed-off-by: Detlev Zundel <dzu@denx.de>
20654
20655commit e175eacc87c3a9e4dad0799fee0e95732520afc7
20656Author: Martin Krause <martin.krause@tqs.de>
20657Date: Thu Apr 3 13:37:56 2008 +0200
20658
20659 IDE: fix bug in reset sequence
20660
20661 According to the ata (ata5) specification the RESET- signal
20662 shall be asserted for at least 25 us. Without this patch,
20663 the RESET- signal is asserted on some boards for only < 1 us
20664 (e. g. on the TQM5200). This patch adds a general delay of
20665 25 us to the RESET- signal.
20666
20667 Without this patch a Platinum 4 GiB CF card is not recognised
20668 properly on boards with a TQM5200 (STK52xx, TB5200).
20669
20670 Signed-off-by: Martin Krause <martin.krause@tqs.de>
20671
20672commit 813bea96a960916c72b4a3a7df840151529c26ce
20673Author: Sascha Laue <Sascha.Laue@gmx.biz>
20674Date: Thu Apr 3 14:43:11 2008 +0200
20675
20676 lwmon5: disable CONFIG_ZERO_BOOTDELAY
20677
20678 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
20679
20680commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
20681Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20682Date: Wed Apr 2 08:03:58 2008 +0200
20683
20684 ds174x: Fix warning on return in rtc_get and rtc_set functions
20685
20686 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20687
20688commit a253b38bf50c85227c33ca0febc870ee49d1588e
20689Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20690Date: Wed Apr 2 08:03:57 2008 +0200
20691
20692 cmd_log.c: Fix assignment differ in signedness
20693
20694 In function 'logbuff_init_ptrs':
20695 cmd_log.c:79: warning: pointer targets in assignment differ in signedness
20696
20697 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20698
20699commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
20700Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
20701Date: Wed Apr 2 11:04:43 2008 +0530
20702
20703 Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
20704
20705 Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
20706
20707commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
20708Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20709Date: Tue Apr 1 14:07:10 2008 +0200
20710
20711 s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
20712
20713 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20714
20715commit c08fb3ea36d19b1640b7906264581e9105534399
20716Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
20717Date: Tue Apr 15 10:24:14 2008 +0200
20718
20719 Additional PCI IDs for IDE and network controllers
20720
20721 These PCI IDs are required by the Linkstation platforms.
20722
20723 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
20724
20725commit c0559be371b2a64b1a817088c3308688e2182f93
20726Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
20727Date: Mon Apr 14 23:01:50 2008 +0200
20728
20729 Change env_get_char from a global function ptr to a function.
20730
20731 This avoids an early global data reference.
20732
20733 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
20734
20735commit 3e0f331c05d72f140715c1e9fca991927e44d422
20736Author: Guennadi Liakhovetski <lg@denx.de>
20737Date: Tue Apr 29 12:35:08 2008 +0000
20738
20739 Clean up smsc911x driver
20740
20741 Replace direct register address derefencing with accessor functions.
20742 Restrict explicitly 32-bit bus-width, extend affected configurations
20743 respectively.
20744
20745 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20746 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20747
20748commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
20749Author: Sascha Hauer <s.hauer@pengutronix.de>
20750Date: Tue Apr 15 00:08:20 2008 -0400
20751
20752 This patch adds a driver for the following smsc network controllers:
20753 LAN9115
20754 LAN9116
20755 LAN9117
20756 LAN9215
20757 LAN9216
20758 LAN9217
20759
20760 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
20761 Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
20762 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20763
20764commit 3dfd4aab929cccddb63d9ea509967861e1333b52
20765Author: Sascha Laue <Sascha.Laue@gmx.biz>
20766Date: Tue Apr 1 15:13:03 2008 +0200
20767
20768 Fix watchdog POST for lwmon5
20769
20770 If the hardware watchdog detects a voltage error, the watchdog sets
20771 GPIO62 to low. The watchdog POST has to detect this low level.
20772
20773 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
20774
20775commit 24b448448a917e52806f82660a5c9d47608894fb
20776Author: Dave Liu <r63238@freescale.com>
20777Date: Tue Apr 1 15:22:11 2008 +0800
20778
20779 ata: update the libata.h from ata.h of linux kernel
20780
20781 Current libata.h of u-boot is out of sync from linux kernel,
20782 this patch make it be consistent with linux kernel.
20783
20784 Signed-off-by: Dave Liu <daveliu@freescale.com>
20785 Signed-off-by: Tor Krill <tor@excito.com>
20786
20787commit f8f9dc98883f66f59eb0601da65808e6b139c87c
20788Author: Kumar Gala <galak@kernel.crashing.org>
20789Date: Mon Mar 31 11:59:27 2008 -0500
20790
20791 Allow use of ARCH=powerpc when building
20792
20793 The linux kernel is now mostly ARCH=powerpc, so to make life easier
20794 allow use to use ARCH=powerpc and convert it to ARCH=ppc.
20795
20796 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20797
20798commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
20799Author: Kyungmin Park <kmpark@infradead.org>
20800Date: Mon Mar 31 10:40:54 2008 +0900
20801
20802 Add apollon board MAINTAINERS entry
20803
20804 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20805
20806commit 77e475cc0ed1832160017d364be32a0be9ff02a9
20807Author: Kyungmin Park <kmpark@infradead.org>
20808Date: Mon Mar 31 10:40:36 2008 +0900
20809
20810 Fix OneNAND read
20811
20812 It should access with 16-bit instead of 8-bit
20813
20814 Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
20815
20816 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20817
20818commit a9da2b41079d230db3a5641625311983f85ce1fb
20819Author: Kyungmin Park <kmpark@infradead.org>
20820Date: Mon Mar 31 10:40:19 2008 +0900
20821
20822 Fix OneNAND erase command
20823
20824 It mis-calculates the block address.
20825 Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
20826
20827 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20828
20829commit 61525f2ffa156665a66908fda47dbf29d65ea579
20830Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
20831Date: Mon Mar 31 01:32:15 2008 +0200
20832
20833 Support for LinkStation / KuroBox HD and HG PPC models
20834
20835 This patch is based on the port by Mihai Georgian (see linkstation.c for
20836 Copyright information) and implements support for LinkStation / KuroBox HD
20837 and HG PPC models from Buffalo Technology, whereby HD is deactivated at
20838 the moment, pending network driver fixing.
20839
20840 Notice to users: this is pretty much a barebone port. Support for network
20841 on HG models is already in the U-Boot mainline, but you might also want
20842 patches to switch fan / phy modes depending on the negotiated ethernet
20843 parameters. This patch also doesn't support console switching, booting EM
20844 mode, Buffalo specific ext2 magic number. So, if you want to use any of
20845 those, you need additional patches. Otherwise this patche provides a fully
20846 functional u-boot with a network console on your system.
20847
20848 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20849
20850commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
20851Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20852Date: Sun Mar 30 01:22:13 2008 -0500
20853
20854 Add CONFIG_MII_INIT support to related boards
20855
20856 Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
20857 cmd_init.c. Add CONFIG_MII_INIT to board configuration files
20858 that use mii_init() in cmd_init.c.
20859
20860 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20861 Acked-by: Ben Warren <biggerbadderben@gmail.com>
20862
20863commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
20864Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20865Date: Sun Mar 30 01:19:06 2008 -0500
20866
20867 Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
20868
20869 Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
20870 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
20871
20872 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20873
20874commit e99ccb488181d012248c6be30b2093e950319fc5
20875Author: Kumar Gala <galak@kernel.crashing.org>
20876Date: Thu Mar 27 11:46:38 2008 -0500
20877
20878 Introduce phys_size_t and move phys_addr_t into asm/types.h
20879
20880 Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
20881 that have larger physical addresses like 44x, 85xx, and 86xx.
20882
20883 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20884
20885commit 20a14a42a25f72e379f38460b8a8484667536795
20886Author: Andy Fleming <afleming@freescale.com>
20887Date: Wed Apr 2 16:19:07 2008 -0500
20888
20889 Rename include/md5.h to include/u-boot/md5.h
20890
20891 Some systems have md5.h installed in /usr/include/. This isn't the
20892 desired file (we want the one in include/md5.h). This will avoid the
20893 conflict. This fixes the host tools building problem by creating a new
20894 directory for U-Boot specific header files.
20895
20896 [Patch by Andy Fleming, modified to use separate directory by Wolfgang
20897 Denk]
20898
20899 Signed-off-by: Wolfgang Denk <wd@denx.de>
20900 Signed-off-by: Andy Fleming <afleming@freescale.com>
20901 Acked-by: Timur Tabi <timur@freescale.com>
20902
20903commit f297b7a1ec87433f66320d89d993e1bc738c66b8
20904Author: Dave Liu <r63238@freescale.com>
20905Date: Thu Mar 27 18:51:17 2008 +0800
20906
20907 drivers: code clean up
20908
20909 Signed-off-by: Dave Liu <daveliu@freescale.com>
20910
20911commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
20912Author: Dave Liu <r63238@freescale.com>
20913Date: Thu Mar 27 18:50:41 2008 +0800
20914
20915 drivers: clean up the ata_piix.h
20916
20917 Signed-off-by: Dave Liu <daveliu@freescale.com>
20918
20919commit e8f7ba404f1409606962815ecc955a06984b08b3
20920Author: Dave Liu <r63238@freescale.com>
20921Date: Thu Mar 27 18:49:56 2008 +0800
20922
20923 doc: english polishing for README.sata
20924
20925 according to gvb's suggestion, polishing for the doc.
20926
20927 Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
20928 Signed-off-by: Dave Liu <daveliu@freescale.com>
20929
20930commit 3e3f766a5274d204780460e1879723b565296d34
20931Author: Kumar Gala <galak@kernel.crashing.org>
20932Date: Wed Mar 26 18:53:28 2008 -0500
20933
20934 Fix warnings introduced by I2C bus speed setting patch
20935
20936 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20937
20938commit 3c735e7437150e8615f26930c7819db85634276d
20939Author: eran liberty <eran.liberty@gmail.com>
20940Date: Thu Mar 27 00:50:49 2008 +0100
20941
20942 Altera Stratix II support
20943
20944 Adds Support for Altera's Stratix II.
20945
20946 Within your board specific init file you will have to call
20947
20948 1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
20949 2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
20950
20951 Altera_desc* contines (for example):
20952 {
20953 Altera_StratixII, /* part type */
20954 passive_serial, /* interface type */
20955 1, /* bytes of data part can accept */
20956 (void *)(&funcs), /* interface function table */
20957 0L, /* base interface address */
20958 0 /* implementation specific cookie */
20959 }
20960
20961 funcs is the interface. It is of type altera_board_specific_func.
20962 It looks like this:
20963 altera_board_specific_func func = {
20964 pre_fn,
20965 config_fn,
20966 status_fn,
20967 done_fn,
20968 clk_fn,
20969 data_fn,
20970 abort_fn,
20971 post_fn,
20972 };
20973
20974 you will have to implement these functions, which is usually bit
20975 banging some gpio.
20976
20977 Signed-off-by: Eran Liberty <liberty@extricom.com>
20978
20979commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
20980Author: Wolfgang Denk <wd@denx.de>
20981Date: Sun Apr 13 14:32:54 2008 -0700
20982
20983 Update CHANGELOG
20984
20985 Signed-off-by: Wolfgang Denk <wd@denx.de>
20986
Wolfgang Denk5ece9ec2008-04-13 14:32:54 -070020987commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
20988Author: Sascha Hauer <s.hauer@pengutronix.de>
20989Date: Wed Mar 26 20:41:17 2008 +0100
20990
20991 Phytec Phycore-i.MX31 support
20992
20993 This patch adds support for the Phytec Phycore-i.MX31 board
20994
20995 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
20996 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20997
20998commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
20999Author: Sascha Hauer <s.hauer@pengutronix.de>
21000Date: Wed Mar 26 20:41:09 2008 +0100
21001
21002 mx31 litekit support
21003
21004 This patch adds support for the mx31 litekit board
21005
21006 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21007 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21008
21009commit cdace0661208754a53019ea0dc7b803a040e0939
21010Author: Sascha Hauer <s.hauer@pengutronix.de>
21011Date: Wed Mar 26 20:40:49 2008 +0100
21012
21013 add an i2c driver for mx31
21014
21015 This patch adds an i2c driver for Freescale i.MX processors
21016
21017 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21018 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21019
21020commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
21021Author: Sascha Hauer <s.hauer@pengutronix.de>
21022Date: Wed Mar 26 20:40:42 2008 +0100
21023
21024 core support for Freescale mx31
21025
21026 This patch adds the core support for Freescale mx31
21027
21028 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21029 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21030
21031commit 7ec68862a27c8f6f6d566228de8f6724d964a939
21032Author: Wolfgang Denk <wd@denx.de>
21033Date: Sun Apr 13 14:19:23 2008 -0700
21034
21035 Fix compile error
21036
21037 ...as suggested by Peter Pearse
21038
21039 Signed-off-by: Wolfgang Denk <wd@denx.de>
21040
21041commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
21042Author: Sascha Hauer <s.hauer@pengutronix.de>
21043Date: Wed Mar 26 20:40:36 2008 +0100
21044
21045 Separate omap24xx specific code from arm1136
21046
21047 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
21048 to cpu/arm1136/omap24xx.
21049
21050 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21051 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21052
21053commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
21054Author: Mike Frysinger <vapier@gentoo.org>
21055Date: Tue Jan 29 18:21:05 2008 -0500
21056
21057 disable caches before booting an app for Blackfin apps
21058
21059 It isn't generally save to execute applications outside of U-Boot with caches
21060 enabled due to the way the Blackfin processor handles caches (requires
21061 software assistance). This patch disables caches before booting an ELF or
21062 just booting raw code. The previous discussion on the patch was that we
21063 wanted to use weaks instead, but that proved to not be feasible when multiple
21064 symbols are involved, which puts us back at the ifdef solution. I've
21065 minimized the ugliness by moving the setup step outside of the main function.
21066
21067 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21068
21069commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
21070Author: Wolfgang Denk <wd@denx.de>
21071Date: Sun Apr 13 10:03:54 2008 -0700
21072
21073 ppc: Get rid of unused machine type definitions
21074
21075 Signed-off-by: Wolfgang Denk <wd@denx.de>
21076
21077commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
21078Author: Wolfgang Denk <wd@denx.de>
21079Date: Sun Apr 13 09:59:26 2008 -0700
21080
21081 Coding Style cleanup; update CHANGELOG
21082
21083 Signed-off-by: Wolfgang Denk <wd@denx.de>
21084
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -070021085commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
21086Author: Larry Johnson <lrj@acm.org>
21087Date: Thu Feb 21 13:58:11 2008 -0500
21088
21089 LM73 bug fix for negative temperatures and cleanup
21090
21091 When the LM73 temperature sensor measures a temperature below 0 C, the
21092 current driver does not perform sign extension, so the result returned is
21093 512 C too high. This patch fixes the problem, and does general cleanup
21094 of the code.
21095
21096 Signed-off-by: Larry Johnson <lrj@acm.org>
21097
21098commit 96ef831f713289afba19da0c8f905e99da2b23e0
21099Author: Guennadi Liakhovetski <lg@denx.de>
21100Date: Thu Apr 3 13:36:02 2008 +0200
21101
21102 cfi_flash: Support buffered writes on non-standard Spansion NOR flash
21103
21104 Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
21105 series require different addresses for buffered write commands. Define a
21106 configuration option to support buffered writes on those chips. A more
21107 elegant solution would be to automatically detect those chips by parsing
21108 their CFI records, but that would require introduction of a fixup table
21109 into the cfi_flash driver.
21110
21111 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21112
21113commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
21114Author: Lee Nipper <lee.nipper@freescale.com>
21115Date: Thu Apr 10 09:35:06 2008 -0500
21116
21117 mpc83xx: Update DIMM data bus width test to support 40-bit width
21118
21119 32-bit wide ECC memory modules report 40-bit width.
21120 Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
21121
21122 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
21123 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21124
21125commit 5fb5a689d822ca61e814bd523fc930af335242fa
21126Author: Dave Liu <r63238@freescale.com>
21127Date: Mon Mar 31 17:05:12 2008 +0800
21128
21129 mpc83xx: Fix the bug of serdes initialization
21130
21131 Currently the serdes will not be initializated due to the
21132 partid's error.
21133
21134 Signed-off-by: Dave Liu <daveliu@freescale.com>
21135 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21136
21137commit 2000784818f043db7ca60e2846a72d097766b894
21138Author: Dave Liu <r63238@freescale.com>
21139Date: Thu Apr 3 16:28:29 2008 +0800
21140
21141 mpc83xx: Fix the SATA clock setting of 837x targets
21142
21143 Currently the SATA controller clock is configured as CSB clock,
21144 usually the CSB clock is 400/333/266MHz.
21145
21146 However, The SATA IP block is only guaranteed to operate up to
21147 200 MHz as stated in the HW spec.
21148
21149 The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
21150
21151 This patch makes the SATA clock as half of CSB clock.
21152
21153 Signed-off-by: Dave Liu <daveliu@freescale.com>
21154 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21155
21156commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
21157Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21158Date: Wed Apr 2 13:41:21 2008 +0200
21159
21160 mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
21161
21162 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21163 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21164
21165commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
21166Author: Kumar Gala <galak@kernel.crashing.org>
21167Date: Wed Apr 9 04:20:57 2008 -0500
21168
21169 85xx: Fix detection of MP cpu spin up
21170
21171 We were looking at the wrong memory offset to determine of a secondary
21172 cpu had been spun up or not. Also added a warning message if the
21173 all the secondary cpus we expect don't spin up.
21174
21175 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21176
21177commit f3e04bdc3f360c66801a9048956e61e41a16edba
21178Author: Kumar Gala <galak@kernel.crashing.org>
21179Date: Tue Apr 8 10:45:50 2008 -0500
21180
21181 85xx: Use SVR_SOC_VER instead of SVR_VER
21182
21183 The recent change introduced by 'Update SVR numbers to expand support'
21184 now requires that we use SVR_SOC_VER instead of SVR_VER if we want
21185 to compare against a particular processor id.
21186
21187 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21188
21189commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
21190Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
21191Date: Fri Apr 11 10:00:35 2008 -0400
21192
21193 ppc4xx: Fix power mgt definitions for PPC440
21194
21195 Corrected DCR addresses of PPC440EP power management registers.
21196
21197 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
21198
21199commit 950a392464e616b4590bc4501be46e2d7d162dea
21200Author: Wolfgang Denk <wd@denx.de>
21201Date: Fri Apr 11 15:11:26 2008 +0200
21202
21203 Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
21204
21205 Reverting became necessary after it turned out that the patches in
21206 the u-boot-arm repo were modified, and in some cases corrupted.
21207
21208 This reverts the following commits:
21209
21210 066bebd6353e33af3adefc3404560871699e9961
21211 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
21212 c88ae20580b2b01487b4cdcc8b2a113f551aee36
21213 a147e56f03871bba4f05058d5e04ce7deb010b04
21214 d6674e0e2a6a1f033945f78838566210d3f28c95
21215 8c8463cce44d849e37744749b32d38e1dfb12e50
21216 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
21217 8bf69d81782619187933a605f1a95ee1d069478d
21218 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
21219 a574a73852a527779234e73e17e7597fd8128882
21220 1377b5583a48021d983e1fd565f7d40c89e84d63
21221 1704dc20917b4f71e373e2c888497ee666d40380
21222
21223 Signed-off-by: Wolfgang Denk <wd@denx.de>
21224
21225commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
21226Author: Stefan Roese <sr@denx.de>
21227Date: Fri Apr 11 07:02:29 2008 +0200
21228
21229 ppc4xx: Update Kilauea defconfig to use device-tree booting as default
21230
21231 This patch reworks the default environment on Kilauea/Haleakala. Now
21232 "net_nfs" for exmaple uses the device-tree style booting formerly know
21233 as "net_nfs_fdt". Also the addresses in RAM were changed because of the
21234 new image booting support, which check for image overwriting. So the
21235 addresses needed togeet adjusted.
21236
21237 Signed-off-by: Stefan Roese <sr@denx.de>
21238
21239commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
21240Author: Stefan Roese <sr@denx.de>
21241Date: Wed Apr 9 11:58:02 2008 +0200
21242
21243 ppc4xx: Fix Canyonlands default environment to work with new image support
21244
21245 Since the new image support checks for image overwriting, the default
21246 environment needs to get adjusted to use correct addresses.
21247
21248 Signed-off-by: Stefan Roese <sr@denx.de>
21249
21250commit dfc6c7b647dba7ab86749616f0e9e5740deed422
21251Author: Stefan Roese <sr@denx.de>
21252Date: Wed Apr 9 11:54:11 2008 +0200
21253
21254 ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
21255
21256 The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
21257 closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
21258 on 4xx systems _start currently cannot be used for this calculation.
21259 So revert back to the original version for now.
21260
21261 Signed-off-by: Stefan Roese <sr@denx.de>
21262
21263commit f91374f65eae8b42cac329e06ba1c54728278efb
21264Author: Michal Simek <monstr@monstr.eu>
21265Date: Fri Mar 28 12:49:52 2008 +0100
21266
21267 microblaze: Sort microblaze boards in MAKEALL script
21268
21269commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
21270Author: Michal Simek <monstr@monstr.eu>
21271Date: Fri Mar 28 11:58:45 2008 +0100
21272
21273 microblaze: clean microblaze_config.mk
21274
21275 FLAGS are generated by U-BOOT generator.
21276 Board specific FLAGS are in board directory
21277
21278 Signed-off-by: Michal Simek <monstr@monstr.eu>
21279
21280commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
21281Author: Michal Simek <monstr@monstr.eu>
21282Date: Fri Mar 28 12:47:19 2008 +0100
21283
21284 microblaze: xupv2p fix config file for supporting FDT
21285
21286commit 188dc16b189143573b1ed90e584bf866d75cdd12
21287Author: Michal Simek <monstr@monstr.eu>
21288Date: Fri Mar 28 11:53:02 2008 +0100
21289
21290 microblaze: ml401 fix config file for supporting FDT
21291
21292 Signed-off-by: Michal Simek <monstr@monstr.eu>
21293
21294commit 4c6a6f02e239236261333759997eeaf86b30b54c
21295Author: Michal Simek <monstr@monstr.eu>
21296Date: Fri Mar 28 11:22:48 2008 +0100
21297
21298 microblaze: ml401 - add ifdef for GPIO
21299
21300 Signed-off-by: Michal Simek <monstr@monstr.eu>
21301
21302commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
21303Author: Michal Simek <monstr@monstr.eu>
21304Date: Fri Mar 28 12:13:03 2008 +0100
21305
21306 microblaze: clean uart16550 and uartlite handling
21307
21308 Signed-off-by: Michal Simek <monstr@monstr.eu>
21309
21310commit 0b20f250877441460fb79d72192954abe8498834
21311Author: Michal Simek <monstr@monstr.eu>
21312Date: Fri Mar 28 11:08:31 2008 +0100
21313
21314 microblaze: Add Emaclite driver to Makefile
21315
21316 Signed-off-by: Michal Simek <monstr@monstr.eu>
21317
21318commit 868cde5310f88234b774878e4f06e79df10a88b3
21319Author: Michal Simek <monstr@monstr.eu>
21320Date: Fri Mar 28 11:08:01 2008 +0100
21321
21322 microblaze: Add Emac driver to Makefile
21323
21324 Signed-off-by: Michal Simek <monstr@monstr.eu>
21325
21326commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
21327Author: Michal Simek <monstr@monstr.eu>
21328Date: Fri Mar 28 12:42:29 2008 +0100
21329
21330 microblaze: add Emac ethernet driver
21331
21332commit 89c53891b18cbafd29ab8931b40e27ad231b6085
21333Author: Michal Simek <monstr@monstr.eu>
21334Date: Fri Mar 28 12:41:56 2008 +0100
21335
21336 microblaze: add Emaclite ethernet driver
21337
21338commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
21339Author: Michal Simek <monstr@monstr.eu>
21340Date: Fri Mar 28 11:04:01 2008 +0100
21341
21342 microblaze: ML401 and XUPV2P remove emac and emaclite reference
21343
21344 Signed-off-by: Michal Simek <monstr@monstr.eu>
21345
21346commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
21347Author: Michal Simek <monstr@monstr.eu>
21348Date: Fri Mar 28 10:59:32 2008 +0100
21349
21350 microblaze: remove old setting for emac driver
21351
21352 Signed-off-by: Michal Simek <monstr@monstr.eu>
21353
21354commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
21355Author: Michal Simek <monstr@monstr.eu>
21356Date: Fri Mar 28 10:58:15 2008 +0100
21357
21358 microblaze: Clean Makefile from ancient emac driver
21359
21360 Signed-off-by: Michal Simek <monstr@monstr.eu>
21361
21362commit ab68f921d9c741830f721c3d879c13a0c5597183
21363Author: Daniel Hellstrom <daniel@gaisler.com>
21364Date: Fri Mar 28 10:20:43 2008 +0100
21365
21366 SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
21367
21368 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21369
21370commit 6ed8a43a19bb0275501bc286007daafa923552cf
21371Author: Daniel Hellstrom <daniel@gaisler.com>
21372Date: Wed Mar 26 23:38:48 2008 +0100
21373
21374 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.
21375
21376 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21377
21378commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
21379Author: Daniel Hellstrom <daniel@gaisler.com>
21380Date: Wed Mar 26 23:34:47 2008 +0100
21381
21382 SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
21383
21384 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21385
21386commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
21387Author: Daniel Hellstrom <daniel@gaisler.com>
21388Date: Fri Mar 28 10:06:52 2008 +0100
21389
21390 SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
21391
21392 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21393
21394commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
21395Author: Daniel Hellstrom <daniel@gaisler.com>
21396Date: Wed Mar 26 23:26:48 2008 +0100
21397
21398 SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
21399
21400 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21401
21402commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
21403Author: Daniel Hellstrom <daniel@gaisler.com>
21404Date: Fri Mar 28 10:00:33 2008 +0100
21405
21406 SPARC: Added support for SPARC LEON2 SOC Processor.
21407
21408 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21409
21410commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
21411Author: Daniel Hellstrom <daniel@gaisler.com>
21412Date: Wed Mar 26 23:00:38 2008 +0100
21413
21414 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.
21415
21416 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21417
21418commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
21419Author: Daniel Hellstrom <daniel@gaisler.com>
21420Date: Wed Mar 26 22:51:29 2008 +0100
21421
21422 SPARC: Added support for SPARC LEON3 SOC processor.
21423
21424 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21425
21426commit bf3d8b31169546fcddb4737391e1893fb12d033a
21427Author: Daniel Hellstrom <daniel@gaisler.com>
21428Date: Fri Mar 28 08:29:26 2008 +0100
21429
21430 SPARC: added SPARC support for new uimage in common code.
21431
21432 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21433
21434commit 00ab32c85405a4fe65fd4128243086210fc90a21
21435Author: Daniel Hellstrom <daniel@gaisler.com>
21436Date: Wed Mar 26 22:36:03 2008 +0100
21437
21438 SPARC: added SPARC board information to the command bdinfo.
21439
21440 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21441
21442commit c2f02da21a3f37f0878554eebc785e04fdc4e128
21443Author: Daniel Hellstrom <daniel@gaisler.com>
21444Date: Fri Mar 28 09:47:00 2008 +0100
21445
21446 SPARC: Added generic support for SPARC architecture.
21447
21448 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21449
21450commit e54ec0f016803e4d9524ff71f7971bda0c51b287
21451Author: Stefan Roese <sr@denx.de>
21452Date: Thu Apr 3 14:50:34 2008 +0200
21453
21454 ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
21455
21456 This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
21457 has 2 RGMII instances and we need to configure the 2nd RGMII instance
21458 for the EMAC2+3 channels.
21459
21460 Signed-off-by: Stefan Roese <sr@denx.de>
21461
21462commit c2a545ce33b26d80337f80b533828839249fb1c9
21463Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21464Date: Wed Apr 2 08:03:56 2008 +0200
21465
21466 MPC8xx: Fix libfdt support introduced in commit 77ff7b74
21467
21468 fdt.c: In function 'ft_cpu_setup':
21469 fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
21470 fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
21471 fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
21472 fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
21473
21474 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21475
21476commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
21477Author: Andy Fleming <afleming@freescale.com>
21478Date: Mon Mar 31 20:45:56 2008 -0500
21479
21480 Fix fdt set command to conform to dts spec
21481
21482 The fdt set command was treating properties specified as <00> and <0011>
21483 as byte streams, rather than as an array of cells. As we already have
21484 syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
21485 we should use the <> syntax to describe arrays of cells, which are always
21486 32-bits per element. If we imagine this likely (IMHO) scenario:
21487
21488 > fdt set /ethernet-phy@1 reg <1>
21489
21490 With the old code, this would create a bad fdt, since the reg cell would be
21491 made to be one byte in length. But the cell must be 4 bytes, so this would
21492 break mysteriously.
21493
21494 Also, the dts spec calls for constants inside the angle brackets (<>)
21495 to conform to C constant standards as they pertain to base.
21496 Take this scenario:
21497
21498 > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
21499
21500 The old fdt command would complain that it couldn't parse that. Or, if you
21501 wanted to specify that a certain clock ran at 33 MHz, you'd be required to
21502 do this:
21503
21504 > fdt set /mydev clock <1f78a40>
21505
21506 Whereas the new code will accept decimal numbers.
21507
21508 While I was in there, I extended the fdt command parser to handle property
21509 strings which are split across multiple arguments:
21510
21511 > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
21512 > fdt p /ethernet@f00
21513 ethernet@f00 {
21514 interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
21515 };
21516
21517 Lastly, the fdt print code was rearranged slightly to print arrays of cells
21518 if the length of the property is a multiple of 4 bytes, and to not print
21519 leading zeros.
21520
21521 Signed-off-by: Andy Fleming <afleming@freescale.com>
21522
21523commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
21524Author: Stefan Roese <sr@denx.de>
21525Date: Wed Apr 2 08:39:33 2008 +0200
21526
21527 ppc4xx: Canyonlands: Init SATA/PCIe port correctly
21528
21529 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
21530 interface. This usage can be configured with the jumper J6. This patch
21531 correctly configures the SATA/PCIe PHY for SATA usage when this jumper
21532 is installed.
21533
21534 Signed-off-by: Stefan Roese <sr@denx.de>
21535
21536commit 6fe2946f198481254a6ee9600d7456b8316a4083
21537Author: Kim Phillips <kim.phillips@freescale.com>
21538Date: Fri Mar 28 17:37:49 2008 -0500
21539
21540 remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
21541
21542 finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
21543 "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
21544 started.
21545
21546 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21547
21548commit b5873f1732b92a25690e1513b90dfb0d644f6697
21549Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21550Date: Tue Apr 1 07:30:51 2008 +0200
21551
21552 dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
21553
21554 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21555
21556commit 2d934ea51f276522b532f870a820e844ff480b5b
21557Author: Tor Krill <tor@excito.com>
21558Date: Fri Mar 28 15:29:45 2008 +0100
21559
21560 Add Vitesse 8601 support to TSEC driver
21561
21562 Add phy_info for Vitesse VSC8601.
21563 Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
21564
21565 Signed-off-by: Tor Krill <tor@excito.com>
21566 Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
21567 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21568
21569commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
21570Author: Daniel Hellstrom <daniel@gaisler.com>
21571Date: Mon Mar 31 14:25:00 2008 +0000
21572
21573 SPARC: added SMC91111 driver in and out macros for LEON processors.
21574
21575 This patch makes SPARC/LEON processors able to read and write
21576 to the SMC91111 chip using the chip external I/O bus of the memory
21577 controller. This patchs defines the standard in and out macros
21578 expected by the SMC9111 driver.
21579
21580 To access that I/O bus one must set up the memory controller
21581 (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
21582 up this correctly when the other MCTRL parameters are set up. It
21583 can be set up from the board configuration header file.
21584
21585 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
21586 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21587
21588commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
21589Author: Stelian Pop <stelian@popies.net>
21590Date: Wed Mar 26 18:52:34 2008 +0100
21591
21592 Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
21593
21594 Signed-off-by: Stelian Pop <stelian@popies.net>
21595
21596commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
21597Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21598Date: Mon Mar 31 21:31:04 2008 +0200
21599
21600 AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
21601
21602 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21603
21604commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
21605Author: Stelian Pop <stelian@popies.net>
21606Date: Wed Mar 26 18:52:33 2008 +0100
21607
21608 Add support for AT91SAM9260EK
21609
21610 Support for booting from internal DataFlash, external DataFlash card
21611 or NAND flash is available.
21612
21613 Signed-off-by: Stelian Pop <stelian@popies.net>
21614
21615commit 1762f13b4aab88b685b1722f17dada247945624b
21616Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21617Date: Mon Mar 31 21:20:49 2008 +0200
21618
21619 AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
21620
21621 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21622
21623commit 761712188b353494defb2b644491ff73d0daaa6f
21624Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21625Date: Mon Mar 31 21:12:17 2008 +0200
21626
21627 AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
21628
21629 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21630
21631commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
21632Author: Stelian Pop <stelian@popies.net>
21633Date: Wed Mar 26 20:52:32 2008 +0100
21634
21635 Port AT91CAP9 to the new headers
21636
21637 Adapt the existing AT91CAP9 code to the new headers and APIs.
21638
21639 Signed-off-by: Stelian Pop <stelian@popies.net>
21640
21641commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
21642Author: Stelian Pop <stelian@popies.net>
21643Date: Wed Mar 26 19:52:31 2008 +0100
21644
21645 Finish header files reworking
21646
21647 Replace AT91CAP9.h file with several splitted header files coming
21648 from the Linux kernel.
21649
21650 This is part 2 of the replacement: more header imports and edits.
21651
21652 Signed-off-by: Stelian Pop <stelian@popies.net>
21653
21654commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
21655Author: Stelian Pop <stelian@popies.net>
21656Date: Wed Mar 26 19:52:30 2008 +0100
21657
21658 Import several header files from Linux
21659
21660 Replace AT91CAP9.h file with several splitted header files coming
21661 from the Linux kernel.
21662
21663 This is part 1 of the replacement: pristine header files import.
21664
21665 Signed-off-by: Stelian Pop <stelian@popies.net>
21666
21667commit a8a78f2d99dc1bd30dc3595da118539b506c6118
21668Author: Stelian Pop <stelian@popies.net>
21669Date: Wed Mar 26 20:52:28 2008 +0100
21670
21671 Move at91cap9 specific files to at91sam9 directory
21672
21673 AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
21674 common infrastructure can be used. Let this infrastructure be
21675 named after the AT91SAM9 family, and move the existing AT91CAP9
21676 files to the new place.
21677
21678 Signed-off-by: Stelian Pop <stelian@popies.net>
21679
21680commit 61106a565870ff503f92b251b94bd7afef889a04
21681Author: Stelian Pop <stelian@popies.net>
21682Date: Wed Mar 26 21:52:27 2008 +0100
21683
21684 Use timer_init() instead of board supplied interrupt_init()
21685
21686 The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
21687 the board, so use timer_init() instead of interrupt_init().
21688
21689 Signed-off-by: Stelian Pop <stelian@popies.net>
21690
21691commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
21692Author: Stelian Pop <stelian@popies.net>
21693Date: Wed Mar 26 21:52:36 2008 +0100
21694
21695 Cleanup DataFlash partition handling
21696
21697 DataFlash partition information has become a mess. This patch
21698 defines a single partition scheme for Atmel DataFlashes. This partition
21699 scheme will be used by all AT91CAP9 and AT91SAM9 boards.
21700
21701 Signed-off-by: Stelian Pop <stelian@popies.net>
21702
21703commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
21704Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21705Date: Fri Mar 28 08:47:45 2008 -0500
21706
21707 ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
21708
21709 When the version_string function in start.S is not 4-byte align,
21710 it will cause the compiler generates "unaligned opcodes detected
21711 in executable segment". This issue affects all ColdFire CPUs.
21712 By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
21713 it is not aligned.
21714
21715 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21716 Acked-by: John Rigby <jrigby@freescale.com>
21717
21718commit bae61eefe15b4d454060a7140e49ae58322be803
21719Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21720Date: Tue Mar 25 15:41:15 2008 -0500
21721
21722 ColdFire: Add dspi and serial flash support for MCF5445x
21723
21724 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21725 Acked-by: John Rigby <jrigby@freescale.com>
21726
21727commit 48ead7a7a922fceaf494e352abfab8216a41b417
21728Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21729Date: Tue Mar 18 17:37:01 2008 -0500
21730
21731 ColdFire: Remove R5200 board
21732
21733 This board never went into production
21734
21735 Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
21736 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21737 Acked-by: John Rigby <jrigby@freescale.com>
21738
21739commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
21740Author: Matthew Fettke <[matthew.fettke@gmail.com]>
21741Date: Thu Jan 24 14:02:32 2008 -0600
21742
21743 ColdFire: Added M5275EVB support.
21744
21745 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
21746 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21747 Acked-by: John Rigby <jrigby@freescale.com>
21748
21749commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
21750Author: Matthew Fettke <[matthew.fettke@gmail.com]>
21751Date: Mon Feb 4 15:38:20 2008 -0600
21752
21753 ColdFire: Added MCF5275 cpu support.
21754
21755 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
21756 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21757 Acked-by: John Rigby <jrigby@freescale.com>
21758
21759commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
21760Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21761Date: Mon Mar 17 12:14:11 2008 -0500
21762
21763 ColdFire: Define bootdelay in configuration file for M52277EVB
21764
21765 Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
21766 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21767 Acked-by: John Rigby <jrigby@freescale.com>
21768
21769commit 77878f16cedee17161ff2336990970fffc6cea35
21770Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21771Date: Mon Mar 17 12:09:07 2008 -0500
21772
21773 ColdFire: Fix second memory Chipselect for M5475EVB
21774
21775 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21776 Acked-by: John Rigby <jrigby@freescale.com>
21777
21778commit 43d60642395a550956cb21d287c8cfa563913d28
21779Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21780Date: Thu Mar 13 14:26:32 2008 -0500
21781
21782 ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
21783
21784 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21785 Acked-by: John Rigby <jrigby@freescale.com>
21786
21787commit eb14ebe813a0cb5d47905228da446a5ad692473b
21788Author: Larry Johnson <lrj@acm.org>
21789Date: Sun Mar 30 20:33:04 2008 -0500
21790
21791 ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
21792
21793 Signed-off-by: Larry Johnson <lrj@acm.org>
21794
21795commit 02e3892021112f21067d9ed1d04ae4182725ba52
21796Author: Stefan Roese <sr@denx.de>
21797Date: Mon Mar 31 12:20:48 2008 +0200
21798
21799 ppc4xx: Small whitespace fix of esd patches
21800
21801 Signed-off-by: Stefan Roese <sr@denx.de>
21802
21803commit 034394abb524785047c815f00dde8cdbdc1593c5
21804Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21805Date: Sun Mar 30 18:52:44 2008 +0200
21806
21807 ppc4xx: Cleanup PMC440 board support
21808
21809 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21810
21811commit a6cc6c37188d85c25d167a4515da86f48d9a583e
21812Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21813Date: Sun Mar 30 18:52:06 2008 +0200
21814
21815 ppc4xx: Add ptm configuration variables for PMC440
21816
21817 Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
21818 environment variables.
21819
21820 Cleanup pci_target_init.
21821
21822 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21823
21824commit 7c91f51a2fe296909147f1646a1412729dd10b1d
21825Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21826Date: Sun Mar 30 18:01:15 2008 +0200
21827
21828 ppc4xx: Minor updates for DU440 boards
21829
21830 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21831
21832commit d5bffeb868d6b4d462f558dac43011027b6644b7
21833Author: Mike Frysinger <vapier@gentoo.org>
21834Date: Tue Feb 19 00:54:20 2008 -0500
21835
21836 Blackfin: cleanup and overhaul common board init functions
21837
21838 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21839
21840commit b86b3416f874358acaf07519e7620cdb2145f75b
21841Author: Mike Frysinger <vapier@gentoo.org>
21842Date: Tue Feb 19 00:50:58 2008 -0500
21843
21844 Blackfin: cleanup lib_blackfin/cache.c
21845
21846 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21847
21848commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
21849Author: Mike Frysinger <vapier@gentoo.org>
21850Date: Sun Mar 30 15:46:13 2008 -0400
21851
21852 Blackfin: unify cpu and boot modes
21853
21854 All of the duplicated code for Blackfin processors and boot modes have been
21855 unified. After all, the core is the same for all processors, just the
21856 peripheral set differs (which gets handled in the drivers).
21857
21858 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21859
21860commit 880cc4381ea8360248cddcdf87a64566745a5724
21861Author: Stelian Pop <stelian@popies.net>
21862Date: Wed Mar 26 22:52:35 2008 +0100
21863
21864 Fix CFG_NO_FLASH compilation.
21865
21866 Many Atmel boards have no "real" (NOR) flash on board, and rely only
21867 on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
21868 be present in a board configuration file, while still enabling flash
21869 commands like 'flinfo', 'protect', etc.
21870
21871 Signed-off-by: Stelian Pop <stelian@popies.net>
21872
21873commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
21874Author: Mike Frysinger <vapier@gentoo.org>
21875Date: Tue Feb 19 00:58:13 2008 -0500
21876
21877 Blackfin: BF537-stamp: cleanup spi flash driver
21878
21879 This punts the old spi flash driver for a new/generalized one until the
21880 common one can be integrated.
21881
21882 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21883
21884commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
21885Author: Ben Warren <biggerbadderben@gmail.com>
21886Date: Sun Mar 30 11:34:34 2008 -0400
21887
21888 Fix macro typo in common/cmd_mii.c
21889
21890 This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206. I
21891 actually applied the wrong patch.
21892
21893 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21894
21895commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
21896Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21897Date: Sun Mar 30 16:39:53 2008 +0200
21898
21899 use correct at91rm9200 register name in m501sk board
21900
21901 This fixes a naming bug for at91rm9200 lowlevel init code:
21902 NOR boot flash is on chipselect 0, not chipselect 2. This
21903 makes code use the register name from chip datasheets.
21904
21905 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21906
21907commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
21908Author: David Brownell <david-b@pacbell.net>
21909Date: Fri Jan 18 12:55:00 2008 -0800
21910
21911 use correct at91rm9200 register name
21912
21913 This fixes a naming bug for at91rm9200 lowlevel init code:
21914 NOR boot flash is on chipselect 0, not chipselect 2. This
21915 makes code use the register name from chip datasheets.
21916
21917 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21918
21919commit a3543d6dc52b0ba9c64016687cf32d600b31a476
21920Author: David Brownell <david-b@pacbell.net>
21921Date: Fri Jan 18 12:45:45 2008 -0800
21922
21923 add missing ARM boards to MAKEALL
21924
21925 Add some missing ARM boards to MAKEALL. These build correctly,
21926 unlike several of the boards already listed.
21927
21928 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21929
21930commit 066bebd6353e33af3adefc3404560871699e9961
21931Author: Peter Pearse <peter.pearse@arm.com>
21932Date: Sun Mar 30 11:34:09 2008 +0100
21933
21934 Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
21935 to prevent compilation error.
21936
21937 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
21938
21939commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
21940Author: Guennadi Liakhovetski <[lg@denx.de]>
21941Date: Sun Mar 30 11:32:30 2008 +0100
21942
21943 Support for the MX31ADS evaluation board from Freescale
21944
21945 This patch adds support for the MX31ADS evaluation board from Freescale,
21946 initialization code is copied from RedBoot sources, also provided by Freescale.
21947
21948 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21949
21950commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
21951Author: Sascha Hauer <s.hauer@pengutronix.de>
21952Date: Sun Mar 30 11:32:27 2008 +0100
21953
21954 Phytec Phycore-i.MX31 support
21955
21956 This patch adds support for the Phytec Phycore-i.MX31 board
21957
21958 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21959 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21960
21961commit a147e56f03871bba4f05058d5e04ce7deb010b04
21962Author: Sascha Hauer <s.hauer@pengutronix.de>
21963Date: Sun Mar 30 11:32:24 2008 +0100
21964
21965 mx31 litekit support
21966
21967 This patch adds support for the mx31 litekit board
21968
21969 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21970 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21971
21972commit d6674e0e2a6a1f033945f78838566210d3f28c95
21973Author: Sascha Hauer <s.hauer@pengutronix.de>
21974Date: Sun Mar 30 11:32:21 2008 +0100
21975
21976 add SMSC LAN9x1x Network driver
21977
21978 This patch adds a driver for the following smsc network controllers:
21979 LAN9115
21980 LAN9116
21981 LAN9117
21982 LAN9215
21983 LAN9216
21984 LAN9217
21985
21986 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21987 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21988
21989commit 8c8463cce44d849e37744749b32d38e1dfb12e50
21990Author: Sascha Hauer <s.hauer@pengutronix.de>
21991Date: Sun Mar 30 11:32:16 2008 +0100
21992
21993 add an i2c driver for mx31
21994
21995 This patch adds an i2c driver for Freescale i.MX processors
21996
21997 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21998 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21999
22000commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
22001Author: Sascha Hauer <s.hauer@pengutronix.de>
22002Date: Sun Mar 30 11:30:43 2008 +0100
22003
22004 core support for Freescale mx31
22005
22006 This patch adds the core support for Freescale mx31
22007
22008 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
22009 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22010
22011commit 8bf69d81782619187933a605f1a95ee1d069478d
22012Author: Sascha Hauer <s.hauer@pengutronix.de>
22013Date: Sun Mar 30 11:28:46 2008 +0100
22014
22015 Separate omap24xx specific code from arm1136
22016
22017 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
22018
22019 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
22020 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22021
22022commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
22023Author: Peter Pearse <peter.pearse@arm.com>
22024Date: Sun Mar 30 11:23:05 2008 +0100
22025
22026 Add pmdra into MAKEALL
22027
22028 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
22029
22030commit a574a73852a527779234e73e17e7597fd8128882
22031Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
22032Date: Sun Mar 30 11:21:58 2008 +0100
22033
22034 Adds support for the Prodrive PMDRA board, based on a DM6441
22035
22036 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
22037
22038commit 1377b5583a48021d983e1fd565f7d40c89e84d63
22039Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
22040Date: Sun Mar 30 11:11:34 2008 +0100
22041
22042 Removes all board specific code from the arch. part for DM644x (DaVinci) boards
22043
22044 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
22045
22046commit 1704dc20917b4f71e373e2c888497ee666d40380
22047Author: Dirk Behme <dirk.behme@gmail.com>
22048Date: Sun Mar 30 11:09:01 2008 +0100
22049
22050 - Remove *_masked() functions as noted by Wolfgang
22051 - Adapt register naming to recent TI spec (sprue26, March 2007)
22052 - Fix reset_timer() handling
22053 - As reported by Pieter [1] the overflow fix introduced a
22054 delay of factor 16 (e.g 2 seconds became 32). While the
22055 overflow fix is basically okay, it missed to divide udelay by
22056 16, too. Fix this.
22057 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
22058 - Remove software division of timer count value (DIV(x)
22059 macro) and do it in hardware (TIM_CLK_DIV).
22060 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
22061 and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
22062 the hints & testing!
22063
22064 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
22065
22066 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
22067
22068commit ac3315c26e143c31680750c9c13f027efbcc887e
22069Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
22070Date: Thu Mar 6 16:45:44 2008 +0100
22071
22072 new PHY @ e1000 - 2nd try
22073
22074 Add 82541ER device with latest integrated IGP2 PHY.
22075 Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
22076
22077 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
22078 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22079
22080commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
22081Author: Daniel Hellstrom <daniel@gaisler.com>
22082Date: Fri Mar 28 20:22:53 2008 +0100
22083
22084 SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
22085
22086 GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
22087 a debug link (EDCL). The GRETH core is documented in GRIP.pdf
22088 available at www.gaisler.com.
22089
22090 If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
22091 offloading etc.) can be determined by a bit in the control register.
22092 The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
22093
22094 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
22095 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22096
22097commit 233a8bcd94997f3f345833a3b82e836222f2a206
22098Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
22099Date: Mon Mar 17 17:08:22 2008 -0500
22100
22101 Add CONFIG_MII_INIT in cmd_mii.c
22102
22103 Provide common configuration in do_mii() to execute mii_init()
22104 for all cpu architectures
22105
22106 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22107 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22108
22109commit f605479de2deb11e834f31dfdb0af107c86aced6
22110Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
22111Date: Mon Mar 17 17:08:16 2008 -0500
22112
22113 ColdFire: Fix FEC transmit issue for MCF5275
22114
22115 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22116 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22117
22118commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
22119Author: Aras Vaichas <arasv@magtech.com.au>
22120Date: Wed Mar 26 09:43:57 2008 +1100
22121
22122 DHCP request fix for Windows Server 2003
22123
22124 Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
22125 delay before sending "DHCP Request" in net/bootp.c. Required to overcome
22126 interoperability problems with Windows Server 200x DHCP server when U-Boot
22127 client responds too fast for server to handle.
22128
22129 Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
22130 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22131
22132commit 97bf85d784fbed485e652eb907589ad0d5cb7262
22133Author: Daniel Hellstrom <daniel@gaisler.com>
22134Date: Fri Mar 28 20:40:19 2008 +0100
22135
22136 MTD/CFI: flash_read64 is defined a weak function (for SPARC)
22137
22138 SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
22139 SPARC CPUs implement flash_read64 which calls __raw_readq.
22140
22141 For current SPARC architectures (LEON2 and LEON3) each read from the
22142 FLASH must lead to a cache miss. This is because FLASH can not be set
22143 non-cacheable since program code resides there, and alternatively disabling
22144 cache is poor from performance view, or doing a cache flush between each
22145 read is even poorer.
22146
22147 Forcing a cache miss on a SPARC is done by a special instruction "lda" -
22148 load alternative space, the alternative space number (ASI) is processor
22149 implementation spcific and can be found by including <asm/processor.h>.
22150
22151 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
22152
22153commit 70431e8a7393b6b793f77957f95b999fc9a269b8
22154Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
22155Date: Fri Mar 28 15:41:25 2008 +0100
22156
22157 Make MPC83xx one step closer to full relocation.
22158
22159 Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
22160 and use GOT relative reference.
22161
22162 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
22163 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22164
22165commit 5b2793a3f3de34d439232b05acc8af67a028fd35
22166Author: Michael Barkowski <michael.barkowski@freescale.com>
22167Date: Thu Mar 27 14:34:43 2008 -0400
22168
22169 mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
22170
22171 This patch fixes eeprom page size so that you can now write more than
22172 64 bytes at a time.
22173
22174 It also makes the board take MAC addresses, if found, from EEPROM.
22175
22176 User should place up to 4 addresses at offset 0x7f00, for
22177 eth{,1,2,3}addr. Any unused addresses should be zero. This group of
22178 four six-byte values should have it's CRC at the end. crc32 and
22179 eeprom commands can be used to accomplish this.
22180
22181 If CRC fails, MAC addresses come from the environment. If CRC
22182 succeeds, the environment is overwritten at startup.
22183
22184 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
22185 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22186
22187commit 8f325cff31f6e745e6540014b131b9a97f61944c
22188Author: Michael Barkowski <michael.barkowski@freescale.com>
22189Date: Fri Mar 28 15:15:38 2008 -0400
22190
22191 mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
22192
22193 Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
22194 controller on the PCI bus in Linux on the MPC8323ERDB.
22195
22196 This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
22197 config file.
22198
22199 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
22200 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22201
22202commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
22203Author: Kim Phillips <kim.phillips@freescale.com>
22204Date: Fri Mar 28 10:19:07 2008 -0500
22205
22206 mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
22207
22208 in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
22209 85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
22210 and processor ID display. Add REVID_{MAJ,MIN}OR macros to make
22211 REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR
22212 convenience macros.
22213
22214 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22215
22216commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
22217Author: Kim Phillips <kim.phillips@freescale.com>
22218Date: Fri Mar 28 10:18:53 2008 -0500
22219
22220 mpc83xx: display ddr frequency in board_add_ram_info banner
22221
22222 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22223
22224commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
22225Author: Kim Phillips <kim.phillips@freescale.com>
22226Date: Fri Mar 28 10:18:40 2008 -0500
22227
22228 mpc83xx: unreinvent mem_clk
22229
22230 delete ddr_clk and use mem_clk instead. Rename other ddr_*_clk to
22231 mem_*_clk for consistency's sake.
22232
22233 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22234
22235commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
22236Author: Kim Phillips <kim.phillips@freescale.com>
22237Date: Fri Mar 28 14:31:23 2008 -0500
22238
22239 mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
22240
22241 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22242
22243commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
22244Author: Dave Liu <r63238@freescale.com>
22245Date: Wed Mar 26 22:57:19 2008 +0800
22246
22247 mpc83xx: enable the SATA interface on mpc837xemds board
22248
22249 Enable the first two SATA interfaces on MPC837xEMDS board,
22250 The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
22251
22252 Signed-off-by: Dave Liu <daveliu@freescale.com>
22253 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22254
22255commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
22256Author: Dave Liu <r63238@freescale.com>
22257Date: Wed Mar 26 22:56:36 2008 +0800
22258
22259 mpc83xx: initialize serdes for MPC837xEMDS boards
22260
22261 This patch is stolen from Anton Vorontsov's patch
22262 for mpc837xerdb boards.
22263
22264 The reference clk and xcorevdd voltage of serdes1/2
22265 is same between mpc837xemds and mpc837xerdb.
22266
22267 8377E: LYNX1- 2 SATA LYNX2- 2 PCIE
22268 8378E: LYNX1- 2 SGMII LYNX2- 2 PCIE
22269 8379E: LYNX1- 2 SATA LYNX2- 2 SATA
22270
22271 Signed-off-by: Dave Liu <daveliu@freescale.com>
22272 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22273
22274commit cc8e839abc80887ae832767b5930d40edd6d7eb7
22275Author: Stefan Roese <sr@denx.de>
22276Date: Fri Mar 28 14:09:04 2008 +0100
22277
22278 ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
22279
22280 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
22281 interface. This usage can be configured with the jumper J6. This patch
22282 displays the current configuration upon bootup and changes the PCIe
22283 init loop, to only initialize the availabel PCIe slots.
22284
22285 Signed-off-by: Stefan Roese <sr@denx.de>
22286
22287commit 90447ecbbac8572457b6d8903073ac3f120995ba
22288Author: Tor Krill <tor@excito.com>
22289Date: Fri Mar 28 11:29:10 2008 +0100
22290
22291 MTD/CFI: Add support for 16bit legacy AMD flash
22292
22293 Add entry for 512Kx16 AMD flash to jedec_table.
22294 Read out 16bit device id if chipwidth is 16bit.
22295 Fixed coding style after Stefans feedback
22296
22297 Signed-off-by: Tor Krill <tor@excito.com>
22298
22299commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
22300Author: Stefan Roese <sr@denx.de>
22301Date: Fri Mar 28 11:02:53 2008 +0100
22302
22303 ppc: Small change to CFG_MEM_TOP_HIDE description
22304
22305 Signed-off-by: Stefan Roese <sr@denx.de>
22306
22307commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
22308Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22309Date: Thu Mar 27 15:44:12 2008 +0900
22310
22311 sh: Add support stat structure and stat.h
22312
22313 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22314
22315commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
22316Author: Mark Jonas <toertel@gmail.com>
22317Date: Sat Mar 22 19:27:52 2008 +0100
22318
22319 sh: Removed warning when compiling drivers/serial/serial_sh.c.
22320
22321 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
22322 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22323
22324commit f309fa38929ffba71230c02330ffa42f4bba6333
22325Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22326Date: Wed Mar 12 18:02:57 2008 +0900
22327
22328 sh: Remove disable_ctrlc function from R7780MP
22329
22330 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22331
22332commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
22333Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22334Date: Wed Mar 12 17:55:15 2008 +0900
22335
22336 sh: Add maintainer of R7780MP to MAINTAINER file
22337
22338 Update MAINTAINER entry for R7780MP. And fix maintainer's name.
22339
22340 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22341
22342commit f5e2466f7baa887a7df0c536333eea8231333497
22343Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22344Date: Tue Mar 25 17:11:24 2008 +0900
22345
22346 sh: Add support Renesas Solutions R2D plus board
22347
22348 R2D plus is SH reference board used with SH7751R.
22349 This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
22350 one PCI bus, VGA, and two Ethernet controller.
22351
22352 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22353
22354commit e92c95180bb5bc5fd4051598a9d60beaba48988d
22355Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22356Date: Wed Mar 12 12:15:29 2008 +0900
22357
22358 sh: Add support SH4 cache control
22359
22360 Add support SH4 cache control and flash_cache function
22361
22362 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22363
22364commit 28e5efde4d925fcb34901d0030d0648de2da7e89
22365Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22366Date: Mon Mar 24 01:53:01 2008 +0900
22367
22368 sh: Add support PCI host driver for SH7751/SH7751R
22369
22370 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22371
22372commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
22373Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22374Date: Mon Mar 24 02:11:26 2008 +0900
22375
22376 sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
22377
22378 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22379
22380commit 566933278101c144d75361ea682678a326c1290d
22381Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22382Date: Wed Mar 12 12:10:28 2008 +0900
22383
22384 sh: Add support SuperH SH7751/SH7751R
22385
22386 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22387
22388commit 3313e0e26224fc9a0c445124f3455058c696df84
22389Author: Mark Jonas <toertel@gmail.com>
22390Date: Mon Mar 10 11:37:10 2008 +0100
22391
22392 sh: Added support for SH7720 based board MPR2.
22393
22394 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
22395 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22396
22397commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
22398Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22399Date: Thu Mar 6 14:05:53 2008 +0900
22400
22401 sh: Fix receive FIFO level register of SH4A
22402
22403 Receive FIFO level register is different in SH4A.
22404 Because register is different, cannot occasionally receive data.
22405
22406 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22407
22408commit c133c1fb0b590662206b0eba70f4478ee0300a9a
22409Author: Yusuke Goda <goda.yusuke@renesas.com>
22410Date: Tue Mar 11 12:55:12 2008 +0900
22411
22412 sh: Add support Renesas Solutions R7780MP
22413
22414 Renesas Solutions R7780MP is a reference board on SH7780.
22415 This board has serial, 10/100 base Ethernet deivice, CF slot
22416 and VGA devices. This board can set extension board.
22417 Extension board has 10/100/1000 base Ethernet device, PCI slot,
22418 S-ATA, iDVR slot.
22419
22420 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
22421 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22422
22423commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
22424Author: Yusuke Goda <goda.yusuke@renesas.com>
22425Date: Wed Mar 5 14:30:02 2008 +0900
22426
22427 sh: Add support PCI of SuperH and SH7780
22428
22429 This patch add support PCI of SuperH base code and SH7780 specific code.
22430
22431 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
22432 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22433
22434commit b55523efff2ae11f0b9ae3cc405893c32eb78156
22435Author: Yusuke Goda <goda.yusuke@renesas.com>
22436Date: Wed Mar 5 14:23:26 2008 +0900
22437
22438 sh: Add support SH7780
22439
22440 SH7780 is CPU of Renesas Technology.
22441 This CPU has
22442 - CPU clock 400MHz
22443 - PCI support
22444 - DDR-SDRAM controller
22445 - etc ...
22446
22447 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
22448 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22449
22450commit c2042f5952a686c414031309b8f244513bf578f0
22451Author: goda.yusuke <goda.yusuke@renesas.com>
22452Date: Fri Jan 25 20:46:36 2008 +0900
22453
22454 sh: Add support Renesas Solutions Migo-R board
22455
22456 Migo-R is a board based on SH7722 and has may devices.
22457 In this patch, supported SCIF, NOR flash and Ethernet.
22458
22459 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
22460 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22461
22462commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
22463Author: Bartlomiej Sieka <tur@semihalf.com>
22464Date: Thu Mar 27 15:06:40 2008 +0100
22465
22466 Fix host tool build breakage, take two
22467
22468 Revert commit 87c8431f and fix build breakage so that the build continues
22469 to work on FC systems.
22470
22471 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
22472
22473commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
22474Author: Stefan Roese <sr@denx.de>
22475Date: Wed Mar 19 09:36:47 2008 +0100
22476
22477 ppc4xx: Enable ECC on LWMON5
22478
22479 Since all ECC related problems seem to be resolved on LWMON5, this patch
22480 now enables ECC support.
22481
22482 We have to write the ECC bytes by zeroing and flushing in smaller
22483 steps, since the whole 256MByte takes too long for the external
22484 watchdog.
22485
22486 Signed-off-by: Stefan Roese <sr@denx.de>
22487
22488commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
22489Author: Larry Johnson <lrj@acm.org>
22490Date: Mon Mar 17 11:10:35 2008 -0500
22491
22492 ppc4xx: Updates to Korat-specific code
22493
22494 This patch contains updates for changes for the Korat PPC440EPx board.
22495 These changes include:
22496
22497 (1) Support for "permanent" and "upgradable" copies of U-Boot, as
22498 described in the new "doc/README.korat" file;
22499
22500 (2) a new memory map for the registers in the board's CPLD;
22501
22502 (3) a revised format for manufacturer's data in serial EEPROM; and
22503
22504 (4) changes to track updates to U-Boot for the Sequoia board.
22505
22506 Signed-off-by: Larry Johnson <lrj@acm.org>
22507
22508commit f766cdf89b3a2a7634b8c5869f606150e332036c
22509Author: Markus Brunner <super.firetwister@gmail.com>
22510Date: Thu Mar 27 10:46:25 2008 +0100
22511
22512 ppc4xx: PPC405EP Set EMAC noise filter bits
22513
22514 This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
22515 which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
22516 disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
22517
22518 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
22519 Signed-off-by: Stefan Roese <sr@denx.de>
22520
22521commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
22522Author: Mike Nuss <mike@terascala.com>
22523Date: Wed Feb 20 11:54:20 2008 -0500
22524
22525 ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
22526
22527 On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
22528 after startup to change the speed of the clocks. This patch adds the
22529 option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
22530 initialization code will reconfigure the PLL to run the system with a CPU
22531 frequency of 667MHz and PLB frequency of 166MHz, without the need for an
22532 external EEPROM.
22533
22534 Signed-off-by: Mike Nuss <mike@terascala.com>
22535 Acked-by: Stefan Roese <sr@denx.de>
22536
22537commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
22538Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22539Date: Thu Mar 27 09:12:40 2008 +0100
22540
22541 new-image: Fix host tool build breakage
22542
22543 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22544
22545commit 6fb4b640562a10daff0dbe537638d511b5b48650
22546Author: Stefan Roese <sr@denx.de>
22547Date: Thu Mar 27 10:24:03 2008 +0100
22548
22549 ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
22550
22551 Signed-off-by: Stefan Roese <sr@denx.de>
22552
22553commit 9462732a3ec551c11862450902cd8ee1bedea6d9
22554Author: Stefan Roese <sr@denx.de>
22555Date: Wed Mar 19 10:23:43 2008 +0100
22556
22557 ppc4xx: Add fdt support to Prodrive alpr
22558
22559 Since this board will probably be ported to arch/powerpc in the
22560 near future, we add device tree support now. This way we are
22561 "ready" for arch/powerpc from now on.
22562
22563 Signed-off-by: Stefan Roese <sr@denx.de>
22564
22565commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
22566Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
22567Date: Mon Mar 17 09:27:56 2008 +0100
22568
22569 ppc4xx: Enable cache support on the ALPR board
22570
22571 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
22572
22573commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
22574Author: Stefan Roese <sr@denx.de>
22575Date: Wed Mar 26 10:14:11 2008 +0100
22576
22577 ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
22578
22579 If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
22580 memory area will get subtracted from the top (end) of ram and won't get
22581 "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
22582 should gets passed the now "corrected" memory size and won't touch it
22583 either. This should work for arch/ppc and arch/powerpc. Only Linux board
22584 ports in arch/powerpc with bootwrapper support, which recalculate the
22585 memory size from the SDRAM controller setup, will have to get fixed
22586 in Linux additionally.
22587
22588 This patch enables this config option on some PPC440EPx boards as a workaround
22589 for the CHIP 11 errata. Here the description from the AMCC documentation:
22590
22591 CHIP_11: End of memory range area restricted access.
22592 Category: 3
22593
22594 Overview:
22595 The 440EPx DDR controller does not acknowledge any
22596 transaction which is determined to be crossing over the
22597 end-of-memory-range boundary, even if the starting address is
22598 within valid memory space. Any such transaction from any PLB4
22599 master will result in a PLB time-out on PLB4 bus.
22600
22601 Impact:
22602 In case of such misaligned bursts, PLB4 masters will not
22603 retrieve any data at all, just the available data up to the
22604 end of memory, especially the 440 CPU. For example, if a CPU
22605 instruction required an operand located in memory within the
22606 last 7 words of memory, the DCU master would burst read 8
22607 words to update the data cache and cross over the
22608 end-of-memory-range boundary. Such a DCU read would not be
22609 answered by the DDR controller, resulting in a PLB4 time-out
22610 and ultimately in a Machine Check interrupt. The data would
22611 be inaccessible to the CPU.
22612
22613 Workaround:
22614 Forbid any application to access the last 256 bytes of DDR
22615 memory. For example, make your operating system believe that
22616 the last 256 bytes of DDR memory are absent. AMCC has a patch
22617 that does this, available for Linux.
22618
22619 This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
22620 lwmon5, korat, sequoia
22621
22622 The other remaining 440EPx board were intentionally not included
22623 since it is not clear to me, if they use the end of ram for some
22624 other purpose. This is unclear, since these boards have CONFIG_PRAM
22625 defined and even comments like this:
22626
22627 PMC440.h:
22628 /* esd expects pram at end of physical memory.
22629 * So no logbuffer at the moment.
22630 */
22631
22632 It is strongly recommended to not use the last 256 bytes on those
22633 boards too. Patches from the board maintainers are welcome.
22634
22635 Signed-off-by: Stefan Roese <sr@denx.de>
22636
22637commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
22638Author: Stefan Roese <sr@denx.de>
22639Date: Thu Mar 27 10:09:05 2008 +0100
22640
22641 ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
22642
22643 Signed-off-by: Stefan Roese <sr@denx.de>
22644
22645commit d56a3ce179688cde61073a3690e21703d68fafd7
22646Author: Stefan Roese <sr@denx.de>
22647Date: Tue Mar 25 17:51:13 2008 +0100
22648
22649 ppc4xx: Correctly pass phyiscal FLASH base address into dtb
22650
22651 The routine ft_board_setup() configures the EBC NOR mappings for the
22652 Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
22653 0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
22654 problem, we need to pass the corrected address here too.
22655
22656 Signed-off-by: Stefan Roese <sr@denx.de>
22657
22658commit 9ad31989de12ce5c67b07c4867ead47465655c4b
22659Author: Stefan Roese <sr@denx.de>
22660Date: Wed Mar 19 16:35:12 2008 +0100
22661
22662 ppc4xx: Fix compilation warning in 4xx_enet.c
22663
22664 Signed-off-by: Stefan Roese <sr@denx.de>
22665
22666commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
22667Author: Stefan Roese <sr@denx.de>
22668Date: Wed Mar 19 16:20:49 2008 +0100
22669
22670 ppc4xx: Add AMCC Glacier 406GT eval board support
22671
22672 This patch adds support for the AMCC Glacier 460GT eval board.
22673 The main difference to the Canyonlands board are listed here:
22674
22675 - 4 ethernet ports instead of 2
22676 - no SATA port
22677 - no USB port
22678
22679 Currently EMAC2+3 are not working. This will be fixed in a later
22680 release.
22681
22682 Signed-off-by: Stefan Roese <sr@denx.de>
22683
22684commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
22685Author: Stefan Roese <sr@denx.de>
22686Date: Thu Mar 27 08:47:26 2008 +0100
22687
22688 ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
22689
22690 Signed-off-by: Stefan Roese <sr@denx.de>
22691
22692commit b9670dd85be6e0496ef2e231043c23cad9b1d903
22693Author: Anatolij Gustschin <agust@denx.de>
22694Date: Wed Mar 26 21:05:43 2008 +0100
22695
22696 Fix out of tree building issue
22697
22698 Currently U-Boot building in some external directory
22699 doesn't work. This patch tries to fix the problem.
22700
22701 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22702
22703commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
22704Author: Anatolij Gustschin <agust@denx.de>
22705Date: Wed Mar 26 18:13:33 2008 +0100
22706
22707 README: update documentation (availability, links, etc.)
22708
22709 Fix typo in README
22710
22711 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22712
22713commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
22714Author: Anatolij Gustschin <agust@denx.de>
22715Date: Wed Mar 26 17:47:44 2008 +0100
22716
22717 Fix compilation error in cmd_usb.c
22718
22719 This patch fixes compilation error
22720 cmd_usb.c: In function 'do_usb':
22721 cmd_usb.c:552: error: void value not ignored as it ought to be
22722
22723 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22724
22725commit d8c82db482d6b535d12b419d6440b88bf7091c9b
22726Author: Timur Tabi <timur@freescale.com>
22727Date: Fri Mar 14 17:45:29 2008 -0500
22728
22729 Add support for setting the I2C bus speed in fsl_i2c.c
22730
22731 Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
22732 the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro,
22733 but fsl_i2c.c ignores it and uses conservative value when programming the
22734 I2C bus speed.
22735
22736 Signed-off-by: Timur Tabi <timur@freescale.com>
22737 Acked-by: Andy Fleming <afleming@freescale.com>
22738
22739commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
22740Author: Wolfgang Denk <wd@denx.de>
22741Date: Thu Mar 27 00:03:57 2008 +0100
22742
22743 Coding style cleanup, update CHANGELOG
22744
22745 Signed-off-by: Wolfgang Denk <wd@denx.de>
22746
Wolfgang Denkd049cc72008-03-27 00:03:57 +010022747commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
22748Author: Dave Liu <r63238@freescale.com>
22749Date: Wed Mar 26 22:55:32 2008 +0800
22750
22751 drivers: add the support for Freescale SATA controller
22752
22753 Add the Freescale on-chip SATA controller driver to u-boot,
22754 The SATA controller is used on the 837x and 8315 targets,
22755 The driver can be used to load kernel, fs and dtb.
22756
22757 The features list:
22758 - 1.5/3 Gbps link speed
22759 - LBA48, LBA28 support
22760 - DMA and FPDMA support
22761 - Two ports support
22762
22763 Signed-off-by: Dave Liu <daveliu@freescale.com>
22764
22765commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
22766Author: Dave Liu <r63238@freescale.com>
22767Date: Wed Mar 26 22:54:44 2008 +0800
22768
22769 ata: add the readme for SATA command line
22770
22771 Signed-off-by: Dave Liu <daveliu@freescale.com>
22772
22773commit cd54081cd479e542fc399b8a40651ff11a1ad849
22774Author: Dave Liu <r63238@freescale.com>
22775Date: Wed Mar 26 22:53:24 2008 +0800
22776
22777 ata: enable the sata initialize on boot up
22778
22779 Signed-off-by: Dave Liu <daveliu@freescale.com>
22780
22781commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
22782Author: Dave Liu <r63238@freescale.com>
22783Date: Wed Mar 26 22:52:36 2008 +0800
22784
22785 ata: add the fis struct for SATA
22786
22787 Signed-off-by: Dave Liu <daveliu@freescale.com>
22788
22789commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
22790Author: Dave Liu <r63238@freescale.com>
22791Date: Wed Mar 26 22:51:44 2008 +0800
22792
22793 ata: add the libata support
22794
22795 add simple libata support in u-boot
22796
22797 Signed-off-by: Dave Liu <daveliu@freescale.com>
22798
22799commit 8e9bb43429e50df55fa41932cbe65841ff579220
22800Author: Dave Liu <r63238@freescale.com>
22801Date: Wed Mar 26 22:50:45 2008 +0800
22802
22803 ata: make the ata_piix driver using new SATA framework
22804
22805 original ata_piix driver is using IDE framework, not real
22806 SATA framework. For now, the ata_piix driver is only used
22807 by x86 sc520_cdp board. This patch makes the ata_piix driver
22808 use the new SATA framework, so
22809
22810 - remove the duplicated command stuff
22811 - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
22812 - add the CONFIG_CMD_SATA define to sc520_cdp.h
22813
22814 Signed-off-by: Dave Liu <daveliu@freescale.com>
22815
22816commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
22817Author: Dave Liu <r63238@freescale.com>
22818Date: Wed Mar 26 22:49:44 2008 +0800
22819
22820 ata: add the support for SATA framework
22821
22822 - add the SATA framework
22823 - add the SATA command line
22824
22825 Signed-off-by: Dave Liu <daveliu@freescale.com>
22826
22827commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
22828Author: Dave Liu <r63238@freescale.com>
22829Date: Wed Mar 26 22:48:18 2008 +0800
22830
22831 ata: merge the header of ata_piix driver
22832
22833 move the sata.h from include/ to drivers/block/ata_piix.h
22834
22835 Signed-off-by: Dave Liu <daveliu@freescale.com>
22836
22837commit 9eef62804d9695425b24c87b46a61a7fa74afee0
22838Author: Dave Liu <r63238@freescale.com>
22839Date: Wed Mar 26 22:47:06 2008 +0800
22840
22841 ata: merge the ata_piix driver
22842
22843 move the cmd_sata.c from common/ to drivers/ata_piix.c,
22844 the cmd_sata.c have some part of ata_piix controller drivers.
22845 consolidate the driver to have better framework.
22846
22847 Signed-off-by: Dave Liu <daveliu@freescale.com>
22848
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -070022849commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
22850Author: Markus Klotzbuecher <mk@denx.de>
22851Date: Wed Mar 26 18:26:43 2008 +0100
22852
22853 USB, Storage: fix a bug introduced in commit
22854 f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
22855 to only print only information on one storage device, but not for
22856 multiple.
22857
22858 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
22859
22860commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
22861Author: Anatolij Gustschin <agust@denx.de>
22862Date: Wed Mar 26 17:47:44 2008 +0100
22863
22864 Fix compilation error in cmd_usb.c
22865
22866 This patch fixes compilation error
22867 cmd_usb.c: In function 'do_usb':
22868 cmd_usb.c:552: error: void value not ignored as it ought to be
22869
22870 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22871 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
22872
22873commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
22874Author: Kumar Gala <galak@kernel.crashing.org>
22875Date: Wed Mar 26 08:53:53 2008 -0500
22876
22877 85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
22878
22879 Provide a board_lmb_reserve helper function to ensure we reserve
22880 the page of memory we are using for the boot page translation code.
22881
22882 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22883
22884commit 79679d80021ab095e639e250ca472fe526da02e2
22885Author: Kumar Gala <galak@kernel.crashing.org>
22886Date: Wed Mar 26 08:34:25 2008 -0500
22887
22888 85xx: Update multicore boot mechanism to ePAPR v0.81 spec
22889
22890 The following changes are needed to be inline with ePAPR v0.81:
22891
22892 * r4, r5 and now always set to 0 on boot release
22893 * r7 is used to pass the size of the initial map area (IMA)
22894 * EPAPR_MAGIC value changed for book-e processors
22895 * changes in the spin table layout
22896 * spin table supports a 64-bit physical release address
22897
22898 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22899
22900commit 25eedb2c1958a13110c7de1fc809b624053cc69c
22901Author: Jon Loeliger <jdl@freescale.com>
22902Date: Wed Mar 19 15:02:07 2008 -0500
22903
22904 FSL: Clean up board/freescale/common/Makefile
22905
22906 Each file that can be built here now follows some
22907 CONFIG_ option so that they are appropriately built
22908 or not, as needed. And CONFIG_ defines were added
22909 to various board config files to make sure that happens.
22910
22911 The other board/freescale/*/Makefiles no longer need
22912 to reach up and over into ../common to build their
22913 individually needed files any more.
22914
22915 Boards that are CDS specific were renamed with cds_ prefix.
22916
22917 Signed-off-by: Jon Loeliger <jdl@freescale.com>
22918
22919commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
22920Author: Kumar Gala <galak@kernel.crashing.org>
22921Date: Wed Feb 27 22:00:27 2008 -0600
22922
22923 85xx: Fix merge duplication
22924
22925 ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate.
22926
22927 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22928
22929commit 5893b3d0a4084f87a06a5d3dc03db91206818941
22930Author: James Yang <James.Yang@freescale.com>
22931Date: Tue Feb 12 16:35:07 2008 -0600
22932
22933 85xx: Expand CCSR space with more DDR controller registers.
22934
22935 Signed-off-by: James Yang <James.Yang@freescale.com>
22936 Signed-off-by: Jon Loeliger <jdl@freescale.com>
22937 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22938
22939commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
22940Author: James Yang <James.Yang@freescale.com>
22941Date: Fri Feb 8 18:05:08 2008 -0600
22942
22943 85xx: Speed up get_ddr_freq() and get_bus_freq()
22944
22945 get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
22946 called. However, get_sys_info() recalculates extraneous information when
22947 called each time. Have get_ddr_freq() and get_bus_freq() return memoized
22948 values from global_data instead.
22949
22950 Signed-off-by: James Yang <James.Yang@freescale.com>
22951 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22952
22953commit e9ea679918fbc9a53fa2f2a904aac874ea736036
22954Author: James Yang <James.Yang@freescale.com>
22955Date: Fri Feb 8 16:46:27 2008 -0600
22956
22957 85xx: Show DDR memory data rate in addition to the memory clock frequency.
22958
22959 Show the DDR memory data rate in addition to the memory clock
22960 frequency. For DDR/DDR2 memories the memory data rate is 2x the
22961 memory clock.
22962
22963 Signed-off-by: James Yang <James.Yang@freescale.com>
22964 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22965
22966commit 591933ca6eabc440e6ed6967233aaf56fce464a3
22967Author: James Yang <James.Yang@freescale.com>
22968Date: Fri Feb 8 16:44:53 2008 -0600
22969
22970 85xx: get_tbclk() speed up and rounding fix
22971
22972 Speed up get_tbclk() by referencing pre-computed bus clock
22973 frequency value from global data instead of sys_info_t. Fix
22974 rounding of result to nearest; previously it was rounding
22975 upwards.
22976
22977 Signed-off-by: James Yang <James.Yang@freescale.com>
22978 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22979
22980commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
22981Author: Andy Fleming <afleming@freescale.com>
22982Date: Wed Feb 6 01:19:40 2008 -0600
22983
22984 Update SVR numbers to expand support
22985
22986 FSL has taken to using SVR[16:23] as an SOC sub-version field. This
22987 is used to distinguish certain variants within an SOC family. To
22988 account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
22989 constants to reflect the larger value. We also add SVR numbers for all
22990 of the current variants. Finally, to make things neater, rather than
22991 use an enormous switch statement to print out the CPU type, we create
22992 and array of SVR/name pairs (using a macro), and print out the CPU name
22993 that matches the SVR SOC version.
22994
22995 Signed-off-by: Andy Fleming <afleming@freescale.com>
22996
22997commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
22998Author: Andy Fleming <afleming@freescale.com>
22999Date: Wed Feb 6 01:12:57 2008 -0600
23000
23001 Add the Freescale PCI device IDs
23002
23003 Signed-off-by: Andy Fleming <afleming@freescale.com>
23004
23005commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
23006Author: Kumar Gala <galak@kernel.crashing.org>
23007Date: Thu Feb 14 11:04:23 2008 -0600
23008
23009 85xx: Added support for multicore boot mechanism
23010
23011 Added the cpu command that provides a generic mechanism to get status,
23012 reset, and release secondary cores in multicore processors.
23013
23014 Added support for using the ePAPR defined spin-table mechanism on 85xx.
23015
23016 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23017 Signed-off-by: Andy Fleming <afleming@freescale.com>
23018
23019commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
23020Author: Kumar Gala <galak@kernel.crashing.org>
23021Date: Thu Jan 17 16:48:33 2008 -0600
23022
23023 85xx: Added support for multicore boot mechanism
23024
23025 Added the cpu command that provides a generic mechanism to get status,
23026 reset, and release secondary cores in multicore processors.
23027
23028 Added support for using the ePAPR defined spin-table mechanism on 85xx.
23029
23030 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23031
23032commit f69766e4b5d47ecd3aa58677a8da875694f364f2
23033Author: Kumar Gala <galak@kernel.crashing.org>
23034Date: Wed Jan 30 14:55:14 2008 -0600
23035
23036 85xx: Add the concept of CFG_CCSRBAR_PHYS
23037
23038 When we go to 36-bit physical addresses we need to keep the concept of
23039 the physical CCSRBAR address seperate from the virtual one.
23040
23041 For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
23042
23043 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23044
Wolfgang Denkd049cc72008-03-27 00:03:57 +010023045commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
23046Author: Wolfgang Denk <wd@denx.de>
23047Date: Wed Mar 26 15:38:47 2008 +0100
23048
23049 Coding style cleanup.
23050
23051 Signed-off-by: Wolfgang Denk <wd@denx.de>
23052
23053commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
23054Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
23055Date: Wed Mar 26 13:02:13 2008 +0100
23056
23057 Add CFG_RTC_DS1337_NOOSC to turn off OSC output
23058
23059 The default settings for RTC DS1337 keeps the OSC
23060 output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
23061 turn it off.
23062
23063 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
23064
23065commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
23066Author: Wolfgang Denk <wd@denx.de>
23067Date: Wed Mar 26 11:48:46 2008 +0100
23068
23069 Cleanup coding style, update CHANGELOG
23070
23071 Signed-off-by: Wolfgang Denk <wd@denx.de>
23072
Wolfgang Denk438a4c12008-03-26 11:48:46 +010023073commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
23074Author: Wolfgang Denk <wd@denx.de>
23075Date: Wed Mar 26 10:40:12 2008 +0100
23076
23077 README: update documentation (availability, links, etc.)
23078
23079 Signed-off-by: Wolfgang Denk <wd@denx.de>
23080
23081commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
23082Author: Aras Vaichas <arasv@magtech.com.au>
23083Date: Tue Mar 25 12:09:07 2008 +1100
23084
23085 USB Storage, add meaningful return value
23086
23087 This patch changes the "usb storage" command to return success if it
23088 finds a USB storage device, otherwise it returns error.
23089
23090 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
23091
23092commit 18e69a35efbb078403db0c0063986470dad7d082
23093Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23094Date: Fri Mar 14 23:20:18 2008 +0300
23095
23096 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
23097
23098 Linux understands "host" (default), "peripheral" and "otg" (broken).
23099 Though, U-Boot doesn't restrict dr_mode variable to these values (think
23100 of renames in future).
23101
23102 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23103 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23104
23105commit c7604783b236e368f225efb7b3efb418fe20b404
23106Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23107Date: Fri Mar 14 23:20:30 2008 +0300
23108
23109 tsec: fix link detection for the RTL8211B PHY
23110
23111 RTL8211B sets link state register after autonegotiation complete,
23112 so with bootdelay=0 RTL8211B will report lack of the link.
23113
23114 To fix this, we should wait for aneg to complete, even if the
23115 link is currently down.
23116
23117 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23118 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23119
23120commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
23121Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23122Date: Mon Mar 24 20:47:09 2008 +0300
23123
23124 mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
23125
23126 device_type = "soc" is being deprecated, newer device trees will use
23127 "fsl,soc" and/or "fsl,immr" for the soc nodes.
23128
23129 This patch also adds clock-frequency property for soc nodes (the same
23130 value as bus-frequency).
23131
23132 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23133
23134commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
23135Author: Joe D'Abbraccio <ljd015@freescale.com>
23136Date: Mon Mar 24 13:00:59 2008 -0400
23137
23138 Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
23139
23140 With the original value of 1/2 clock cycle delay, the system ran relatively
23141 stable except when we run benchmarks that are intensive users of memory.
23142 When I run samba connected disk with a HDBENCH test, the system locks-up
23143 or reboots sporadically.
23144
23145 Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
23146
23147commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
23148Author: Scott Wood <scottwood@freescale.com>
23149Date: Mon Mar 24 12:44:13 2008 -0500
23150
23151 mpc83xx: Set PCI I/O bus-address base to zero.
23152
23153 The device trees for these boards describe PCI I/O as starting from
23154 address zero from the device's perspective.
23155
23156 Placing I/O elsewhere may cause problems with certain PCI boards, and may
23157 cause problems with Linux.
23158
23159 Signed-off-by: Scott Wood <scottwood@freescale.com>
23160
23161commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
23162Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23163Date: Mon Mar 24 20:47:05 2008 +0300
23164
23165 mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
23166
23167 At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
23168 This patch fixes "system time drifting" problem.
23169
23170 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23171
23172commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
23173Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23174Date: Mon Mar 24 20:47:02 2008 +0300
23175
23176 mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
23177
23178 This is needed to update /choosen/linux,stdout-path properly.
23179
23180 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23181
23182commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
23183Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23184Date: Mon Mar 24 20:47:00 2008 +0300
23185
23186 mpc83xx: MPC8360E-RDK: add dhcp command
23187
23188 Plus modify environment to use it and remove bootfile env variable,
23189 it is internal and CONFIG_BOOTFILE is used for these purposes.
23190
23191 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23192
23193commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
23194Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23195Date: Mon Mar 24 20:46:57 2008 +0300
23196
23197 mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
23198
23199 Current DDR setup easily causes memory corruption, this patch fixes it.
23200
23201 Also fix TIMING_CFG0_MRS_CYC definition.
23202
23203 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23204
23205commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
23206Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23207Date: Mon Mar 24 20:46:53 2008 +0300
23208
23209 mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
23210
23211 This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
23212 controller and FHCI (QE USB).
23213
23214 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23215
23216commit 7ad959490962e6842648d87d4bd795ea6cdcce67
23217Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23218Date: Mon Mar 24 20:46:51 2008 +0300
23219
23220 mpc83xx: MPC8360E-RDK: add support for NAND
23221
23222 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23223
23224commit 9a3e832aeb491861d029991241572ebdf4b5b61b
23225Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23226Date: Mon Mar 24 20:46:46 2008 +0300
23227
23228 mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
23229
23230 This is needed for BCM PHYs to work on this board.
23231
23232 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23233
23234commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
23235Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23236Date: Mon Mar 24 20:46:34 2008 +0300
23237
23238 uec: add support for Broadcom BCM5481 Gigabit PHY
23239
23240 This patch adds basic support for Broadcom BCM5481 PHY.
23241
23242 RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
23243 Peter Barada <peterb@logicpd.com>.
23244
23245 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23246
23247commit 6a600c3a1876bc203445df4f0fd6b12648259666
23248Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23249Date: Mon Mar 24 20:46:28 2008 +0300
23250
23251 uec: add support for RGMII_RXID interface mode
23252
23253 PHY drivers will use it to setup software delay between RXD and RXC
23254 signals.
23255
23256 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23257
23258commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
23259Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23260Date: Mon Mar 24 20:46:24 2008 +0300
23261
23262 uec: add support for gbit mii status readings
23263
23264 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23265
23266commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
23267Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23268Date: Mon Mar 24 17:40:47 2008 +0300
23269
23270 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
23271
23272 This is primarily for the early console support.
23273
23274 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23275
23276commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
23277Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23278Date: Mon Mar 24 17:40:43 2008 +0300
23279
23280 83xx: initialize serdes for MPC837XRDB boards
23281
23282 On the MPC8377ERDB: 2 SATA and 2 PCI-E.
23283 On the MPC8378ERDB: 2 PCI-E
23284 On the MPC8379ERDB: 4 SATA
23285
23286 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23287
23288commit 453316a2a19642d8afcbca7452e40a6b44a197b1
23289Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23290Date: Mon Mar 24 17:40:32 2008 +0300
23291
23292 83xx: serdes setup routines
23293
23294 This patch adds few routines to configure serdes on 837x targets.
23295
23296 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23297
23298commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
23299Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23300Date: Mon Mar 24 17:40:27 2008 +0300
23301
23302 83xx: split COBJS onto separate lines
23303
23304 ..plus get rid of some #ifdefs in the .c files.
23305
23306 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23307
23308commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
23309Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23310Date: Mon Mar 24 17:40:23 2008 +0300
23311
23312 83xx: nand support for MPC837XRDB boards
23313
23314 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23315
23316commit 82e45a204190593e8613145a928f998fb8c909c4
23317Author: Jerry Van Baren <gvb.uboot@gmail.com>
23318Date: Tue Mar 18 21:44:41 2008 -0400
23319
23320 Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
23321
23322 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
23323 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23324
23325commit 0fa7a1b4719e325fce332689fb8754ec166191ff
23326Author: Michael Barkowski <michael.barkowski@freescale.com>
23327Date: Thu Mar 20 13:15:39 2008 -0400
23328
23329 mpc8323erdb: remove RTC and add EEPROM
23330
23331 There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
23332
23333 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
23334 Acked-by: Kim Phillips <kim.phillips@freescale.com>
23335
23336commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
23337Author: Michael Barkowski <michael.barkowski@freescale.com>
23338Date: Thu Mar 20 13:15:34 2008 -0400
23339
23340 mpc8323erdb: Improve the system performance
23341
23342 The following changes are based on kernel UCC ethernet performance:
23343
23344 1. Make the CSB bus pipeline depth as 4, and enable the repeat mode
23345 2. Optimize transactions between QE and CSB. Added CFG_SPCR_OPT
23346 switch to enable this setting.
23347
23348 The following changes are based on the App Note AN3369 and
23349 verified to improve memory latency using LMbench:
23350
23351 3. CS0_CONFIG[AP_n_EN] is changed from 1 to 0
23352 4. CS0_CONFIG[ODT_WR_CONFIG] set to 1. Was a reserved setting
23353 previously.
23354 5. TIMING_CFG_1[WRREC] is changed from 3clks to 2clks (based on
23355 Twr=15ns, and this was already the setting in DDR_MODE)
23356 6. TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
23357 Trp=15ns)
23358 7. TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
23359 Tras=40ns)
23360 8. TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
23361 Trcd=15ns)
23362 9. TIMING_CFG_1[REFREC] changed from 21 clks to 11clks. (based on
23363 Trfc=75ns)
23364 10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks. (based
23365 on Tfaw=50ns)
23366 11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
23367 on CL=3 and WL=2).
23368
23369 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
23370 Acked-by: Kim Phillips <kim.phillips@freescale.com>
23371
23372commit fc549c871f43933396a5b3e21d897023d4b31b8d
23373Author: Michael Barkowski <michael.barkowski@freescale.com>
23374Date: Thu Mar 20 13:15:28 2008 -0400
23375
23376 mpc8323erdb: use readable DDR config macros
23377
23378 Use available shift/mask macros to define DDR configuration.
23379
23380 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
23381 Acked-by: Kim Phillips <kim.phillips@freescale.com>
23382
23383commit 89c7784ed90ba50301eec521144f95111e472906
23384Author: Timur Tabi <timur@freescale.com>
23385Date: Fri Feb 8 13:15:55 2008 -0600
23386
23387 83xx: Add Vitesse VSC7385 firmware uploading
23388
23389 Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
23390 the Vitesse VSC7385 firmware. Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
23391 Cleaned up the board header files to make selecting the VSC7385 easier to
23392 control.
23393
23394 Signed-off-by: Timur Tabi <timur@freescale.com>
23395 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23396
23397commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
23398Author: Timur Tabi <timur@freescale.com>
23399Date: Fri Feb 8 13:15:54 2008 -0600
23400
23401 NET: Add Vitesse VSC7385 firmware uploading
23402
23403 The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
23404 and other boards. A small firwmare must be uploaded to its on-board memory
23405 before it can be enabled. This patch adds the code which uploads firmware
23406 (but not the firmware itself).
23407
23408 Previously, this feature was provided by a U-Boot application that was
23409 made available only on Freescale BSPs. The VSC7385 firmware must still
23410 be obtained separately, but at least there is no longer a need for a separate
23411 application.
23412
23413 Signed-off-by: Timur Tabi <timur@freescale.com>
23414 Acked-by: Ben Warren <biggerbadderben@gmail.com>
23415
23416commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
23417Author: Wolfgang Denk <wd@denx.de>
23418Date: Wed Mar 26 00:52:10 2008 +0100
23419
23420 Coding Style cleanyp; update CHANGELOG
23421
23422 Signed-off-by: Wolfgang Denk <wd@denx.de>
23423
Wolfgang Denkaa6f6d12008-03-26 00:52:10 +010023424commit 43ddd9c820fec44816188f53346b464e20b3142d
23425Author: Jerry Van Baren <gvb.uboot@gmail.com>
23426Date: Sat Mar 22 14:23:49 2008 -0400
23427
23428 Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
23429
23430 These defines embedded the u-boot env variables and/or the bd_t structure
23431 in the fdt blob. The conclusion of discussion on the u-boot email list
23432 was that embedding these in the fdt blob is not useful: there are better
23433 ways of passing the data (in fact, the fdt blob itself replaces the
23434 bd_t struct).
23435
23436 The only board that enables these is the stxxtc and they don't appear
23437 to be used by linux.
23438
23439 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
23440 Acked-by: Kim Phillips <kim.phillips@freescale.com>
23441
23442commit 22ed2285743359fd1fe73e411dff914b2256e68f
23443Author: Stefan Roese <sr@denx.de>
23444Date: Mon Mar 17 10:49:25 2008 +0100
23445
23446 rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
23447
23448 Signed-off-by: Stefan Roese <sr@denx.de>
23449
23450commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
23451Author: Kyungmin Park <kmpark@infradead.org>
23452Date: Mon Mar 17 08:54:06 2008 +0900
23453
23454 Add Flex-OneNAND booting support
23455
23456 Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
23457 using a NOR Flash interface. This on-chip integration enables system designers
23458 to reduce external system logic and use high-density NAND Flash
23459 in applications that would otherwise have to use more NOR components.
23460
23461 Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
23462 in more flexible way. While MLC area of Flex-OneNAND can be used to store data
23463 that require low reliability and high density, SLC area of Flex-OneNAND
23464 to store data that need high reliability and high performance. Flex-OneNAND
23465 can let users take advantage of storing these two different types of data
23466 into one chip, which is making Flex-OneNAND more cost- and space-effective.
23467
23468 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
23469
23470commit c512389cc4a10253249271ff6c887c6dab1f0db2
23471Author: André Schwarz <andre.schwarz@matrix-vision.de>
23472Date: Thu Mar 13 13:50:52 2008 +0100
23473
23474 MPC5200: support setup without FEC
23475
23476 Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
23477 defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
23478
23479 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
23480 Acked-by: Grant Likely <grant.likely@secretlab.ca>
23481
23482commit aa3511e422946041ef626f80a05ae5e8bfc700e6
23483Author: Jon Loeliger <jdl@freescale.com>
23484Date: Wed Mar 5 18:05:46 2008 -0600
23485
23486 FSL: Move board/mpc8266ads under board/freescale
23487
23488 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23489
23490commit 7f1d846e5c5754449c286587d099d85246062772
23491Author: Jon Loeliger <jdl@freescale.com>
23492Date: Wed Mar 5 18:05:47 2008 -0600
23493
23494 FSL: Move board/mpc7448hpc2 under board/freescale
23495
23496 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23497
23498commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
23499Author: Jon Loeliger <jdl@freescale.com>
23500Date: Wed Mar 5 18:05:45 2008 -0600
23501
23502 FSL: Move board/mpc8260ads under board/freescale
23503
23504 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23505
23506commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
23507Author: goda.yusuke <goda.yusuke@renesas.com>
23508Date: Wed Mar 5 17:08:33 2008 +0900
23509
23510 net: Add support AX88796L ethernet device
23511
23512 AX88796L is device of NE2000 compatible.
23513 This patch support AX88796L ethernet device.
23514
23515 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
23516 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23517
23518commit e0a6140dd381e1eed1ada2291166ef2616d8822b
23519Author: Wolfgang Denk <wd@denx.de>
23520Date: Tue Mar 25 22:50:41 2008 +0100
23521
23522 ne2000 driver: change #ifdef to Makefile conditional compilation
23523
23524 Signed-off-by: Wolfgang Denk <wd@denx.de>
23525
23526commit e710185aae90c64d39c2d453e40e58ceefe4f250
23527Author: goda.yusuke <goda.yusuke@renesas.com>
23528Date: Wed Mar 5 17:08:20 2008 +0900
23529
23530 net: Divided code of NE2000 ethernet driver
23531
23532 There are more devices of the NE2000 base.
23533 A present code is difficult for us to support more devices.
23534 To support more NE2000 clone devices, separated the function.
23535
23536 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
23537 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23538
23539commit 395bce4f59a507a60a475f7ee46bed47de9482df
23540Author: Mike Frysinger <vapier@gentoo.org>
23541Date: Sun Feb 24 23:58:13 2008 -0500
23542
23543 net/Blackfin: move on-chip MAC driver into drivers/net/
23544
23545 The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
23546 directory, but it is not board specific, so relocate it to the drivers dir
23547 so that other Blackfin ports can utilize it.
23548
23549 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23550
23551commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
23552Author: Mike Frysinger <vapier@gentoo.org>
23553Date: Sun Feb 24 23:52:35 2008 -0500
23554
23555 smc91111: use SSYNC() rather than asm(ssync) for Blackfin
23556
23557 Since the "ssync" instruction may have hardware anomalies associated with
23558 it, have the smc91111 driver use the SSYNC macro rather than invoking it
23559 directly. We workaround all the anomalies via this macro.
23560
23561 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23562
23563commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
23564Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
23565Date: Sun Feb 17 22:57:47 2008 +0000
23566
23567 8xx: Update OF support on 8xx
23568
23569 This patch does some shifting around of OF support on 8xx.
23570
23571 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
23572
23573commit 9c666a7db0b2285a270c68810889ce7d5dba304b
23574Author: Kumar Gala <galak@kernel.crashing.org>
23575Date: Fri Feb 15 15:16:18 2008 -0600
23576
23577 ppc: Allow boards to specify how much memory they can map
23578
23579 For historical reasons we limited the stack to 256M because some boards
23580 could only map that much via BATS. However newer boards are capable of
23581 mapping more memory (for example 85xx is capble of doing up to 2G).
23582
23583 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23584
23585commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
23586Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
23587Date: Fri Feb 15 01:05:58 2008 +0000
23588
23589 8xx : Add OF support to Adder875 board port - resubmit
23590
23591 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
23592
23593commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
23594Author: Kumar Gala <galak@kernel.crashing.org>
23595Date: Thu Feb 14 20:44:42 2008 -0600
23596
23597 Add setexpr command
23598
23599 Add a simple expr style command that will set an env variable as the result
23600 of the command. This allows us to do simple math in shell. The following
23601 operations are supported: &, |, ^, +, -, *, /.
23602
23603 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23604
23605commit 3f105faa64b9826e088711fdfcaa70cb1230397a
23606Author: Jon Loeliger <jdl@freescale.com>
23607Date: Wed Mar 5 17:27:48 2008 -0600
23608
23609 FSL: Move board/mpc7448hpc2 under board/freescale
23610
23611 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23612
23613commit 449c703374a8868453425e15da7e2f76221b72e4
23614Author: Jon Loeliger <jdl@freescale.com>
23615Date: Wed Mar 5 17:21:43 2008 -0600
23616
23617 FSL: Move board/mpc8266ads under board/freescale
23618
23619 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23620
23621commit 5863577989ad689427bb750107e9a75f1c1645d2
23622Author: Jon Loeliger <jdl@freescale.com>
23623Date: Wed Mar 5 16:41:41 2008 -0600
23624
23625 FSL: Move board/mpc8260ads under board/freescale
23626
23627 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23628
23629commit 8a773983957ee6c4aa344469b742f29c7d26afbd
23630Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23631Date: Tue Mar 25 21:30:08 2008 +0900
23632
23633 [MIPS] Move gth2_config from ARM section to MIPS
23634
23635 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23636
23637commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
23638Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23639Date: Tue Mar 25 21:30:07 2008 +0900
23640
23641 [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
23642
23643 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23644
23645commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
23646Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23647Date: Tue Mar 25 21:30:07 2008 +0900
23648
23649 [MIPS] Fix dcache_status()
23650
23651 You can't judge UNCACHED by Config.K0 LSB.
23652
23653 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23654
23655commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
23656Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23657Date: Tue Mar 25 21:30:07 2008 +0900
23658
23659 [MIPS] Introduce _machine_restart
23660
23661 Handles machine specific functions by using weak functions.
23662
23663 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23664
23665commit decaba6f5cf386d569ac3997bebb871b966c6b18
23666Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23667Date: Tue Mar 25 21:30:07 2008 +0900
23668
23669 [MIPS] Cleanup CP0 Status initialization
23670
23671 Add setup_c0_status from Linux. For the moment we disable interrupts, set
23672 CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
23673 reset-time configuration and will work well across most processors.
23674
23675 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23676
23677commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
23678Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23679Date: Tue Mar 25 21:30:07 2008 +0900
23680
23681 [MIPS] Initialize CP0 Cause before setting up CP0 Status register
23682
23683 Without this change, we'll be suffering from deffered WATCH exception
23684 once Status.EXL is cleared. Make sure Cause.WP is cleared.
23685
23686 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23687
23688commit 26138623230ca2bad3c78e05a65527ea70c8b688
23689Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23690Date: Tue Mar 25 21:30:07 2008 +0900
23691
23692 [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
23693
23694 Move things to appropriate place.
23695
23696 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23697
23698commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
23699Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23700Date: Tue Mar 25 21:30:06 2008 +0900
23701
23702 [MIPS] Implement flush_cache()
23703
23704 We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
23705 don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
23706 function is used not only in U-Boot specfic programs but also at loading
23707 target binaries.
23708
23709 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23710
23711commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
23712Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23713Date: Tue Mar 25 21:30:06 2008 +0900
23714
23715 [MIPS] Fix I-/D-cache initialization loops
23716
23717 Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
23718 again per a loop for I-cache initialization. But according to 'See MIPS
23719 Run', we're encouraged to use three separate loops rather than combining
23720 them *for both I- and D-cache*. This patch tries to fix this.
23721
23722 In accordance with fixing above, mips_init_[id]cache are separated from
23723 mips_cache_reset(), and rewrite cache loops are completely rewritten with
23724 useful macros.
23725
23726 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23727
23728commit 1898840797c7f50799377bd5b285a8a93a82c419
23729Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23730Date: Tue Mar 25 21:30:06 2008 +0900
23731
23732 [MIPS] Replace memory clearance code with f_fill64
23733
23734 This routine fills memory with zero by 64 bytes, and is 64-bit capable.
23735
23736 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23737
23738commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
23739Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23740Date: Tue Mar 25 21:30:06 2008 +0900
23741
23742 [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
23743
23744 This patch replaces the current function definitions with NESTED, LEAF
23745 and END macro. They specify some more additional information about the
23746 function; an alignment of symbol, type of symbol, stack frame usage, etc.
23747 These information explicitly tells the assembler and the debugger about
23748 the types of code we want to generate.
23749
23750 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23751
23752commit 282223a607c611425fa33f5428f8eae6636972bb
23753Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23754Date: Tue Mar 25 11:43:17 2008 +0900
23755
23756 [MIPS] asm headers' updates
23757
23758 Make some asm headers adjusted to the latest Linux kernel.
23759
23760 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23761
23762commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
23763Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23764Date: Tue Mar 25 11:39:29 2008 +0900
23765
23766 [MIPS] Request for the 'mips_cache_lock()' removal
23767
23768 The initial intension of having mips_cache_lock() was to use the cache
23769 as memory for temporary stack use so that a C environment can be set up
23770 as early as possible.
23771
23772 But now mips_cache_lock() follow lowlevel_init(). We've already have the
23773 real memory initilaized at this point, therefore we could/should use it.
23774 No reason to lock at all.
23775
23776 Other problems:
23777
23778 Cache locking is not consistent across MIPS implementaions. Some imple-
23779 mentations don't support locking at all. The style of locking varies -
23780 some support per line locking, others per way, etc. Some parts use bits
23781 in status registers instead of cache ops. Current mips_cache_lock() is
23782 not necessarily general-purpose.
23783
23784 And this is worthy of special mention; once U-Boot/MIPS locks the lines,
23785 they are never get unlocked, so the code relies on whatever gets loaded
23786 after U-Boot to re-initialize the cache and clear the locks. We're sup-
23787 posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
23788 but leave the situation as it is for a long time.
23789
23790 For these reasons, I proposed the removal of mips_cache_lock() from the
23791 global start-up code.
23792
23793 This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
23794 *things have changed*. If he wants the same behavior as before, he needs
23795 to have CFG_INIT_RAM_LOCK_MIPS in his config file.
23796
23797 If we don't have any regression report through several releases, then
23798 we'll remove codes entirely.
23799
23800 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23801 Acked-by: Andrew Dyer <amdyer@gmail.com>
23802
23803commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
23804Author: Yuri Tikhonov <yur@emcraft.com>
23805Date: Mon Mar 24 11:30:54 2008 +0100
23806
23807 lwmon5 SYSMON POST: fix backlight control
23808
23809 If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
23810 run on the board, then the SYSMON POST controls the display backlight
23811 (doesn't switch backlight ON if POST FAILED, and does switch the
23812 backlight ON if PASSED).
23813
23814 If not, then the video driver controls the display backlight (just
23815 switch ON the backlight upon initialization).
23816
23817 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
23818
23819commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
23820Author: Yuri Tikhonov <yur@emcraft.com>
23821Date: Mon Mar 24 11:29:14 2008 +0100
23822
23823 lwmon5 SYSMON POST: fix handling of negative temperatures
23824
23825 Fix errors in the LWMON5 Sysmon POST for negative temperatures.
23826
23827 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
23828
23829commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
23830Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23831Date: Fri Mar 7 16:04:25 2008 +0900
23832
23833 pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
23834
23835 In current source code, when the device number of PCI is 0, process PCI
23836 bridge without fail. However, when the device number is 0, it is not PCI
23837 always bridge. There are times when device of PCI allocates.
23838
23839 When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
23840 use this patch.
23841
23842 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23843 Acked-by: Stefan Roese <sr@denx.de>
23844
23845commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
23846Author: Yuri Tikhonov <yur@emcraft.com>
23847Date: Fri Mar 21 09:18:40 2008 +0100
23848
23849 LWMON5: fix dsPIC POST
23850
23851 Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
23852
23853 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
23854
Wolfgang Denk438a4c12008-03-26 11:48:46 +010023855commit 388b82fddc7c05596f3f615f190da0448227dc82
23856Author: Bartlomiej Sieka <tur@semihalf.com>
23857Date: Thu Mar 20 23:23:13 2008 +0100
23858
23859 [new uImage] Enable new uImage support for the pcs440ep board.
23860
23861 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23862
23863commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
23864Author: Bartlomiej Sieka <tur@semihalf.com>
23865Date: Thu Mar 20 23:23:13 2008 +0100
23866
23867 [new uImage] Do not compile new uImage format support by default
23868
23869 Disable default building of new uImage format support in preparation
23870 for merge with the master. Support for new format can be enabled on
23871 a per-board basis, by defining the following in the board's config file:
23872
23873 #define CONFIG_FIT 1
23874 #define CONFIG_OF_LIBFDT 1
23875
23876 This can be optionally defined to give more verbose output:
23877
23878 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
23879
23880 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23881
23882commit dafaede8a46c7159310239e036c93e31c6374487
23883Author: Bartlomiej Sieka <tur@semihalf.com>
23884Date: Thu Mar 20 23:20:31 2008 +0100
23885
23886 [new uImage] Disable debuging output in preparation for merge with master
23887
23888 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23889
23890commit fbe7a155027beacebaee9b32e1ada781fe924bca
23891Author: Bartlomiej Sieka <tur@semihalf.com>
23892Date: Thu Mar 20 19:38:45 2008 +0100
23893
23894 [new uImage] Compilation and new uImage handling fixes for imxtract
23895
23896 Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
23897 include/config_cmd_default.h. Fix few warnings and handling of new format
23898 images.
23899
23900 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23901
23902commit 36cc8cbb3379d5166f882641123521735c469f92
23903Author: Bartlomiej Sieka <tur@semihalf.com>
23904Date: Thu Mar 20 23:10:19 2008 +0100
23905
23906 [new uImage] Fix autoscr command used with new uImage format
23907
23908 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23909
23910commit 43142e817f0597be412e7cbe19413f5532eafa5d
23911Author: Bartlomiej Sieka <tur@semihalf.com>
23912Date: Thu Mar 20 23:10:19 2008 +0100
23913
23914 [new uImage] Fix *.its files location in documentation
23915
23916 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23917
Wolfgang Denkaa6f6d12008-03-26 00:52:10 +010023918commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
23919Author: Wolfgang Denk <wd@denx.de>
23920Date: Thu Mar 20 22:01:38 2008 +0100
23921
23922 lwmon5 POST: remove unreachable code
23923
23924 plus some coding style cleanup
23925
23926 Signed-off-by: Wolfgang Denk <wd@denx.de>
23927
23928commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
23929Author: Yuri Tikhonov <yur@emcraft.com>
23930Date: Thu Mar 20 17:56:04 2008 +0300
23931
23932 LWMON5: POST RTC fix
23933
23934 Modify the RTC API to provide one a status for the time reported by
23935 the rtc_get() function:
23936 0 - a reliable time is guaranteed,
23937 < 0 - a reliable time isn't guaranteed (power fault, clock issues,
23938 and so on).
23939
23940 The RTC chip drivers are responsible for providing this info if the
23941 corresponding chip supports such functionality. If not - always
23942 report that the time is reliable.
23943
23944 The POST RTC test was modified to detect the RTC faults utilizing
23945 this new rtc_get() feature.
23946
23947 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
23948
23949commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
23950Author: Martin Krause <martin.krause@tqs.de>
23951Date: Wed Mar 19 14:25:14 2008 +0100
23952
23953 TQM5200B: update MTD partition layout
23954
23955 - insert partition for dtb blob to TQM5200B MTD layout
23956 - set env variables dependent on the configured board
23957 (TQM5200 or TQM5200B)
23958
23959 Signed-off-by: Martin Krause <martin.krause@tqs.de>
23960
23961commit f0105727d132f56a21fa3ed8b162309cca6cac44
23962Author: Stefan Roese <sr@denx.de>
23963Date: Wed Mar 19 07:09:26 2008 +0100
23964
23965 CFI: Small cleanup for FLASH_SHOW_PROGRESS
23966
23967 With this patch we don't need that many #ifdef's in the code. It moves
23968 the subtraction into the macro and defines a NOP-macro when
23969 CONFIG_FLASH_SHOW_PROGRESS is not defined.
23970
23971 Signed-off-by: Stefan Roese <sr@denx.de>
23972 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
23973
23974commit 9a042e9ca512beaaa2cb450274313fc477141241
23975Author: Jerry Van Baren <gvb.uboot@gmail.com>
23976Date: Sat Mar 8 13:48:01 2008 -0500
23977
23978 Flash programming progress countdown.
23979
23980 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
23981
Wolfgang Denk438a4c12008-03-26 11:48:46 +010023982commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
23983Author: Bartlomiej Sieka <tur@semihalf.com>
23984Date: Wed Mar 19 10:00:06 2008 +0100
23985
23986 [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
23987
23988 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
23989
Wolfgang Denkaa6f6d12008-03-26 00:52:10 +010023990commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
23991Author: David Gibson <david@gibson.dropbear.id.au>
23992Date: Mon Feb 18 18:09:04 2008 +1100
23993
23994 libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
23995
23996 Since fdt_node_offset_by_compatible() was converted to the new
23997 fdt_next_node() iterator, a chunk of initialization code became
23998 redundant, but was not removed by oversight. This patch cleans it up.
23999
24000 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
24001
24002commit d0ccb9b140b472039732de102fc14597eedb14df
24003Author: David Gibson <david@gibson.dropbear.id.au>
24004Date: Mon Feb 18 18:06:31 2008 +1100
24005
24006 libfdt: Trivial cleanup for CHECK_HEADER)
24007
24008 Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
24009 However, there are a handful of functions (fdt_move, rw_check_header,
24010 fdt_open_into) from other files which could also use it (currently
24011 they open-code something more-or-less identical). Therefore, this
24012 patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
24013 places.
24014
24015 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
24016
24017commit fe30a354cdbb808b5f15366a935b151a4ccee74f
24018Author: Kumar Gala <galak@kernel.crashing.org>
24019Date: Wed Feb 20 14:32:36 2008 -0600
24020
24021 Fix fdt boardsetup command parsing
24022
24023 The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
24024
24025 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24026
24027commit 804887e6001e2f00bea11431bf34d6d472512cda
24028Author: Kumar Gala <galak@kernel.crashing.org>
24029Date: Fri Feb 15 03:34:36 2008 -0600
24030
24031 Add sub-commands to fdt
24032
24033 fdt header - Display header info
24034 fdt bootcpu <id> - Set boot cpuid
24035 fdt memory <addr> <size> - Add/Update memory node
24036 fdt rsvmem print - Show current mem reserves
24037 fdt rsvmem add <addr> <size> - Add a mem reserve
24038 fdt rsvmem delete <index> - Delete a mem reserves
24039
24040 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24041
24042commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
24043Author: David Gibson <david@gibson.dropbear.id.au>
24044Date: Thu Feb 14 16:50:34 2008 +1100
24045
24046 libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
24047
24048 fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
24049 node which has NOP tags interspersed with its properties. In this
24050 case fdt_add_subnode_namelen() will put the new subnode before the
24051 first NOP tag, even if there are properties after it, which will
24052 result in an invalid blob.
24053
24054 This patch fixes the bug, and adds a testcase for it.
24055
24056 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
24057
24058commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
24059Author: David Gibson <david@gibson.dropbear.id.au>
24060Date: Tue Feb 12 11:58:31 2008 +1100
24061
24062 libfdt: Add and use a node iteration helper function.
24063
24064 This patch adds an fdt_next_node() function which can be used to
24065 iterate through nodes of the tree while keeping track of depth. This
24066 function is used to simplify the iteration code in a lot of other
24067 functions, and is also exported for use by library users.
24068
24069 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
24070
24071commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
24072Author: David Gibson <david@gibson.dropbear.id.au>
24073Date: Fri Jan 11 14:55:05 2008 +1100
24074
24075 libfdt: Add fdt_set_name() function
24076
24077 This patch adds an fdt_set_name() function to libfdt, mirroring
24078 fdt_get_name(). This is a r/w function which alters the name of a
24079 given device tree node.
24080
24081 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
24082
24083commit 23e20aa6488e6c0622496549861bfdc74108debe
24084Author: Yuri Tikhonov <yur@pollux.denx.de>
24085Date: Tue Mar 18 13:33:30 2008 +0100
24086
24087 lwmon5: Fix register test logic to match the specific GDC h/w.
24088
24089 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24090 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24091
24092commit 46bc0a938779aa1d664b847d36b08aa00f22e539
24093Author: Yuri Tikhonov <yur@pollux.denx.de>
24094Date: Tue Mar 18 13:27:57 2008 +0100
24095
24096 Fix backlight in the lwmon5 POST.
24097
24098 Backlight was switched on even when temperature was too low.
24099
24100 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24101 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24102
24103commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
24104Author: Yuri Tikhonov <yur@pollux.denx.de>
24105Date: Wed Feb 6 18:48:36 2008 +0100
24106
24107 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).
24108
24109 To enable this, alternative, configuration the U-Boot board configuration
24110 file for lwmon5 includes the definitions of alternative addresses for header
24111 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
24112
24113 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
24114 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
24115 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
24116
24117 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24118
24119commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
24120Author: Yuri Tikhonov <yur@pollux.denx.de>
24121Date: Mon Feb 4 17:11:53 2008 +0100
24122
24123 Add support for the lwmon5 board reset via GPIO58.
24124
24125 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24126 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24127
24128commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
24129Author: Yuri Tikhonov <yur@pollux.denx.de>
24130Date: Mon Feb 4 17:09:55 2008 +0100
24131
24132 Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
24133
24134 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24135 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24136
24137commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
24138Author: Yuri Tikhonov <yur@pollux.denx.de>
24139Date: Mon Feb 4 14:11:03 2008 +0100
24140
24141 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.
24142
24143 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24144 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24145
24146commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
24147Author: Yuri Tikhonov <yur@pollux.denx.de>
24148Date: Mon Feb 4 14:10:42 2008 +0100
24149
24150 The patch adds new POST tests for the Lwmon5 board. These are:
24151
24152 * External Watchdog test;
24153 * dsPIC tests;
24154 * FPGA test;
24155 * GDC test;
24156 * Sysmon tests.
24157
24158 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24159 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24160
24161commit c2ed33efbfff5767bca236828e021c55fd547b6c
24162Author: Yuri Tikhonov <yur@pollux.denx.de>
24163Date: Mon Feb 4 14:10:01 2008 +0100
24164
24165 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
24166
24167 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24168
Wolfgang Denk7ed40112008-04-26 00:34:42 +020024169commit 3a5d1e7f1309998791702b2a559e3126781746b9
24170Author: Yuri Tikhonov <yur@pollux.denx.de>
24171Date: Tue Mar 18 13:33:30 2008 +0100
24172
24173 lwmon5: Fix register test logic to match the specific GDC h/w.
24174
24175 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24176 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24177
24178commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
24179Author: Yuri Tikhonov <yur@pollux.denx.de>
24180Date: Tue Mar 18 13:27:57 2008 +0100
24181
24182 Fix backlight in the lwmon5 POST.
24183
24184 Backlight was switcehd on even when temperature was too low.
24185
24186 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24187 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24188
24189commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
24190Author: Yuri Tikhonov <yur@pollux.denx.de>
24191Date: Wed Feb 6 18:48:36 2008 +0100
24192
24193 The patch introduces the alternative configuration of the log buffer for
24194 the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
24195 the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
24196 PPC440EPX_GPT0_COMP5).
24197
24198 To enable this, alternative, configuration the U-Boot board configuration
24199 file for lwmon5 includes the definitions of alternative addresses for header
24200 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
24201
24202 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
24203 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
24204 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
24205
24206 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24207
24208commit ff818b21b069f4bc9cb73373cc5a16014be101b7
24209Author: Yuri Tikhonov <yur@pollux.denx.de>
24210Date: Mon Feb 4 17:11:53 2008 +0100
24211
24212 Add support for the lwmon5 board reset via GPIO58.
24213
24214 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24215 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24216
24217commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
24218Author: Yuri Tikhonov <yur@pollux.denx.de>
24219Date: Mon Feb 4 17:09:55 2008 +0100
24220
24221 Some fixes to dspic, fpga, and gdc post tests for lwmon5.
24222 Disable external watch-dog for now.
24223
24224 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24225 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24226
24227commit e262efe35742c1ad4b0966ff501efc26f34a0aec
24228Author: Yuri Tikhonov <yur@pollux.denx.de>
24229Date: Mon Feb 4 14:11:03 2008 +0100
24230
24231 The patch introduces the CRITICAL feature of POST tests. If the test
24232 marked as POST_CRITICAL fails then the alternative, post_critical,
24233 boot-command is used. If this command is not defined then U-Boot
24234 enters into interactive mode.
24235
24236 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24237 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24238
24239commit 65b20dcefc89618193fa51947968dada91e4c778
24240Author: Yuri Tikhonov <yur@pollux.denx.de>
24241Date: Mon Feb 4 14:10:42 2008 +0100
24242
24243 The patch adds new POST tests for the Lwmon5 board.
24244 These are:
24245
24246 * External Watchdog test;
24247 * dsPIC tests;
24248 * FPGA test;
24249 * GDC test;
24250 * Sysmon tests.
24251
24252 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24253 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24254
24255commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
24256Author: Yuri Tikhonov <yur@pollux.denx.de>
24257Date: Mon Feb 4 14:10:01 2008 +0100
24258
24259 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
24260
24261 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
24262
Wolfgang Denkaa6f6d12008-03-26 00:52:10 +010024263commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
24264Author: Wolfgang Denk <wd@denx.de>
24265Date: Tue Mar 18 17:35:51 2008 +0100
24266
24267 HMI1001: fix compile problem.
24268
24269 Signed-off-by: Wolfgang Denk <wd@denx.de>
24270
24271commit 1f2a9970109cebf7446e0503b10b71f8673045ee
24272Author: Mike Frysinger <vapier@gentoo.org>
24273Date: Mon Feb 18 05:32:30 2008 -0500
24274
24275 Blackfin: BF537-stamp: drop board-specific flash driver for CFI
24276
24277 The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
24278 for the board specific driver at all. Just use the common CFI driver.
24279
24280 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24281
24282commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
24283Author: Mike Frysinger <vapier@gentoo.org>
24284Date: Tue Feb 19 00:36:14 2008 -0500
24285
24286 Blackfin: add proper ELF markings to some assembly functions
24287
24288 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24289
24290commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
24291Author: Mike Frysinger <vapier@gentoo.org>
24292Date: Tue Feb 19 00:35:17 2008 -0500
24293
24294 Blackfin: new cplbinfo command for viewing cplb tables
24295
24296 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24297
24298commit aadb72503cd1602349a5fe53356d5f55ecc1b900
24299Author: Mike Frysinger <vapier@gentoo.org>
24300Date: Mon Feb 18 05:37:51 2008 -0500
24301
24302 Blackfin: update MAINTAINERS list
24303
24304 Add maintainer information for the Blackfin boards.
24305
24306 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24307
24308commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
24309Author: Mike Frysinger <vapier@gentoo.org>
24310Date: Mon Feb 18 05:26:48 2008 -0500
24311
24312 Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
24313
24314 Stop tying things to the processor that should be tied to other defines and
24315 change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
24316 system to select the -mcpu option.
24317
24318 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24319
24320commit 86a20fb920bd198105acf7b1191117f566d637ed
24321Author: Mike Frysinger <vapier@gentoo.org>
24322Date: Sat Feb 16 07:40:36 2008 -0500
24323
24324 Blackfin: move bootldr command to common code
24325
24326 This moves the Blackfin-common bootldr command out of the BF537-STAMP
24327 specific board directory and into the common directory so that all Blackfin
24328 boards may utilize it.
24329
24330 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24331
24332commit decbe029b2a9d3333d02c433389b1c821eea96d7
24333Author: Heiko Schocher <hs@denx.de>
24334Date: Fri Mar 14 11:05:20 2008 +0100
24335
24336 mgcoge: update configuration
24337
24338 Fix configuration for mgcoge board
24339
24340 Signed-off-by: Heiko Schocher <hs@denx.de>
24341
24342commit c136724cda0219c49f1d4b346f00da29b14fdf14
24343Author: Wolfgang Denk <wd@denx.de>
24344Date: Sun Mar 16 01:22:59 2008 +0100
24345
24346 drivers/rtc/Makefile: keep list sorted
24347
24348 Signed-off-by: Wolfgang Denk <wd@denx.de>
24349
24350commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
24351Author: Tor Krill <tor@excito.com>
24352Date: Sat Mar 15 15:40:26 2008 +0100
24353
24354 Add support for Intersil isl1208 RTC
24355
24356 Signed-off-by: Tor Krill <tor@excito.com>
24357
24358commit 0210cff3d079d97b2156b13685ee8de368e68a1a
24359Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24360Date: Sat Mar 15 17:36:41 2008 +0100
24361
24362 cramfs: Fix ifdef
24363
24364 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24365
24366commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
24367Author: Wolfgang Denk <wd@denx.de>
24368Date: Sun Mar 16 01:12:58 2008 +0100
24369
24370 Conding style cleanup
24371
24372 Signed-off-by: Wolfgang Denk <wd@denx.de>
24373
Wolfgang Denk0b8f2a22008-03-16 01:12:58 +010024374commit 41712b4e8c95dff23354bcd620e1f9477160c190
24375Author: Stefan Roese <sr@denx.de>
24376Date: Wed Mar 5 12:31:53 2008 +0100
24377
24378 ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
24379
24380 This patch adds USB OHCI support to the Canyonlands board port. It also
24381 enables EXT2 support.
24382
24383 Signed-off-by: Stefan Roese <sr@denx.de>
24384
24385commit 2596f5b9d353ff3e4387a3325d05740f16958038
24386Author: Stefan Roese <sr@denx.de>
24387Date: Wed Mar 5 12:29:32 2008 +0100
24388
24389 usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
24390
24391 This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
24392 way a board just needs to define this new option to enable the "force
24393 NoPowerSwitching mode" instead of adding new CPU/architecture defines
24394 to the USB source itself.
24395
24396 This new option will be used first with the new AMCC 460EX Canyonlands
24397 board port, which will be posted in a few days.
24398
24399 This patch also fixes a small compilation problem when DEBUG is enabled.
24400
24401 Signed-off-by: Stefan Roese <sr@denx.de>
24402
24403commit 71665ebf88408ff2acb762af47989fd4365b321a
24404Author: Stefan Roese <sr@denx.de>
24405Date: Mon Mar 3 17:27:02 2008 +0100
24406
24407 ppc4xx: Add Canyonlands NAND booting support
24408
24409 460EX doesn't support a fixed bootstrap option to boot from 512 byte page
24410 NAND devices. The only bootstrap option for NAND booting is option F for
24411 2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
24412 EEPROM needs to be programmed accordingly.
24413
24414 This patch adds basic NAND booting support for the AMCC Canyonlands aval
24415 board and also adds support to the "bootstrap" command, to enable NAND
24416 booting I2C setting.
24417
24418 Tested with 512 byte page NAND device (32MByte) on Canyonlands.
24419
24420 Signed-off-by: Stefan Roese <sr@denx.de>
24421
24422commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
24423Author: Stefan Roese <sr@denx.de>
24424Date: Tue Mar 11 16:53:00 2008 +0100
24425
24426 ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
24427
24428 This patch adds support for the AMCC Canyonlands 460EX evaluation
24429 board.
24430
24431 Signed-off-by: Stefan Roese <sr@denx.de>
24432
24433commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
24434Author: Stefan Roese <sr@denx.de>
24435Date: Tue Mar 11 16:52:24 2008 +0100
24436
24437 ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
24438
24439 This patch adds support for the AMCC Canyonlands 460EX evaluation
24440 board.
24441
24442 Signed-off-by: Stefan Roese <sr@denx.de>
24443
24444commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
24445Author: Stefan Roese <sr@denx.de>
24446Date: Tue Mar 11 16:51:17 2008 +0100
24447
24448 ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
24449
24450 This patch adds support for the AMCC Canyonlands 460EX evaluation
24451 board.
24452
24453 Signed-off-by: Stefan Roese <sr@denx.de>
24454
24455commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
24456Author: Stefan Roese <sr@denx.de>
24457Date: Tue Mar 11 15:11:43 2008 +0100
24458
24459 ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
24460
24461 This patch adds basic support for the AMCC 460EX/460GT PPC's.
24462
24463 Signed-off-by: Stefan Roese <sr@denx.de>
24464
24465commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
24466Author: Stefan Roese <sr@denx.de>
24467Date: Tue Mar 11 15:11:18 2008 +0100
24468
24469 ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
24470
24471 This patch adds basic support for the AMCC 460EX/460GT PPC's.
24472
24473 Signed-off-by: Stefan Roese <sr@denx.de>
24474
24475commit 999ecd5aca381984d8ebbeb207ece82a1c275577
24476Author: Stefan Roese <sr@denx.de>
24477Date: Tue Mar 11 15:07:10 2008 +0100
24478
24479 ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
24480
24481 This patch adds basic support for the AMCC 460EX/460GT PPC's.
24482
24483 Signed-off-by: Stefan Roese <sr@denx.de>
24484
24485commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
24486Author: Stefan Roese <sr@denx.de>
24487Date: Tue Mar 11 15:05:50 2008 +0100
24488
24489 ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
24490
24491 This patch adds basic support for the AMCC 460EX/460GT PPC's.
24492
24493 Signed-off-by: Stefan Roese <sr@denx.de>
24494
24495commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
24496Author: Stefan Roese <sr@denx.de>
24497Date: Tue Mar 11 15:05:26 2008 +0100
24498
24499 ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
24500
24501 This patch adds basic support for the AMCC 460EX/460GT PPC's.
24502
24503 Signed-off-by: Stefan Roese <sr@denx.de>
24504
24505commit 56e410178375d9f20be25fb24e180974f0ae120b
24506Author: Stefan Roese <sr@denx.de>
24507Date: Tue Feb 19 22:07:57 2008 +0100
24508
24509 ppc4xx: interrupt.c reworked
24510
24511 This patch is a rework of the 4xx interrupt handling done while
24512 adding the 460EX/GT support. Interrupts are needed on 4xx for the
24513 EMAC driver.
24514
24515 Signed-off-by: Stefan Roese <sr@denx.de>
24516
24517commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
24518Author: Stefan Roese <sr@denx.de>
24519Date: Tue Feb 19 22:01:57 2008 +0100
24520
24521 ppc4xx: program_tlb now uses 64bit physical addess
24522
24523 This patch changes the physical addess parameter from 32bit to 64bit.
24524 This is needed for 36bit 4xx platforms to access areas located
24525 beyond the 4GB border, like SoC peripherals (EBC etc.).
24526
24527 Signed-off-by: Stefan Roese <sr@denx.de>
24528
24529commit c3307fa186af85771924c434997089b8104c0a46
24530Author: Stefan Roese <sr@denx.de>
24531Date: Tue Feb 19 21:58:25 2008 +0100
24532
24533 ppc4xx: miiphy.c reworked
24534
24535 While adding the 460EX/GT support I reworked the 4xx miiphy code. It
24536 badly neede some cleanup.
24537
24538 Signed-off-by: Stefan Roese <sr@denx.de>
24539
24540commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
24541Author: Stefan Roese <sr@denx.de>
24542Date: Tue Feb 19 16:21:49 2008 +0100
24543
24544 rtc: Add M41T62 support
24545
24546 This patch add support for the STM M41T62 RTC. It is used and tested
24547 on the AMCC Canyonlands 406EX platform.
24548
24549 Signed-off-by: Stefan Roese <sr@denx.de>
24550
24551commit 217d383e201adc7f2271145ae345ea5eae2b7170
24552Author: Niklaus Giger <niklaus.giger@netstal.com>
24553Date: Mon Feb 25 18:46:43 2008 +0100
24554
24555 ppc4xx: Add 405GPr based MCU25 board specific files
24556
24557 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24558
24559commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
24560Author: Niklaus Giger <niklaus.giger@netstal.com>
24561Date: Mon Feb 25 18:46:42 2008 +0100
24562
24563 ppc4xx: Add 405GPr based MCU25 board config file
24564
24565 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24566
24567commit b05f35436b733a240559e77e46bed8439665ecc5
24568Author: Niklaus Giger <niklaus.giger@netstal.com>
24569Date: Mon Feb 25 18:46:41 2008 +0100
24570
24571 ppc4xx: Add 405GPr based MCU25 board. Global files
24572
24573 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24574
24575commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
24576Author: Niklaus Giger <niklaus.giger@netstal.com>
24577Date: Mon Feb 25 18:37:02 2008 +0100
24578
24579 ppc4xx: HCU4/5. remove obsolete hcu_flash.c
24580
24581 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24582
24583commit a079494853cc2bfeddb26673219db0b4b2b31566
24584Author: Niklaus Giger <niklaus.giger@netstal.com>
24585Date: Mon Feb 25 18:37:01 2008 +0100
24586
24587 ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
24588
24589 Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
24590 the FLASH_CFI_LEGACY et al. config options.
24591
24592 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24593
24594commit e4170e5a50c8110f792bc37472833ae669d69951
24595Author: Stefan Roese <sr@denx.de>
24596Date: Tue Mar 11 13:52:25 2008 +0100
24597
24598 ppc4xx: Fix comment in 405EX DDR2 init code
24599
24600 Signed-off-by: Stefan Roese <sr@denx.de>
24601
Wolfgang Denk438a4c12008-03-26 11:48:46 +010024602commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
24603Author: Bartlomiej Sieka <tur@semihalf.com>
24604Date: Fri Mar 14 16:22:34 2008 +0100
24605
24606 Add MD5 support to the new uImage format
24607
24608 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24609
24610commit 0ede0c383530a418cf98be9122371a86573cd0db
24611Author: Bartlomiej Sieka <tur@semihalf.com>
24612Date: Fri Mar 14 16:22:34 2008 +0100
24613
24614 Add the MD5 algorithm
24615
24616 MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
24617 calculated using the md5() function -- see include/md5.h for details.
24618
24619 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24620
Wolfgang Denk0b8f2a22008-03-16 01:12:58 +010024621commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
24622Author: Wolfgang Denk <wd@denx.de>
24623Date: Fri Mar 14 16:04:54 2008 +0100
24624
24625 tools/setlocalversion: use a git-describe-ish format
24626
24627 Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
24628 where 'nnnnn' is the number of commits since the last tag (i.e.,
24629 1.3.2-rc3). This makes it much easier to recognize "newer" versions
24630 and to see how much has been changed since the referenced tag.
24631
24632 Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
24633
24634 Signed-off-by: Wolfgang Denk <wd@denx.de>
24635
24636commit c6dc21c84de0f159a1752c5ebd33cff843f63609
24637Author: Wolfgang Denk <wd@denx.de>
24638Date: Thu Mar 13 14:32:03 2008 +0100
24639
24640 HMI1001: add support for MPC5200 Rev. B processors.
24641
24642 Signed-off-by: Wolfgang Denk <wd@denx.de>
24643
24644commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
24645Author: Wolfgang Denk <wd@denx.de>
24646Date: Thu Mar 13 14:29:49 2008 +0100
24647
24648 TQM5200: remove dead code
24649
24650 This board never used a MGT5100 processor.
24651
24652 Signed-off-by: Wolfgang Denk <wd@denx.de>
24653
Wolfgang Denk438a4c12008-03-26 11:48:46 +010024654commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
24655Author: Marian Balakowicz <m8@semihalf.com>
24656Date: Wed Mar 12 12:14:15 2008 +0100
24657
24658 [new uImage] Fix build issue on ARM
24659
24660 ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
24661
24662 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24663
24664commit 3310c549a73a949430bfda90876df7552a1dab0c
24665Author: Marian Balakowicz <m8@semihalf.com>
24666Date: Wed Mar 12 12:13:13 2008 +0100
24667
24668 [new uImage] Add new uImage format documentation and examples
24669
24670 Create doc/uImage.FIT documentation directory with the following files:
24671 - command_syntax_extensions.txt : extended command syntax description
24672 - howto.txt : short usage howto
24673 - source_file_format.txt : internal new uImage format description
24674
24675 Add example image source files:
24676 - kernel.its
24677 - kernel_fdt.its
24678 - multi.its
24679
24680 Update README appropriately.
24681
24682 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24683 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24684
24685commit 1ec73761d2e247078f4520a265d463e8b73391a2
24686Author: Marian Balakowicz <m8@semihalf.com>
24687Date: Wed Mar 12 10:35:52 2008 +0100
24688
24689 [new uImage] Fix definition of common bootm_headers_t fields
24690
24691 verify, autostart and lmb fields are used regardless of CONFIG_FIT
24692 setting, move their definitions to common section.
24693
24694 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24695
24696commit 1d1cb4270edc6a99276834064069717f9782c491
24697Author: Marian Balakowicz <m8@semihalf.com>
24698Date: Wed Mar 12 10:35:51 2008 +0100
24699
24700 [new uImage] Fix build problems on trab board
24701
24702 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24703
24704commit f773bea8e11f4a11c388dcee956b2444203e6b65
24705Author: Marian Balakowicz <m8@semihalf.com>
24706Date: Wed Mar 12 10:35:46 2008 +0100
24707
24708 [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
24709
24710 Save FIT configuration provied in the first bootm argument and use it
24711 when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
24712 arguments are not specified.
24713
24714 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24715
24716commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
24717Author: Marian Balakowicz <m8@semihalf.com>
24718Date: Wed Mar 12 10:33:01 2008 +0100
24719
24720 [new uImage] More verbose kernel image uncompress error message
24721
24722 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24723
24724commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
24725Author: Marian Balakowicz <m8@semihalf.com>
24726Date: Wed Mar 12 10:33:01 2008 +0100
24727
24728 [new uImage] Use show_boot_progress() for new uImage format
24729
24730 This patch allocates a set of show_boot_progress() IDs for new uImage format
24731 and adds show_boot_progress() calls in new uImage format handling code.
24732
24733 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24734
24735commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
24736Author: Marian Balakowicz <m8@semihalf.com>
24737Date: Wed Mar 12 10:33:01 2008 +0100
24738
24739 [new uImage] Add new uImage fromat support to fpga command
24740
24741 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24742
24743commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
24744Author: Marian Balakowicz <m8@semihalf.com>
24745Date: Wed Mar 12 10:33:01 2008 +0100
24746
24747 [new uImage] Add new uImage format handling to other bootm related commands
24748
24749 Updated commands:
24750
24751 docboot - cmd_doc.c
24752 fdcboot - cmd_fdc.c
24753 diskboot - cmd_ide.c
24754 nboot - cmd_nand.c
24755 scsiboot - cmd_scsi.c
24756 usbboot - cmd_usb.c
24757
24758 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24759
24760commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
24761Author: Marian Balakowicz <m8@semihalf.com>
24762Date: Wed Mar 12 10:33:00 2008 +0100
24763
24764 [new uImage] Add new uImage format support to imgextract command
24765
24766 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24767
24768commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
24769Author: Marian Balakowicz <m8@semihalf.com>
24770Date: Wed Mar 12 10:33:00 2008 +0100
24771
24772 [new uImage] Add new uImage format support to autoscript routine
24773
24774 autoscript() routine is updated to accept second argument, which
24775 is only used for FIT images and provides a FIT subimage unit name.
24776
24777 autoscript() routine callers must now pass two arguments. For
24778 non-interactive use (like in cmd_load.c, cmd_net.c), new environment
24779 variable 'autoscript_uname' is introduced and used as a FIT
24780 subimage unit name source.
24781
24782 autoscript command accepts extended syntax of the addr argument:
24783 addr:<subimg_uname>
24784
24785 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24786
24787commit cd7c596e9f561dbbc17b717277438aee78cde14f
24788Author: Marian Balakowicz <m8@semihalf.com>
24789Date: Wed Mar 12 10:33:00 2008 +0100
24790
24791 [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
24792
24793 This patch updates architecture specific implementations of
24794 do_bootm_linux() adding new uImage format handling for
24795 operations like get kernel entry point address, get kernel
24796 image data start address.
24797
24798 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24799
24800commit 3dfe110149311425919e6d6a14b561b4207498f1
24801Author: Marian Balakowicz <m8@semihalf.com>
24802Date: Wed Mar 12 10:32:59 2008 +0100
24803
24804 [new uImage] Add node offsets for FIT images listed in struct bootm_headers
24805
24806 This patch adds new node offset fields to struct bootm_headers
24807 and updates bootm_headers processing code to make use of them.
24808 Saved node offsets allow to avoid repeating fit_image_get_node() calls.
24809
24810 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24811
24812commit bc8ed486b125452ba3bd8344f052f437329150c5
24813Author: Marian Balakowicz <m8@semihalf.com>
24814Date: Wed Mar 12 10:32:53 2008 +0100
24815
24816 [new uImage] ppc: Add new uImage format support to FDT handling routines
24817
24818 Support for new (FIT) format uImages is added to powerpc specific
24819 boot_get_fdt() routine which now recognizes, sanity checks FIT image
24820 and is able to access data sections of the requested component image.
24821
24822 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24823
24824commit a44a269a905f924b420020506a4d7d7eedcc0eaf
24825Author: Marian Balakowicz <m8@semihalf.com>
24826Date: Wed Mar 12 10:14:57 2008 +0100
24827
24828 [new uImage] Re-enable interrupts for non automatic booting
24829
24830 Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
24831 environment variable is not set to 'yes'.
24832
24833 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24834
24835commit d985c8498c4e47095820da97aa722381d39172c5
24836Author: Marian Balakowicz <m8@semihalf.com>
24837Date: Wed Mar 12 10:14:38 2008 +0100
24838
24839 [new uImage] Remove unnecessary arguments passed to ramdisk routines
24840
24841 boot_get_ramdisk() and image_get_ramdisk() do not need all
24842 cmdtp, flag, argc and argv arguments. Simplify routines definition.
24843
24844 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24845
24846commit c87796483bc7c2900470dc747c367f602577608d
24847Author: Marian Balakowicz <m8@semihalf.com>
24848Date: Wed Mar 12 10:12:37 2008 +0100
24849
24850 [new uImage] Add new uImage format support for ramdisk handling
24851
24852 This patch updates boot_get_ramdisk() routine adding format
24853 verification and handling for new (FIT) uImages.
24854
24855 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24856
24857commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
24858Author: Marian Balakowicz <m8@semihalf.com>
24859Date: Wed Mar 12 10:01:05 2008 +0100
24860
24861 [new uImage] Add new uImage format support for kernel booting
24862
24863 New format uImages are recognized by the bootm command,
24864 validity of specified kernel component image is checked and
24865 its data section located and used for further processing
24866 (uncompress, load, etc.)
24867
24868 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24869
24870commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
24871Author: Marian Balakowicz <m8@semihalf.com>
24872Date: Tue Mar 11 12:35:20 2008 +0100
24873
24874 [new uImage] Add new uImage format support for imls and iminfo commands
24875
24876 imls and iminfo can now recognize nad print out contents of the new (FIT)
24877 format uImages.
24878
24879 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24880
24881commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
24882Author: Bartlomiej Sieka <tur@semihalf.com>
24883Date: Tue Mar 11 12:34:47 2008 +0100
24884
24885 [new uImage] Add support for new uImage format to mkimage tool
24886
24887 Support for the new uImage format (FIT) is added to mkimage tool.
24888 Commandline syntax is appropriately extended:
24889
24890 mkimage [-D dtc_options] -f fit-image.its fit-image
24891
24892 mkimage (together with dtc) takes fit-image.its and referenced therein
24893 binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
24894 final image that can be transferred to the target (e.g., via tftp) and then
24895 booted using the bootm command in U-Boot.
24896
24897 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24898
24899commit eb6175edd6c120d8b89678243e5a2be362ee8e40
24900Author: Marian Balakowicz <m8@semihalf.com>
24901Date: Mon Mar 10 17:53:49 2008 +0100
24902
24903 [new uImage] Make node unit names const in struct bootm_headers
24904
24905 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24906
24907commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
24908Author: Marian Balakowicz <m8@semihalf.com>
24909Date: Fri Feb 29 21:24:06 2008 +0100
24910
24911 [new uImage] New uImage low-level API
24912
24913 Add FDT-based functions for handling new format component images,
24914 configurations, node operations, property get/set, etc.
24915
24916 fit_ - routines handling global new format uImage operations
24917 like get/set top level property, process all nodes, etc.
24918 fit_image_ - routines handling component images subnodes
24919 fit_conf_ - routines handling configurations node
24920
24921 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24922 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24923
Wolfgang Denk0b8f2a22008-03-16 01:12:58 +010024924commit 30f1806f60978d707b0cff2d7bf89d141fc24290
24925Author: Wolfgang Denk <wd@denx.de>
24926Date: Sun Mar 9 16:20:02 2008 +0100
24927
24928 Release v1.3.2
24929
24930 Update CHANGELOG for release.
24931
24932 Signed-off-by: Wolfgang Denk <wd@denx.de>
24933
Wolfgang Denk30f18062008-03-09 16:20:02 +010024934commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
24935Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24936Date: Sun Mar 9 14:52:11 2008 +0100
24937
24938 SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
24939
24940 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24941 Signed-off-by: Wolfgang Denk <wd@denx.de>
24942
24943commit db695b78515ddb88a2d4f3357c120345efbf59ec
24944Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24945Date: Sun Mar 9 10:44:01 2008 +0100
24946
24947 scb9328: Fix flash warning: type qualifiers ignored on function return type
24948
24949 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24950
24951commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
24952Author: Wolfgang Denk <wd@denx.de>
24953Date: Sun Mar 9 10:50:41 2008 +0100
24954
24955 esd/common/fpga.c: fix indentation.
24956
24957 Signed-off-by: Wolfgang Denk <wd@denx.de>
24958
24959commit cc3843e36453e2b8db65d7e56de938ba045016a0
24960Author: Wolfgang Denk <wd@denx.de>
24961Date: Sun Mar 9 10:33:31 2008 +0100
24962
24963 common/kgdb.c: fix 'dereferencing type-punned pointer' warning
24964
24965 and get rid of a couple of unneeded casts.
24966
24967 Signed-off-by: Wolfgang Denk <wd@denx.de>
24968
24969commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
24970Author: Wolfgang Denk <wd@denx.de>
24971Date: Sun Mar 9 10:09:53 2008 +0100
24972
24973 esd/common/fpga.c: fix 'assignment of read-only location' error
24974
24975 Signed-off-by: Wolfgang Denk <wd@denx.de>
24976
24977commit c6fe4dabac066e8758345d249032768496983a3e
24978Author: Wolfgang Denk <wd@denx.de>
24979Date: Sun Mar 9 02:13:19 2008 +0100
24980
24981 Makefile: make build silently again.
24982
24983 Signed-off-by: Wolfgang Denk <wd@denx.de>
24984
24985commit 76babc86576f092573599334c85ec543fdbc6015
24986Author: Wolfgang Denk <wd@denx.de>
24987Date: Sun Mar 9 02:07:49 2008 +0100
24988
24989 m501sk: Fix out of tree building
24990
24991 Signed-off-by: Wolfgang Denk <wd@denx.de>
24992
24993commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
24994Author: Wolfgang Denk <wd@denx.de>
24995Date: Sun Mar 9 00:06:09 2008 +0100
24996
24997 ADS5121: fix out of tree build
24998
24999 and simplify Makefile a bit.
25000
25001 Signed-off-by: Wolfgang Denk <wd@denx.de>
25002
25003commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
25004Author: Wolfgang Denk <wd@denx.de>
25005Date: Sat Mar 8 22:35:31 2008 +0100
25006
25007 Release v1.3.2
25008
25009 Signed-off-by: Wolfgang Denk <wd@denx.de>
25010
25011commit 78a90f827df74520e939c794fc7413dace21c4db
25012Author: Wolfgang Denk <wd@denx.de>
25013Date: Sat Mar 8 22:35:04 2008 +0100
25014
25015 Update CHANGELOG
25016
25017 Signed-off-by: Wolfgang Denk <wd@denx.de>
25018
Wolfgang Denk78a90f82008-03-08 22:35:04 +010025019commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
25020Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25021Date: Sat Mar 8 21:30:04 2008 +0100
25022
25023 esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
25024
25025 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25026
25027commit d75469d48c05795144f4b8ba76addbb4920a7bba
25028Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25029Date: Sat Mar 8 09:25:49 2008 +0900
25030
25031 net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
25032
25033 When rtl_recv() of rtl8169 is called, OWNbit of status register
25034 is not enable occasionally.
25035 rtl_recv() doesn't work normally when the driver doesn't do
25036 appropriate processing.
25037 This patch fix this problem.
25038
25039 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25040
25041commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
25042Author: Heiko Schocher <hs@denx.de>
25043Date: Fri Mar 7 08:15:28 2008 +0100
25044
25045 mgsuvd: update board configuration
25046
25047 initialize the UPIOx controller.
25048
25049 Signed-off-by: Heiko Schocher <hs@denx.de>
25050
25051commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
25052Author: Heiko Schocher <hs@denx.de>
25053Date: Fri Mar 7 08:13:41 2008 +0100
25054
25055 mgcoge: update board configuration
25056
25057 add support for the config Flash.
25058 initialize the UPIOx controller.
25059
25060 Signed-off-by: Heiko Schocher <hs@denx.de>
25061
25062commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
25063Author: Kim Phillips <kim.phillips@freescale.com>
25064Date: Fri Mar 7 12:27:31 2008 -0600
25065
25066 mpc83xx: make dtb basename file references equal those of linux
25067
25068 the dts file basenames were updated in linux - this helps avoid
25069 inadvertently loading any old dtbs laying around.
25070
25071 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25072
25073commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
25074Author: Kim Phillips <kim.phillips@freescale.com>
25075Date: Wed Feb 27 16:08:22 2008 -0600
25076
25077 net: uec_phy: actually increment the timeout counter
25078
25079 allow u-boot to recover (and, e.g., switch to another interface) in the
25080 case where a PHY does not report autonegotiation is complete within its
25081 two second timeout value.
25082
25083 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25084
25085commit 772003e43957ee0c895abed7cd82cbe72820cbb8
25086Author: Markus Brunner <super.firetwister@googlemail.com>
25087Date: Wed Mar 5 21:38:12 2008 +0100
25088
25089 fix taihu soft spi_read
25090
25091 The taihu board used gpio_read_out_bit which reads the output register and not
25092 the pin state.
25093
25094 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
25095
25096commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
25097Author: Stefan Roese <sr@denx.de>
25098Date: Fri Mar 7 08:01:43 2008 +0100
25099
25100 ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
25101
25102 Signed-off-by: Stefan Roese <sr@denx.de>
25103
25104commit bd4458cb47abecabd406b1210457be96c69fc49d
25105Author: Dave Liu <r63238@freescale.com>
25106Date: Tue Mar 4 16:59:22 2008 +0800
25107
25108 837xEMDS: Improve the system performance
25109
25110 1. Make the CSB bus pipeline depth as 4, and enable
25111 the repeat mode;
25112 2. Raise the eTSEC emergency priority;
25113 3. Use the highest IP blocks clock.
25114
25115 Signed-off-by: Dave Liu <daveliu@freescale.com>
25116
25117commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
25118Author: Detlev Zundel <dzu@denx.de>
25119Date: Thu Mar 6 16:45:53 2008 +0100
25120
25121 Replace "run load; run update" with conditionalized "run load update".
25122
25123 The latter version stops when "run load" fails for whatever reasons
25124 rendering the combination *a lot* more secure.
25125
25126 Signed-off-by: Detlev Zundel <dzu@denx.de>
25127
25128commit 6bc113886d7d316df1a4e459bec8baf027518551
25129Author: Stefan Roese <sr@denx.de>
25130Date: Tue Mar 4 17:40:41 2008 +0100
25131
25132 net: Print error message upon net usage when no ethernet-interface is found
25133
25134 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
25135 defined. Then no ethernet interface is available but a simple "tftp"
25136 command will return without any error message which is quite confusing.
25137
25138 Signed-off-by: Stefan Roese <sr@denx.de>
25139
25140commit a30a549a3553032d809e0356306b62de0b125901
25141Author: Jon Loeliger <jdl@freescale.com>
25142Date: Tue Mar 4 10:03:03 2008 -0600
25143
25144 Remove erroneous or extra spd.h #includers.
25145
25146 Many of the spd.h #includers don't need it,
25147 and wanted to have spd_sdram() declared instead.
25148 Since they didn't get that, some also had open
25149 coded extern declarations of it instead or as well.
25150 Fix it all up by using spd_sdram.h where needed.
25151
25152 Signed-off-by: Jon Loeliger <jdl@freescale.com>
25153
25154commit a4475386cef14af3fd88f0518b688e755669486d
25155Author: Wolfgang Denk <wd@denx.de>
25156Date: Tue Mar 4 17:41:28 2008 +0100
25157
25158 PCS440EP: fix build problems (redundant #define)
25159
25160 Signed-off-by: Wolfgang Denk <wd@denx.de>
25161
25162commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
25163Author: Stefan Roese <sr@denx.de>
25164Date: Tue Mar 4 17:39:25 2008 +0100
25165
25166 net: Print error message upon net usage when no ethernet-interface is found
25167
25168 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
25169 defined. Then no ethernet interface is available but a simple "tftp"
25170 command will return without any error message which is quite confusing.
25171
25172 Signed-off-by: Stefan Roese <sr@denx.de>
25173
25174commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
25175Author: Wolfgang Denk <wd@denx.de>
25176Date: Tue Mar 4 17:38:50 2008 +0100
25177
25178 W7OLMC/W7OLMG: fix build problems (redundant #define)
25179
25180 Signed-off-by: Wolfgang Denk <wd@denx.de>
25181
25182commit f9301e1cda296245ba052d7b08321199c3d0af9d
25183Author: Wolfgang Denk <wd@denx.de>
25184Date: Tue Mar 4 14:58:31 2008 +0100
25185
25186 Makefile: fix problem with out-of-tree builds introduced by 5013c09f
25187
25188 Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
25189 problem for out-of-tree builds which caused "make clean" to fail.
25190
25191 Signed-off-by: Wolfgang Denk <wd@denx.de>
25192
25193commit dfece9500556bed5d8244b1c15d973cec7c25bfe
25194Author: Wolfgang Denk <wd@denx.de>
25195Date: Tue Mar 4 11:58:26 2008 +0100
25196
25197 examples/Makefile: build "hello_world" on 8xx, too.
25198
25199 Signed-off-by: Wolfgang Denk <wd@denx.de>
25200
25201commit 74eb0222594fd23aafdf168e60e872814eea8b62
25202Author: Mike Nuss <mike@terascala.com>
25203Date: Mon Mar 3 15:27:05 2008 -0500
25204
25205 PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
25206
25207 Every now and then a Sequoia board (or equivalent hardware) had
25208 problems connecting to a Gigabit capable network interface.
25209
25210 There were differences in the PHY setup between Linux and U-Boot.
25211
25212 This patch fixes the problem. Apparently "remote fault" is being set,
25213 which signals to some devices (on the other end of the cable) that a
25214 fault has occurred, while other devices ignore it. I believe the RF bit
25215 was causing the issue, but I removed T4 also, to match up with Linux.
25216
25217 Signed-off-by: Mike Nuss <mike@terascala.com>
25218
25219commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
25220Author: Timur Tabi <timur@freescale.com>
25221Date: Mon Mar 3 09:58:52 2008 -0600
25222
25223 fix QE firmware uploading limit
25224
25225 Fix a typo in qe_upload_firmware() that prevented uploading firmware on
25226 systems with more than one RISC core.
25227
25228 Signed-off-by: Timur Tabi <timur@freescale.com>
25229
25230commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
25231Author: Bernhard Nemec <bnemec@ganssloser.com>
25232Date: Mon Mar 3 11:57:23 2008 +0000
25233
25234 Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
25235
25236 Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
25237 see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
25238
Wolfgang Denk01db2322008-06-28 23:16:01 +020025239 Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
Wolfgang Denk78a90f82008-03-08 22:35:04 +010025240
25241commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
25242Author: Kim B. Heino <Kim.Heino@bluegiga.com>
25243Date: Mon Mar 3 10:39:13 2008 +0200
25244
25245 fix copy from ram to dataflash
25246
25247 If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
25248 routines instead of dataflash. This is because it checks "if source
25249 address is not dataflash" instead of target address.
25250
25251 Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
25252
25253commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
25254Author: Wolfgang Denk <wd@denx.de>
25255Date: Mon Mar 3 12:16:44 2008 +0100
25256
25257 Fix quoting problem (preboot setting) in many board config files.
25258
25259 Signed-off-by: Wolfgang Denk <wd@denx.de>
25260
25261commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
25262Author: Wolfgang Denk <wd@denx.de>
25263Date: Mon Mar 3 12:36:49 2008 +0100
25264
25265 ADS5121: Fix default environment.
25266
25267 Signed-off-by: Wolfgang Denk <wd@denx.de>
25268
25269commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
25270Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25271Date: Sun Mar 2 16:12:31 2008 +0100
25272
25273 Makefile: Fix missing unconfig and mkconfig use
25274
25275 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25276
25277commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
25278Author: michael <trimarchi@gandalf.sssup.it>
25279Date: Sun Mar 2 23:33:46 2008 +0100
25280
25281 Fix checking fat32 cluster size.
25282
25283 This fixes the cluster size tests in the FAT32 file system.
25284 The current implementation of VFAT support doesn't work if the
25285 referred cluster has an offset > 16bit representation, causing
25286 "fatload" and "fatls" commands etc. to fail.
25287
25288 Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
25289
25290commit 661bad63a076a96c39c64f136915f146725af92b
25291Author: Wolfgang Denk <wd@denx.de>
25292Date: Sun Mar 2 22:57:23 2008 +0100
25293
25294 Prepare v1.3.2-rc2 release candidate
25295
25296 Signed-off-by: Wolfgang Denk <wd@denx.de>
25297
Wolfgang Denk661bad62008-03-02 22:57:23 +010025298commit 76957cb3d621bf664311908e5962e151c633c285
25299Author: Stefan Roese <sr@denx.de>
25300Date: Sat Mar 1 12:11:40 2008 +0100
25301
25302 ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
25303
25304 The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
25305 currently 4k/2k is configured. This patch fixes this issue.
25306
25307 Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
25308
25309 Signed-off-by: Stefan Roese <sr@denx.de>
25310
25311commit 118978c8eb43803e2794233922df4249fa278b83
25312Author: Woodruff, Richard <r-woodruff2@ti.com>
25313Date: Fri Feb 29 17:34:35 2008 -0600
25314
25315 Fix alignment error on ARM for modules
25316
25317 Fix alignment fault on ARM when running modules. With out an explicit
25318 linker file gcc4.2.1 will half word align __bss_start's value. The word
25319 dereference will crash hello_world.
25320
25321 signed-off-by Richard Woodruff <r-woodruff2@ti.com>
25322
25323commit ce1120dd703e6f12c59e4eba9962356a0300b832
25324Author: Dave Liu <r63238@freescale.com>
25325Date: Fri Feb 29 17:45:31 2008 +0800
25326
25327 fs: Fix ext2 read issue
25328
25329 The ext2 aligned process will corrupt the key
25330 data struct, the patch fix this.
25331
25332 Signed-off-by: Dave Liu <daveliu@freescale.com>
25333
25334commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
25335Author: Wolfgang Denk <wd@denx.de>
25336Date: Sun Mar 2 22:45:33 2008 +0100
25337
25338 Makefile: cleanup "clean" target
25339
25340 Make sure CDPATH settings cannot interfere.
25341 Update CHANGELOG.
25342
25343 Signed-off-by: Wolfgang Denk <wd@denx.de>
25344
Wolfgang Denk5013c092008-03-02 22:45:33 +010025345commit ffda586fc1373243c9794babde69500f6293a8d8
25346Author: Li Yang <leoli@freescale.com>
25347Date: Fri Feb 29 11:46:05 2008 +0800
25348
25349 add cscope build target
25350
25351 Add cscope build target to generate cscope database for code browsing.
25352
25353 Signed-off-by: Li Yang <leoli@freescale.com>
25354
25355commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
25356Author: Kim Phillips <kim.phillips@freescale.com>
25357Date: Wed Feb 27 15:06:39 2008 -0600
25358
25359 net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
25360
25361 erratum 5.6 states the autoneg completion bit is functional only if the
25362 autoneg bit is asserted.
25363
25364 This fixes any secondarily-issued networking commands on non-gigabit
25365 links on the mpc8360 mds board.
25366
25367 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25368
25369commit 5f91db7f582ca17b1f19f10189c025696f333d2e
25370Author: John Rigby <jrigby@freescale.com>
25371Date: Tue Feb 26 09:38:14 2008 -0700
25372
25373 MPC5121e ADS PCI support take 3
25374
25375 Adds PCI support for MPC5121
25376
25377 Tested with drivers/net/rtl8139.c
25378
25379 Support is conditional since PCI on old silicon does not work.
25380
25381 ads5121_PCI_config turns on PCI
25382
25383 In this version, condition compilation of PCI code has been moved
25384 from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
25385 suggested by Jean-Christophe PLAGNIOL-VILLARD
25386
25387 Signed-off-by: John Rigby <jrigby@freescale.com>
25388
25389commit 44b4dbed4133f657705b7c5193209da9978243a7
25390Author: Anatolij Gustschin <agust@denx.de>
25391Date: Mon Feb 25 23:53:07 2008 +0100
25392
25393 Fix warnings while compilation of post/drivers/memory.c
25394
25395 Fix warnings while compilation with new gcc in eldk-4.2
25396
25397 Signed-off-by: Anatolij Gustschin <agust@denx.de>
25398
25399commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
25400Author: Anatolij Gustschin <agust@denx.de>
25401Date: Mon Feb 25 20:54:04 2008 +0100
25402
25403 ppc4xx: Fix problem in 4xx_enet.c driver
25404
25405 U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
25406 enabled. To reproduce the problem ensure that 'ethrotate'
25407 environment variable isn't set to "no" and then run
25408 "tftp 200000 not_existent_file".
25409 This patch tries to fix the issue.
25410
25411 Signed-off-by: Anatolij Gustschin <agust@denx.de>
25412
25413commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
25414Author: Anatolij Gustschin <agust@denx.de>
25415Date: Mon Feb 25 20:04:20 2008 +0100
25416
25417 POST: Disable cache while SPR POST
25418
25419 Currently (since commit b2e2142c) u-boot crashes on
25420 sequoia board while SPR test if CONFIG_4xx_DCACHE is
25421 enabled. This patch disables the cache while SPR test.
25422
25423 Signed-off-by: Anatolij Gustschin <agust@denx.de>
25424
25425commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
25426Author: Martin Krause <martin.krause@tqs.de>
25427Date: Mon Feb 25 17:52:40 2008 +0100
25428
25429 TQM5200: use automatic fdt memory fixup (part 2)
25430
25431 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
25432 TB5200 and TB5200_B to fixup the /memory node with the memory values
25433 detected by U-Boot.
25434
25435 Signed-off-by: Martin Krause <martin.krause@tqs.de>
25436
25437commit 44ceec253ea941b301abf4b079d52324def69d92
25438Author: Martin Krause <martin.krause@tqs.de>
25439Date: Mon Feb 25 15:17:05 2008 +0100
25440
25441 TQM5200: use automatic fdt memory fixup
25442
25443 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
25444 TB5200 and TB5200_B to fixup the /memory node with the memory values
25445 detected by U-Boot.
25446
25447 Signed-off-by: Martin Krause <martin.krause@tqs.de>
25448
25449commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
25450Author: Martin Krause <martin.krause@tqs.de>
25451Date: Mon Feb 25 13:27:52 2008 +0100
25452
25453 TQM5200: fix bug in SDRAM initialization code
25454
25455 This patch fixes a bug in the SDRAM initialization code for the
25456 TQM5200. The hi_addr bit is now set correctly. Without this patch
25457 the hi_addr bit is always set to 1, if the second SDRAM bank is
25458 not populated.
25459
25460 For other MPC5200 boards a correspondig patch has already been applied
25461 some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
25462
25463 Signed-off-by: Martin Krause <martin.krause@tqs.de>
25464 --
25465 Forget the first patch please. I confused flash with SDRAM in
25466 the comment ...
25467
25468commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
25469Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25470Date: Mon Feb 25 00:03:12 2008 +0100
25471
25472 mx1fs2/flash: Fix multiple compiler warnings
25473
25474 "pointer targets in assignment differ in signedness"
25475
25476 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25477
25478commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
25479Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25480Date: Mon Feb 25 00:03:11 2008 +0100
25481
25482 arm-imx: Fix register definitions
25483
25484 Sync register definitions with linux
25485
25486 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25487
25488commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
25489Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25490Date: Mon Feb 25 00:03:10 2008 +0100
25491
25492 actua1/actua2/actua3: Fix multiple unused variable warnings
25493
25494 - actua1:
25495 actux1.c: In function 'checkboard':
25496 actux1.c:92: warning: unused variable 'revision'
25497
25498 - actua2:
25499 actux2.c: In function 'checkboard':
25500 actux2.c:100: warning: unused variable 's'
25501 actux2.c:99: warning: unused variable 'revision'
25502 actux2.c: In function 'reset_phy':
25503 actux2.c:130: warning: unused variable 'i'
25504
25505 - actua3:
25506 actux3.c: In function 'checkboard':
25507 actux3.c:114: warning: unused variable 'revision'
25508
25509 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25510
25511commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
25512Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25513Date: Sun Feb 24 11:44:29 2008 +0900
25514
25515 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
25516
25517 The previous patch was lacking of i386, microblaze, nios and nios2. This
25518 patch tries to fix them.
25519
25520 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25521
Wolfgang Denk438a4c12008-03-26 11:48:46 +010025522commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
25523Author: Marian Balakowicz <m8@semihalf.com>
25524Date: Fri Feb 29 22:22:46 2008 +0100
25525
25526 [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
25527
25528 Do not use global fdt blob pointer, calculate blob size from routine
25529 argument blob pointer.
25530
25531 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25532
25533commit d1cc52879c8966507dad9fb575481e6d3985e64e
25534Author: David Gibson <david@gibson.dropbear.id.au>
25535Date: Tue Feb 12 00:58:31 2008 +1100
25536
25537 libfdt: Add and use a node iteration helper function.
25538
25539 This patch adds an fdt_next_node() function which can be used to
25540 iterate through nodes of the tree while keeping track of depth. This
25541 function is used to simplify the iteration code in a lot of other
25542 functions, and is also exported for use by library users.
25543
25544 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25545
25546commit 8cf30809a82902a471866d2f07725ce3b8a22291
25547Author: Bartlomiej Sieka <tur@semihalf.com>
25548Date: Fri Feb 29 16:00:24 2008 +0100
25549
25550 [new uImage] Add libfdt support to mkimage
25551
25552 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25553
25554commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
25555Author: Bartlomiej Sieka <tur@semihalf.com>
25556Date: Fri Feb 29 16:00:23 2008 +0100
25557
25558 [new uImage] Add sha1.o object to mkimage binary build
25559
25560 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25561
25562commit df6f1b895c997978f03afe04502ee76b7ba34ab9
25563Author: Marian Balakowicz <m8@semihalf.com>
25564Date: Fri Feb 29 16:00:06 2008 +0100
25565
25566 [new uImage] Fix component handling for legacy multi component images
25567
25568 Use uint32_t when accessing size table in image_multi_count() and
25569 image_multi_getimg() for multi component images.
25570
25571 Add missing uimage_to_cpu() endianness conversion.
25572
25573 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25574
25575commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
25576Author: Marian Balakowicz <m8@semihalf.com>
25577Date: Fri Feb 29 15:59:59 2008 +0100
25578
25579 [new uImage] Share common uImage code between mkimage and U-boot
25580
25581 This patch adds the following common routines:
25582
25583 1) Dedicated mkimage print_header() is replaced with common
25584 image_print_contents()
25585 image_print_contents_noindent()
25586
25587 2) Common os/arch/type/comp fields name <--> id translation routines
25588 genimg_get_os_name()
25589 genimg_get_arch_name()
25590 genimg_get_type_name()
25591 genimg_get_comp_name()
25592 genimg_get_os_id()
25593 genimg_get_arch_id()
25594 genimg_get_type_id()
25595 genimg_get_comp_id()
25596
25597 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25598
25599commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
25600Author: Marian Balakowicz <m8@semihalf.com>
25601Date: Fri Feb 29 14:58:34 2008 +0100
25602
25603 [new uImage] Update naming convention for bootm/uImage related code
25604
25605 This patch introduces the following prefix convention for the
25606 image format handling and bootm related code:
25607
25608 genimg_ - dual format shared code
25609 image_ - legacy uImage format specific code
25610 fit_ - new uImage format specific code
25611 boot_ - booting process related code
25612
25613 Related routines are renamed and a few pieces of code are moved around and
25614 re-grouped.
25615
25616 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25617
25618commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
25619Author: Kumar Gala <galak@kernel.crashing.org>
25620Date: Wed Feb 27 21:51:51 2008 -0600
25621
25622 [new uImage] Respect autostart setting in linux bootm
25623
25624 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25625 Acked-by: Marian Balakowicz <m8@semihalf.com>
25626
25627commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
25628Author: Kumar Gala <galak@kernel.crashing.org>
25629Date: Wed Feb 27 21:51:50 2008 -0600
25630
25631 [new uImage] Provide ability to restrict region used for boot images
25632
25633 Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
25634 to restrict what memory range is used for bootm.
25635
25636 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25637 Acked-by: Marian Balakowicz <m8@semihalf.com>
25638
25639commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
25640Author: Kumar Gala <galak@kernel.crashing.org>
25641Date: Wed Feb 27 21:51:49 2008 -0600
25642
25643 [new uImage] Use lmb for bootm allocations
25644
25645 Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
25646 functions over to using lmb for allocation of the ramdisk, command line
25647 and kernel bd info.
25648
25649 Convert PPC specific fdt_relocate() to use lmb for allocation of the device
25650 tree.
25651
25652 Provided a weak function that board code can call to do additional
25653 lmb reserves if needed.
25654
25655 Also introduce the concept of bootmap_base to specify the offset in
25656 physical memory that the bootmap is located at. This is used for
25657 allocations of the cmdline, kernel bd, and device tree as they should
25658 be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
25659
25660 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25661
25662commit f5614e7926863bf0225ec860d9b319741a9c4004
25663Author: Kumar Gala <galak@kernel.crashing.org>
25664Date: Wed Feb 27 21:51:48 2008 -0600
25665
25666 [new uImage] Add autostart flag to bootm_headers structure
25667
25668 The autostart env variable was dropped as part of the initial new uImage
25669 cleanup. Add it back here so the arch specific code can decide if it
25670 wants to really boot or not.
25671
25672 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25673 Acked-by: Marian Balakowicz <m8@semihalf.com>
25674
25675commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
25676Author: Kumar Gala <galak@kernel.crashing.org>
25677Date: Wed Feb 27 21:51:47 2008 -0600
25678
25679 [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
25680
25681 Introduce the LMB lib used on PPC in the kernel as a clean way to manage
25682 the memory spaces used by various boot images and structures. This code
25683 will allow us to simplify the code in bootm and its support functions.
25684
25685 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25686
25687commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
25688Author: Kumar Gala <galak@kernel.crashing.org>
25689Date: Tue Feb 19 22:03:47 2008 -0600
25690
25691 [new uImage] ppc: Allow boards to specify effective amount of memory
25692
25693 For historical reasons we limited the stack to 256M because some boards
25694 could only map that much via BATS. However newer boards are capable of
25695 mapping more memory (for example 85xx is capable of doing up to 2G).
25696
25697 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25698 Acked-by: Marian Balakowicz <m8@semihalf.com>
25699
25700commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
25701Author: Kumar Gala <galak@kernel.crashing.org>
25702Date: Wed Feb 27 21:51:46 2008 -0600
25703
25704 [new uImage] rework error handling so common functions don't reset
25705
25706 Changed image_get_ramdisk() to just return NULL on error and have
25707 get_ramdisk() propogate that error to the caller. It's left to the
25708 caller to call do_reset() if it wants to.
25709
25710 Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
25711 to a common location. In the future we will change get_fdt() and
25712 fdt_relocate() to return success/failure and not call do_reset() at all.
25713
25714 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25715 Acked-by: Marian Balakowicz <m8@semihalf.com>
25716
25717commit d2bc095a639672def11d5d043b5688d0dbd692ec
25718Author: Kumar Gala <galak@kernel.crashing.org>
25719Date: Wed Feb 27 21:51:45 2008 -0600
25720
25721 [new uImage] ppc: Re-order ramdisk/fdt handling sequence
25722
25723 Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
25724 however it does mean we have to go in and fixup the initrd info since
25725 we don't know where it will be.
25726
25727 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25728
25729commit 27953493ef025fb698d68c5dee39b36f01f4d530
25730Author: Kumar Gala <galak@kernel.crashing.org>
25731Date: Wed Feb 27 21:51:44 2008 -0600
25732
25733 [new uImage] ppc: Determine if we are booting an OF style
25734
25735 If we are bootin OF style than we can skip setting up some things
25736 that are used for the old boot method.
25737
25738 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25739 Acked-by: Marian Balakowicz <m8@semihalf.com>
25740
25741commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
25742Author: Kumar Gala <galak@kernel.crashing.org>
25743Date: Wed Feb 27 21:51:43 2008 -0600
25744
25745 [new uImage] Don't pass kdb to ramdisk_high since we may not have one
25746
25747 We don't actually need the kdb param as we are just using it to get
25748 bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we
25749 boot via OF we might not actually fill out a kdb.
25750
25751 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25752 Acked-by: Marian Balakowicz <m8@semihalf.com>
25753
Wolfgang Denk5013c092008-03-02 22:45:33 +010025754commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
25755Author: Kumar Gala <galak@kernel.crashing.org>
25756Date: Wed Feb 27 16:30:47 2008 -0600
25757
25758 85xx: Don't icbi when unlocking the cache
25759
25760 There is no reason to icbi when invalidating the temporary stack in
25761 the d-cache. Its impossible on e500 to have the i-cache contain
25762 any addresses in the temp stack and it can be problematic in generating
25763 transactions on the bus to non-valid addresses.
25764
25765 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25766
25767commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
25768Author: Andy Fleming <afleming@freescale.com>
25769Date: Wed Feb 27 15:50:50 2008 -0600
25770
25771 Fix source for ECM error IVPR
25772
25773 The source vector for the ECM was being set to 2,
25774 but that's what the source vector for DDR was being
25775 set to. Change it to 1.
25776
25777 Signed-off-by: Andy Fleming <afleming@freescale.com>
25778
25779commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
25780Author: Andy Fleming <afleming@freescale.com>
25781Date: Wed Feb 27 14:29:58 2008 -0600
25782
25783 Invalidate INIT_RAM TLB mappings
25784
25785 Commit 0db37dc... (and some others) changed the INIT_RAM TLB
25786 mappings to be unguarded. This collided with an existing "bug"
25787 where the mappings for the INIT_RAM were being kept around.
25788 This meant that speculative loads to those addresses were
25789 succeeding in the TLB, and going out to the bus, where they
25790 were causing an exception (there's nothing at that address). The
25791 Flash code was coincidentally causing such a speculative load.
25792 Rather than go back to mapping the INIT RAM as guarded, we fix
25793 it so that the entries for the INIT_RAM are invalidated. Thus
25794 the speculative loads will fail in the TLB, and have no effect.
25795
25796 Signed-off-by: Andy Fleming <afleming@freescale.com>
25797
25798commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
25799Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25800Date: Sun Feb 17 22:56:17 2008 +0100
25801
25802 sbc8548: Fix Revision reading and unused variable 'path'
25803
25804 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25805
25806commit 495d162374c472f46454453553382ad0735dc725
25807Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25808Date: Sun Feb 17 22:56:16 2008 +0100
25809
25810 sbc8548: Fix cfi flash bank declaration
25811
25812 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25813
Wolfgang Denk438a4c12008-03-26 11:48:46 +010025814commit 4efbe9dbb129f857f27856936112c8c02f016be6
25815Author: Marian Balakowicz <m8@semihalf.com>
25816Date: Wed Feb 27 11:02:26 2008 +0100
25817
25818 [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
25819
25820 Dual format image code must properly handle all three FDT passing methods:
25821 - raw FDT blob passed
25822 - FDT blob embedded in the legacy uImage
25823 - FDT blob embedded in the new uImage
25824
25825 This patch enables proper raw FDT handling when no FIT imaeg support
25826 is compiled in. This is a bit tricky as we must dected FIT format even
25827 when FIT uImage handling is not enabled as both FIT uImages and raw FDT
25828 blobs use tha same low level format (libfdt).
25829
25830 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25831
25832commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
25833Author: Marian Balakowicz <m8@semihalf.com>
25834Date: Wed Feb 27 11:02:26 2008 +0100
25835
25836 [new uImage] POWERPC: Add image_get_fdt() routine
25837
25838 FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
25839 (3) or embedded in the new uImage. For the (2) case embedding image must be
25840 verified before we get FDT from it. This patch factors out legacy image
25841 specific verification routine to the separate helper routine.
25842
25843 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25844 Acked-by: Kumar Gala <galak@kernel.crashing.org>
25845
25846commit 1efd43601f90de21ec6c0ebb9880823e822927b1
25847Author: Marian Balakowicz <m8@semihalf.com>
25848Date: Wed Feb 27 11:02:07 2008 +0100
25849
25850 [new uImage] Add image_get_kernel() routine
25851
25852 Legacy image specific verification is factored out to a separate helper
25853 routine to keep get_kernel() generic and simple.
25854
25855 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25856 Acked-by: Kumar Gala <galak@kernel.crashing.org>
25857
25858commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
25859Author: Marian Balakowicz <m8@semihalf.com>
25860Date: Wed Feb 27 11:01:04 2008 +0100
25861
25862 [new uImage] Move image verify flag to bootm_headers structure
25863
25864 Do not pass image verification flag directly to related routines.
25865 Simplify argument passing and move it to the bootm_header structure which
25866 contains curently processed image specific data and is already being passed
25867 on the argument list.
25868
25869 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25870 Acked-by: Kumar Gala <galak@kernel.crashing.org>
25871
25872commit 823afe7cefe00dafefc6696c1cc7aa828c394234
25873Author: Marian Balakowicz <m8@semihalf.com>
25874Date: Wed Feb 27 11:00:47 2008 +0100
25875
25876 [Makefile] Sort COBJS in lib_<arch> Makefiles
25877
25878 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25879
25880commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
25881Author: Marian Balakowicz <m8@semihalf.com>
25882Date: Wed Feb 27 11:00:47 2008 +0100
25883
25884 [new uImage] Optimize gen_get_image() flow control
25885
25886 When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
25887 to do, update its control flow to better reflect that simple case.
25888
25889 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25890 Acked-by: Kumar Gala <galak@kernel.crashing.org>
25891
25892commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
25893Author: Marian Balakowicz <m8@semihalf.com>
25894Date: Mon Feb 4 08:28:17 2008 +0100
25895
25896 [new uImage] POWERPC: Split get_fdt() into get and relocate routines
25897
25898 PPC specific FDT blob handling code is divided into two separate routines:
25899
25900 get_fdt() - find and verify a FDT blob (either raw or image embedded)
25901 fdt_relocate() - move FDT blob to within BOOTMAP if needed
25902
25903 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25904 Acked-by: Kumar Gala <galak@kernel.crashing.org>
25905
Wolfgang Denk5013c092008-03-02 22:45:33 +010025906commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
25907Author: Jon Loeliger <jdl@freescale.com>
25908Date: Mon Feb 25 13:13:37 2008 -0600
25909
25910 86xx: Fix renamed GUR symbols in sbc8641d board.
25911
25912 Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
25913 (86xx: Fix GUR PCI config registers properly), we should have
25914 changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
25915 symbols in the sbc8641d board as well. Fix this oversight.
25916
25917 Signed-off-by: Jon Loeliger <jdl@freescale.com>
25918
25919commit 64cd594e623c39f73964d18787763e4533f791f7
25920Author: Stefan Roese <sr@denx.de>
25921Date: Mon Feb 25 16:50:48 2008 +0100
25922
25923 ppc4xx: Fix acadia_nand build problem
25924
25925 Don't include testdram() on NAND-booting target acadia_nand. This saves
25926 a few bytes and makes the target build clean again.
25927
25928 Signed-off-by: Stefan Roese <sr@denx.de>
25929
25930commit 14e099e698d41e8179d05c2b2dbcf704a236f748
25931Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25932Date: Sun Feb 24 23:03:12 2008 +0000
25933
25934 mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
25935
25936 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25937
25938commit 724902c8464e610642b3a170278b99710325888e
25939Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25940Date: Sun Feb 24 23:03:11 2008 +0000
25941
25942 arm-imx: Fix registers definition
25943
25944 Sync registers definition with linux
25945
25946 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25947
25948commit 4cd288b589ea1178947c6e364453c32b3dede6b7
25949Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25950Date: Sun Feb 24 23:03:10 2008 +0000
25951
25952 actua1/actua2/actua3: Fix multipleunused variable
25953
25954 - actua1:
25955 actux1.c: In function 'checkboard':
25956 actux1.c:92: warning: unused variable 'revision'
25957
25958 - actua2:
25959 actux2.c: In function 'checkboard':
25960 actux2.c:100: warning: unused variable 's'
25961 actux2.c:99: warning: unused variable 'revision'
25962 actux2.c: In function 'reset_phy':
25963 actux2.c:130: warning: unused variable 'i'
25964
25965 - actua3:
25966 actux3.c: In function 'checkboard':
25967 actux3.c:114: warning: unused variable 'revision'
25968
25969 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25970
Wolfgang Denk438a4c12008-03-26 11:48:46 +010025971commit d5934ad7756f038a393a9cfab76a4fe306d9d930
25972Author: Marian Balakowicz <m8@semihalf.com>
25973Date: Mon Feb 4 08:28:09 2008 +0100
25974
25975 [new uImage] Add dual format uImage support framework
25976
25977 This patch adds framework for dual format images. Format detection is added
25978 and the bootm controll flow is updated to include cases for new FIT format
25979 uImages.
25980
25981 When the legacy (image_header based) format is detected appropriate
25982 legacy specific handling is invoked. For the new (FIT based) format uImages
25983 dual boot framework has a minial support, that will only print out a
25984 corresponding debug messages. Implementation of the FIT specific handling will
25985 be added in following patches.
25986
25987 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25988
Wolfgang Denk5013c092008-03-02 22:45:33 +010025989commit b29661fc1151077776454288051bc9a488351ce8
25990Author: Wolfgang Denk <wd@denx.de>
25991Date: Sun Feb 24 15:21:36 2008 +0100
25992
25993 Coding style cleanup. Prepare v1.3.2-rc2 release candidate
25994
25995 Signed-off-by: Wolfgang Denk <wd@denx.de>
25996
Wolfgang Denkb29661f2008-02-24 15:21:36 +010025997commit 00b48a48424894daa589d166d73277830b1c6ac4
25998Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25999Date: Sat Feb 23 12:15:56 2008 +0100
26000
26001 ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
26002
26003 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26004
26005commit b075d74efb70ff68c49a2532f26b56d6703b69c1
26006Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26007Date: Sat Feb 23 17:24:16 2008 +0900
26008
26009 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
26010
26011 ----------------------------------------------------------------
26012 Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
26013
26014 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
26015 32bit targets.
26016
26017 GCC can be made to warn about usage of long long types with ISO C90
26018 (-ansi), but only with -pedantic. You can write this in a way that even
26019 then it doesn't cause warnings, namely by:
26020
26021 #ifdef __GNUC__
26022 __extension__ typedef __signed__ long long __s64;
26023 __extension__ typedef unsigned long long __u64;
26024 #endif
26025
26026 The __extension__ keyword in front of this switches off any pedantic
26027 warnings for this expression.
26028
26029 Signed-off-by: Olaf Hering <olh@suse.de>
26030 Cc: <linux-arch@vger.kernel.org>
26031 Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
26032 Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
26033 ----------------------------------------------------------------
26034
26035 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26036
26037commit 208acd112e6517b21fc30c420396902b103563ac
26038Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26039Date: Sat Feb 23 17:07:57 2008 +0900
26040
26041 cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
26042
26043 This will reduce the build time.
26044
26045 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26046
26047commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
26048Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26049Date: Sat Feb 23 17:05:00 2008 +0900
26050
26051 cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
26052
26053 This will reduce the build time.
26054
26055 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26056
26057commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
26058Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26059Date: Sat Feb 23 16:58:41 2008 +0900
26060
26061 cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
26062
26063 This reduces the build time by ~10%. Here's the gth2_config example.
26064
26065 BEFORE AFTER
26066 real 0m31.441s 0m27.833s
26067 user 0m24.766s 0m23.045s
26068 sys 0m10.425s 0m7.468s
26069
26070 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26071
26072commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
26073Author: Marcel Moolenaar <marcelm@juniper.net>
26074Date: Fri Feb 22 10:48:07 2008 -0800
26075
26076 make define2mk.sed work on FreeBSD
26077
26078 In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
26079 the define2mk.sed script was identified as the source of the link
26080 failure on FreeBSD. The problem is that sed(1) does not always support
26081 the '+' operator. It isn't on FreeBSD. The attach patch implements the
26082 equivalent, using the '*' operator instead and should work everywhere.
26083
26084 Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
26085
26086commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
26087Author: Detlev Zundel <dzu@denx.de>
26088Date: Fri Feb 22 17:21:32 2008 +0100
26089
26090 Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
26091
26092 The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
26093 final traces of long-deprecated "ramdisk" kernel parm") makes these
26094 changes neccessary.
26095
26096 Signed-off-by: Detlev Zundel <dzu@denx.de>
26097
26098commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
26099Author: Larry Johnson <lrj@acm.org>
26100Date: Thu Feb 21 13:58:16 2008 -0500
26101
26102 LM75 bug fix for negative temperatures
26103
26104 When the LM75 temperature sensor measures a temperature below 0 C, the
26105 current driver does not perform sign extension, so the result returned is
26106 256 C too high. This patch fixes the problem.
26107
26108 Signed-off-by: Larry Johnson <lrj@acm.org>
26109
26110commit 5a910c224b13e413bda41922379add6d75c32da3
26111Author: Heiko Schocher <hs@denx.de>
26112Date: Thu Feb 21 18:33:45 2008 +0100
26113
26114 IDS8247: update MAINTAINER entry.
26115
26116 Signed-off-by: Heiko Schocher <hs@denx.de>
26117
26118commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
26119Author: Heiko Schocher <hs@denx.de>
26120Date: Thu Feb 21 18:31:15 2008 +0100
26121
26122 Fix device tree for mgsuvd board.
26123
26124 Rename the "scc" node in "ethernet" for the mgsuvd board.
26125
26126 Signed-off-by: Heiko Schocher <hs@denx.de>
26127
26128commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
26129Author: Yuri Tikhonov <yur@emcraft.com>
26130Date: Thu Feb 21 14:23:42 2008 +0100
26131
26132 lwmon5: enable hardware watchdog
26133
26134 Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
26135 causing it to reboot the board if U-Boot does a long busy-wait with
26136 udelay(). Thus, for these boards we have to restart WD more
26137 frequently.
26138
26139 This patch splits the busy-wait udelay() into smaller, predefined,
26140 intervals, so that the watchdog timer may be resetted with the
26141 configurable (CONFIG_WD_PERIOD) interval.
26142
26143 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26144
26145commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
26146Author: Anatolij Gustschin <agust@denx.de>
26147Date: Thu Feb 21 12:52:29 2008 +0100
26148
26149 ppc4xx: Support for ATI Radeon 9200 card on sequoia
26150
26151 Adds configuration option for ATI Radeon 9200 card
26152 support to sequoia config file. If CONFIG_VIDEO
26153 is enabled, TEXT_BASE should be changed to 0xFFF80000.
26154
26155 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26156
26157commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
26158Author: Kumar Gala <galak@kernel.crashing.org>
26159Date: Mon Feb 18 08:18:07 2008 -0600
26160
26161 Remove duplicate defines for ARRAY_SIZE
26162
26163 A few duplicate of the ARRAY_SIZE macro sneaked in since we put
26164 the define in common.h.
26165
26166 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26167
26168commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
26169Author: Kumar Gala <galak@kernel.crashing.org>
26170Date: Mon Feb 18 08:09:37 2008 -0600
26171
26172 ppc: Allow boards to specify effective amount of memory
26173
26174 For historical reasons we limited the stack to 256M because some boards
26175 could only map that much via BATS. However newer boards are capable of
26176 mapping more memory (for example 85xx is capable of doing up to 2G).
26177
26178 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26179
26180commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
26181Author: Mike Frysinger <vapier@gentoo.org>
26182Date: Mon Feb 18 05:24:13 2008 -0500
26183
26184 include autoconf.mk before any other .mk files
26185
26186 This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
26187 those .mk files can have make if statements based on the current config.
26188
26189 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26190
26191commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
26192Author: Mike Frysinger <vapier@gentoo.org>
26193Date: Mon Feb 18 05:10:07 2008 -0500
26194
26195 error check autoconf.mk generation
26196
26197 If any of the steps for generating autoconf.mk fail currently, they go
26198 unnoticed. To fix, we can simply add 'set -e' to the long list of commands.
26199 This is simpler and more robust than placing '|| exit $$?' after every line.
26200
26201 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26202
26203commit 019895a8dee71a9f00da05c03e379f45d581b0fe
26204Author: Stefano Babic <sbabic@denx.de>
26205Date: Mon Feb 18 08:03:51 2008 +0100
26206
26207 Fix bug in dependency checking
26208
26209 By adding VERSION_FILE to the PHONY targets the script
26210 /tools/setlocalversion is always called and version_autogenerated.h
26211 is replaced only if the script find a modified source file.
26212
26213 Signed-off-by: Stefano Babic <sbabic@denx.de>
26214
26215commit 98ba144ccc912eee90dd42699f023c497ce774c6
26216Author: Kyungmin Park <kmpark@infradead.org>
26217Date: Mon Feb 18 14:35:43 2008 +0900
26218
26219 Fix GPMC CS2 memory setup at apollon
26220
26221 It disables the current map first
26222
26223 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26224
26225commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
26226Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26227Date: Sun Feb 17 23:52:46 2008 +0100
26228
26229 uli526x: Fix multiple differ in signedness and parentheses around comparison
26230
26231 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26232
26233commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
26234Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26235Date: Sun Feb 17 16:58:04 2008 +0100
26236
26237 MIPS: Fix CFG_NO_FLASH support
26238
26239 - Fix flash_init call when CFG_NO_FLASH is used
26240 - Remove no more needed flash.c for qemu-mips
26241
26242 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26243
26244commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
26245Author: Mike Frysinger <vapier@gentoo.org>
26246Date: Sat Feb 16 02:40:18 2008 -0500
26247
26248 easylogo: clean up some more and add -r (rgb) support
26249
26250 Michael Hennerich added support for outputting an image in RGB format rather
26251 than forcing YUYV all the time. This makes obvious sense if the display you
26252 have takes RGB input rather than YUYV.
26253
26254 Rather than hack in support for options, I've converted it to use getopt and
26255 cleaned up the argument parsing in the process.
26256
26257 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
26258 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26259
26260commit f65c98129ccada3f7caf97d80395a95b84e911de
26261Author: Mike Frysinger <vapier@gentoo.org>
26262Date: Sat Feb 16 02:12:37 2008 -0500
26263
26264 Makefile: add target for $(LDSCRIPT)
26265
26266 If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
26267 then change into the board directory and try and create it. This allows you
26268 to generate the linker script on the fly based upon board defines (like the
26269 Blackfin boards do).
26270
26271 There should be no regressions due to this change as the normal case is to
26272 already have a u-boot.lds file. If that's the case, then there's nothing to
26273 generate, and so make will always exit. The fix here is that if the linker
26274 script does not exist, the implicit rules take over and attempt to guess how
26275 to generate the file.
26276
26277 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26278
Wolfgang Denk438a4c12008-03-26 11:48:46 +010026279commit 5583cbf736474ef754e128a54fb78632f57b48fd
26280Author: Marian Balakowicz <m8@semihalf.com>
26281Date: Thu Feb 21 17:27:49 2008 +0100
26282
26283 [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
26284
26285 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26286
26287commit 2242f5369822bc7780db95c47985bb408ea9157b
26288Author: Marian Balakowicz <m8@semihalf.com>
26289Date: Thu Feb 21 17:27:41 2008 +0100
26290
26291 [new uImage] Rename and move print_image_hdr() routine
26292
26293 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26294
26295commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
26296Author: Marian Balakowicz <m8@semihalf.com>
26297Date: Thu Feb 21 17:20:20 2008 +0100
26298
26299 [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
26300
26301 Introducing routines for parsing new uImage format bootm arguments:
26302 [<addr>]#<conf> - configuration specification
26303 [<addr>]:<subimg> - subimage specification
26304
26305 New format images can contain multiple subimages of the same type. For example
26306 a single new format image file can contain three kernels, two ramdisks and a
26307 couple of FDT blobs. Subimage and configuration specifications are extensions
26308 to bootm (and other image-related commands) arguments' syntax that allow to
26309 specify which particular subimage should be operated on.
26310
26311 Subimage specification is used to denote a particular subimage. Configurations
26312 are a bit more complex -- they are used to define a particualr booting setup,
26313 for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
26314 etc.
26315
26316 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26317
26318commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
26319Author: Marian Balakowicz <m8@semihalf.com>
26320Date: Thu Feb 21 17:20:19 2008 +0100
26321
26322 [new uImage] Add gen_get_image() routine
26323
26324 This routine assures that image (whether legacy or FIT) is not
26325 in a special dataflash storage.
26326
26327 If image address is a dataflash address image is moved to system RAM.
26328
26329 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26330
26331commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
26332Author: Marian Balakowicz <m8@semihalf.com>
26333Date: Thu Feb 21 17:20:18 2008 +0100
26334
26335 [new uImage] Pull in libfdt if CONFIG_FIT is enabled
26336
26337 New uImage format (Flattened Image Tree) requires libfdt
26338 functionality, print out error message if CONFIG_OF_LIBFDT
26339 is not defined.
26340
26341 New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
26342 This commit turns it on by default.
26343
26344 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26345
Wolfgang Denkb29661f2008-02-24 15:21:36 +010026346commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
26347Author: Michael Schwingen <michael@schwingen.org>
26348Date: Mon Feb 18 23:16:35 2008 +0100
26349
26350 CFI: Do not use uninitialized cmd_reset
26351
26352 Do not use uninitialized cmd_reset; issue both AMD and Intel reset
26353 commands instead
26354
26355 From a short test, it looks like AMD-style flash roms treat *any* unknown
26356 command write as a reset, at least when in CFI Query mode, so issuing the
26357 Intel reset command to AMD-style flashs seems safe (from the small sample I
26358 have), plus the 3-cycle magic sequence should kick the state machine into
26359 the right state even without a reset command. Since the AMD-style flashs
26360 require the unlock sequence for real operation, I chose to try the AMD reset
26361 command first, so that Intel flashs do no see an invalid command prior to
26362 the CFI query.
26363
26364 I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
26365 plus Intel StrataFlash.
26366
26367 Signed-off-by: Michael Schwingen <michael@schwingen.org>
26368 Signed-off-by: Stefan Roese <sr@denx.de>
26369
26370commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
26371Author: Rafal Jaworowski <raj@semihalf.com>
26372Date: Thu Feb 21 11:56:44 2008 +0100
26373
26374 API: Add (c) and licensing notice to the public API header.
26375
26376 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
26377
26378commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
26379Author: Yuri Tikhonov <yur@emcraft.com>
26380Date: Thu Feb 21 11:06:07 2008 +0100
26381
26382 Fix CPU POST test failure
26383
26384 The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
26385 ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
26386 by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
26387 This patch just saves the CR value before running the test code, so allowing
26388 it to do anything it wants with CR.
26389
26390 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26391 Acked-by: Yuri Tikhonov <yur@emcraft.com>
26392 --
26393
26394commit d5908b093955415f3d340706378b991f911af671
26395Author: Jon Loeliger <jdl@freescale.com>
26396Date: Wed Feb 20 15:26:51 2008 -0600
26397
26398 8610HPCD: Document the flashbank selection switches.
26399
26400 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26401
26402commit a551cee99ad1d1da20fd23ad265de47448852f56
26403Author: Jon Loeliger <jdl@freescale.com>
26404Date: Wed Feb 20 14:22:26 2008 -0600
26405
26406 86xx: Fix GUR PCI config registers properly.
26407
26408 Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
26409 I tried to "8610HPCD: Fix typos in two PCI setup registers", I
26410 botched it due to not realizing that 8610 and 8641 had different
26411 Global Utility Register defintions, one of which was like 85xx,
26412 and the other wasn't. Correct this problem by introducing two
26413 symbols, one for each 86xx SoC, but neither of which is named
26414 anything like 85xx.
26415
26416 My bad. Lovely Wednesday with git bisect. You know.
26417
26418 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26419
26420commit cb06eb961bdffc8728b38c242473d802e83ab2b4
26421Author: Jon Loeliger <jdl@freescale.com>
26422Date: Wed Feb 20 12:24:11 2008 -0600
26423
26424 8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
26425
26426 Without an actual supported video card hooked up, enabling
26427 the CONFIG_VIDEO by default just makes it look broken by
26428 routing all console output to the video card. Don't.
26429
26430 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26431
26432commit 4d264eff4312f230776b913edade7ceb75f1b1e0
26433Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
26434Date: Wed Jan 30 15:08:15 2008 -0600
26435
26436 ColdFire: Fix missing code flash size for M5485EVB
26437
26438 Signed-off-by: James Mahan <kmahan@freescale.com>
26439 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
26440
26441commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
26442Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
26443Date: Wed Jan 30 15:04:42 2008 -0600
26444
26445 ColdFire: Fix 5282 and 5271 interrupt mask bit
26446
26447 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
26448
26449commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
26450Author: Jon Loeliger <jdl@freescale.com>
26451Date: Tue Feb 19 12:31:08 2008 -0600
26452
26453 8610HPCD: Fix typos in two PCI setup registers.
26454
26455 The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
26456 were erroneously present as 85xx names and values, leftover from
26457 the clone wars. Fix this by removing the 85xx cruft from the
26458 86xx codebase.
26459
26460 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26461
26462commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
26463Author: Jon Loeliger <jdl@freescale.com>
26464Date: Mon Feb 18 14:01:56 2008 -0600
26465
26466 86xx: Convert sbc8641d to use libfdt.
26467
26468 This is the proper fix for a missing closing brace in the function
Wolfgang Denk01db2322008-06-28 23:16:01 +020026469 ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
Wolfgang Denkb29661f2008-02-24 15:21:36 +010026470 The ft_cpu_setup() function in mpc8641hpcn.c should have been
26471 removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
26472 but was missed. Only, the sbc8641d was nominally still using it.
26473 It all got ripped out, and the funcality that was in ft_board_setup()
26474 was refactored to remove the CPU portions into the new file
26475 cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now.
26476
26477 Based loosely on an original patch from joe.hamman@embeddedspecialties.com
26478
26479 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26480
26481commit 04efddc87c50c84f85dad5c331c634a6ce830a83
26482Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26483Date: Sun Feb 17 23:35:31 2008 +0100
26484
26485 mpc86xx: Fix unused variable 'config' and 'immap'
26486
26487 and remove useless CONFIG_DDR_INTERLEAVE
26488
26489 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26490
26491commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
26492Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26493Date: Sun Feb 17 23:03:36 2008 +0100
26494
26495 mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
26496
26497 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26498
26499commit b6f29c84c208a091f95a10cbc9852d729659ba20
26500Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26501Date: Sun Feb 17 14:15:31 2008 +0100
26502
26503 s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
26504
26505 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26506
26507commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
26508Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26509Date: Sun Feb 17 14:15:32 2008 +0100
26510
26511 pxa: fix assignment from incompatible pointer type
26512
26513 fix mmc_bread function prototype
26514
26515 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26516
26517commit 64d792063fff90b8118179b092feee09fe5cae13
26518Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26519Date: Sun Feb 17 14:15:30 2008 +0100
26520
26521 at91cap9adk: fix implicit declaration of function 'eth_init'
26522
26523 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26524
26525commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
26526Author: Wolfgang Denk <wd@denx.de>
26527Date: Sun Feb 17 15:43:44 2008 +0100
26528
26529 Remove files added by mistake, update CHANGELOG.
26530
26531 Signed-off-by: Wolfgang Denk <wd@denx.de>
26532
Wolfgang Denk375c4352008-02-17 15:43:44 +010026533commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
26534Author: Mike Nuss <mike@terascala.com>
26535Date: Wed Feb 6 11:10:11 2008 -0500
26536
26537 PPC440EPx: Optionally enable second I2C bus
26538
26539 The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
26540 PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
26541 code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
26542
26543 Signed-off-by: Mike Nuss <mike@terascala.com>
26544 Cc: Stefan Roese <sr@denx.de>
26545
26546commit ef5b4f221c22d05770878513951745f236b5b43f
26547Author: Niklaus Giger <niklaus.giger@netstal.com>
26548Date: Tue Feb 5 10:26:44 2008 +0100
26549
26550 ppc4xx: HCU4/5. Cleanup configs
26551
26552 - hcu4.h: Removed define of CONFIG_PPC405GPr
26553 - Corrected phy addresses
26554 - Fix boot variables
26555 - Respect line length of 80 chars
26556
26557 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26558
26559commit 74973126d1be63ac75bdc192f46234dca3a7c421
26560Author: Niklaus Giger <niklaus.giger@netstal.com>
26561Date: Tue Feb 5 11:31:28 2008 +0100
26562
26563 ppc4xx: HCU4/5. Cleanups
26564
26565 - Fix some coding style violations.
26566 - Use in/out_u16/32 where appropriate.
26567 - Use register names from ppc405.h.
26568 - Fix trace useage for Lauterbach.
26569 - Remove obsolete generation HCU2.
26570 - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
26571
26572 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26573
26574commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
26575Author: Niklaus Giger <niklaus.giger@netstal.com>
26576Date: Tue Feb 5 10:26:41 2008 +0100
26577
26578 ppc4xx: PPC405GPr fix missing register definitions
26579
26580 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26581
26582commit 214398d9cb22268d9d4f7563359edca0f78297a2
26583Author: Larry Johnson <lrj@acm.org>
26584Date: Fri Jan 18 21:49:05 2008 -0500
26585
26586 ppc4xx: Beautify configuration files for Sequoia and Korat boards
26587
26588 Signed-off-by: Larry Johnson <lrj@acm.org>
26589
26590commit 30c6a241e88499f536e86d325759e29ba00ff67f
26591Author: Anatolij Gustschin <agust@denx.de>
26592Date: Fri Feb 15 20:09:01 2008 +0100
26593
26594 Wipe out assembler warnings while compiling x86 biosemu
26595
26596 This patch tries to get rid of some assembler warnings about
26597 changed .got2 section type while compiling x86 bios emulator
26598 code.
26599
26600 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26601
26602commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
26603Author: Wolfgang Denk <wd@denx.de>
26604Date: Fri Feb 15 00:57:09 2008 +0100
26605
26606 Prepare v1.3.2-rc1 release candidate
26607
Wolfgang Denk67a43892008-02-15 00:57:09 +010026608commit f33e9653c9c09868995d788511d573771c209fe5
26609Author: Anatolij Gustschin <agust@denx.de>
26610Date: Fri Feb 15 00:13:20 2008 +0100
26611
26612 Fix compile warning on lib_ppc/board.c
26613
26614 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26615
26616commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
26617Author: Anatolij Gustschin <agust@denx.de>
26618Date: Thu Feb 14 18:22:04 2008 +0100
26619
26620 Add Radeon Mobility 9200 pci device id to the radeon driver
26621
26622 This patch extends PCI device id table of the
26623 radeon driver so that the driver will also support
26624 Radeon Mobility 9200 (M9+) based boards.
26625
26626 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26627
26628commit 1b8607e1f7143548c6062c28371449ec69588c00
26629Author: Anatolij Gustschin <agust@denx.de>
26630Date: Thu Feb 14 18:19:50 2008 +0100
26631
26632 Extend ATI Radeon driver to support more video modes
26633
26634 Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
26635 800x600, 640x480 at 24, 16 and 8 bpp.
26636
26637 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26638
26639commit 4124382de029d361162a4b8cecc773eb8f26e2a8
26640Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26641Date: Sun Feb 10 17:05:20 2008 +0100
26642
26643 xsengine: fix typo and few coding style
26644
26645 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26646
26647commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
26648Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
26649Date: Fri Feb 8 21:25:58 2008 +0100
26650
26651 Fix wrong memory limit calculation in memory-test
26652
26653 If the length of the memory address range passed to the "mtest" command is
26654 not of the form 2^x - 1, not all address lines are tested. This bug is
26655 inherited from the original software at
26656 http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
26657 this.
26658
26659 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
26660
26661commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
26662Author: Wolfgang Denk <wd@denx.de>
26663Date: Fri Feb 15 00:11:39 2008 +0100
26664
26665 Coding STyle cleanup.
26666
26667 Signed-off-by: Wolfgang Denk <wd@denx.de>
26668
26669commit f6921e3dc331293c873ec4d109fd5517a42a90b3
26670Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26671Date: Tue Feb 5 13:30:43 2008 +0900
26672
26673 sh: Fix register address of SH7722
26674
26675 The address of SH7722 is wrong by old document.
26676 This patch fixes this problem.
26677
26678 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26679
26680commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
26681Author: Mike Frysinger <vapier@gentoo.org>
26682Date: Mon Feb 4 17:44:23 2008 -0500
26683
26684 only update version header as needed
26685
26686 Constantly rebuilding the version header will force useless relinking, so we
26687 simply need to compare the new header with the existing one before updating
26688 it.
26689
26690 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26691
26692commit 208447f8e953f347425eb92c8e28d59e6d911363
26693Author: Mike Frysinger <vapier@gentoo.org>
26694Date: Mon Jan 28 05:56:19 2008 -0500
26695
26696 Do not specify a CROSS_COMPILE default when executing size
26697
26698 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26699
26700commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
26701Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
26702Date: Wed Feb 13 11:19:19 2008 +0100
26703
26704 Fix return value of mtest when CFG_ALT_MEMTEST set
26705
26706 Fix a missing return statement from a non-void function.
26707
26708 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
26709
26710commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
26711Author: Timur Tabi <timur@freescale.com>
26712Date: Wed Jan 9 14:35:26 2008 -0600
26713
26714 85xx, 86xx: Determine I2C clock frequencies and store in global_data
26715
26716 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
26717
26718 Update the get_clocks() function in 85xx and 86xx to determine the I2C
26719 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
26720
26721 Signed-off-by: Timur Tabi <timur@freescale.com>
26722
26723commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
26724Author: Wolfgang Denk <wd@denx.de>
26725Date: Thu Feb 14 23:18:01 2008 +0100
26726
26727 TQM834x: clean up configuration
26728
26729 Get board name consistent with Linux and elsewhere;
26730 get rid of local network definitions etc.
26731
26732 Signed-off-by: Wolfgang Denk <wd@denx.de>
26733
26734commit 38cc09c55b1d7f233789052c6fc462e5377669a9
26735Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26736Date: Thu Feb 14 08:02:12 2008 +0100
26737
26738 TFTP: fix search of ':' in BootFile
26739
26740 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26741
26742commit 0bc9efada170096c6b273f19165e32936d330d80
26743Author: Wolfgang Denk <wd@denx.de>
26744Date: Thu Feb 14 22:46:55 2008 +0100
26745
26746 Coding style cleanup; update CHANGELOG.
26747
26748 Signed-off-by: Wolfgang Denk <wd@denx.de>
26749
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010026750commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
26751Author: Wolfgang Denk <wd@denx.de>
26752Date: Thu Feb 14 22:43:22 2008 +0100
26753
26754 PPC: Use r2 instead of r29 as global data pointer
26755
26756 R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
26757 will refuse to use load/store multiple insns; instead, it issues a
26758 list of simple load/store instructions upon function entry and exit,
26759 resulting in bigger code size, which in turn makes the build for a
26760 few boards fail.
26761
26762 Use r2 instead.
26763
26764 Signed-off-by: Wolfgang Denk <wd@denx.de>
26765
26766commit 3c234efa693bc59906c2be55c7918ecbb55392ea
26767Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
26768Date: Wed Jan 30 09:08:49 2008 +0100
26769
26770 ARM: make the machid configurable via the environment
26771
26772 If the variable "machid" exists, let do_bootm_linux use that instead
26773 of bd->bi_arch_number.
26774
26775 Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
26776
26777commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
26778Author: Vlad Lungu <vlad@comsys.ro>
26779Date: Wed Jan 23 16:34:46 2008 +0200
26780
26781 Use #ifdef CONFIG_FSLDMAFEC
26782
26783 MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
26784 fails
26785
26786 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
26787
26788commit 26c7bab81e08dc7bd696c48f753428a829629bd8
26789Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26790Date: Sat Jan 19 10:25:59 2008 +0900
26791
26792 common/miiphyutil.c: Cleanup MII_DEBUG and debug()
26793
26794 Current MII_DEBUG is confusing in two ways. One is useless define-then-
26795 undef at the top of the file. The other is there is only one debug() in
26796 this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
26797 While there are many useful printf()/puts() debug codes, but they are for
26798 DEBUG, not for MII_DEBUG.
26799
26800 This patch tries to put them all together into MII_DEBUG and debug().
26801
26802 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26803
26804commit 751b9b5189f3274b03c809172631316d6b002c82
26805Author: Kyungmin Park <kmpark@infradead.org>
26806Date: Thu Jan 17 16:43:25 2008 +0900
26807
26808 OneNAND Initial Program Loader (IPL) support
26809
26810 This patch enables the OneNAND boot within U-Boot.
26811 Before this work, we used another OneNAND IPL called X-Loader based
26812 on open source. With this work, we can build the oneboot.bin image
26813 without other program.
26814
26815 The build sequence is simple.
26816 First, it compiles the u-boot.bin
26817 Second, it compiles OneNAND IPL
26818 Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
26819 The mechanism is similar with NAND boot except it boots from itself.
26820
26821 Another thing is that you can only use the OneNAND IPL only to work
26822 other bootloader such as RedBoot and so on.
26823
26824 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26825
26826commit 21f6f9636f0e978397548751347425fbf8d42bb3
26827Author: Andy Fleming <afleming@freescale.com>
26828Date: Wed Jan 16 13:06:59 2008 -0600
26829
26830 Fix CONFIG_MMC usage in fat code
26831
26832 A #if statement in fat.c depended on CONFIG_MMC, instead of
26833 defined(CONFIG_MMC). This meant CONFIG_MMC needed to be defined
26834 as "1" rather than just defined. Now it's better.
26835
26836 Signed-off-by: Andy Fleming <afleming@freescale.com>
26837
26838commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
26839Author: Rafal Jaworowski <raj@semihalf.com>
26840Date: Tue Jan 15 12:52:31 2008 +0100
26841
26842 ppc: Refactor cache routines, so there is only one common set.
26843
26844 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
26845
Wolfgang Denk67a43892008-02-15 00:57:09 +010026846commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
26847Author: Jon Loeliger <jdl@jdl.com>
26848Date: Wed Jan 23 15:55:02 2008 -0600
26849
26850 86xx: Fix compilation warning in sys_eprom.c
26851
26852 sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
26853
26854 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26855
Wolfgang Denk375c4352008-02-17 15:43:44 +010026856commit 65230107025733e89e28fd5e5cfd916d4953c28a
26857Author: Haavard Skinnemoen <hskinnemoen at>
26858Date: Fri Feb 22 11:40:50 2008 +0000
26859
26860 Move AT91RM9200DK board support under board/atmel
26861
26862 We already have a vendor subdir for Atmel, so we should use it.
26863
Wolfgang Denk01db2322008-06-28 23:16:01 +020026864 Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
Wolfgang Denk375c4352008-02-17 15:43:44 +010026865
26866commit 6d0943a6be99977d6d853d51749e9963d68eb192
26867Author: Andreas Engel <andreas.engel@ericsson.com>
26868Date: Mon Jan 14 09:06:52 2008 +0000
26869
26870 ARM: cleanup duplicated exception handlingcode
26871
26872 Move duplicated exception handling code into lib_arm.
26873
26874 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
26875
26876commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
26877Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
26878Date: Fri Feb 1 10:09:03 2008 +0000
26879
26880 Support for Artila M-501 starter kit
26881
26882 Kimmo Leppala / Sysart and
26883 Timo Tuunainen / Sysart
26884
26885commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
26886Author: Stelian Pop <stelian@popies.net>
26887Date: Mon Feb 11 10:50:19 2008 +0000
26888
26889 AT91CAP9 support
26890
26891 ---------------------------------
26892
26893 read_dataflash() takes a signed char pointer as a parameter. Silence a
26894 few warnings dues to incorrect parameter types in env_dataflash.c.
26895
26896 Signed-off-by: Stelian Pop <stelian@popies.net>
26897
26898commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
26899Author: Stelian Pop <stelian@popies.net>
26900Date: Thu Feb 7 09:42:57 2008 +0000
26901
26902 AT91CAP9 support : move board files to Atmel vendor directory.
26903
26904 AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
26905
26906 Signed-off-by: Stelian Pop <stelian@popies.net>
26907
26908commit 7263ef191b87da94768f762c7093bedeb70db98f
26909Author: Stelian Pop <stelian at>
26910Date: Thu Jan 3 21:15:56 2008 +0000
26911
26912 AT91CAP9 support : MACB changes
26913
Wolfgang Denk01db2322008-06-28 23:16:01 +020026914 Signed-off-by: Stelian Pop <stelian <at> popies.net>
26915 Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
Wolfgang Denk375c4352008-02-17 15:43:44 +010026916
26917commit 6afcabf11d7321850f4feaadfee841488ace54c5
26918Author: Stelian Pop <stelian@popies.net>
26919Date: Thu Feb 7 16:37:54 2008 +0000
26920
26921 AT91CAP9 support : board/ files
26922
26923 Signed-off-by: Stelian Pop <stelian@popies.net>
26924
26925commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
26926Author: Stelian Pop <stelian at>
26927Date: Wed Jan 30 21:15:54 2008 +0000
26928
26929 AT91CAP9 support : cpu/ files
26930
Wolfgang Denk01db2322008-06-28 23:16:01 +020026931 Signed-off-by: Stelian Pop <stelian <at> popies.net>
Wolfgang Denk375c4352008-02-17 15:43:44 +010026932
26933commit fa506a926cec348805143576c941f8e61b333cc0
26934Author: Stelian Pop <stelian@popies.net>
26935Date: Thu Jan 31 21:15:53 2008 +0000
26936
26937 AT91CAP9 support : include/ files
26938
26939 Signed-off-by: Stelian Pop <stelian@popies.net>
26940
26941commit 20b197c6f2799af399a68f96a1aff543a75621b8
26942Author: Stelian Pop <stelian@popies.net>
26943Date: Sun Jan 20 19:49:21 2008 +0000
26944
26945 AT91CAP9 support : build integration
26946
26947 Signed-off-by: Stelian Pop <stelian@popies.net>
26948
26949commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
26950Author: Stelian Pop <stelian@popies.net>
26951Date: Sun Jan 20 21:07:00 2008 +0000
26952
26953 Improve DataFlash CS definition.
26954
26955 Use a structure instead of the error prone unnamed array to
26956 define the possible dataflash banks.
26957
26958 Signed-off-by: Stelian Pop <stelian@popies.net>
26959
26960commit a6cdd21b56014208706238712a853a9e9a0a2290
26961Author: Stelian Pop <stelian@popies.net>
26962Date: Sat Jan 19 21:09:35 2008 +0000
26963
26964 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
26965
26966 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
26967
26968 cpu/arm926ejs/start.o: In function `cpu_init_crit':
26969 .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
26970
26971 Signed-off-by: Stelian Pop <stelian@popies.net>
26972
26973commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
26974Author: Peter Pearse <peter.pearse@arm.com>
26975Date: Fri Feb 1 16:50:24 2008 +0000
26976
26977 Fix timer overflow in DaVinci
26978 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
26979
26980commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
26981Author: Peter Pearse <peter.pearse@arm.com>
26982Date: Fri Feb 1 16:49:08 2008 +0000
26983
26984 Update board NetStar
26985 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26986
Wolfgang Denk67a43892008-02-15 00:57:09 +010026987commit b7f6193e76651e1fd606e46eb11915b53cb6618b
26988Author: Niklaus Giger <niklaus.giger@netstal.com>
26989Date: Tue Feb 5 10:26:42 2008 +0100
26990
26991 ppc4xx: HCU4/5. Fix make O=../xx
26992
26993 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26994
26995commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
26996Author: Larry Johnson <lrj@acm.org>
26997Date: Tue Jan 22 08:51:59 2008 -0500
26998
26999 ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
27000
27001 Signed-off-by: Larry Johnson <lrj@acm.org>
27002
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010027003commit fe891ecf4d187e9d11dde869ed4623af52b54451
27004Author: Hiroshi Ito <ito@mlb.co.jp>
27005Date: Thu Jan 31 18:35:04 2008 +0900
27006
27007 NFS Timeout with large files.
27008
27009 Retry to send NFS packet before reaching timeout.
27010
27011 Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
27012
27013commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
27014Author: Johannes Stezenbach <js@sig21.net>
27015Date: Tue Jan 29 00:11:25 2008 +0100
27016
27017 Add dependencies to avoid race conditions with parallel make.
27018
27019 Signed-off-by: Johannes Stezenbach <js@sig21.net>
27020
27021commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
27022Author: Mike Frysinger <vapier@gentoo.org>
27023Date: Mon Jan 28 05:46:01 2008 -0500
27024
27025 Mark board_init_[fr] as noreturn
27026
27027 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27028
27029commit 161b2af4d7b48fd602ce333c355a4df0337892bb
27030Author: Mike Frysinger <vapier@gentoo.org>
27031Date: Mon Jan 28 05:28:50 2008 -0500
27032
27033 Only use TEXT_BASE if defined by the board
27034
27035 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27036
27037commit 1b769881750030f10743808b9d6013e11f559350
27038Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27039Date: Fri Jan 25 07:54:47 2008 +0100
27040
27041 Fix remaining CONFIG_COMMANDS
27042
27043 update comments
27044 Fix coding style
27045
27046 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27047
27048commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
27049Author: Niklaus Giger <niklaus.giger@netstal.com>
27050Date: Mon Jan 21 16:46:00 2008 +0100
27051
27052 Add *~ to .gitignore
27053
27054 One should never add a backup file ending in with ~ to the git repository.
27055
27056 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
27057
27058commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
27059Author: Kumar Gala <galak@kernel.crashing.org>
27060Date: Thu Jan 17 00:02:10 2008 -0600
27061
27062 Remove duplicate defines for ARRAY_SIZE
27063
27064 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27065
27066commit c77ce474b1c57b13e9d36d9830f147966c143694
27067Author: Stelian Pop <stelian@popies.net>
27068Date: Mon Jan 14 22:08:14 2008 +0100
27069
27070 Fix incorrect address test in AT91F_DataflashSelect().
27071
27072 Signed-off-by: Stelian Pop <stelian@popies.net>
27073
27074commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
27075Author: Kumar Gala <galak@kernel.crashing.org>
27076Date: Wed Feb 13 15:09:58 2008 -0600
27077
27078 Fix building of fdt_support.c if DEBUG set
27079
27080 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27081
Wolfgang Denk67a43892008-02-15 00:57:09 +010027082commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
27083Author: Jon Loeliger <jdl@freescale.com>
27084Date: Tue Feb 12 14:53:28 2008 -0600
27085
27086 Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
27087
27088 These replace direct structure references for IMMR sections.
27089
27090 Signed-off-by: Jon Loeliger <jdl@freescale.com>
27091
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010027092commit c62776be8dca4097ca03d4f9415f08d4887b45d0
27093Author: Wolfgang Denk <wd@denx.de>
27094Date: Tue Feb 12 00:45:06 2008 +0100
27095
27096 Get rid of "#undef DEBUG" from board config files.
27097
27098 Signed-off-by: Wolfgang Denk <wd@denx.de>
27099
27100commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
27101Author: Timur Tabi <timur@freescale.com>
27102Date: Tue Jan 15 17:09:41 2008 -0600
27103
27104 Remove #undef DEBUG from MPC83xx board header files
27105
27106 Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
27107 The inclusion of this line makes it impossible to enable debug code in
27108 other source files, because "#define DEBUG" typically needs to be defined
27109 before any header files are included.
27110
27111 Signed-off-by: Timur Tabi <timur@freescale.com>
27112
27113commit 69018ce2e086e9caf35b914d675b82bc4888f077
27114Author: Kumar Gala <galak@kernel.crashing.org>
27115Date: Thu Jan 17 08:25:45 2008 -0600
27116
27117 QE: Move FDT support into a common file
27118
27119 Move the flat device tree setup for QE related devices into
27120 a common file shared between 83xx & 85xx platforms that have QE's.
27121
27122 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27123
Wolfgang Denk438a4c12008-03-26 11:48:46 +010027124commit 5cf746c303710329f8040d9c62ee354313e3e91f
27125Author: Marian Balakowicz <m8@semihalf.com>
27126Date: Thu Jan 31 13:59:09 2008 +0100
27127
27128 [new uImage] Move kernel data find code to get_kernel() routine
27129
27130 Verification of the kernel image (in old format) and finding kernel
27131 data is moved to a dedicated routine. The routine will also hold
27132 support for, to be added, new image format.
27133
27134 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27135
27136commit 7b325454fd231d4273de3fe373850f777fb086bf
27137Author: Marian Balakowicz <m8@semihalf.com>
27138Date: Thu Jan 31 13:58:20 2008 +0100
27139
27140 [new uImage] Cleanup FDT handling in PPC do_boot_linux()
27141
27142 Move FDT blob finding and relocation to a dedicated
27143 get_fdt() routine. It increases code readability and
27144 will make adding support for new uImage format easier.
27145
27146 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27147
27148commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
27149Author: Marian Balakowicz <m8@semihalf.com>
27150Date: Thu Jan 31 13:58:13 2008 +0100
27151
27152 [new uImage] Cleanup do_botm_linux() boot allocations
27153
27154 This patch moves common pre-boot allocation steps shared between PPC
27155 and M68K to a helper routines:
27156
27157 common:
27158 - get_boot_sp_limit()
27159 - get_boot_cmline()
27160 - get_boot_kbd()
27161
27162 platform:
27163 - set_clocks_in_mhz()
27164
27165 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27166
27167commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
27168Author: Marian Balakowicz <m8@semihalf.com>
27169Date: Thu Jan 31 13:57:17 2008 +0100
27170
27171 [new uImage] Move ramdisk loading to a common routine
27172
27173 Ramdisk loading code, including initrd_high variable handling,
27174 was duplicated for PPC and M68K platforms. This patch creates
27175 common helper routine that is being called from both platform
27176 do_bootm_linux() routines.
27177
27178 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27179
27180commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
27181Author: Marian Balakowicz <m8@semihalf.com>
27182Date: Thu Jan 31 13:55:53 2008 +0100
27183
27184 [new uImage] Removed dead ramdisk code on microblaze architectures
27185
27186 Microblaze do_bootm_linux() includes ramdisk processing code but
27187 the ramdisk does not get used anywhere later on.
27188
27189 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27190
27191commit 5ad03eb3854c162684222a718b44c0716ea0db03
27192Author: Marian Balakowicz <m8@semihalf.com>
27193Date: Thu Jan 31 13:55:39 2008 +0100
27194
27195 [new uImage] Factor out common image_get_ramdisk() routine
27196
27197 Architecture specific do_bootm_linux() routines share common
27198 ramdisk image processing code. Move this code to a common
27199 helper routine.
27200
27201 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27202
27203commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
27204Author: Marian Balakowicz <m8@semihalf.com>
27205Date: Thu Jan 31 13:20:08 2008 +0100
27206
27207 [new uImage] Move FDT error printing to common fdt_error() routine
27208
27209 FDT error handling in PPC do_bootm_linux() shares the same message format.
27210 This patch moves error message printing to a helper fdt_error() routine.
27211
27212 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27213 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
27214
27215commit 42b73e8ee00d48004791dea64b8093fb974c57e1
27216Author: Marian Balakowicz <m8@semihalf.com>
27217Date: Thu Jan 31 13:20:07 2008 +0100
27218
27219 [new uImage] Factor out common routines for getting os/arch/type/comp names
27220
27221 Move numeric-id to name translation for image os/arch/type/comp header
27222 fields to a helper routines: image_get_os_name(), image_get_arch_name(),
27223 image_get_type_name(), image_get_comp_name().
27224
27225 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27226
27227commit e99c26694a384221d336f6448c06a57479c0baa4
27228Author: Marian Balakowicz <m8@semihalf.com>
27229Date: Thu Jan 31 13:20:07 2008 +0100
27230
27231 [new uImage] Remove standalone applications handling from boootm
27232
27233 Standalone applications are supposed to be run using the "go" command.
27234 This patch removes standalone images handling from the do_bootm().
27235
27236 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27237
27238commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
27239Author: Marian Balakowicz <m8@semihalf.com>
27240Date: Thu Jan 31 13:20:07 2008 +0100
27241
27242 [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
27243
27244 Support for OF_FLAT_TREE is to be obsoleted in the near future,
27245 remove related code from the bootm routines.
27246
27247 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27248
27249commit 82850f3d32a2661868ec6876bed7a22c55cef718
27250Author: Marian Balakowicz <m8@semihalf.com>
27251Date: Thu Jan 31 13:20:06 2008 +0100
27252
27253 [new uImage] Use image API in SH do_bootm_linux() routine
27254
27255 Introduce image handling API for lately added Hitachi SH architecture.
27256
27257 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27258
27259commit 4a995edec1ac163d9326d143ffe2b47e7543407f
27260Author: Marian Balakowicz <m8@semihalf.com>
27261Date: Thu Jan 31 13:20:06 2008 +0100
27262
27263 [new uImage] Rename architecture specific bootm code files
27264
27265 Implementation of the do_bootm_linux() and other bootm helper routines is
27266 architecture specific code. As such it resides in lib_<arch> directories
27267 in files named <arch>_linux.c
27268
27269 This patch renames those files to a more clear and accurate
27270 lib_<arch>/bootm.c form.
27271
27272 List of the renamed files:
27273 lib_arm/armlinux.c -> lib_arm/bootm.c
27274 lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
27275 lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
27276 lib_i386/i386_linux.c -> lib_i386/bootm.c
27277 lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
27278 lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
27279 lib_mips/mips_linux.c -> lib_mips/bootm.c
27280 lib_nios/nios_linux.c -> lib_nios/bootm.c
27281 lib_nios2/nios_linux.c -> lib_nios2/bootm.c
27282 lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
27283 lib_sh/sh_linux.c -> lib_sh/bootm.c
27284
27285 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27286
27287commit 7582438c285bf0cef82909d0f232de64ec567a8a
27288Author: Marian Balakowicz <m8@semihalf.com>
27289Date: Thu Jan 31 13:20:06 2008 +0100
27290
27291 [new uImage] Return error on image move/uncompress overwrites
27292
27293 Check for overwrites during image move/uncompress, return with error
27294 when the original image gets corrupted. Report clear message to the user
27295 and prevent further troubles when pointer to the corrupted images is passed
27296 to do_bootm_linux routine.
27297
27298 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27299
27300commit f13e7b2e993c61fed1f607962501e051940d6e80
27301Author: Marian Balakowicz <m8@semihalf.com>
27302Date: Tue Jan 8 18:12:17 2008 +0100
27303
27304 [new uImage] Cleanup image header pointer use in bootm code
27305
27306 - use single image header pointer instead of a set of auxilliary variables.
27307 - add multi component image helper routines: get component size/data address
27308
27309 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27310
27311commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
27312Author: Marian Balakowicz <m8@semihalf.com>
27313Date: Tue Jan 8 18:17:10 2008 +0100
27314
27315 [new uImage] Cleanup cmd_bootm.c
27316
27317 - sort and cleanup headers, declarations, etc.
27318 - group related routines
27319 - cleanup indentation, white spaces
27320
27321 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27322
27323commit af13cdbc01eaf88880978bfb4f603e012818ba24
27324Author: Marian Balakowicz <m8@semihalf.com>
27325Date: Tue Jan 8 18:11:45 2008 +0100
27326
27327 [new uImage] Add memmove_wd() common routine
27328
27329 Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
27330
27331 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27332
27333commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
27334Author: Marian Balakowicz <m8@semihalf.com>
27335Date: Tue Jan 8 18:11:44 2008 +0100
27336
27337 [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
27338
27339 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27340
27341commit 15158971f49255ccef54f0979a942cfd3de2ae52
27342Author: Marian Balakowicz <m8@semihalf.com>
27343Date: Tue Jan 8 18:11:44 2008 +0100
27344
27345 [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
27346
27347 Use image header copy instead of a (possibly corrupted) pointer to
27348 a initial image location.
27349
27350 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27351
27352commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
27353Author: Marian Balakowicz <m8@semihalf.com>
27354Date: Tue Jan 8 18:11:44 2008 +0100
27355
27356 [new uImage] Remove I386 uImage fake_header() routine
27357
27358 I386 targets are not using a uImage format, instead fake header
27359 is added to ram image before it is further processed by bootm.
27360
27361 Remove this fixup and force proper uImage use for I386.
27362
27363 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27364
27365commit 559316faf7eae0614c91d77f509b57d6c4c091ba
27366Author: Marian Balakowicz <m8@semihalf.com>
27367Date: Tue Jan 8 18:11:44 2008 +0100
27368
27369 [new uImage] Move CHUNKSZ definition to image.h
27370
27371 CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
27372 move this definition to a common header.
27373
27374 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27375
27376commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
27377Author: Marian Balakowicz <m8@semihalf.com>
27378Date: Tue Jan 8 18:11:43 2008 +0100
27379
27380 [new uImage] Move gunzip() common code to common/gunzip.c
27381
27382 Move gunzip(), zalloc() and zfree() to a separate file.
27383 Share zalloc() and zfree() with cramfs uncompress routine.
27384
27385 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27386
27387commit d45d5a18b6b36688f2365623f9d550566c664b5b
27388Author: Marian Balakowicz <m8@semihalf.com>
27389Date: Tue Jan 8 18:11:43 2008 +0100
27390
27391 [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
27392
27393 Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
27394 readable in PPC variant of do_bootm_linux() routine.
27395
27396 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27397
27398commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
27399Author: Marian Balakowicz <m8@semihalf.com>
27400Date: Tue Jan 8 18:11:43 2008 +0100
27401
27402 [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
27403
27404 PPC implementation of do_bootm_linux() routine is moved to
27405 a dedicated file lib_ppc/ppc_linux.c
27406
27407 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27408
27409commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
27410Author: Marian Balakowicz <m8@semihalf.com>
27411Date: Tue Jan 8 18:14:09 2008 +0100
27412
27413 [new uImage] Define a API for image handling operations
27414
27415 - Add inline helper macros for basic header processing
27416 - Move common non inline code common/image.c
27417 - Replace direct header access with the API routines
27418 - Rename IH_CPU_* to IH_ARCH_*
27419
27420 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27421
27422commit ed29bc4e8142b46b626f67524207b36e43d9aad6
27423Author: Marian Balakowicz <m8@semihalf.com>
27424Date: Thu Jan 31 13:19:58 2008 +0100
27425
27426 Add missing cmd_ximg.o to common/Makefile
27427
27428 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27429
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010027430commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
27431Author: Grzegorz Bernacki <gjb@semihalf.com>
27432Date: Mon Jan 28 10:15:02 2008 +0100
27433
27434 ADS5121e: DDR2 init/timing update.
27435
27436 Signed-off-by: John Rigby <jrigby@freescale.com>
27437 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
27438
27439commit ac9152830d7fdebace8a260b7737ef2870c21ca0
27440Author: John Rigby <jrigby@freescale.com>
27441Date: Wed Jan 30 13:36:57 2008 -0700
27442
27443 Device tree updates
27444
27445 Changes to match 5121 device tree going mainline in 2.6.25.
27446
27447 Change OF_SOC from "soc5121" to plain "soc".
27448 Remove unneeded "ref-frequency" fixups.
27449 Remove "address" enetaddr fixup.
27450
27451 Add bus-frequency fixup for old OF_SOC so old
27452 kernels with old device trees will work with new
27453 u-boot with 66MHz IPS clock
27454
27455 Signed-off-by: John Rigby <jrigby@freescale.com>
27456
27457commit de55d18df3ff2ea614624e74793de7c43520e0e7
27458Author: John Rigby <jrigby@freescale.com>
27459Date: Wed Jan 30 13:36:56 2008 -0700
27460
27461 Change IPS freq to 66MHz
27462
27463 Recommended frequency is 66MHz
27464 Change divider from 4 to 3.
27465
27466 Signed-off-by: John Rigby <jrigby@freescale.com>
27467
27468commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
27469Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27470Date: Mon Jan 14 22:38:55 2008 +0100
27471
27472 xsengine: rename board_post_init to board_late_init
27473
27474 missing migration from "Cleanup of some init functions"
27475 in c837dcb1a316745092567bfe4fb266d0941884ff
27476
27477 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27478
27479commit 8dafa87476b0d7170e219c2f5e3842c833a91807
27480Author: Larry Johnson <lrj@acm.org>
27481Date: Sat Jan 12 23:35:33 2008 -0500
27482
27483 Add attribute POST_PREREL to ECC memory POST
27484
27485 Signed-off-by: Larry Johnson <lrj@acm.org>
27486
Wolfgang Denk67a43892008-02-15 00:57:09 +010027487commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
27488Author: Kumar Gala <galak@kernel.crashing.org>
27489Date: Thu Jan 17 08:25:45 2008 -0600
27490
27491 QE: Move FDT support into a common file
27492
27493 Move the flat device tree setup for QE related devices into
27494 a common file shared between 83xx & 85xx platforms that have QE's.
27495
27496 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27497
27498commit d38da537943cd36356b9d3d9d9b60533554b81d8
27499Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27500Date: Wed Jan 23 17:20:14 2008 +0100
27501
27502 AVR32: Make SDRAM refresh rate configurable
27503
27504 The existing code assumes the SDRAM row refresh period should always
27505 be 15.6 us. This is not always true, and indeed on the ATNGW100, the
27506 refresh rate should really be 7.81 us.
27507
27508 Add a refresh_period member to struct sdram_info and initialize it
27509 properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
27510 panic() until the refresh_period member is updated properly.
27511
27512 Big thanks to Gerhard Berghofer for pointing out this issue.
27513
27514 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27515
27516commit 61151cccb660cdb06a07fb283de6089913d7bde0
27517Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27518Date: Thu Apr 19 10:10:11 2007 +0200
27519
27520 ATSTK1000: Fix potential flash programming bug
27521
27522 The (now obsolete) atngw100 flash programming code was having problems
27523 programming the onboard at49bv642 chip. The atstk1000 flash
27524 programming code may have the same bug, so import fix for this problem
27525 from the AVR32 Linux BSP.
27526
27527 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27528
27529commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
27530Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27531Date: Thu Nov 22 17:04:13 2007 +0100
27532
27533 ATSTK1004: Fix comment about default load address
27534
27535 The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
27536 wouldn't have worked anyway since the board can only access 4MB of
27537 SDRAM.
27538
27539 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27540
27541commit 8269ab53608d8db2aa06969c337ab0b0518211e5
27542Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27543Date: Thu Nov 22 17:01:24 2007 +0100
27544
27545 ATSTK1002: Use SDRAM + 4MB as default load address
27546
27547 Many people run into problems when they compile a big kernel and load
27548 the uImage at the default SDRAM + 2MB address as the kernel will
27549 overwrite the uImage as it is being unpacked. Increase the default
27550 load address so that we can load a 4MB kernel image without any
27551 problems.
27552
27553 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27554
27555commit 2bcacc2d841b77f3d2d3910db722003742727e9f
27556Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27557Date: Thu Nov 22 16:51:39 2007 +0100
27558
27559 ATNGW100: Fix default mtest range
27560
27561 Let mtest cover the whole SDRAM except the last megabyte, which is
27562 where u-boot lives.
27563
27564 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27565
27566commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
27567Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27568Date: Tue Jan 22 15:31:56 2008 +0900
27569
27570 sh: Fix register address of SH7722.
27571
27572 The address of SH7722 is wrong by old document.
27573 This patch fixes this problem.
27574
27575 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27576
27577commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
27578Author: Mike Frysinger <vapier@gentoo.org>
27579Date: Mon Feb 4 19:26:57 2008 -0500
27580
27581 new command for displaying strings at specified memory locations
27582
27583 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27584
27585commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
27586Author: Mike Frysinger <vapier@gentoo.org>
27587Date: Mon Feb 4 19:26:57 2008 -0500
27588
27589 rewrite/cleanup Blackfin RTC driver
27590
27591 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27592
27593commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
27594Author: Mike Frysinger <vapier@gentoo.org>
27595Date: Mon Feb 4 19:26:57 2008 -0500
27596
27597 generate u-boot.ldr for Blackfin targets
27598
27599 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27600
27601commit b779f7a59530436040f157f7841db7ab796542df
27602Author: Mike Frysinger <vapier@gentoo.org>
27603Date: Mon Feb 4 19:26:57 2008 -0500
27604
27605 scrub unused symbols
27606
27607 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27608
27609commit cc2977acc3bbbb7850f16645dd1081f95335868d
27610Author: Mike Frysinger <vapier@gentoo.org>
27611Date: Mon Feb 4 19:26:57 2008 -0500
27612
27613 move Blackfin cpu object list to respective cpu directories
27614
27615 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27616
27617commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
27618Author: Mike Frysinger <vapier@gentoo.org>
27619Date: Mon Feb 4 19:26:57 2008 -0500
27620
27621 interface to Blackfin on-chip One-Time-Programmable memory
27622
27623 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27624
27625commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
27626Author: Mike Frysinger <vapier@gentoo.org>
27627Date: Mon Feb 4 19:26:56 2008 -0500
27628
27629 add support for memory commands with Blackfin L1 instruction memory
27630
27631 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27632
27633commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
27634Author: Mike Frysinger <vapier@gentoo.org>
27635Date: Mon Feb 4 19:26:56 2008 -0500
27636
27637 use C code rather than inline assembly
27638
27639 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27640
27641commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
27642Author: Mike Frysinger <vapier@gentoo.org>
27643Date: Mon Feb 4 19:26:56 2008 -0500
27644
27645 add Blackfin-specific reginfo command
27646
27647 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27648
27649commit 0858b835e7ea501ea084d34cef75932f098342bb
27650Author: Mike Frysinger <vapier@gentoo.org>
27651Date: Mon Feb 4 19:26:55 2008 -0500
27652
27653 add support for Blackfin symbol prefixes to examples
27654
27655 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27656
27657commit 8dc48d71a4be753ea9f84956cd33600de35fad04
27658Author: Mike Frysinger <vapier@gentoo.org>
27659Date: Mon Feb 4 19:26:55 2008 -0500
27660
27661 add Blackfin-specific bdinfo command
27662
27663 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27664
27665commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
27666Author: Mike Frysinger <vapier@gentoo.org>
27667Date: Mon Feb 4 19:26:55 2008 -0500
27668
27669 move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
27670
27671 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27672
27673commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
27674Author: Mike Frysinger <vapier@gentoo.org>
27675Date: Mon Feb 4 19:26:55 2008 -0500
27676
27677 unify the Blackfin board targets
27678
27679 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27680
27681commit d4d7730853e5d675f76ec666807da3028c91d592
27682Author: Mike Frysinger <vapier@gentoo.org>
27683Date: Mon Feb 4 19:26:55 2008 -0500
27684
27685 punt Blackfin VDSP headers and import sanitized/auto-generated ones
27686
27687 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27688
27689commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
27690Author: Mike Frysinger <vapier@gentoo.org>
27691Date: Mon Feb 4 19:26:54 2008 -0500
27692
27693 always pull in asm/blackfin.h for Blackfin ports
27694
27695 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27696
27697commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
27698Author: Mike Frysinger <vapier@gentoo.org>
27699Date: Mon Feb 4 19:26:54 2008 -0500
27700
27701 add missing __raw versions of Blackfin read/write io functions
27702
27703 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27704
27705commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
27706Author: Mike Frysinger <vapier@gentoo.org>
27707Date: Mon Feb 4 19:26:54 2008 -0500
27708
27709 add the default Blackfin logo used by Blackfin boards with splash screens
27710
27711 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27712
27713commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
27714Author: Mike Frysinger <vapier@gentoo.org>
27715Date: Mon Feb 4 19:26:54 2008 -0500
27716
27717 add some more Blackfin docs
27718
27719 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27720
27721commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
27722Author: Mike Frysinger <vapier@gentoo.org>
27723Date: Mon Feb 4 19:26:54 2008 -0500
27724
27725 make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
27726
27727 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27728
27729commit 4087bc88cebec75c432a7fe9f6afb545b0919831
27730Author: Mike Frysinger <vapier@gentoo.org>
27731Date: Mon Feb 4 19:26:54 2008 -0500
27732
27733 fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
27734
27735 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27736
27737commit b45264ee85cbd92020640a32e02fb434fd557108
27738Author: Mike Frysinger <vapier@gentoo.org>
27739Date: Mon Feb 4 19:26:53 2008 -0500
27740
27741 add gitignores for Blackfin pieces
27742
27743 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27744
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010027745commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
27746Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27747Date: Fri Jan 18 01:14:03 2008 +0100
27748
27749 TFTP: add host ip addr support
27750
27751 allow to use a different server as set in serverip
27752 add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
27753 if not defined the max length will be at 128
27754
27755 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27756
Wolfgang Denk67a43892008-02-15 00:57:09 +010027757commit e56b4b494cd92def577969f9678395aa22d34c9f
27758Author: Timur Tabi <timur@freescale.com>
27759Date: Wed Jan 9 14:35:26 2008 -0600
27760
27761 85xx,86xx: Determine I2C clock frequencies and store in global_data
27762
27763 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
27764
27765 Update the get_clocks() function in 85xx and 86xx to determine the I2C
27766 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
27767
27768 Signed-off-by: Timur Tabi <timur@freescale.com>
27769
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010027770commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
27771Author: Wolfgang Denk <wd@denx.de>
27772Date: Thu Dec 27 10:56:54 2007 +0100
27773
27774 OMAP5912: fix FIFO handling in UART driver
27775
27776 According to the OMAP5912 Serial Interfaces Reference Guide (see
27777 http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
27778 FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
27779 changed when the baud clock is not running, i. e. when both DLL and
27780 DLH are set to 0.
27781
27782 Thus make sure that DLL and DLH are 0 when writing the FCR.
27783
27784 Signed-off-by: Wolfgang Denk <wd@denx.de>
27785
27786commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
27787Author: Harald Welte <laforge@openmoko.org>
27788Date: Wed Dec 19 15:10:52 2007 +0100
27789
27790 ARM: S3C24x0 SoC NAND controller support
27791
27792 This patch adds NAND support to the S3C24x0 SoC code in u-boot
27793
27794 Signed-off-by: Harald Welte <laforge@openmoko.org>
27795
27796commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
27797Author: Harald Welte <laforge@openmoko.org>
27798Date: Wed Dec 19 14:24:40 2007 +0100
27799
27800 ARM: s3c24xx: Multiple serial port support
27801
27802 This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
27803
27804 Signed-off-by: Harald Welte <laforge@openmoko.org>
27805
27806commit a25f72f1f73a11de68251fb88c89991e202e68fa
27807Author: Harald Welte <laforge@openmoko.org>
27808Date: Wed Dec 19 14:16:57 2007 +0100
27809
27810 ARM: arm920t: Allow use of 'gd' pointer from IRQ
27811
27812 This patch allows us to use the 'gd' pointer (and thus environment
27813 and everything else associated with it) from interrupt context on
27814 arm920t.
27815
27816 Signed-off-by: Harald Welte <laforge@openmoko.org>
27817
27818commit be19bd5cd0f454b63298844a0b5377e029b2caad
27819Author: Harald Welte <laforge@openmoko.org>
27820Date: Wed Dec 19 14:19:38 2007 +0100
27821
27822 ARM: arm920/s3c24xx: IRQ demulitplexer callback
27823
27824 This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
27825 plus a stub implementation of it for the S3C2410.
27826
27827 The purpose is to allow arm920t implementations such as the s3c24x0 to
27828 implement interrupt handlers in u-boot without having to touch core
27829 arm920t code.
27830
27831 Signed-off-by: Harald Welte <laforge@openmoko.org>
27832
27833commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
27834Author: Hebbar <gururajakr@sanyo.co.in>
27835Date: Tue Dec 18 16:03:07 2007 -0800
27836
27837 ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
27838
27839 Add ifdef to bdinfo command to display ethernet information
27840 only if CONFIG_CMD_NET is defined for arm modules.
27841
27842 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
27843
27844commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
27845Author: Hebbar <gururajakr@sanyo.co.in>
27846Date: Tue Dec 18 16:00:54 2007 -0800
27847
27848 ARM: add I2C init function call in lib_arm/board.c
27849
27850 Adds I2C init func call to init sequence for ARM boards. This is
27851 present in ppc,blackfin and other processor init sequence.
27852
27853 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
27854
Wolfgang Denk67a43892008-02-15 00:57:09 +010027855commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
27856Author: Stefan Roese <sr@denx.de>
27857Date: Fri Feb 1 09:38:29 2008 +0100
27858
27859 ppc4xx: Fix ndfc HW ECC byte order
27860
27861 The current ndfc HW ECC implementation swaps the first two ECC bytes.
27862 But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
27863 so this swapping in the HW ECC driver is bogus. This patch fixes this
27864 problem and now really uses the SMC ECC byte order.
27865
27866 Thanks to Sean MacLennan for pointing this out.
27867
27868 Signed-off-by: Stefan Roese <sr@denx.de>
27869
27870commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
27871Author: Stefan Roese <sr@denx.de>
27872Date: Wed Jan 30 15:35:50 2008 +0100
27873
27874 ppc4xx: Fix GPIO configuration for pcs440ep
27875
27876 The SRD0_PFC0 register was not configured correctly to enable the GPIO's
27877 49-63 for GPIO. They have been configured as trace signals. This patch
27878 fixes this by clearing the corresponding bit.
27879
27880 Signed-off-by: Stefan Roese <sr@denx.de>
27881
27882commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
27883Author: Stefan Roese <sr@denx.de>
27884Date: Wed Jan 30 14:48:28 2008 +0100
27885
27886 ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
27887
27888 Signed-off-by: Stefan Roese <sr@denx.de>
27889
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010027890commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
27891Author: Ladislav Michl <ladis@linux-mips.org>
27892Date: Fri Dec 7 00:42:32 2007 +0100
27893
27894 ARM: Board voiceblue update
27895
27896 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
27897
27898commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
27899Author: Ladislav Michl <ladis@linux-mips.org>
27900Date: Thu Dec 6 23:24:57 2007 +0100
27901
27902 ARM: AT91RM9200 based boards config cleanup
27903
27904 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
27905
27906 Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
27907 indentation.
27908
27909commit 481f28b1db5cd21deb55f69399ba240e107af4c7
27910Author: Ladislav Michl <ladis@linux-mips.org>
27911Date: Thu Dec 6 22:59:16 2007 +0100
27912
27913 ARM: Fix at91rm9200dk base address
27914
27915 Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
27916 renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
27917 with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
27918 However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
27919 CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
27920 I'm sending this patch 4th (!) time in hope it produces at least some
27921 reaction.
27922
27923 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
27924
27925 Fix at91rm9200dk base and environment address.
27926
27927commit c95219fae2a7add7daa2f91aedca65b1698465c7
27928Author: stefano babic <sbabic@denx.de>
27929Date: Tue Nov 20 10:40:24 2007 +0100
27930
27931 MMC for PXA 27X (resubmit)
27932
27933 MMC support for X_Scale PXA is broken and does not work.
27934 Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
27935 There were already some patches around the world but none of them was
27936 merged into the official u-boot tree.
27937
27938 This patch makes order fixing this issue. Resubmit after code cleanup.
27939
27940 Applied and tested on PXA 270 (TrizepsIV module).
27941
27942 Signed-off-by: Stefano Babic <sbabic@denx.de>
27943
27944commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
27945Author: stefano babic <sbabic@denx.de>
27946Date: Tue Nov 20 10:37:04 2007 +0100
27947
27948 Fix gcc issues in pxa-regs.h
27949
27950 Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
27951 issues generates wrong code.
27952 (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
27953 This patch fixes the problem and solves the gcc-4 issues as the linux
27954 kernel does.
27955
27956 Signed-off-by: Stefano Babic <sbabic@denx.de>
27957 Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
27958
27959commit 7047b388876e7b905b2ec4edb8010543e3641b85
27960Author: Jens Gehrlein <sew_s@tqs.de>
27961Date: Tue Jan 29 08:45:03 2008 +0100
27962
27963 TQM834x: enable DHCP
27964
27965 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
27966 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27967
27968commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
27969Author: Jens Gehrlein <sew_s@tqs.de>
27970Date: Tue Jan 29 08:45:02 2008 +0100
27971
27972 TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
27973
27974 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
27975 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27976
27977commit 8931ab176025b03cfc320b3fd1eca432a88ed560
27978Author: Ben Warren <biggerbadderben@gmail.com>
27979Date: Sat Jan 26 23:41:19 2008 -0500
27980
27981 Fix conditional compilation of mpx8xxx_spi driver
27982
27983 This driver should only compile if CONFIG_MPC8XXX_SPI is set
27984
27985 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27986 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27987
27988commit 63f732d3d3880feb531f48af247c025bf01462b0
27989Author: Rafal Jaworowski <raj@semihalf.com>
27990Date: Tue Jan 29 17:00:34 2008 +0100
27991
27992 API: Provide dummy halt() in the glue layer.
27993
27994 This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
27995
27996 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
27997
27998commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
27999Author: Rafal Jaworowski <raj@semihalf.com>
28000Date: Tue Jan 29 16:57:38 2008 +0100
28001
28002 API: Convert conditional building to the new scheme.
28003
28004 This fixes a build breakage with CONFIG_API enabled, which appeared after
28005 the recent changes in the U-Boot build system.
28006
28007 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
28008
28009commit 98b742489c09780be6a832eeaa4e5eff824792bb
28010Author: Wolfgang Denk <wd@denx.de>
28011Date: Fri Jan 25 09:56:17 2008 +0100
28012
28013 inka4x0: remove dead code
28014
28015 Signed-off-by: Wolfgang Denk <wd@denx.de>
28016
Wolfgang Denk67a43892008-02-15 00:57:09 +010028017commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
28018Author: Becky Bruce <becky.bruce@freescale.com>
28019Date: Wed Jan 23 16:31:06 2008 -0600
28020
28021 86xx: Add reginfo command
28022
28023 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28024
28025commit ddcebcb638715a6278da93b553d5016f99823816
28026Author: Becky Bruce <becky.bruce@freescale.com>
28027Date: Wed Jan 23 16:31:05 2008 -0600
28028
28029 86xx: Add print_laws function to fsl_law.c
28030
28031 This can be used for debug, and will be used by board code
28032 to help implement reginfo.
28033
28034 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28035
28036commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
28037Author: Becky Bruce <becky.bruce@freescale.com>
28038Date: Wed Jan 23 16:31:04 2008 -0600
28039
28040 86xx: Remove old-style law setup code
28041
28042 This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
28043
28044 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28045
28046commit 713d8186649dae874613d495b0cecaa039a98b30
28047Author: Becky Bruce <becky.bruce@freescale.com>
28048Date: Wed Jan 23 16:31:03 2008 -0600
28049
28050 86xx: Convert sbc8641d to use new law setup code.
28051
28052 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28053
28054commit 031976f6364b93833e989f57e9f1e023e0be8c4c
28055Author: Becky Bruce <becky.bruce@freescale.com>
28056Date: Wed Jan 23 16:31:02 2008 -0600
28057
28058 86xx: Convert mpc8610hpcd to new law setup method.
28059
28060 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28061
28062commit 4933b91f8a49e436681f163df3173beb91cac44a
28063Author: Becky Bruce <becky.bruce@freescale.com>
28064Date: Wed Jan 23 16:31:01 2008 -0600
28065
28066 86xx: Support new law setup method and convert mpc8641
28067
28068 Adds the support code in cpu/mpc86xx for the new law setup code
28069 recently created fsl_law.c, and changes the MPC8641HPCN config
28070 to use this code.
28071
28072 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28073
28074commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
28075Author: Becky Bruce <becky.bruce@freescale.com>
28076Date: Wed Jan 23 16:31:00 2008 -0600
28077
28078 86xx: Rearrange the sequence in start.S
28079
28080 * split the BAT initialization so that only 2 BATs (for the boot page
28081 and stack) are programmed very early on. The rest are initialized later.
28082 * Move other BAT setup, ccsrbar setup, and law setup later in the code
28083 after translation has been enabled.
28084
28085 These changes will facilitate the moving of law and BAT initialization
28086 to C code, and will aid with 36-bit physical addressing support.
28087
28088 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28089
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010028090commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
28091Author: Wolfgang Denk <wd@denx.de>
28092Date: Wed Jan 23 14:41:37 2008 +0100
28093
28094 Coding Style Cleanup; update CHANGELOG
28095
28096 Signed-off-by: Wolfgang Denk <wd@denx.de>
28097
Wolfgang Denk33dac032008-01-23 14:41:37 +010028098commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
28099Author: Wolfgang Denk <wd@denx.de>
28100Date: Wed Jan 23 14:31:17 2008 +0100
28101
28102 Coding Style Cleanup; update CHANGELOG
28103
28104 Signed-off-by: Wolfgang Denk <wd@denx.de>
28105
Wolfgang Denk865f0f92008-01-23 14:31:17 +010028106commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
28107Author: Dave Liu <r63238@freescale.com>
28108Date: Fri Jan 18 10:07:04 2008 +0800
28109
28110 mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
28111
28112 The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
28113 cause the 83xx immap broken, so the DMA and PCI will
28114 be failed.
28115
28116 The patch fix the struct spi8xxx and rm struct spi83xx.
28117
28118 Signed-off-by: Dave Liu <daveliu@freescale.com>
28119 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28120
Wolfgang Denk33dac032008-01-23 14:41:37 +010028121commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
28122Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
28123Date: Sat Apr 14 17:11:49 2007 +0200
28124
28125 AVR32: ATNGW100 board support
28126
28127 Add support for the ATNGW100 Network Gateway reference design,
28128 including flash, ethernet and MMC support.
28129
28130 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
28131
28132commit e006927a0b9a54e8ee7685d8ac748aaad6801862
28133Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
28134Date: Sat Nov 24 18:15:31 2007 +0100
28135
28136 AVR32: Initialize ipaddr, loadaddr and bootfile at startup
28137
28138 I don't know why the relevant layers can't do this by itself, but this
28139 is what ppc does.
28140
28141 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
28142
28143commit 799891ef7b1b3432032ec23466df6b665a797fa4
28144Author: Michael Schwingen <michael@schwingen.org>
28145Date: Fri Jan 18 00:04:28 2008 +0100
28146
28147 Add AcTux board support
28148
28149 Hi,
28150
28151 The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
28152 files that
28153 contain changes for multiple boards, the board-specific files follow as
28154 separate patches.
28155
28156 Signed-off-by: Michael Schwingen <michael@schwingen.org>
28157
28158commit 66a4344a4d910a11125df7768899ad529719855e
28159Author: Michael Schwingen <michael@schwingen.org>
28160Date: Wed Jan 16 19:53:23 2008 +0100
28161
28162 add AcTux-4 board support
28163
28164 Signed-off-by: Michael Schwingen <michael@schwingen.org>
28165
28166commit bc24345e4101a5c996d6b48ce497b09c53025dc6
28167Author: Michael Schwingen <michael@schwingen.org>
28168Date: Wed Jan 16 19:51:55 2008 +0100
28169
28170 add AcTux-3 board support
28171
28172 Signed-off-by: Michael Schwingen <michael@schwingen.org>
28173
28174commit aebf00fc4d1343b24715373893f7b20bf462d1e9
28175Author: Michael Schwingen <michael@schwingen.org>
28176Date: Wed Jan 16 19:51:14 2008 +0100
28177
28178 add AcTux-2 board support
28179
28180 Signed-off-by: Michael Schwingen <michael@schwingen.org>
28181
28182commit ea99e8f05b7240fd657739e286664664ae160abe
28183Author: Michael Schwingen <michael@schwingen.org>
28184Date: Wed Jan 16 19:50:37 2008 +0100
28185
28186 add AcTux-1 board support
28187
28188 Signed-off-by: Michael Schwingen <michael@schwingen.org>
28189
28190commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
28191Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28192Date: Mon Jan 14 19:20:08 2008 +0100
28193
28194 ARM: remove useless function board_post_init
28195
28196 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28197
28198commit 96bd462942022e4569b582c072a0ed26de1cd19b
28199Author: Michael Schwingen <michael@schwingen.org>
28200Date: Thu Jan 10 14:59:46 2008 +0100
28201
28202 IXP: enable RTS
28203
28204 enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
28205 No handshaking is done, but the active RTS signal allows to
28206 connect to the target using a PC which is using RTS/CTS
28207 handshake, and does no harm if the PC is set to ignore RTS.
28208
28209 Signed-off-by: Michael Schwingen <michael@schwingen.org>
28210
28211commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
28212Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28213Date: Mon Jan 7 08:41:34 2008 +0100
28214
28215 IXP: add dynamic microcode addr
28216
28217 allow to load the microde from flash or ram by download it through
28218 the serial or other.
28219
28220 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28221 Acked-by: Stefan Roese <sr@denx.de>
28222
28223commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
28224Author: Michael Schwingen <michael@schwingen.org>
28225Date: Sat Nov 10 15:44:12 2007 +0100
28226
28227 load ixp42x NPE firmware from separate flash block, remove dead code
28228
28229 Hi,
28230
28231 the following patch adds support to move the IXP42X NPE firmware to a
28232 separate flash block, whose start address is defined in
28233 CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
28234 NPE-enabled u-boot without copyright problems due to the NPE firmware.
28235
28236 I hope the patch applies, I get whitespace-related differences in the NPE
28237 files due to trailing whitespace in the original versions.
28238
28239 Signed-off-by: Michael Schwingen <michael@schwingen.org>
28240 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28241
Wolfgang Denk865f0f92008-01-23 14:31:17 +010028242commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
28243Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28244Date: Tue Jan 15 14:15:46 2008 -0600
28245
28246 ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
28247
28248 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28249 Signed-off by: John Rigby <jrigby@freescale.com>
28250
28251commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
28252Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28253Date: Tue Jan 15 14:02:49 2008 -0600
28254
28255 ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
28256
28257 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28258 Signed-off by: John Rigby <jrigby@freescale.com>
28259
28260commit 777d1abd9796f1c2e148417cc10657e847d318ce
28261Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28262Date: Tue Jan 15 14:00:25 2008 -0600
28263
28264 ColdFire: Add MCF547x_8x FEC driver
28265
28266 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28267 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28268 Signed-off by: John Rigby <jrigby@freescale.com>
28269
28270commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
28271Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28272Date: Tue Jan 15 13:54:09 2008 -0600
28273
28274 ColdFire: Add MCF547x_8x dma code and header files
28275
28276 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28277 Signed-off by: John Rigby <jrigby@freescale.com>
28278
28279commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
28280Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28281Date: Tue Jan 15 13:52:03 2008 -0600
28282
28283 ColdFire: Add MCF547x_8x dma code - 2
28284
28285 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28286 Signed-off by: John Rigby <jrigby@freescale.com>
28287
28288commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
28289Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28290Date: Tue Jan 15 13:48:52 2008 -0600
28291
28292 ColdFire: Add MCF547x_8x dma code - 1
28293
28294 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28295 Signed-off by: John Rigby <jrigby@freescale.com>
28296
28297commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
28298Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28299Date: Tue Jan 15 13:39:44 2008 -0600
28300
28301 ColdFire: Add MCF547x_8x related header files
28302
28303 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28304 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28305 Signed-off by: John Rigby <jrigby@freescale.com>
28306
28307commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
28308Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28309Date: Tue Jan 15 13:37:34 2008 -0600
28310
28311 ColdFire: Add MCF547x_8x cpu arch
28312
28313 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28314 Signed-off by: John Rigby <jrigby@freescale.com>
28315
28316commit e2756f4b54aba0e0523b81dd145666829cf7fd59
28317Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28318Date: Mon Jan 14 17:47:23 2008 -0600
28319
28320 ColdFire: Add MCF5227x cpu and M52277EVB support-3
28321
28322 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28323 Signed-off by: John Rigby <jrigby@freescale.com>
28324
28325commit c87581027994c148131b2f11aa75501f782ec19a
28326Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28327Date: Mon Jan 14 17:46:19 2008 -0600
28328
28329 ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
28330
28331 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28332 Signed-off by: John Rigby <jrigby@freescale.com>
28333
28334commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
28335Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28336Date: Mon Jan 14 17:43:33 2008 -0600
28337
28338 ColdFire: Add MCF5227x cpu and M52277EVB support-1
28339
28340 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28341 Signed-off by: John Rigby <jrigby@freescale.com>
28342
28343commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
28344Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28345Date: Mon Jan 14 17:35:44 2008 -0600
28346
28347 ColdFire: Fix CFI Flash low level Read/Write macro
28348
28349 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28350 Signed-off by: John Rigby <jrigby@freescale.com>
28351
28352commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
28353Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28354Date: Mon Jan 14 17:23:08 2008 -0600
28355
28356 ColdFire: Add M5373EVB platform support - 2
28357
28358 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28359 Signed-off by: John Rigby <jrigby@freescale.com>
28360
28361commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
28362Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28363Date: Mon Jan 14 17:19:54 2008 -0600
28364
28365 ColdFire: Add M5373EVB platform support - 1
28366
28367 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28368 Signed-off by: John Rigby <jrigby@freescale.com>
28369
28370commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
28371Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28372Date: Mon Jan 14 17:17:03 2008 -0600
28373
28374 ColdFire: Update FlexBus CS for MCF532x
28375
28376 Definition update and change from 16bit to 32bit
28377
28378 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28379 Signed-off by: John Rigby <jrigby@freescale.com>
28380
28381commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
28382Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28383Date: Mon Jan 14 17:11:47 2008 -0600
28384
28385 ColdFire: PCI and misc updates for MCF5445x
28386
28387 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28388 Signed-off by: John Rigby <jrigby@freescale.com>
28389
28390commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
28391Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28392Date: Mon Jan 14 17:06:55 2008 -0600
28393
28394 ColdFire: MCF5445x header files cleanup
28395
28396 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28397 Signed-off by: John Rigby <jrigby@freescale.com>
28398
28399commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
28400Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28401Date: Mon Jan 14 16:59:42 2008 -0600
28402
28403 ColdFire: MCF532x header files cleanup
28404
28405 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28406 Signed-off by: John Rigby <jrigby@freescale.com>
28407
28408commit 7af7751d047e74b2ec58400f97b879c56446b3e8
28409Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28410Date: Mon Jan 14 15:30:15 2008 -0600
28411
28412 ColdFire: Add modules header files
28413
28414 Add CF specific modules header files
28415
28416 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28417 Signed-off-by: John Rigby <jrigby@freescale.com>
28418
28419commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
28420Author: Kim Phillips <kim.phillips@freescale.com>
28421Date: Thu Jan 17 12:48:00 2008 -0600
28422
28423 codingstyle cleanup for spi driver
28424
28425 ..and rm unused CONFIG_FSL_SPI define
28426
28427 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28428
28429commit d59feffb42c9f174116db7a82a311df98983dfce
28430Author: Haiying Wang <Haiying.Wang@freescale.com>
28431Date: Wed Jan 16 17:12:12 2008 -0500
28432
28433 FSL: Fix common EEPROM_data structure definition
28434
28435 - Fix EEPROM_data structure definition according to System EEPROM Data Format.
28436 - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
28437 bd->bi_ethaddr.
28438
28439 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
28440
28441commit 6bee764bd6da510a4aad614880300c968bc7318d
28442Author: Timur Tabi <timur@freescale.com>
28443Date: Wed Jan 16 15:48:12 2008 -0600
28444
28445 86xx: enable command-line editing
28446
28447 Enable command-line editing for all MPC86xx boards.
28448
28449 Signed-off-by: Timur Tabi <timur@freescale.com>
28450
28451commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
28452Author: Ben Warren <biggerbadderben@gmail.com>
28453Date: Wed Jan 16 22:37:42 2008 -0500
28454
28455 Implement hard SPI driver on MPC8349EMDS
28456
28457 This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
28458 This board has an ST M25P40 4Mbit EEPROM on its SPI bus
28459
28460 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28461 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28462
28463commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
28464Author: Ben Warren <biggerbadderben@gmail.com>
28465Date: Wed Jan 16 22:37:35 2008 -0500
28466
28467 Add support for a Freescale non-CPM SPI controller
28468
28469 This patch adds support for the SPI controller found on Freescale PowerPC
28470 processors such as the MCP834x family. Additionally, a new config option,
28471 CONFIG_HARD_SPI, is added for general purpose SPI controller use.
28472
28473 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28474 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28475
28476commit a8cb43a89be6cfd283257a603dd9841503ccce0f
28477Author: Dave Liu <r63238@freescale.com>
28478Date: Thu Jan 17 18:23:19 2008 +0800
28479
28480 mpc83xx: Fix the fatal conflict of merge
28481
28482 The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
28483 will cause the mpc8315erdb board can't boot up.
28484
28485 The patch fix that bug, and remove the duplicated #ifdef
28486 CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
28487 MPC8313E processor.
28488
28489 Signed-off-by: Dave Liu <daveliu@freescale.com>
28490 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28491
28492commit 3259eeaa4148125a81417477f62c05bd67f60587
28493Author: Larry Johnson <lrj@acm.org>
28494Date: Thu Jan 17 08:50:09 2008 -0500
28495
28496 Merge Sequoia beautification into Korat code
28497
28498 Signed-off-by: Larry Johnson <lrj@acm.org>
28499
28500commit e16925773211291b562e77187061e9dd1d757217
28501Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28502Date: Thu Jan 17 07:45:05 2008 +0100
28503
28504 net: add 'ethrotate' environment variable
28505
28506 [PATCH] net: add 'ethrotate' environment variable
28507
28508 This patch replaces the buildtime configuration option
28509 CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
28510 configuration veriable. See README.
28511
28512 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28513 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28514
28515commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
28516Author: Stefan Roese <sr@denx.de>
28517Date: Thu Jan 17 14:29:04 2008 +0100
28518
28519 ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
28520
28521 Signed-off-by: Stefan Roese <sr@denx.de>
28522
Wolfgang Denk33dac032008-01-23 14:41:37 +010028523commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
28524Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28525Date: Thu Jan 17 18:07:32 2008 +0900
28526
28527 sh: Remove CONFIG_COMMANDS from MS7720SE config file
28528
28529 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28530
Wolfgang Denk865f0f92008-01-23 14:31:17 +010028531commit 055606bd25e88c0cd04ad348a679a04b1b616bee
28532Author: Niklaus Giger <niklaus.giger@netstal.com>
28533Date: Wed Jan 16 18:39:20 2008 +0100
28534
28535 ppc4xx: Netstal HCU4 board: added various fixes and POST
28536
28537 - Moved some common code to netstal/common/nm_bsp.c.
28538 - sdram initialisation goes go netstal/common/fixed_sdram.c.
28539 - Added support for POST.
28540 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
28541
28542 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
28543
28544commit 69b0634a4ee98c9791815600d43b99f626a952f3
28545Author: Niklaus Giger <niklaus.giger@netstal.com>
28546Date: Thu Jan 17 12:53:56 2008 +0100
28547
28548 ppc4xx: netstal/common define routines used by all boards
28549
28550 Added some routines used by all Netstal boards:
28551 - nm_bsp.c: - nm_show_print and
28552 - common_misc_init_r
28553 - set_params_for_sw_install. Very specific code to handle our SW
28554 installation procedure
28555 - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
28556 to handle sdram initialization.
28557 - nm.h: Common header
28558
28559 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
28560
28561commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
28562Author: Niklaus Giger <niklaus.giger@netstal.com>
28563Date: Wed Jan 16 18:39:18 2008 +0100
28564
28565 ppc4xx: Netstal HCU5 board: added various fixes and POST
28566
28567 - Moved some common code to nestal/common/nm_bsp.c.
28568 - Added support for the vxWorks EDR.
28569 - Enable trace for Lauterbach, if present.
28570 - Added support for POST.
28571 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
28572
28573 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
28574
28575commit 4371090e5da77edc7bf9f296364db4801639d9c4
28576Author: Niklaus Giger <niklaus.giger@netstal.com>
28577Date: Wed Jan 16 18:39:08 2008 +0100
28578
28579 ppc4xx: Netstal HCU5 board. Added POST. Various fixes
28580
28581 - Various fixes
28582 - Reduced rom_size from 384 to 320 kB
28583 - Environment is now in flash
28584 - Added POST
28585 - Support for OF
28586
28587 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
28588
28589commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
28590Author: Niklaus Giger <niklaus.giger@netstal.com>
28591Date: Wed Jan 16 18:37:50 2008 +0100
28592
28593 ppc4xx: Netstal HCU4 board. Added POST. Various fixes
28594
28595 - Various fixes
28596 - Reduced rom_size from 384 to 320 kB
28597 - Environment is now in flash
28598 - Added POST
28599 - Support for OF
28600
28601 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
28602
28603commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
28604Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28605Date: Thu Jan 17 10:53:08 2008 +0100
28606
28607 ppc4xx: Complete DU440 board support
28608
28609 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28610
28611commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
28612Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28613Date: Thu Jan 17 10:52:30 2008 +0100
28614
28615 ppc4xx: Add DU440 board support
28616
28617 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28618
Wolfgang Denk33dac032008-01-23 14:41:37 +010028619commit ac331da07db3860f11fa1d0fd3db7c810bce1198
28620Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28621Date: Thu Jan 17 15:53:52 2008 +0900
28622
28623 sh: Update SuperH SCIF driver
28624
28625 This patch fixed wrong SH7720 CPU macro and changed macro that
28626 calculated value of SCBRR register.
28627
28628 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28629
Wolfgang Denk865f0f92008-01-23 14:31:17 +010028630commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
28631Author: Grzegorz Bernacki <gjb@semihalf.com>
28632Date: Wed Jan 16 15:12:47 2008 +0100
28633
28634 Set ips dividor to 1/4 of csb clock.
28635
28636 Previous setting cause ips clock to be out of spec. This bug was found by John
28637 Rigby from Freescale.
28638
28639 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
28640
28641commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
28642Author: Kumar Gala <galak@kernel.crashing.org>
28643Date: Thu Jan 17 02:19:18 2008 -0600
28644
28645 85xx: Get ride of old TLB setup code
28646
28647 Now that all boards have been converted, remove old config code and the
28648 config option for the new style.
28649
28650 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28651
28652commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
28653Author: Kumar Gala <galak@kernel.crashing.org>
28654Date: Thu Jan 17 02:02:10 2008 -0600
28655
28656 85xx: Convert TQM85xx to new TLB setup
28657
28658 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28659
28660commit 74121b470c14f7eaf284ee838bffca6f9521069e
28661Author: Kumar Gala <galak@kernel.crashing.org>
28662Date: Thu Jan 17 01:56:32 2008 -0600
28663
28664 85xx: Convert STXGP3 & STXSSA to new TLB setup
28665
28666 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28667
28668commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
28669Author: Kumar Gala <galak@kernel.crashing.org>
28670Date: Thu Jan 17 01:44:34 2008 -0600
28671
28672 85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
28673
28674 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28675
28676commit 818218bac6a11591e2542c344d2330e0f4e1968b
28677Author: Kumar Gala <galak@kernel.crashing.org>
28678Date: Thu Jan 17 01:31:34 2008 -0600
28679
28680 85xx: Convert PM854/PM856 to new TLB setup
28681
28682 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28683
28684commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
28685Author: Kumar Gala <galak@kernel.crashing.org>
28686Date: Thu Jan 17 01:25:33 2008 -0600
28687
28688 85xx: Convert MPC8540EVAL to new TLB setup
28689
28690 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28691
28692commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
28693Author: Kumar Gala <galak@kernel.crashing.org>
28694Date: Thu Jan 17 01:12:22 2008 -0600
28695
28696 85xx: Convert MPC8568 MDS to new TLB setup
28697
28698 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28699
28700commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
28701Author: Kumar Gala <galak@kernel.crashing.org>
28702Date: Thu Jan 17 01:01:09 2008 -0600
28703
28704 85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
28705
28706 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28707
28708commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
28709Author: Kumar Gala <galak@kernel.crashing.org>
28710Date: Thu Jan 17 00:52:29 2008 -0600
28711
28712 85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
28713
28714 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28715
28716commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
28717Author: Kumar Gala <galak@kernel.crashing.org>
28718Date: Thu Jan 17 00:32:17 2008 -0600
28719
28720 85xx: Convert ATUM8548 to new TLB setup
28721
28722 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28723
28724commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
28725Author: Kumar Gala <galak@kernel.crashing.org>
28726Date: Wed Jan 16 23:11:57 2008 -0600
28727
28728 85xx: Convert MPC8544 DS to new TLB setup
28729
28730 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28731
28732commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
28733Author: Kumar Gala <galak@kernel.crashing.org>
28734Date: Wed Jan 16 22:38:34 2008 -0600
28735
28736 85xx: Reworked initial processor init
28737
28738 Reworked the initial processor initialzation sequence:
28739 * introduced cpu_early_init_f that is run in address space 1 (AS=1)
28740 * Moved TLB/LAW and CCSR init into cpu_early_init_f()
28741 * Reworked initial asm code to do most of the core init before TLBs
28742
28743 The main reasons for these changes are to allow handling of 36-bit phys
28744 addresses in the future and some of the issues that will exist when we
28745 do that.
28746
28747 There are a few caveats on what can be initialized via the LAW and TLB
28748 static tables:
28749 * TLB entry 14/15 can't be initialized via the TLB table
28750 * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
28751 the code that is currently executing.
28752
28753 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28754
28755commit 44a23cfd6360a68eaa41f945190618a55519eac3
28756Author: Kumar Gala <galak@kernel.crashing.org>
28757Date: Wed Jan 16 22:33:22 2008 -0600
28758
28759 85xx: Introduce new tlb API
28760
28761 Add a set of functions to manipulate TLB entries:
28762 * set_tlb() - write a tlb entry
28763 * invalidate_tlb() - invalidate a tlb array
28764 * disable_tlb() - disable a variable size tlb entry
28765 * init_tlbs() - setup initial tlbs based on static table
28766
28767 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28768
28769commit be88b1699863c262818f3af7f60173b4d48df8fc
28770Author: Stefan Roese <sr@denx.de>
28771Date: Thu Jan 17 07:50:17 2008 +0100
28772
28773 ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
28774
28775 Signed-off-by: Stefan Roese <sr@denx.de>
28776
28777commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
28778Author: Kumar Gala <galak@kernel.crashing.org>
28779Date: Wed Jan 16 10:04:42 2008 -0600
28780
28781 85xx: Use proper defines for PCI addresses
28782
28783 We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
28784 While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
28785 be used for configuring the PCI ATMU.
28786
28787 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28788
28789commit 54a5070115eff38e9b324b78abdfa0b4520580b9
28790Author: Kumar Gala <galak@kernel.crashing.org>
28791Date: Wed Jan 16 09:22:29 2008 -0600
28792
28793 85xx: Remove old style of LAW init
28794
28795 All boards are now using the new fsl_law code so we can drop the old version.
28796
28797 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28798
28799commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
28800Author: Kumar Gala <galak@kernel.crashing.org>
28801Date: Wed Jan 16 09:15:29 2008 -0600
28802
28803 85xx: convert remaining 85xx boards over to use new LAW init code
28804
28805 Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
28806 to use new LAW init code.
28807
28808 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28809
28810commit 572b13afc42710f2957c382a710360429c0e099b
28811Author: Kumar Gala <galak@kernel.crashing.org>
28812Date: Wed Jan 16 09:11:53 2008 -0600
28813
28814 85xx: convert STXGP3/STXSSA over to use new LAW init code
28815
28816 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28817
28818commit 45f2166ac0233a9263058378f39612bd11f61196
28819Author: Kumar Gala <galak@kernel.crashing.org>
28820Date: Wed Jan 16 09:06:48 2008 -0600
28821
28822 85xx: convert PM854/PM856 over to use new LAW init code
28823
28824 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28825
28826commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
28827Author: Kumar Gala <galak@kernel.crashing.org>
28828Date: Wed Jan 16 09:05:27 2008 -0600
28829
28830 85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
28831
28832 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28833
28834commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
28835Author: Kumar Gala <galak@kernel.crashing.org>
28836Date: Wed Jan 16 01:45:10 2008 -0600
28837
28838 85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
28839
28840 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28841
28842commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
28843Author: Kumar Gala <galak@kernel.crashing.org>
28844Date: Wed Jan 16 01:32:06 2008 -0600
28845
28846 85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
28847
28848 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28849
28850commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
28851Author: Kumar Gala <galak@kernel.crashing.org>
28852Date: Wed Jan 16 01:16:16 2008 -0600
28853
28854 85xx: convert MPC8544 DS over to use new LAW init code
28855
28856 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28857
28858commit 83d40dfd79fe868796275802f60116d84b9e4395
28859Author: Kumar Gala <galak@kernel.crashing.org>
28860Date: Wed Jan 16 01:13:58 2008 -0600
28861
28862 85xx: Move LAW init code into C
28863
28864 Move the initialization of the LAWs into C code and provide an API
28865 to allow modification of LAWs after init.
28866
28867 Board code is responsible to provide a law_table and num_law_entries.
28868
28869 We should be able to use the same code on 86xx as well.
28870
28871 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28872
Wolfgang Denk33dac032008-01-23 14:41:37 +010028873commit bed8ce838a609aaab136d43b25e6df2a520bc854
28874Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28875Date: Sat Dec 22 15:03:12 2007 +0100
28876
28877 qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
28878
28879 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28880
28881commit 0764c164fed6277d359cf132d55187ea34290114
28882Author: Vlad Lungu <vlad@comsys.ro>
28883Date: Wed Jan 16 19:27:51 2008 +0200
28884
28885 MIPS:Target support for qemu -M mips
28886
28887 With serial, NE2000, IDE support. Tested in big-endian mode.
28888 Memory size hard-coded to 128M for now, so don't play with
28889 the -m option.
28890
28891 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
28892
Wolfgang Denk865f0f92008-01-23 14:31:17 +010028893commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
28894Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28895Date: Fri Jan 11 00:01:37 2008 +0100
28896
28897 Fix nfs command help to reflect that the serverip is optional
28898
28899 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28900 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28901
28902commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
28903Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28904Date: Mon Dec 10 22:32:14 2007 +0100
28905
28906 bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
28907
28908 and move is_valid_ether_addr board file
28909
28910 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28911 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28912
28913commit c2f896b8fc4722e36915903e1942e138e68ce804
28914Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28915Date: Wed Jan 16 16:13:31 2008 +0900
28916
28917 drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
28918
28919 rx_status on the memory is basically in LE, but needs to be handled in CPU
28920 endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
28921 it'll work fine.
28922
28923 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28924 Cc: Masami Komiya <mkomiya@sonare.it>
28925 Cc: Lucas Jin <lucasjin@gmail.com>
28926 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28927
28928commit 96a236746fe6a7b84802afb4ed31536696d34812
28929Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28930Date: Wed Jan 16 16:12:26 2008 +0900
28931
28932 drivers/net/rtl8139.c: Fix cache coherency issues
28933
28934 Current driver is meant for cache coherent systems. This patch adds
28935 flush_cache() routines to support cache non-coherent systems.
28936
28937 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28938 Cc: Masami Komiya <mkomiya@sonare.it>
28939 Cc: Lucas Jin <lucasjin@gmail.com>
28940 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28941
28942commit d1276c76c1e2b5035296689280ba1acb2c425104
28943Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28944Date: Wed Jan 16 16:11:14 2008 +0900
28945
28946 drivers/net/rtl8139.c: Fix tx timeout
28947
28948 "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
28949 does, the condition "(currticks() < to)" becomes invalid and immediately
28950 leads to tx timeout error. This patch introduces the fine-graded udely(10)
28951 loops to ease the impact of wrapping around.
28952
28953 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28954 Cc: Masami Komiya <mkomiya@sonare.it>
28955 Cc: Lucas Jin <lucasjin@gmail.com>
28956 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28957
28958commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
28959Author: Dave Liu <r63238@freescale.com>
28960Date: Fri Jan 11 18:45:28 2008 +0800
28961
28962 TSEC: Add the support for RealTek RTL8211B PHY
28963
28964 Add the support of RealTek RTL8211B PHY, the RTL8211B
28965 PHY only supports RGMII and MII mode.
28966
28967 Signed-off-by: Dave Liu <daveliu@freescale.com>
28968 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28969
28970commit 84a3047b72b70e862b0b7a8e2058077457f89a32
28971Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28972Date: Wed Jan 16 09:40:41 2008 +0100
28973
28974 Remove annoying debug printout for PHY less boards.
28975
28976 PHY less board prints out lots of "read wrong ...":
28977 read wrong value : mii_id 3,mii_reg 2, base e0102320
28978 read wrong value : mii_id 3,mii_reg 3, base e0102320
28979 UEC: PHY is Generic MII (ffffffff)
28980 read wrong value : mii_id 3,mii_reg 4, base e0102320
28981 read wrong value : mii_id 3,mii_reg 0, base e0102320
28982 read wrong value : mii_id 3,mii_reg 1, base e0102320
28983 read wrong value : mii_id 3,mii_reg 1, base e0102320
28984 read wrong value : mii_id 3,mii_reg 5, base e0102320
28985 read wrong value : mii_id 3,mii_reg 1, base e0102320
28986 read wrong value : mii_id 3,mii_reg 1, base e0102320
28987 read wrong value : mii_id 3,mii_reg 5, base e0102320
28988 FSL UEC0: Full Duplex
28989 FSL UEC0: Speed 100BT
28990 FSL UEC0: Link is up
28991 Using FSL UEC0 device
28992
28993 Make this printout depend on UEC_VERBOSE_DEBUG and
28994 remove its definition in uec_phy.c
28995
28996 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28997 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28998
28999commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
29000Author: Kim Phillips <kim.phillips@freescale.com>
29001Date: Tue Jan 15 14:11:00 2008 -0600
29002
29003 net: reduce boot latency on QE UEC based boards
29004
29005 actually polling for PHY autonegotiation to finish enables us to remove the
29006 5 second boot prompt latency present on QE based boards.
29007
29008 call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
29009 uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
29010 code shamelessly stolen from tsec driver.
29011
29012 also rm unused CONFIG_RMII_MODE code.
29013
29014 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29015 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
29016 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29017
29018commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
29019Author: michael.firth@bt.com <michael.firth@bt.com>
29020Date: Wed Jan 16 11:40:51 2008 +0000
29021
29022 TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
29023
29024 The current TSEC driver limits MDIO access to the devices that have been configured as attached
29025 to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
29026
29027 Signed-off-by: Michael Firth <michael.firth@bt.com>
29028 Acked-by: Andy Fleming <afleming@freescale.com>
29029 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29030
29031commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
29032Author: Kim Phillips <kim.phillips@freescale.com>
29033Date: Wed Jan 16 00:38:05 2008 -0600
29034
29035 Add support for the MPC837xERDB
29036
29037 MPC837xERDB board support includes:
29038 * DDR2 330MHz hardcoded (soldered on the board)
29039 * Local Bus NOR Flash
29040 * I2C, UART and RTC
29041 * eTSEC RGMII (TSEC0 - RTL8211B with MII;
29042 * TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
29043 * load)
29044
29045 Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
29046 Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
29047 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29048
29049commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
29050Author: Kim Phillips <kim.phillips@freescale.com>
29051Date: Wed Jan 16 12:06:16 2008 -0600
29052
29053 mpc83xx: add support for more system clock performance controls
29054
29055 System registers that are modified are the Arbiter Configuration
29056 Register (ACR), the System Priority Control Register (SPCR), and the
29057 System Clock Configuration Register (SCCR).
29058
29059 Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
29060 Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
29061 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29062
29063commit 16c3cde050e2d243e62b37486f1558570787beb8
29064Author: James Yang <james.yang@freescale.com>
29065Date: Wed Jan 16 11:58:08 2008 -0600
29066
29067 FSL: Generalize PIXIS reset command parsing.
29068
29069 Before, the order of arguments to the pixis_reset
29070 command needed to be supplied in a hard-coded order.
29071 Generalize the command parsing to allow any order.
29072
29073 Signed-off-by: James Yang <james.yang@freescale.com>
29074 Acked-by: Jon Loeliger <jdl@freescale.com>
29075
29076commit ad8f8687b78c3e917b173f038926695383c55555
29077Author: Jon Loeliger <jdl@freescale.com>
29078Date: Tue Jan 15 13:42:41 2008 -0600
29079
29080 FSL: Convert board/freescale/common/Makefile to use CONFIG_
29081
29082 Convert the board/freescale/common/Makefile to use
29083 CONFIG_* options to select which files to conditionally
29084 compile into the board/freescale/common library rather
29085 than conditionally compiling entire files.
29086
29087 Now handles::
29088 CONFIG_FSL_PIXIS
29089 CONFIG_FSL_DIU_FB
29090 CONFIG_PQ_MDS_PIB
29091
29092 CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
29093
29094 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29095
29096commit 7c2221eb230372a9e537c4f6636b147b0909325f
29097Author: Roy Zang <tie-fei.zang@freescale.com>
29098Date: Tue Jan 15 16:38:38 2008 +0800
29099
29100 Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
29101
29102 Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
29103 Remove unused ethernet CONFIG_ options.
29104
29105 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
29106 Acked-by: Jon Loeliger <jdl@freescale.com>
29107
29108commit 711a7946277d2e29af481011e8635e9975c54e45
29109Author: Kim Phillips <kim.phillips@freescale.com>
29110Date: Tue Jan 15 14:05:14 2008 -0600
29111
29112 mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
29113
29114 continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
29115
29116 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29117
29118commit 363eea9ff7f19a2cba17f262bd17559f166e134e
29119Author: Kim Phillips <kim.phillips@freescale.com>
29120Date: Tue Jan 15 09:51:12 2008 -0600
29121
29122 mpc83xx: clean up mpc8360emds.c warnings
29123
29124 mpc8360emds.c: In function 'ft_board_setup':
29125 mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
29126 mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
29127 mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
29128 mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
29129 mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
29130 mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
29131
29132 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29133
29134commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
29135Author: Kim Phillips <kim.phillips@freescale.com>
29136Date: Mon Jan 14 16:14:46 2008 -0600
29137
29138 mpc83xx: fix phy-connection-type fixup code
29139
29140 use tree passed to us in local blob, not global fdt.
29141
29142 Also use fdt_path_offset to convert to relative offset, since absolute
29143 reference is needed to check for rgmii-id mode string value.
29144
29145 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29146
29147commit 2b4c952be7c4357a13e839d48df80853820c33eb
29148Author: Kumar Gala <galak@kernel.crashing.org>
29149Date: Mon Jan 14 09:01:40 2008 -0600
29150
29151 mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
29152
29153 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29154 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29155
29156commit e1d8ed2c08da14b168658cc5fa78529d461aea70
29157Author: Poonam Aggrwal <b10812@freescale.com>
29158Date: Mon Jan 14 09:41:14 2008 +0530
29159
29160 Changes in uboot DDR configuration for MPC8313eRDB
29161
29162 These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
29163 DDR configuration in u-boot code. Some are related to performance, some
29164 affect stability and some correct few basic errors in the current
29165 configuration.
29166
29167 The changes have been tested and found to give better memory latency
29168 figures on MPC8313eRDB.LMBench figures prove it.
29169
29170 The changes are:
29171
29172 - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
29173 (this may improve performance for application with many read
29174 or write to open pages).
29175 - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
29176 001 (activating all the CS when only one is used may cause
29177 unwanted noise on the system)
29178
29179 - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
29180 Tras=45ns)
29181 - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
29182
29183 - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
29184 comply with the 3 ODT clk requirements)
29185 - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
29186 - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
29187
29188 - DDR_SDRAM_MODE[AL]changed from 0 to 1.
29189 - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
29190
29191 - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
29192 - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
29193
29194 The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
29195 The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
29196
29197 Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
29198 Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
29199 Cc: Razzaz Mazyar <MRazzaz@freescale.com>
29200 Cc: Josep P J <PJ.Joseph@freescale.com>
29201 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29202
29203commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
29204Author: Jerry Van Baren <gvb.uboot@gmail.com>
29205Date: Sat Jan 12 13:24:14 2008 -0500
29206
29207 Enable the isdram command on the MPC8360EMDS board
29208
29209 The isdram command prints out decoded information the "serial presence
29210 detect" (SPD) chip on the SDRAM SIMMs. This can be very helpful when
29211 debugging memory configuration problems.
29212
29213 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
29214 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29215
29216commit 8bd522ce4afda3d4868ee8c913f5394094326be1
29217Author: Dave Liu <r63238@freescale.com>
29218Date: Fri Jan 11 18:48:24 2008 +0800
29219
29220 mpc83xx: Add the support for MPC8315ERDB board
29221
29222 The features list:
29223 - Boot from NOR Flash
29224 - DDR2 266MHz hardcoded configuration
29225 - Local bus NOR Flash R/W operation
29226 - I2C, UART, MII and RTC
29227 - eTSEC0/1 support
29228 - PCI host
29229
29230 Signed-off-by: Dave Liu <daveliu@freescale.com>
29231 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29232
29233commit b05884efa614e4d8a9413158fc228e0dc02ab704
29234Author: Dave Liu <r63238@freescale.com>
29235Date: Fri Jan 11 18:46:50 2008 +0800
29236
29237 mpc83xx: Add config of eTSEC emergency priority in SPCR
29238
29239 The TSEC emergency priority definition of 831x/837x
29240 is different than the definition of 834x in SPCR register.
29241
29242 Add the other config of TSEC emergency priority into
29243 cpu_init.c
29244
29245 Signed-off-by: Dave Liu <daveliu@freescale.com>
29246 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29247
29248commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
29249Author: Dave Liu <r63238@freescale.com>
29250Date: Fri Jan 11 18:42:19 2008 +0800
29251
29252 mpc83xx: Remove cache config from MPC8360ERDK.h
29253
29254 The MPC8360ERDK board support patch is added before
29255 the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
29256 so, miss clean up it.
29257
29258 The patch clean up the miss cache config.
29259
29260 Signed-off-by: Dave Liu <daveliu@freescale.com>
29261 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29262
29263commit cd9d23053d435c08fc8695017b5cb9003fcda786
29264Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29265Date: Mon Jan 14 23:09:32 2008 +0300
29266
29267 nand: FSL UPM NAND driver
29268
29269 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29270
29271commit 6cb2239ae76faee64434286c4f8fc71374702dd2
29272Author: Kyungmin Park <kmpark@infradead.org>
29273Date: Tue Jan 15 08:59:44 2008 +0900
29274
29275 OneNAND: Separate U-Boot dependent code from OneNAND
29276
29277 OneNAND: Separate U-Boot dependent code from OneNAND
29278
29279 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
29280
29281commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
29282Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29283Date: Wed Jan 16 10:33:46 2008 +0100
29284
29285 ppc4xx: Sequoia coding style cleanup and beautification
29286
29287 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29288
29289commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
29290Author: Larry Johnson <lrj@acm.org>
29291Date: Tue Jan 15 14:35:58 2008 -0500
29292
29293 ppc4xx: Refactor ECC POST for AMCC Denali core
29294
29295 The ECC POST reported intermittent failures running after power-up on
29296 the Korat PPC440EPx board. Even when the test passed, the debugging
29297 output occasionally reported additional unexpected ECC errors.
29298
29299 This refactoring has three main objectives: (1) minimize the code
29300 executed with ECC enabled during the tests, (2) add more checking of the
29301 results so any unexpected ECC errors would cause the test to fail, and
29302 (3) use synchronization (only) where required by the processor.
29303
29304 Signed-off-by: Larry Johnson <lrj@acm.org>
29305
29306commit 2465665b73ac2f688af945b1ed510752afa816a4
29307Author: David Saada <David.Saada@ecitele.com>
29308Date: Tue Jan 15 10:40:24 2008 +0200
29309
29310 QE UEC: Extend number of supported UECs to 4
29311
29312 This patch extends the number of supported UECs to 4. Note that the
29313 problem of QE thread resources exhaustion is resolved by setting the
29314 correct number of QE threads according to Ethernet type (GBE or FE).
29315
29316 Signed-off-by: David Saada <david.saada@ecitele.com>
29317 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29318
29319commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
29320Author: Wolfgang Denk <wd@denx.de>
29321Date: Wed Jan 16 00:01:01 2008 +0100
29322
29323 LWMON5: enable hush shell as command line parser
29324
29325 Signed-off-by: Wolfgang Denk <wd@denx.de>
29326
29327commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
29328Author: Wolfgang Denk <wd@denx.de>
29329Date: Tue Jan 15 17:22:28 2008 +0100
29330
29331 ADS5121: disable watchdog; enable image timestamps
29332
29333 Signed-off-by: Wolfgang Denk <wd@denx.de>
29334
29335commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
29336Author: Wolfgang Denk <wd@denx.de>
29337Date: Tue Jan 15 17:21:28 2008 +0100
29338
29339 TK885D: fixes for bigger flash sector sizes on new modules;
29340 adjust default environment;
29341 disable SCC ethernet (not used on this board).
29342
29343 Signed-off-by: Wolfgang Denk <wd@denx.de>
29344
29345commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
29346Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29347Date: Tue Jan 15 17:48:13 2008 +0900
29348
29349 pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
29350
29351 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29352
29353commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
29354Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29355Date: Tue Jan 15 23:25:25 2008 +0900
29356
29357 sh: Add support SH7710/SH7712
29358
29359 SH7710/SH7712 of SH3 CPU are supported.
29360 SH771X is called SH-Ether, and has the Ether controller in CPU.
29361 The driver of Ether is not included in this patch.
29362
29363 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29364
29365commit 63a11be68306870e04d3851ed9fa41955cdf4894
29366Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29367Date: Tue Jan 15 23:06:17 2008 +0900
29368
29369 sh: Add support of map_physmem() and unmap_physmem() to SuperH
29370
29371 This patch add the support of map_physmem() and unmap_physmem()
29372 used with Common Flash Interface(CFI) driver.
29373
29374 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29375
29376commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
29377Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29378Date: Wed Jan 9 14:42:27 2008 +0900
29379
29380 sh: Add maintainer of MS7720SE to the MAINTAINER file
29381
29382 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29383
29384commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
29385Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29386Date: Wed Jan 9 14:39:58 2008 +0900
29387
29388 sh: Fix board name in MS7720SE's config.mk
29389
29390 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29391
29392commit c0a04d93734d768b39dbb72fb501b65614c8615d
29393Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29394Date: Wed Jan 9 14:37:36 2008 +0900
29395
29396 sh: Add MS7720SE to MAKEALL
29397
29398 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29399
29400commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
29401Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29402Date: Mon Dec 3 22:58:50 2007 +0900
29403
29404 sh: Add support for MS7720RP02 board
29405
29406 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29407 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29408 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29409
29410commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
29411Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29412Date: Wed Jan 9 14:30:02 2008 +0900
29413
29414 sh: Add support for SH7720 in serial_sh driver.
29415
29416 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29417 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29418 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29419
29420commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
29421Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29422Date: Mon Dec 3 22:58:45 2007 +0900
29423
29424 sh: Add support SH3 and SH7720
29425
29426 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29427 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29428 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29429
29430commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
29431Author: Stefan Roese <sr@denx.de>
29432Date: Tue Jan 15 10:11:02 2008 +0100
29433
29434 ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
29435
29436 Signed-off-by: Stefan Roese <sr@denx.de>
29437
29438commit 17bef68097ab3692500a36fb31115bff7910aa99
29439Author: Niklaus Giger <niklausgiger@gmx.ch>
29440Date: Mon Jan 14 14:04:42 2008 +0100
29441
29442 ppc_4xx: Fix post spr.c for PPC405
29443
29444 post/cpu/ppc4xx/spr.c contained a few checks for registers only present
29445 for PPC440 and derivates processor.
29446
29447 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
29448
29449commit 06c428bcd4413014b43236e77765022071424fa6
29450Author: Dave Liu <r63238@freescale.com>
29451Date: Mon Jan 14 11:12:01 2008 +0800
29452
29453 QE: fix compile warning
29454
29455 qe.c: In function 'qe_upload_firmware':
29456 qe.c:390: warning: pointer targets in passing argument 2
29457 uec.c: In function 'uec_initialize':
29458 uec.c:1236: warning: 'uec_info' may be used uninitialized
29459
29460 Signed-off-by: Dave Liu <daveliu@freescale.com>
29461
29462commit a0dd99d51efa55fe023e19c97ead92683725eb11
29463Author: Stefan Roese <sr@denx.de>
29464Date: Mon Jan 14 10:05:05 2008 +0100
29465
29466 ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
29467
29468 Now that bit 29 is the USB PHY reset bit, update the Kilauea port
29469 to remove the USB PHY reset after powerup. The CPLD will keep the
29470 USB PHY in reset (active low) until the bit is set to 1 in
29471 board_early_init_f().
29472
29473 Signed-off-by: Stefan Roese <sr@denx.de>
29474
29475commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
29476Author: Wolfgang Denk <wd@denx.de>
29477Date: Sun Jan 13 23:26:45 2008 +0100
29478
29479 ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
29480
29481 Signed-off-by: Wolfgang Denk <wd@denx.de>
29482
29483commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
29484Author: Wolfgang Denk <wd@denx.de>
29485Date: Sun Jan 13 23:37:50 2008 +0100
29486
29487 ADS5121: Fix typo in ads5121.c, adjust default environment
29488
29489 Signed-off-by: Wolfgang Denk <wd@denx.de>
29490
29491commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
29492Author: John Rigby <jrigby@freescale.com>
29493Date: Fri Aug 24 18:18:43 2007 -0600
29494
29495 ADS5121: MAX slew rate for PATA pins
29496
29497 Signed-off-by: John Rigby <jrigby@freescale.com>
29498
29499commit dd531aac34aaad138f16cacdb51d61908d59c0e2
29500Author: Wolfgang Denk <wd@denx.de>
29501Date: Sun Jan 13 21:05:52 2008 +0100
29502
29503 Fix Makefile dependency problem with parallel builds.
29504
29505 Signed-off-by: Wolfgang Denk <wd@denx.de>
29506
29507commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
29508Author: Wolfgang Denk <wd@denx.de>
29509Date: Sun Jan 13 19:51:39 2008 +0100
29510
29511 MPC8544DS: fix board Makefile for silent build (with -s)
29512
29513 Signed-off-by: Wolfgang Denk <wd@denx.de>
29514
29515commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
29516Author: Wolfgang Denk <wd@denx.de>
29517Date: Sun Jan 13 16:44:08 2008 +0100
29518
29519 PMC440 board: fix board Makefile for out-of-tree building
29520
29521 Signed-off-by: Wolfgang Denk <wd@denx.de>
29522
29523commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
29524Author: Wolfgang Denk <wd@denx.de>
29525Date: Sun Jan 13 16:07:44 2008 +0100
29526
29527 Makalu: fix compile warning
29528
29529 Signed-off-by: Wolfgang Denk <wd@denx.de>
29530
29531commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
29532Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29533Date: Sun Jan 13 12:36:12 2008 +0100
29534
29535 cmd_nand : fix compiler warning.
29536
29537 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29538
29539commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
29540Author: Michael Schwingen <rincewind@discworld.dascon.de>
29541Date: Sat Jan 12 20:29:47 2008 +0100
29542
29543 CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
29544
29545 Signed-off-by: Michael Schwingen <michael@schwingen.org>
29546 Acked-by: Stefan Roese <sr@denx.de>
29547
29548commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
29549Author: Wolfgang Denk <wd@denx.de>
29550Date: Sun Jan 13 02:19:44 2008 +0100
29551
29552 MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
29553
29554 Signed-off-by: Wolfgang Denk <wd@denx.de>
29555
29556commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
29557Author: Wolfgang Denk <wd@denx.de>
29558Date: Sun Jan 13 02:19:13 2008 +0100
29559
29560 MPC8xx FEC driver: fix compiler warning.
29561
29562 Signed-off-by: Wolfgang Denk <wd@denx.de>
29563
29564commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
29565Author: Wolfgang Denk <wd@denx.de>
29566Date: Sun Jan 13 00:59:21 2008 +0100
29567
29568 Fix Makefile dependencies issues; allow silent build
29569
29570 - get rid of "version" target whichdidn't really work
29571 - make autoconf.mk depend on version_autogenerated.h to make sure
29572 to rebuild files as needed
29573 - add XECHO macro to allow for silent build using "make -s"
29574
29575 Signed-off-by: Wolfgang Denk <wd@denx.de>
29576
29577commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
29578Author: Wolfgang Denk <wd@denx.de>
29579Date: Sun Jan 13 00:55:47 2008 +0100
29580
29581 ADS5121e: fix compile warning
29582
29583 Signed-off-by: Wolfgang Denk <wd@denx.de>
29584
29585commit f2b6f4610627fe3d607620e25082916a01538875
29586Author: Wolfgang Denk <wd@denx.de>
29587Date: Sun Jan 13 00:55:18 2008 +0100
29588
29589 MUNICes: fix board Makefile for remote build directory
29590
29591 Signed-off-by: Wolfgang Denk <wd@denx.de>
29592
29593commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
29594Author: Oliver Weber <almoeli@gmx.de>
29595Date: Wed Jan 9 17:04:38 2008 +0100
29596
29597 MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
29598
29599 Signed-off-by: Oliver Weber <almoeli@gmx.de>
29600
29601commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
29602Author: Andreas Engel <andreas.engel@ericsson.com>
29603Date: Wed Jan 9 17:10:56 2008 +0100
29604
29605 Make bootretry work when command line editing is enabled
29606
29607 Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
29608 This patch fixes the problem.
29609
29610 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
29611
29612commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
29613Author: Larry Johnson <lrj@acm.org>
29614Date: Fri Jan 11 23:26:18 2008 -0500
29615
29616 Refactor code for "i2c sdram" command
29617
29618 Signed-off-by: Larry Johnson <lrj@acm.org>
29619
29620commit 0df6b8446c4721b91ce311548114891130371083
29621Author: Larry Johnson <lrj@acm.org>
29622Date: Thu Jan 10 22:23:39 2008 -0500
29623
29624 Fix "i2c sdram" command for DDR2 DIMMs
29625
29626 Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
29627 "i2c sdram" command. This patch provides correct alternative
29628 interpretations when DDR2 memory is detected.
29629
29630 Signed-off-by: Larry Johnson <lrj@acm.org>
29631
29632commit 64134f011254123618798ff77c42ba196b2ec485
29633Author: Wolfgang Denk <wd@denx.de>
29634Date: Sat Jan 12 20:31:39 2008 +0100
29635
29636 Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
29637
29638 With recent toolchain versions, some boards would not build because
29639 or errors like this one (here for ocotea board when building with
29640 ELDK 4.2 beta):
29641 ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
29642
29643 For many boards, the .bss section is big enough that it wraps around
29644 at the end of the address space (0xFFFFFFFF), so the problem will not
29645 be visible unless you use a 64 bit tool chain for development. On
29646 some boards however, changes to the code size (due to different
29647 optimizations) we bail out with section overlaps like above.
29648
29649 The fix is to add the NOLOAD attribute to the .bss and .sbss
29650 sections, telling the linker that .bss does not consume any space in
29651 the image.
29652
29653 Signed-off-by: Wolfgang Denk <wd@denx.de>
29654
29655commit 3afac79ec27b91df185f090b31dad9620779f440
29656Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29657Date: Fri Jan 11 20:42:58 2008 -0600
29658
29659 USB: Add Philips 1561 PCI-OHCI ids
29660 (needed for M5475EVB)
29661
29662 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29663
29664commit 5e8def6731cd7bec74bff42a16b139de04010353
29665Author: Wolfgang Denk <wd@denx.de>
29666Date: Sat Jan 12 15:51:34 2008 +0100
29667
29668 Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
29669 boards.
29670
29671 Signed-off-by: Heiko Schocher <hs@denx.de>
29672 Signed-off-by: Wolfgang Denk <wd@denx.de>
29673
29674commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
29675Author: Grzegorz Bernacki <gjb@semihalf.com>
29676Date: Fri Jan 11 12:03:43 2008 +0100
29677
29678 MPC512X: Cleanup bus clock names.
29679
29680 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
29681
29682commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
29683Author: Grzegorz Bernacki <gjb@semihalf.com>
29684Date: Tue Jan 8 17:16:59 2008 +0100
29685
29686 MPC512X: Fixed typo in macro name.
29687
29688 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
29689
29690commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
29691Author: Grzegorz Bernacki <gjb@semihalf.com>
29692Date: Tue Jan 8 17:16:15 2008 +0100
29693
29694 ads5121: Added support for FDT.
29695
29696 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
29697
29698commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
29699Author: Wolfgang Denk <wd@denx.de>
29700Date: Sat Jan 12 01:05:50 2008 +0100
29701
29702 Coding Style cleanup; update CHANGELOG.
29703
29704 Signed-off-by: Wolfgang Denk <wd@denx.de>
29705
Wolfgang Denka10ff912008-01-12 01:05:50 +010029706commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
29707Author: Heiko Schocher <hs@denx.de>
29708Date: Fri Jan 11 15:15:17 2008 +0100
29709
29710 Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
29711
29712 Signed-off-by: Timur Tabi <timur@freescale.com>
29713 Signed-off-by: Heiko Schocher <hs@denx.de>
29714
29715commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
29716Author: Heiko Schocher <hs@denx.de>
29717Date: Fri Jan 11 15:15:16 2008 +0100
29718
29719 MUNICes: Set the right CFG_DEFAULT_MBAR value.
29720
29721 Signed-off-by: Heiko Schocher <hs@denx.de>
29722
29723commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
29724Author: Heiko Schocher <hs@denx.de>
29725Date: Fri Jan 11 15:15:15 2008 +0100
29726
29727 added the config File for the MUNICes board.
29728
29729 Signed-off-by: Heiko Schocher <hs@denx.de>
29730
29731commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
29732Author: Heiko Schocher <hs@denx.de>
29733Date: Fri Jan 11 15:15:14 2008 +0100
29734
29735 added basic support for the MUNICes board.
29736
29737 Signed-off-by: Heiko Schocher <hs@denx.de>
29738
29739commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
29740Author: Wolfgang Denk <wd@denx.de>
29741Date: Sat Jan 12 00:39:37 2008 +0100
29742
29743 Update CHANGELOG and MAINTAINERS files.
29744
29745 Signed-off-by: Wolfgang Denk <wd@denx.de>
29746
Wolfgang Denk3bb77fb2008-01-12 00:39:37 +010029747commit 5ba7390c3cb579172be66888a371707b47b5be4e
29748Author: Anatolij Gustschin <agust@denx.de>
29749Date: Fri Jan 11 02:15:02 2008 +0100
29750
29751 Fix compilation problem in common/cmd_bmp.c
29752
29753 common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
29754 isn't defined. This patch fix this.
29755
29756 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29757
29758commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
29759Author: Heiko Schocher <hs@denx.de>
29760Date: Fri Jan 11 01:12:09 2008 +0100
29761
29762 Fix defaultconfig for the mgcoge board.
29763
29764 Signed-off-by: Heiko Schocher <hs@denx.de>
29765
29766commit ac9db066b26935f31bff15c98168b19faeb603f3
29767Author: Heiko Schocher <hs@denx.de>
29768Date: Fri Jan 11 01:12:08 2008 +0100
29769
29770 Added support for the mgcoge board from keymile.
29771
29772 Signed-off-by: Heiko Schocher <hs@denx.de>
29773
29774commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
29775Author: Heiko Schocher <hs@denx.de>
29776Date: Fri Jan 11 01:12:07 2008 +0100
29777
29778 Enable SMC microcode relocation patch for SMC1.
29779
29780 Signed-off-by: Heiko Schocher <hs@denx.de>
29781
29782commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
29783Author: Heiko Schocher <hs@denx.de>
29784Date: Fri Jan 11 01:12:06 2008 +0100
29785
29786 Added support for the mgsuvd board from keymile.
29787
29788 Signed-off-by: Heiko Schocher <hs@denx.de>
29789
29790commit bf05293973b348f6946c9df92cd3c65ece42d0be
29791Author: James Yang <james.yang@freescale.com>
29792Date: Thu Jan 10 16:02:07 2008 -0600
29793
29794 Fix 64-bit vsprintf.
29795
29796 There were some size and unsigned problems.
29797 Also add support for "ll" size modifier in format string like glibc
29798
29799 Signed-off-by: James Yang <James.Yang@freescale.com>
29800 Acked-by: Jon Loeliger <jdl@freescale.com>
29801
29802commit 92fa37eac530860643afa26ae347af3d23d67309
29803Author: Larry Johnson <lrj@acm.org>
29804Date: Wed Jan 9 12:42:35 2008 -0500
29805
29806 Remove superfluous preprocessor conditionals from LM73 driver
29807
29808 (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
29809
29810 (2) Use conditional Makefile.o.
29811
29812 Signed-off-by: Larry Johnson <lrj@acm.org>
29813
29814commit efc6f447c1b940d1650c4b854c5598a595ddc3da
29815Author: Guennadi Liakhovetski <lg@denx.de>
29816Date: Thu Jan 10 17:59:07 2008 +0100
29817
29818 Add support for the TK885D baseboard from TELE-DATA
29819
29820 The TK885D board uses a TQM885D module from TQ, this port adds an
29821 own configuration file and adds a last_stage_init() method to
29822 configure the two PHYs, depending on the phy_auto_nego environment
29823 variable.
29824
29825 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29826
29827commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
29828Author: Kumar Gala <galak@kernel.crashing.org>
29829Date: Thu Jan 10 02:22:05 2008 -0600
29830
29831 Fix compiler warning
29832
29833 main.c: In function 'readline_into_buffer':
29834 main.c:927: warning: unused variable 'p_buf'
29835
29836 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29837
29838commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
29839Author: Anatolij Gustschin <agust@denx.de>
29840Date: Fri Jan 11 14:30:01 2008 +0100
29841
29842 Add Fujitsu CoralP/Lime video driver
29843
29844 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29845 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
29846
29847commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
29848Author: Anatolij Gustschin <agust@denx.de>
29849Date: Fri Jan 11 02:39:47 2008 +0100
29850
29851 Fix video console newline and carriage return handling
29852
29853 Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
29854 are not displayed correctly. This is an attempt to fix
29855 this issue. Also add carriage return handling.
29856
29857 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29858 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
29859
29860commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
29861Author: Stefan Roese <sr@denx.de>
29862Date: Fri Jan 11 15:53:58 2008 +0100
29863
29864 ppc4xx: Fix sdram init on Sequoia boards
29865
29866 Clear possible errors in MCSR resulting from data-eye-search.
29867 If not done, then we could get an interrupt later on when
29868 exceptions are enabled.
29869
29870 Signed-off-by: Stefan Roese <sr@denx.de>
29871
29872commit d610a60730b7464f6f659db49d264d89a7c71061
29873Author: Anatolij Gustschin <agust@denx.de>
29874Date: Fri Jan 11 15:31:09 2008 +0100
29875
29876 ppc4xx: Rework Lime support for lwmon5
29877
29878 Rework Lime support for lwmon5 using new video driver
29879
29880 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29881
29882commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
29883Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29884Date: Fri Jan 11 14:55:16 2008 +0100
29885
29886 ppc4xx: Update PMC440 config file
29887
29888 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29889
29890commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
29891Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29892Date: Fri Jan 11 14:55:08 2008 +0100
29893
29894 ppx4xx: Fix sdram init on PMC440 boards
29895
29896 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29897
29898commit 061aad4d320dddce26247699dcf2875ee2ea1366
29899Author: Dave Liu <r63238@freescale.com>
29900Date: Thu Jan 10 23:09:33 2008 +0800
29901
29902 mpc83xx: Fix the bug of 266MHz data rate DDR
29903
29904 The DDR doesn't work on the 266MHz data rate,
29905 the patch fix the bug.
29906
29907 Signed-off-by: Dave Liu <daveliu@freescale.com>
29908 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29909
29910commit ded08317ad9e340b887bf2eb46e9565a0f610a93
29911Author: Dave Liu <r63238@freescale.com>
29912Date: Thu Jan 10 23:08:26 2008 +0800
29913
29914 mpc83xx: Make the code more readable
29915
29916 Format the code, make it more readable
29917
29918 Signed-off-by: Dave Liu <daveliu@freescale.com>
29919 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29920
29921commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
29922Author: Dave Liu <r63238@freescale.com>
29923Date: Thu Jan 10 23:07:23 2008 +0800
29924
29925 mpc83xx: Reduce the latency of DDR
29926
29927 Reduce the AL from 2 to 1 clock to improve the performance.
29928
29929 Signed-off-by: Dave Liu <daveliu@freescale.com>
29930 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29931
29932commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
29933Author: Dave Liu <r63238@freescale.com>
29934Date: Thu Jan 10 23:06:05 2008 +0800
29935
29936 mpc83xx: Fix the wrong definition of MPC8315E
29937
29938 According to the latest user manual of MPC8315E,
29939 1) The SVCOD of HRCWL is different than 837x
29940 2) The SCCR has changes
29941
29942 Signed-off-by: Dave Liu <daveliu@freescale.com>
29943 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29944
29945commit ec2638ea08a537a1bd409db873aaaa33a053ebae
29946Author: Dave Liu <r63238@freescale.com>
29947Date: Thu Jan 10 23:05:00 2008 +0800
29948
29949 mpc83xx: Fix the typo in mpc83xx.h
29950
29951 The SPCR about TSEC priority is wrong.
29952
29953 Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
29954 Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
29955 Signed-off-by: Dave Liu <daveliu@freescale.com>
29956 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29957
29958commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
29959Author: Dave Liu <r63238@freescale.com>
29960Date: Thu Jan 10 23:04:13 2008 +0800
29961
29962 mpc83xx: Fix the typo in global data struct
29963
29964 Fix the typo in global_data.h
29965
29966 Signed-off-by: Dave Liu <daveliu@freescale.com>
29967 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29968
29969commit 2c5b48fc205c3e2752910da8f39209ed075929e5
29970Author: Dave Liu <r63238@freescale.com>
29971Date: Thu Jan 10 23:03:03 2008 +0800
29972
29973 mpc83xx: Remove cache config from config.h
29974
29975 clean up the cache config from configs.h of board
29976
29977 Signed-off-by: Dave Liu <daveliu@freescale.com>
29978 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29979
29980commit fab6f556bbbbd1bb35a5433161f7f173c18df559
29981Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29982Date: Wed Jan 9 20:57:47 2008 +0300
29983
29984 mpc83xx: add support for the MPC8360E-RDK
29985
29986 This is MPC8360E based board with:
29987 - 256MB fixed SDRAM;
29988 - 8MB Intel Strata NOR flash;
29989 - StMICRO 64MiB NAND flash;
29990 - two 10/100/1000 ethernet ports connected via Broadcom
29991 BCM5481 PHYs;
29992 - two 10/100 ethernet ports connected via National
29993 DP83848 PHYs;
29994 - one PCI and one miniPCI slots;
29995 - four serial ports (two NS16550-compatible, two UCCs);
29996 - four USB ports working through MPC8360E "FHCI" USB controller;
29997 - Fujitsu MB86277 graphics controller;
29998 - Analog to Digital Converter/Touchscreen controller, AD7843
29999 connected to SPI.
30000
30001 Features not supported in this patch are:
30002 - StMICRO 64MiB NAND flash (patch sent);
30003 - MINT framebuffer initialization (patch is pending);
30004 - Fetching production information from the EEPROM via I2C;
30005 - FHCI USB;
30006 - Two slow UCCs used as RS-485 UARTs.
30007
30008 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
30009 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30010
30011commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
30012Author: Anton Vorontsov <avorontsov@ru.mvista.com>
30013Date: Wed Jan 9 20:57:40 2008 +0300
30014
30015 mpc83xx: add "fsl, qe" compatible fixups
30016
30017 New device trees will use "fsl,qe" compatible properties.
30018
30019 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
30020 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30021
30022commit 977b57583a7c34010e566a09a679ec3c1836f996
30023Author: Kim Phillips <kim.phillips@freescale.com>
30024Date: Wed Jan 9 15:24:06 2008 -0600
30025
30026 mpc83xx: add missing CONFIG_HAS_ETH0 defines
30027
30028 the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
30029 is defined; add the define to the missing board configs.
30030
30031 Thanks to Emilian Medve for finding this.
30032
30033 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30034
30035commit b830b7f1635984ba607219fcbd78597c28eeb529
30036Author: Becky Bruce <bgill@freescale.com>
30037Date: Thu Jan 10 14:00:28 2008 -0600
30038
30039 86xx: Support 2GB DIMMs
30040
30041 Configure the number of bits used to address the banks inside the SDRAM
30042 device. The default register value of 0 means 2 bits to address 4 banks.
30043 Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
30044
30045 Signed-off-by: Becky Bruce <bgill@freescale.com>
30046
30047commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
30048Author: Niklaus Giger <niklausgiger@gmx.ch>
30049Date: Thu Jan 10 18:50:33 2008 +0100
30050
30051 ppc4xx: Make Sequoia boot vxWorks
30052
30053 vxWorks expects in
30054 TLB 0 a entry for the Machine Check interrupt
30055 TLB 1 a entry for the RAM
30056 TLB 2 a entry for the EBC
30057 TLB 3 a entry for the boot flash
30058
30059 After changing the baudrate to 9600 I had no problems to boot the
30060 vxWorks image as distributed by WindRiver (Revision 2.0/1 from
30061 June 18, 2007)
30062
30063 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30064
30065commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
30066Author: Larry Johnson <lrj@arlinx.com>
30067Date: Wed Jan 9 23:10:27 2008 -0500
30068
30069 ppc4xx: Fix dflush() to restore DVLIM register
30070
30071 Signed-off-by: Larry Johnson <lrj@acm.org>
30072
30073commit 252f60b068d1f94190b5bcfda169db582387e15e
30074Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30075Date: Thu Jan 10 03:52:44 2008 -0500
30076
30077 Nios2: remove common/cmd_bdinfo.c unused variable.
30078
30079 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30080 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
30081
30082commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
30083Author: Ben Warren <biggerbadderben@gmail.com>
30084Date: Wed Jan 9 18:15:53 2008 -0500
30085
30086 Fix Ethernet init() return codes
30087
30088 Change return values of init() functions in all Ethernet drivers to conform
30089 to the following:
30090
30091 >=0: Success
30092 <0: Failure
30093
30094 All drivers going forward should return 0 on success. Current drivers that
30095 return 1 on success were left as-is to minimize changes.
30096
30097 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30098 Acked-by: Stefan Roese <sr@denx.de>
30099 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30100 Acked-by: Kim Phillips <kim.phillips@freescale.com>
30101 Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30102 Acked-By: Timur Tabi <timur@freescale.com>
30103
30104commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
30105Author: Wolfgang Denk <wd@denx.de>
30106Date: Thu Jan 10 00:55:14 2008 +0100
30107
30108 Coding Style cleanup; update CHANGELOG
30109
30110 Signed-off-by: Wolfgang Denk <wd@denx.de>
30111
Wolfgang Denkd3a65322008-01-10 00:55:14 +010030112commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
30113Author: Kim Phillips <kim.phillips@freescale.com>
30114Date: Wed Jan 9 16:56:54 2008 -0600
30115
30116 Add QE brg freq and correct qe bus freq fdt update code
30117
30118 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30119 Signed-off-by: Andy Fleming <afleming@freescale.com>
30120
30121commit 890dfef06c2d169a3356359596890754dfb8ee1c
30122Author: Andy Fleming <afleming@freescale.com>
30123Date: Wed Jan 9 16:34:51 2008 -0600
30124
30125 Remove cache config from ATUM8548 and sbc8548 configs
30126
30127 These boards weren't updated by Kumar's config patch because they
30128 weren't in the tree, yet.
30129
30130 Signed-off-by: Andy Fleming <afleming@freescale.com>
30131
30132commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
30133Author: Timur Tabi <timur@freescale.com>
30134Date: Mon Jan 7 13:31:19 2008 -0600
30135
30136 85xx: add ability to upload QE firmware
30137
30138 Define the layout of a binary blob that contains a QE firmware and instructions
30139 on how to upload it. Add function qe_upload_firmware() to parse the blob and
30140 perform the actual upload. Add command-line command "qe fw" to take a firmware
30141 blob in memory and upload it. Update ft_cpu_setup() on 85xx to create the
30142 'firmware' device tree node if U-Boot has uploaded a firmware. Fully define
30143 'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
30144
30145 Signed-off-by: Timur Tabi <timur@freescale.com>
30146
30147commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
30148Author: Kumar Gala <galak@kernel.crashing.org>
30149Date: Tue Jan 8 01:22:21 2008 -0600
30150
30151 85xx: Remove cache config from configs.h
30152
30153 Either use the standard defines in asm/cache.h or grab the information
30154 at runtime from the L1CFG SPR.
30155
30156 Also, minor cleanup in cache.h to make the code a bit more readable.
30157
30158 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30159
30160commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
30161Author: robert lazarski <robertlazarski@gmail.com>
30162Date: Fri Dec 21 10:39:27 2007 -0500
30163
30164 mpc85xx: Add support for ATUM8548 (updated)
30165
30166 Add support for Instituto Atlantico's ATUM8548 board
30167
30168 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
30169 Signed-off-by: Andy Fleming <afleming@freescale.com>
30170
30171commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
30172Author: robert lazarski <robertlazarski@gmail.com>
30173Date: Fri Dec 21 10:36:37 2007 -0500
30174
30175 mpc85xx: Add support for ATUM8548 (updated)
30176
30177 Add support for Instituto Atlantico's ATUM8548 board
30178
30179 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
30180
30181commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
30182Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
30183Date: Thu Dec 13 06:45:14 2007 -0600
30184
30185 mpc85xx: Add support for SBC8548 (updated)
30186
30187 Add support for Wind River's SBC8548 reference board.
30188
30189 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
30190
30191commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
30192Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
30193Date: Thu Dec 13 06:45:08 2007 -0600
30194
30195 mpc85xx: Add support for SBC8548 (updated)
30196
30197 Add support for Wind River's SBC8548 reference board.
30198
30199 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
30200 Signed-off by: Andy Fleming <afleming@freescale.com>
30201
30202commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
30203Author: Anton Vorontsov <avorontsov@ru.mvista.com>
30204Date: Mon Oct 22 19:58:19 2007 +0400
30205
30206 MPC8568E-MDS: set up QE pario for UART1
30207
30208 To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
30209 be set up appropriately.
30210
30211 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
30212
30213commit ad162249cb371e9e38971676f09be791e5f3cf4a
30214Author: Anton Vorontsov <avorontsov@ru.mvista.com>
30215Date: Mon Oct 22 18:12:46 2007 +0400
30216
30217 MPC8568E-MDS: reset UCCs to use them reliably
30218
30219 In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
30220 UCCs.
30221
30222 p.s Similar code exists in the Linux kernel board file (for capability
30223 reasons with older U-Boots), but should be removed some day.
30224
30225 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
30226
30227commit 2146cf56821c3364786ca94a7306008c5824b238
30228Author: Kumar Gala <galak@kernel.crashing.org>
30229Date: Wed Dec 19 01:18:15 2007 -0600
30230
30231 Reworked FSL Book-E TLB macros to be more readable
30232
30233 The old macros made it difficult to know what WIMGE and perm bits
30234 were set for a TLB entry. Actually use the bit masks for these items
30235 since they are only a single bit.
30236
30237 Also moved the macros into mmu.h out of e500.h since they aren't specific
30238 to e500.
30239
30240 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30241
30242commit 1d47273d46925929f8f2c1913cd96d7257aade88
30243Author: Kumar Gala <galak@kernel.crashing.org>
30244Date: Tue Dec 18 23:21:51 2007 -0600
30245
30246 Use FSL Book-E MMU macros from Linux Kernel
30247
30248 Grab the FSL Book-E MAS register macros from Linux. Also added
30249 defines for page sizes up to 4TB and removed SHAREN since it doesnt
30250 really exist.
30251
30252 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30253
30254commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
30255Author: Andy Fleming <afleming@freescale.com>
30256Date: Wed Jan 9 13:51:32 2008 -0600
30257
30258 Fix my own merge stupidity
30259
30260 Way back in August I merged Heiko's patch:
30261 566a494f592: [PCS440EP] upgrade the PCS440EP board
30262
30263 with Jon's CONFIG_COMMANDS patches.
30264
30265 This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
30266
30267 However, in the process, I left out some of Heiko's good changes.
30268
30269 Now Heiko's and Jon's patches are properly merged in fat_register_device()
30270
30271 Signed-off-by: Andy Fleming <afleming@freescale.com>
30272
30273commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
30274Author: James Yang <James.Yang@freescale.com>
30275Date: Wed Jan 9 11:17:49 2008 -0600
30276
30277 Expose parse_line() globally.
30278
30279 Add new function readline_into_buffer() that allows the
30280 output of readline to be put into a pointer to char buffer.
30281
30282 This refactoring allows other functions besides the
30283 main command loop to also use the same input mechanism.
30284
30285 Signed-off-by: James Yang <James.Yang@freescale.com>
30286 Acked-by: Jon Loeliger <jdl@freescale.com>
30287
30288commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
30289Author: Guennadi Liakhovetski <lg@denx.de>
30290Date: Wed Jan 9 01:15:25 2008 +0100
30291
30292 trivial: fix consequences of a bad merge
30293
30294 Fix what looks like a merge artifact.
30295
30296 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30297
30298commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
30299Author: Zhang Wei <wei.zhang@freescale.com>
30300Date: Thu Jan 3 10:51:15 2008 +0800
30301
30302 Add Ctrl combo key support to usb keyboard driver.
30303
30304 Ctrl combo key support is added, which is very useful to input Ctrl-C
30305 for interrupt current job.
30306 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
30307 key input when tstc() is called.
30308
30309 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
30310
30311commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
30312Author: Marcel Ziswiler <marcel@ziswiler.com>
30313Date: Sun Dec 30 03:30:56 2007 +0100
30314
30315 fix various comments
30316
30317 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
30318
30319commit 7817cb2083d982923752fe0f12b67c0e7c09a027
30320Author: Marcel Ziswiler <marcel@ziswiler.com>
30321Date: Sun Dec 30 03:30:46 2007 +0100
30322
30323 fix comments with new drivers organization
30324
30325 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
30326
30327commit a9b410dc7d2a4721c408b13abfc037988150f145
30328Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30329Date: Fri Dec 28 12:50:59 2007 +0900
30330
30331 Remove the obsolete terse version of do_mii()
30332
30333 We now have more useful version of do_mii() and everybody use it.
30334 Gerald Van Baren says:
30335
30336 > When I originally wrote the mii command 6(!) years ago, I wrote a
30337 > verbose version that printed human readable decomposition of the flags,
30338 > etc., and a terse one that didn't print as much stuff and thus had a
30339 > smaller memory footprint.
30340 >
30341 > It sounds like the terse version has withered and died, apparently
30342 > people are only using the verbose version (which is very understandable,
30343 > I do myself).
30344
30345 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30346 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
30347
30348commit 01c687aa6e065bd4faf80f723361e798941dd6b0
30349Author: Mike Frysinger <vapier@gentoo.org>
30350Date: Thu Dec 27 13:42:56 2007 -0500
30351
30352 Do not reference sha1.c when building mkimage.
30353
30354 remove sha1.o from mkimage linking since it isn't actually used.
30355
30356 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
30357
30358commit b9173af73e524d37c812f210173cf83385c5171a
30359Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30360Date: Thu Dec 27 15:39:54 2007 +0900
30361
30362 common/cmd_mii.c: Add sanity argc check
30363
30364 If type mii command without arguments, we suffer from uninitialized argv[]
30365 entries; for example we MIPS get stuck by TLB error.
30366
30367 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30368
30369commit 500856eb1707ed17d9204baa61dd59948d3b2899
30370Author: Rafal Jaworowski <raj@semihalf.com>
30371Date: Wed Jan 9 19:39:36 2008 +0100
30372
30373 API for external applications.
30374
30375 This is an API for external (standalone) applications running on top of
30376 U-Boot, and is meant to be more extensible and robust than the existing
30377 jumptable mechanism. It is similar to UNIX syscall approach. See api/README
30378 for more details.
30379
30380 Included is the demo application using this new framework (api_examples).
30381
30382 Please note this is still an experimental feature, and is turned off by
30383 default.
30384
30385 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
30386
Wolfgang Denk3bb77fb2008-01-12 00:39:37 +010030387commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
30388Author: Jon Loeliger <jdl@freescale.com>
30389Date: Wed Jan 9 12:14:55 2008 -0600
30390
30391 86xx: Remove cache config from configs.h
30392
30393 Just use the standard defines in asm/cache.h.
30394
30395 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30396
Wolfgang Denkd3a65322008-01-10 00:55:14 +010030397commit 26a41790f8eba19ad450e18ae91351daf485b3e2
30398Author: Rafal Jaworowski <raj@semihalf.com>
30399Date: Wed Jan 9 18:05:27 2008 +0100
30400
30401 Globalize envmatch()
30402
30403 The newly introduced API (routines related to env vars) will need to call
30404 it.
30405
30406 Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
30407
Wolfgang Denk3bb77fb2008-01-12 00:39:37 +010030408commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
30409Author: Jon Loeliger <jdl@freescale.com>
30410Date: Fri Jan 4 12:07:27 2008 -0600
30411
30412 Convert MPC8610HPCD to use libfdt.
30413
30414 Assumes the presence of the aliases node in the DTS to
30415 locate the pci and serial nodes for fixups.
30416
30417 Use consistent fdtaddr and fdtfile in environment variables.
30418
30419 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30420
30421commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
30422Author: Jon Loeliger <jdl@freescale.com>
30423Date: Fri Jan 4 11:58:23 2008 -0600
30424
30425 8610: Fix lingering compile warnings.
30426
30427 Turn off DEBUG.
30428
30429 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30430
Wolfgang Denkd3a65322008-01-10 00:55:14 +010030431commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
30432Author: Wolfgang Denk <wd@denx.de>
30433Date: Wed Jan 9 15:14:46 2008 +0100
30434
30435 Coding Style cleanup, update CHANGELOG
30436
30437 Signed-off-by: Wolfgang Denk <wd@denx.de>
30438
Wolfgang Denk6007f322008-01-09 15:14:46 +010030439commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
30440Author: Mike Frysinger <vapier@gentoo.org>
30441Date: Tue Dec 18 04:29:55 2007 -0500
30442
30443 fix easylogo on big endian dev systems
30444
30445 didnt realize how out of shape easylogo actually was until i tried using it.
30446 this patch does byte swapping as need be on the input tga header since the tga
30447 is in little endian but the host could just as well be big endian. i didnt
30448 bother using bswap macros or such stuff from system headers as nothing in
30449 POSIX dictates byte swapping functionality.
30450
30451 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
30452
30453commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
30454Author: Mike Frysinger <vapier@gentoo.org>
30455Date: Tue Dec 18 03:23:25 2007 -0500
30456
30457 cleanup easylogo
30458
30459 - make the Makefile not suck
30460 - include proper headers for prototypes
30461 - fix obvious broken handling of strchr() when handling '.' in filenames
30462
30463 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
30464
30465commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
30466Author: raptorbrino@aim.com <raptorbrino@aim.com>
30467Date: Thu Dec 13 21:23:28 2007 -0500
30468
30469 Fix build problems under Cygwin
30470
30471 This patch allows u-boot to build without error in a cygwin
30472 environment. Cygwin does not define __u64 in it's
30473 include/asm/types.h file. The -idirafter flag in the u-boot
30474 build causes the inclusion of the cygwin types.h file as opposed
30475 to u-bot/include/asm/types.h file which does define __u64.
30476 Subsequently, sha1.c compile fails due to unknown symbol.
30477
30478 Signed-off-by: Brian Miller <raptorbrino@netscape.net>
30479
30480commit 43ef1c381f9195504a2488f5cb909227eb97d475
30481Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
30482Date: Fri Nov 30 17:29:59 2007 +0100
30483
30484 cmd_bmp: Add support for displaying gzip compressed bmps
30485
30486 The existing code can show information about a gzip compressed BMP
30487 image, but can't actually display it.
30488
30489 Therefore, move the decompression code out of bmp_info() and use it in
30490 bmp_display() as well in order to display a compressed BMP image.
30491
30492 Also, clean things up a bit and fix a memory leak while we're at it.
30493
30494 [hskinnemoen@atmel.com: a bit of refactoring]
30495 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30496
30497commit d197ffd8172c6fdef38733424640a9a47295d6e9
30498Author: Guennadi Liakhovetski <lg@denx.de>
30499Date: Thu Nov 29 21:15:56 2007 +0100
30500
30501 Fix and optimize MII operations on FEC (MPC8xx) controllers
30502
30503 This patch fixes several issues at least on a MPC885 based system with two
30504 FEC interfaces used in MII mode.
30505
30506 1. PHY discovery should first read PHY_PHYIDR2 register and only then
30507 PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
30508 otherwise the values read are wrong. Also notice, that PHY discovery
30509 cannot work on MPC88x / MPC87x in setups with both FECs active at all
30510 in its present form, because for both interfaces the registers from FEC
30511 1 are used to communicate over MII.
30512
30513 2. Remove code duplication for resetting the FEC by isolating it into a
30514 separate function.
30515
30516 3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
30517
30518 4. Optimize mii_init() to only reset the FEC 1 controller once.
30519
30520 5. Fix a typo in mii_init() using index i instead of j thus potentially
30521 leading to unpredictable results.
30522
30523 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30524
30525commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
30526Author: Guennadi Liakhovetski <lg@denx.de>
30527Date: Tue Nov 20 13:14:20 2007 +0100
30528
30529 Fix endianness conversions in rtl8169 driver
30530
30531 It is unclear on what platforms this driver has been tested, since
30532 noone up to now defines CONFIG_RTL8169 in the board configuration
30533 header. Now it has been fixed for a big-endian mpc8241 based
30534 linkstation platform. This patch presents the necessary endianness
30535 conversion fixes.
30536
30537 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30538
Wolfgang Denkd3a65322008-01-10 00:55:14 +010030539commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
30540Author: Zhang Wei <wei.zhang@freescale.com>
30541Date: Thu Jan 3 10:51:15 2008 +0800
30542
30543 Add Ctrl combo key support to usb keyboard driver.
30544
30545 Ctrl combo key support is added, which is very useful to input Ctrl-C
30546 for interrupt current job.
30547 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
30548 key input when tstc() is called.
30549
30550 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
30551 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30552
Wolfgang Denk6007f322008-01-09 15:14:46 +010030553commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
30554Author: Wolfgang Denk <wd@denx.de>
30555Date: Wed Jan 9 13:43:38 2008 +0100
30556
30557 Coding Style clenaup; update CHANGELOG
30558
30559 Signed-off-by: Wolfgang Denk <wd@denx.de>
30560
Wolfgang Denk07eb0262008-01-09 13:43:38 +010030561commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
30562Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30563Date: Thu Dec 27 17:13:11 2007 +0100
30564
30565 Remove bit swapping in Xilinx Spartan bitfile loading
30566
30567 This patch removes the unnecessary bit swapping when
30568 booting .bit files with the 'fpga loadb' command.
30569
30570 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30571
30572commit 437fc7327f0611f82937858f2d80e4cd61b40984
30573Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30574Date: Thu Dec 27 17:13:05 2007 +0100
30575
30576 Fix MSB check in Xilinx Spartan slave serial mode
30577
30578 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30579
30580commit 3bff4ffa33729a42645e328a21e8d16488872958
30581Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30582Date: Thu Dec 27 17:12:56 2007 +0100
30583
30584 Add new Xilinx Spartan FPGA types
30585
30586 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30587
30588commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
30589Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30590Date: Thu Dec 27 17:12:43 2007 +0100
30591
30592 Add pre and post configuration callbacks for Spartan FPGAs
30593
30594 This patch adds a post configuration callback for Spartan2/3 FPGAs.
30595 pre and post configuration callback are now optional and
30596 not called when the function pointer is set to NULL.
30597
30598 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30599
30600commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
30601Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30602Date: Thu Dec 27 17:12:34 2007 +0100
30603
30604 Improve configuration of FPGA subsystem
30605
30606 This patch removes the FPGA subsystem configuration through
30607 the CONFIG_FPGA bitmask configuration option.
30608
30609 See README for the new options:
30610
30611 CONFIG_FPGA,
30612 CONFIG_FPGA_<vendor>,
30613 CONFIG_FPGA_<family>
30614
30615 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30616
30617commit 95c6bc7d4a3588b452baca610f8c795a83630477
30618Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30619Date: Thu Dec 27 16:55:17 2007 +0100
30620
30621 Add Epson RX8025 RTC support
30622
30623 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30624
30625commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
30626Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30627Date: Thu Dec 27 16:57:23 2007 +0100
30628
30629 serial: Make default_serial_console() a weak function
30630
30631 With this patch it is possible to reimplement default_serial_console()
30632 in board specific code. This will be done in the upcomming PMC440
30633 U-Boot port. This also allows the lwmon board maintainer to
30634 remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
30635
30636 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30637
30638commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
30639Author: Harald Welte <laforge@openmoko.org>
30640Date: Wed Dec 19 14:14:47 2007 +0100
30641
30642 add 'terminal program' functionality
30643
30644 This patch adds a 'cu' like serial terminal command to u-boot
30645 using which you can access other serial ports from the system console.
30646
30647 OpenMoko uses this in their Neo1973 phones to get access to the GSM
30648 Modem and GPS chip from the bootloader.
30649
30650 Signed-off-by: Harald Welte <laforge@openmoko.org>
30651
30652commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
30653Author: Harald Welte <laforge@openmoko.org>
30654Date: Wed Dec 19 14:12:53 2007 +0100
30655
30656 Re-introduce the 'nand read.oob' and 'nand write.oob' commands
30657 that used to exist with the legacy NAND code
30658
30659 Signed-off-by: Harald Welte <laforge@openmoko.org>
30660
30661commit f540c42d9564854b19ce9bbb70affe172529fe70
30662Author: Harald Welte <laforge@openmoko.org>
30663Date: Wed Dec 19 14:09:58 2007 +0100
30664
30665 Fix building with CRAMFS but not JFFS2 support
30666
30667 Signed-off-by: Harald Welte <laforge@openmoko.org>
30668
30669commit 23d0baf967fecdaf1804f045f6339337c5607eec
30670Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30671Date: Sat Dec 22 15:52:58 2007 +0100
30672
30673 Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
30674
30675 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30676 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30677
30678commit 23776ff292966a85d811126933830bed48211826
30679Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30680Date: Tue Dec 11 10:53:12 2007 +0100
30681
30682 ARM: support board-specific ethernet PHY init
30683
30684 Add until the new phylib will be arrived
30685
30686 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30687
30688commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
30689Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30690Date: Sat Dec 8 16:34:08 2007 +0100
30691
30692 IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
30693
30694 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30695
30696commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
30697Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30698Date: Sun Dec 9 11:01:10 2007 +0100
30699
30700 Add missing file in gitignore and comments
30701
30702 based on Linux source tree's .gitignore files
30703
30704 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30705
30706commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
30707Author: Wolfgang Denk <wd@denx.de>
30708Date: Wed Jan 9 11:36:21 2008 +0100
30709
30710 Coding Style cleanup, update CHANGELOG
30711
30712 Signed-off-by: Wolfgang Denk <wd@denx.de>
30713
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010030714commit b2e2142c500c48a57f18f9dd30e66c13caea0971
30715Author: Stefan Roese <sr@denx.de>
30716Date: Wed Jan 9 10:38:58 2008 +0100
30717
30718 POST: Execute SPR test after relocation
30719
30720 On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
30721 self modifying code and this doesn't work with stack in d-cache, since
30722 I can't move the code from d-cache to i-cache. We move the SPR test to
30723 be executed a little later, after relocation. Then stack is located in
30724 SDRAM and this self-modifying code is no problem anymore.
30725
30726 Signed-off-by: Stefan Roese <sr@denx.de>
30727
30728commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
30729Author: Stefan Roese <sr@denx.de>
30730Date: Wed Jan 9 10:28:20 2008 +0100
30731
30732 ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
30733
30734 This patch configures the LWMON5 port to use d-cache as init-ram and
30735 the unused GPT0_COMP6 as POST WORD storage.
30736
30737 Signed-off-by: Stefan Roese <sr@denx.de>
30738
30739commit 1754f50b710194f886b6f2831803d8960171a14d
30740Author: Stefan Roese <sr@denx.de>
30741Date: Wed Jan 9 10:25:46 2008 +0100
30742
30743 ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
30744
30745 The privious 4xx POST implementation only supported storing the POST
30746 WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
30747 we need to store the POST WORD in some other non volatile location.
30748 This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
30749 a location.
30750
30751 Signed-off-by: Stefan Roese <sr@denx.de>
30752
30753commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
30754Author: Stefan Roese <sr@denx.de>
30755Date: Wed Jan 9 10:23:16 2008 +0100
30756
30757 ppc4xx: Add 44x cache locking to better support init-ram in d-cache
30758
30759 This patch adds support for locking the init-ram/stack in d-cache,
30760 so that other regions may use d-cache as well
30761
30762 Note, that this current implementation locks exactly 4k of d-cache,
30763 so please make sure that you don't define a bigger init-ram area. Take
30764 a look at the lwmon5 440EPx implementation as a reference.
30765
30766 Signed-off-by: Stefan Roese <sr@denx.de>
30767
30768commit 0ddb89601a8d29e808db450366752ffdc6267c53
30769Author: Wolfgang Denk <wd@denx.de>
30770Date: Wed Jan 9 10:16:33 2008 +0100
30771
30772 Fix memset bug in ext2fs_read_file()
30773
30774 ext2fs_read_file() had the function arguments swapped.
30775
30776 Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
30777
30778 Signed-off-by: Wolfgang Denk <wd@denx.de>
30779
30780commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
30781Author: Markus Klotzbücher <mk@denx.de>
30782Date: Tue Jan 5 08:17:15 1988 +0100
30783
30784 Fix problems with usb storage devices on MPC5200 /TQM5200
30785
30786 The MPC5200 OHCI controller operates in big endian, so
30787 CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
30788
30789 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30790
30791commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
30792Author: Wolfgang Denk <wd@denx.de>
30793Date: Tue Jan 8 22:58:27 2008 +0100
30794
30795 Fix compile problem with new env code.
30796
30797 Signed-off-by: Wolfgang Denk <wd@denx.de>
30798
30799commit 64b3727b9779d86127cd576e392a987de5ebb9fd
30800Author: Markus Klotzbücher <mk@denx.de>
30801Date: Tue Nov 27 10:23:20 2007 +0100
30802
30803 tools: fix fw_printenv tool to compile again
30804
30805 This patch updates the fw_printenv/fw_setenv userspace tool to include
30806 the correct MTD header in order to compile against current kernel
30807 headers. Backward compatibility is preserved by introducing an option
30808 MTD_VERSION which can be set to "old" for compilation using the old MTD
30809 headers. Along with this a number of warnings are fixed.
30810
30811 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30812
30813commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
30814Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30815Date: Tue Jan 8 15:40:09 2008 +0100
30816
30817 ppc4xx: assign PCI interrupts on seuqoia boards
30818
30819 Some operating systems rely on assigned PCI interrupts.
30820
30821 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30822
30823commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
30824Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30825Date: Tue Jan 8 15:50:49 2008 +0100
30826
30827 ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
30828
30829 This patch allows the use of 4xx interrupt vector number defines
30830 in board specific code outside cpu/ppc4xx.
30831
30832 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30833
30834commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
30835Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30836Date: Tue Jan 8 15:39:01 2008 +0100
30837
30838 ppc4xx: Fix UIC2 vector number base
30839
30840 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30841
30842commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
30843Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30844Date: Tue Jan 8 12:49:58 2008 +0100
30845
30846 ppc4xx: Update PLB/PCI divider for PMC440 board
30847
30848 This patch updates the PLB/PCI divider when running at
30849 400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
30850
30851 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30852
30853commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
30854Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30855Date: Tue Jan 8 11:13:09 2008 +0100
30856
30857 ppc4xx: Disable error message when no NAND chip is installed on PMC440
30858
30859 Add CFG_NAND_QUIET_TEST option to disable error message when
30860 no NAND chip is installed on PMC440 boards.
30861
30862 Disable a couple of config defines that are only used for NAND_U_BOOT.
30863
30864 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30865
Wolfgang Denkd3a65322008-01-10 00:55:14 +010030866commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
30867Author: Wolfgang Denk <wd@denx.de>
30868Date: Tue Jan 8 22:58:27 2008 +0100
30869
30870 Fix compile problem with new env code.
30871
30872 Signed-off-by: Wolfgang Denk <wd@denx.de>
30873
30874commit 6de66b35426312a21174a9bf0576a094e2904bea
30875Author: Markus Klotzbücher <mk@denx.de>
30876Date: Tue Nov 27 10:23:20 2007 +0100
30877
30878 tools: fix fw_printenv tool to compile again
30879
30880 This patch updates the fw_printenv/fw_setenv userspace tool to include
30881 the correct MTD header in order to compile against current kernel
30882 headers. Backward compatibility is preserved by introducing an option
30883 MTD_VERSION which can be set to "old" for compilation using the old MTD
30884 headers. Along with this a number of warnings are fixed.
30885
30886 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30887
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010030888commit ad3006fe7e84667021753b74247b0bafd97ba35f
30889Author: Gerald Van Baren <vanbaren@cideas.com>
30890Date: Mon Jan 7 23:47:32 2008 -0500
30891
30892 LIBFDT: use memmove() instead of memcpy()
30893
30894 This is partial patch from the DTC/libfdt
30895 commit 67b6b33b9b413a450a72135b5dc59c0a1e33e647
30896 Author: David Gibson <david@gibson.dropbear.id.au>
30897 Date: Wed Nov 21 11:56:14 2007 +1100
30898
30899 The patch also fixes one genuine bug caught by valgrind -
30900 _packblocks() in fdt_rw.c was using memcpy() where it should have been
30901 using memmove().
30902
30903 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
30904
30905commit aec7135bc300e3340d18f203347ee00c5b5f68c0
30906Author: David Gibson <david@gibson.dropbear.id.au>
30907Date: Mon Dec 17 14:42:07 2007 +1100
30908
30909 libfdt: Add more documentation (patch the seventh)
30910
30911 This patch adds more documenting comments to libfdt.h. Specifically,
30912 these document the read/write functions (not including fdt_open_into()
30913 and fdt_pack(), for now).
30914
30915 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
30916
30917commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
30918Author: David Gibson <david@gibson.dropbear.id.au>
30919Date: Mon Dec 17 14:41:52 2007 +1100
30920
30921 libfdt: Add more documentation (patch the sixth)
30922
30923 This patch adds some more documenting comments to libfdt.h.
30924 Specifically this documents all the write-in-place functions.
30925
30926 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
30927
30928commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
30929Author: Gerald Van Baren <vanbaren@cideas.com>
30930Date: Sat Dec 29 22:45:27 2007 -0500
30931
30932 Fine grained per property /chosen updating.
30933
30934 Implement a suggestion by Scott Wood to make the /chosen handling fine
30935 grained. Don't overwrite pre-existing properties on a per-property basis,
30936 so if /chosen exists but a necessary /chosen/property doesn't, it gets
30937 created. If a /chosen property exists, it is NOT overwritten unless the
30938 "force" flag is true.
30939
30940 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
30941
30942commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
30943Author: Gerald Van Baren <vanbaren@cideas.com>
30944Date: Sat Jan 5 15:33:29 2008 -0500
30945
30946 Improve the FDT help message.
30947
30948 Add a note that "fdt copy" makes the new address active.
30949 Remove most of the extra hints at the end of the fdt help.
30950
30951 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
30952
30953commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
30954Author: Gerald Van Baren <vanbaren@cideas.com>
30955Date: Sat Jan 5 14:52:04 2008 -0500
30956
30957 Support setting FDT properties with optional values.
30958
30959 Fix a bug found and documented by Bartlomiej Sieka where the optional
30960 value on "fdt set <path> <prop> [<val>]" wasn't optional.
30961
30962 => fdt mknode / testnode
30963 => fdt print /testnode
30964 testnode {
30965 };
30966 => fdt set /testnode testprop
30967 => fdt print /testnode
30968 testnode {
30969 testprop;
30970 };
30971
30972 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
30973
30974commit 22fb2246df91bfc840d87f0c5910818bad55577a
30975Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30976Date: Fri Dec 28 11:56:30 2007 +0100
30977
30978 Add fdt_find_and_setprop() to fdt_support.h
30979
30980 fdt_find_and_setprop() is used by several 4xx boards and it's
30981 missing in the appropriate header. This patch eliminates a
30982 warning when building U-Boot for such boards.
30983
30984 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30985 Acked-by: Stefan Roese <sr@denx.de>
30986
30987commit 802b769bac17b0560d3535a42c502469ee190cd1
30988Author: Stefan Roese <sr@denx.de>
30989Date: Tue Jan 8 18:39:30 2008 +0100
30990
30991 ppc4xx: Return 0 on success in 4xx ethernet driver
30992
30993 Signed-off-by: Stefan Roese <sr@denx.de>
30994
30995commit 6775c68683a53c7abc778774641aac6f833a2cbf
30996Author: Kim Phillips <kim.phillips@freescale.com>
30997Date: Tue Jan 8 09:59:49 2008 -0600
30998
30999 mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
31000
31001 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31002
31003commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
31004Author: Kim Phillips <kim.phillips@freescale.com>
31005Date: Thu Dec 20 16:28:34 2007 -0600
31006
31007 mpc83xx: rm remaining FLAT_TREE code
31008
31009 ..in board pci.c files
31010
31011 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31012
31013commit b3458d2cd55d01732e30a76d898afd99e871cd67
31014Author: Kim Phillips <kim.phillips@freescale.com>
31015Date: Thu Dec 20 15:57:28 2007 -0600
31016
31017 mpc83xx: remove FLAT_TREE code
31018
31019 need to rm it from pci code, too!
31020
31021 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31022
31023commit 5b8bc606c61456566af6912f818a153b6b06f242
31024Author: Kim Phillips <kim.phillips@freescale.com>
31025Date: Thu Dec 20 14:09:22 2007 -0600
31026
31027 mpc83xx: convert to using do_fixup_*()
31028
31029 convert to using simpler mpc85xx style fdt update code; streamline by
31030 eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
31031 the old school FLAT_TREE code from 83xx (since the sbc8349 was just
31032 converted over to using libfdt).
31033
31034 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31035
31036commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
31037Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31038Date: Thu Dec 20 12:58:51 2007 -0500
31039
31040 sbc8349: enable libfdt by default on WRS SBC8349 board.
31041
31042 Make libfdt the default for the WRS SBC8349 board.
31043 Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
31044 done for the other 83xx based boards. Also fix a typo in CONFIG_PCI.
31045
31046 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31047
31048commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
31049Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31050Date: Thu Dec 20 12:58:16 2007 -0500
31051
31052 sbc8349: migrate board to libfdt
31053
31054 This adds libfdt support code for the Wind River sbc8349 board.
31055
31056 Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
31057 the other Freescale 83xx boards.
31058
31059 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31060
31061commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
31062Author: Paul Gortmaker <paul.gortmaker@windriver.com>
31063Date: Thu Dec 20 12:56:19 2007 -0500
31064
31065 sbc8349: Remove board specific ECC code
31066
31067 ECC code is now shared for all 83xx boards, so remove board specific one.
31068 See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
31069
31070 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
31071
31072commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
31073Author: Kim Phillips <kim.phillips@freescale.com>
31074Date: Thu Dec 20 01:30:48 2007 -0600
31075
31076 mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
31077
31078 continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
31079
31080 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31081
31082commit ccf21c311e68d48399eff1e72936052885f6e3f7
31083Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
31084Date: Thu Dec 6 16:43:40 2007 +0100
31085
31086 Add support CONFIG_UEC_ETH3 in MPC83xx
31087
31088 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
31089
31090commit e6af9932d31171e35db880e7b2f29f903b1b7660
31091Author: Kumar Gala <galak@kernel.crashing.org>
31092Date: Mon Nov 26 11:00:54 2007 -0600
31093
31094 Remove CONFIG options related to OF that we dont use
31095
31096 The MPC8360E MDS config defined:
31097 CONFIG_OF_HAS_BD_T
31098 CONFIG_OF_HAS_UBOOT_ENV
31099
31100 Which we don't use or ever needed. This seems like copy-paste feature creep.
31101
31102 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31103
31104commit f602082b4b7ed4ee16432067cc67a0a24fedc715
31105Author: Kim Phillips <kim.phillips@freescale.com>
31106Date: Mon Dec 10 14:16:22 2007 -0600
31107
31108 mpc83xx: supress compiler warning
31109
31110 mpc8360emds.c: In function ‘ft_board_setup’:
31111 mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
31112 mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
31113
31114 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31115
31116commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
31117Author: Kim Phillips <kim.phillips@freescale.com>
31118Date: Tue Nov 27 14:17:29 2007 -0600
31119
31120 mpc83xx: fix remaining fdt_find_node_by_path references
31121
31122 rename to fdt_path_offset
31123
31124 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31125
31126commit 921d4b19ad1be704df58725485d9292dc0414adf
31127Author: Kim Phillips <kim.phillips@freescale.com>
31128Date: Mon Nov 19 12:30:09 2007 -0600
31129
31130 mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
31131
31132 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
31133 This change guarantees that the environment will be located on the
31134 first flash sector after the U-Boot image.
31135
31136 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31137
31138commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
31139Author: Kim Phillips <kim.phillips@freescale.com>
31140Date: Fri Nov 9 14:28:08 2007 -0600
31141
31142 mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
31143
31144 u-boot itself uses GMII mode on the 8360. Fix up UCC phy-connection-type
31145 properties in the device tree so the PHY gets configured for internal delay on
31146 RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
31147
31148 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31149
31150commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
31151Author: Dave Liu <r63238@freescale.com>
31152Date: Tue Sep 18 12:41:15 2007 +0800
31153
31154 mpc83xx: update the CREDITS and MAINTAINERS
31155
31156 update the CREDITS and MAINTAINERS.
31157
31158 Signed-off-by: Dave Liu <daveliu@freescale.com>
31159
31160commit b21add4b42af7b767448251b599b91066a160e0d
31161Author: Dave Liu <r63238@freescale.com>
31162Date: Tue Sep 18 12:40:21 2007 +0800
31163
31164 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
31165
31166 Add the MAINTAINER and MAKEALL entries for mpc837xemds
31167
31168 Signed-off-by: Dave Liu <daveliu@freescale.com>
31169
31170commit f8900ce9094c462355eb792eea264ff16ac8fd16
31171Author: Dave Liu <r63238@freescale.com>
31172Date: Tue Sep 18 12:38:53 2007 +0800
31173
31174 mpc83xx: Add the MPC837xEMDS board readme
31175
31176 Add the README.mpc837xemds to /doc
31177
31178 Signed-off-by: Dave Liu <daveliu@freescale.com>
31179
31180commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
31181Author: Dave Liu <r63238@freescale.com>
31182Date: Tue Sep 18 12:37:57 2007 +0800
31183
31184 mpc83xx: Add the support of MPC837xEMDS board
31185
31186 The MPC837xEMDS board support:
31187 * DDR2 400MHz hardcoded and SPD init
31188 * Local bus NOR Flash
31189 * I2C, UART, MII and RTC
31190 * eTSEC RGMII
31191 * PCI host
31192
31193 Signed-off-by: Dave Liu <daveliu@freescale.com>
31194
31195commit 555da61702771fe0f76f3de23b4e7590f3704161
31196Author: Dave Liu <r63238@freescale.com>
31197Date: Tue Sep 18 12:36:58 2007 +0800
31198
31199 mpc83xx: Add the support of MPC8315E SoC
31200
31201 The MPC8315E SoC including e300c3 core and new IP blocks,
31202 such as TDM, PCI Express and SATA controller.
31203
31204 Signed-off-by: Dave Liu <daveliu@freescale.com>
31205
31206commit 03051c3d35c9981ceaa059005660e699f3eacf1c
31207Author: Dave Liu <r63238@freescale.com>
31208Date: Tue Sep 18 12:36:11 2007 +0800
31209
31210 mpc83xx: Add the support of MPC837x SoC
31211
31212 The MPC837x SoC including e300c4 core and new IP blocks,
31213 such as SDHC, PCI Express and SATA controller.
31214
31215 Signed-off-by: Dave Liu <daveliu@freescale.com>
31216
31217commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
31218Author: Anton Vorontsov <avorontsov@ru.mvista.com>
31219Date: Wed Nov 14 18:54:53 2007 +0300
31220
31221 MPC8360E-MDS: configure and enable second UART
31222
31223 Despite user manual, BCSR9.7 is negated (high) on HRST, so
31224 UART2 is disabled. Fix that and configure QE pins properly.
31225
31226 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
31227
31228commit b2893e1fcb28fad8c8b317104df8cee0142c7631
31229Author: Timur Tabi <timur@freescale.com>
31230Date: Mon Nov 5 09:34:06 2007 -0600
31231
31232 83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
31233
31234 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
31235 currently-defined 83xx boards. This change guarantees that the environment
31236 will be located on the first flash sector after the U-Boot image.
31237
31238 Signed-off-by: Timur Tabi <timur@freescale.com>
31239 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31240
31241commit e05329516a13616b53240cd85b739217c2bf87f1
31242Author: Larry Johnson <lrj@acm.org>
31243Date: Fri Jan 4 13:27:02 2008 -0500
31244
31245 ppc4xx: Remove weak binding from common Denali data-eye search code
31246
31247 Now that there are no board-specific versions of
31248 "denali_core_search_data_eye()", the weak binding on the common version
31249 can be removed.
31250
31251 Signed-off-by: Larry Johnson <lrj@acm.org>
31252
31253commit 5ba576c01602fd328800a427964c36a0a05c5dce
31254Author: Stefan Roese <sr@denx.de>
31255Date: Sat Jan 5 09:13:46 2008 +0100
31256
31257 ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
31258
31259 Signed-off-by: Stefan Roese <sr@denx.de>
31260
31261commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
31262Author: Stefan Roese <sr@denx.de>
31263Date: Sat Jan 5 09:12:41 2008 +0100
31264
31265 ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
31266
31267 On Katmai the complete auto-calibration somehow doesn't seem to
31268 produce the best results, meaning optimal values for RQFD/RFFD.
31269 This was discovered by GDA using a high bandwidth scope,
31270 analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
31271 so now on Katmai "only" RFFD is auto-calibrated.
31272
31273 This patch also adds RDCC calibration as mentioned on page 7 of
31274 the AMCC PowerPC440SP/SPe DDR2 application note:
31275 "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
31276
31277 Signed-off-by: Stefan Roese <sr@denx.de>
31278
31279commit 49db47b8ae6afff2b898be312948ff501357dc80
31280Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31281Date: Wed Jan 2 16:48:42 2008 +0100
31282
31283 ppc4xx: Remove sdram.h from PMC440 board
31284
31285 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31286
31287commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
31288Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31289Date: Wed Jan 2 16:48:34 2008 +0100
31290
31291 ppc4xx: use common denali core defines and data eye search code for PMC440
31292
31293 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31294
31295commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
31296Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31297Date: Wed Jan 2 12:05:14 2008 +0100
31298
31299 ppc4xx: More cleanup for esd's LCD code
31300
31301 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31302
31303commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
31304Author: Stefan Roese <sr@denx.de>
31305Date: Fri Jan 4 12:00:01 2008 +0100
31306
31307 ppc4xx: Fix Sequoia NAND booting target
31308
31309 The Sequoia NAND booting target now uses the recently extracted
31310 cpu/ppc4xx/denali_data_eye.c file too.
31311
31312 Signed-off-by: Stefan Roese <sr@denx.de>
31313
31314commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
31315Author: Lawrence R. Johnson <lrj@acm.org>
31316Date: Thu Jan 3 15:02:02 2008 -0500
31317
31318 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
31319
31320 Signed-off-by: Larry Johnson <lrj@acm.org>
31321
31322commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
31323Author: Lawrence R. Johnson <lrj@acm.org>
31324Date: Fri Jan 4 02:11:56 2008 -0500
31325
31326 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
31327
31328 Note: this patch changes the configuration of some GPIO registers:
31329
31330 Register Old Value New Value
31331 --------------- ---------- ----------
31332 DCR GPIO0_TCR 0x0000000F 0x0000F0CF
31333 DCR GPIO0_TSRH 0x55005000 0x00000000
31334 DCR GPIO1_TCR 0xC2000000 0xE2000000
31335 DCR GPIO1_TSRL 0x0C000000 0x00200000
31336 DCR GPIO1_ISR2L 0x00050000 0x00110000
31337
31338 Signed-off-by: Larry Johnson <lrj@acm.org>
31339
31340commit 5ab884b254ca2e707ab50545cd705f30108cf491
31341Author: Lawrence R. Johnson <lrj@acm.org>
31342Date: Thu Jan 3 18:54:00 2008 -0500
31343
31344 ppc4xx: Add functionality to GPIO support
31345
31346 This patch makes two additions to GPIO support:
31347
31348 First, it adds function gpio_read_in_bit() to read the a bit from the
31349 GPIO Input Register (GPIOx_IR) in the same way that function
31350 gpio_read_out_bit() reads a bit from the GPIO Output Register
31351 (GPIOx_OR).
31352
31353 Second, it modifies function gpio_set_chip_configuration() to provide
31354 an additional option for configuring the GPIO from the
31355 "CFG_4xx_GPIO_TABLE".
31356
31357 According to the 440EPx User's Manual, when an alternate output is used,
31358 the three-state control is configured in one of two ways, depending on
31359 the particular output. The first option is to select the corresponding
31360 alternate three-state control in the GPIOx_TRSH/L registers. The second
31361 option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
31362 the GPIOx_TRSH/L registers, and set the corresponding bit in the
31363 GPIOx_TCR register to enable the output. For example, the Manual
31364 specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
31365 the alternate three-state control (first option), and specifies
31366 configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
31367 enabled in the GPIOx_TCR register (second option).
31368
31369 Currently, gpio_set_chip_configuration() configures all alternate signal
31370 outputs to use the first option. This patch allow the second option to
31371 be selected by setting the "out_val" element in the table entry to
31372 "GPIO_OUT_1". The first option is used when the "out_val" element is
31373 set to "GPIO_OUT_0". Because "out_val" is not currently used when an
31374 alternate signal is selected, and because all current GPIO tables set
31375 "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
31376 not change any existing configurations.
31377
31378 Signed-off-by: Larry Johnson <lrj@acm.org>
31379
31380commit 196404cdc1de495d6182e84731c200fc5748df15
31381Author: Larry Johnson <lrj@arlinx.com>
31382Date: Sun Dec 30 01:01:54 2007 -0500
31383
31384 PPC4xx: Remove sdram.h from board/lwmon5
31385
31386 These definitions are now in "include/ppc440.h".
31387
31388 Signed-off-by: Larry Johnson <lrj@acm.org>
31389
31390commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
31391Author: Larry Johnson <lrj@arlinx.com>
31392Date: Sun Dec 30 01:01:32 2007 -0500
31393
31394 PPC4xx: Use common code for LWMON5 board SDRAM support
31395
31396 This patch also modifies the functionality of the code so that the data-eye
31397 search is now done with with the cache disabled.
31398
31399 Signed-off-by: Larry Johnson <lrj@acm.org>
31400
31401commit 62cc3951ab72135d9c101f1845b794e63a0fa189
31402Author: Larry Johnson <lrj@arlinx.com>
31403Date: Sun Dec 30 01:01:14 2007 -0500
31404
31405 PPC4xx: Remove sdram.h from board/amcc/sequoia
31406
31407 These definitions are now in "include/ppc440.h".
31408
31409 Signed-off-by: Larry Johnson <lrj@acm.org>
31410
31411commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
31412Author: Larry Johnson <lrj@arlinx.com>
31413Date: Sun Dec 30 01:00:50 2007 -0500
31414
31415 PPC4xx: Use common code for Sequoia board SDRAM support
31416
31417 Signed-off-by: Larry Johnson <lrj@acm.org>
31418
31419commit 8b0c5c127690335758100c25eaec2b84db97c101
31420Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31421Date: Thu Dec 27 16:58:41 2007 +0100
31422
31423 net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
31424
31425 When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
31426 networking stack does not automatically switch to
31427 another interface. This patch does not touch the default
31428 behavior.
31429
31430 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31431 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31432
31433commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
31434Author: Upakul Barkakaty <upakul@gmail.com>
31435Date: Thu Nov 29 12:16:13 2007 +0530
31436
31437 NET: Proper return code handling in eth_init() function in file eth.c
31438
31439 This patch modifies the return code handling in the eth_init()
31440 function, to be compatible with the handling of the return codes in
31441 the other network stack files. It now returns a 0 on Success and -1 on
31442 error.
31443
31444 Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
31445 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31446
31447commit 5ca2d0953e4579a80810966cca2077e20d912c97
31448Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31449Date: Mon Nov 19 20:27:04 2007 +0900
31450
31451 net/eth.c: Fix env_enetaddr signed overflow
31452
31453 Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
31454 warned as below:
31455
31456 U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
31457
31458 DRAM: 256 MB
31459 Flash: 32 MB
31460 In: serial
31461 Out: serial
31462 Err: serial
31463 Net: NEC-Candy
31464 Warning: NEC-Candy MAC addresses don't match:
31465 Address in SROM is 00:00:4C:80:92:A2
31466 Address in environment is FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
31467
31468 This patch changes env_enetaddr type from `char' to `unsigned char'.
31469
31470 Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
31471 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31472 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31473
31474commit f85b60710571b37293d2233933b76e2aa3db5635
31475Author: Rafal Jaworowski <raj@semihalf.com>
31476Date: Thu Dec 27 18:19:02 2007 +0100
31477
31478 Introduce new eth_receive routine
31479
31480 The purpose of this routine is receiving a single network frame, outside of
31481 U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
31482 U-Boot will let them utilise networking facilities. For sending a raw frame
31483 the already existing eth_send() can be used.
31484
31485 The direct consumer of this routine is the newly introduced API layer for
31486 external applications (enabled with CONFIG_API).
31487
31488 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
31489 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
31490 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31491
31492commit 5c740711f0ea5b51414b341b71597c4a0751be74
31493Author: Jon Loeliger <jdl@freescale.com>
31494Date: Thu Jan 3 10:41:04 2008 -0600
31495
31496 8610: Move include of config.h earlier.
31497
31498 Include config.h earlier in the set of #includes
31499 so as to avoid a incidental and duplicate definition
31500 of CFG_CACHELINE_SIZE.
31501
31502 Signed-off-by: Jon Loeliger
31503
31504commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
31505Author: Jon Loeliger <jdl@freescale.com>
31506Date: Tue Dec 4 10:53:34 2007 -0600
31507
31508 Don't slam #undef DEBUG in the 8641HPCN config file.
31509
31510 Doing so prevents it from being individually set
31511 and useful in other files.
31512
31513 Signed-off-by: Jon Loeliger <jdl@freescale.com>
31514
31515commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
31516Author: Jon Loeliger <jdl@freescale.com>
31517Date: Wed Nov 28 14:47:18 2007 -0600
31518
31519 Convert MPC8641HPCN to use libfdt.
31520
31521 Assumes the presence of the aliases node in the DTS to
31522 locate the ethernet, pci and serial nodes for fixups.
31523
31524 Use consistent fdtaddr and fdtfile in environment variables.
31525
31526 Signed-off-by: Jon Loeliger <jdl@freescale.com>
31527
31528commit ce37422d0002e10490e268392e0c4e3028e52cec
31529Author: Stefan Roese <sr@denx.de>
31530Date: Wed Jan 2 14:06:26 2008 +0100
31531
31532 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
31533
31534 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
31535 flash chips connected to a 32bit wide port.
31536
31537 Signed-off-by: Stefan Roese <sr@denx.de>
31538
31539commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
31540Author: Wolfgang Denk <wd@denx.de>
31541Date: Wed Jan 2 15:58:44 2008 +0100
31542
31543 Fix compile problem introduced by "cleanup" commit 3dfd708c
31544
31545 Signed-off-by: Wolfgang Denk <wd@denx.de>
31546
31547commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
31548Author: Wolfgang Denk <wd@denx.de>
31549Date: Wed Jan 2 15:54:45 2008 +0100
31550
31551 Make scripts and Makefiles POSIX compliant
31552
31553 The bash builtin versions of the "test" (resp. "[") command allow
31554 using "==" for string comparisons, but POSIX compatible implemen-
31555 tations (like /usr/bin/test) insist on using "=" only. On such systems
31556 you will see:
31557
31558 $ /usr/bin/test a == a && echo OK
31559 /usr/bin/test: ==: binary operator expected
31560
31561 This patch fixes Makefiles and scripts to use POSIX style.
31562
31563 Signed-off-by: Wolfgang Denk <wd@denx.de>
31564
Wolfgang Denk865f0f92008-01-23 14:31:17 +010031565commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
31566Author: Stefan Roese <sr@denx.de>
31567Date: Wed Jan 2 14:05:37 2008 +0100
31568
31569 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
31570
31571 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
31572 flash chips connected to a 32bit wide port.
31573
31574 Signed-off-by: Stefan Roese <sr@denx.de>
31575
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010031576commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
31577Author: Wolfgang Denk <wd@denx.de>
31578Date: Wed Jan 2 12:38:43 2008 +0100
31579
31580 Minor coding style cleanup.
31581
31582 Signed-off-by: Wolfgang Denk <wd@denx.de>
31583
31584commit e174ac34adf5d5653df12bc3cf19c52063a71269
31585Author: Stefan Roese <sr@denx.de>
31586Date: Fri Dec 28 17:29:56 2007 +0100
31587
31588 ppc4xx: Coding style cleanup
31589
31590 Signed-off-by: Stefan Roese <sr@denx.de>
31591
31592commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
31593Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31594Date: Fri Dec 28 17:07:24 2007 +0100
31595
31596 ppc4xx: Complete PMC440 board support
31597
31598 This patch brings the PMC440 board configuration file.
31599 Finally it enables the PMC440 board support.
31600
31601 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31602
31603commit 407843a582560fc5231299561ab3c2b6b6cd3397
31604Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31605Date: Fri Dec 28 17:07:18 2007 +0100
31606
31607 ppc4xx: Add FPGA support and BSP commands for PMC440 boards
31608
31609 This patch adds some BSP commands and FPGA booting support
31610 for esd's PMC440 boards.
31611
31612 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31613
31614commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
31615Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31616Date: Fri Dec 28 17:07:14 2007 +0100
31617
31618 ppc4xx: Add initial esd PMC440 board files
31619
31620 This patch adds the first files for the new esd PMC440 boards.
31621 The next two patches will complete the PMC440 board support.
31622
31623 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31624
31625commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
31626Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31627Date: Fri Dec 28 17:10:36 2007 +0100
31628
31629 ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
31630
31631 - add EEPROM write protection for esd PLU405 boards.
31632 - initialize NAND GPIOs
31633 - use correct io accessors
31634 - cleanup
31635
31636 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31637
31638commit 77660c4b59055d621d2a8595bd4c18bb277268fc
31639Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31640Date: Fri Dec 28 17:10:44 2007 +0100
31641
31642 ppc4xx: use correct io accessors for esd's LCD code
31643
31644 This patch fixes esd's LCD dectection code to work correctly with
31645 newer gcc versions.
31646
31647 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31648
31649commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
31650Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31651Date: Fri Dec 28 17:10:42 2007 +0100
31652
31653 ppc4xx: Maintenance patch for VOH405 boards
31654
31655 - add EEPROM write protection
31656 - initialize NAND GPIOs
31657 - use correct io accessors
31658 - slow down I2C clock to 100kHz
31659 - enable ext. I2C bus
31660 - cleanup
31661
31662 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31663
31664commit c05569066dbcba3fdf36d4d1943df265dc316a86
31665Author: Stefan Roese <sr@denx.de>
31666Date: Fri Dec 28 16:08:08 2007 +0100
31667
31668 ppc4xx: Enable 405EP PCI arbiter per default on all boards
31669
31670 In an attmemt to clean up the 4xx start.S file, I removed the enabling
31671 of the internal 405EP PCI arbiter. This is needed for multiple other
31672 405EP platforms, like most of the esd 405EP. Now the internal PCI
31673 arbiter is enabled again per default as it has been before.
31674
31675 Signed-off-by: Stefan Roese <sr@denx.de>
31676 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31677
31678commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
31679Author: Stefan Roese <sr@denx.de>
31680Date: Fri Dec 28 15:53:46 2007 +0100
31681
31682 ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
31683
31684 Signed-off-by: Stefan Roese <sr@denx.de>
31685 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31686
31687commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
31688Author: Stefan Roese <sr@denx.de>
31689Date: Fri Dec 28 06:06:04 2007 +0100
31690
31691 ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
31692
31693 Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
31694 platforms mentioned above.
31695
31696 Signed-off-by: Stefan Roese <sr@denx.de>
31697
31698commit b568fd25574181a3b12ae3d66b2913903442cb83
31699Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31700Date: Thu Dec 27 17:03:46 2007 +0100
31701
31702 Remove CPCI440 board
31703
31704 This board never left prototyping state and it
31705 became a millstone round my neck. So remove it.
31706
31707 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31708
31709commit c591dffe0cbacd896ccbad06011fe6d6afa080da
31710Author: Larry Johnson <lrj@arlinx.com>
31711Date: Thu Dec 27 11:28:51 2007 -0500
31712
31713 Add support for Korat PPC440EPx board
31714
31715 These patches add support for the PPC440EPx-based "Korat" board to
31716 U-Boot. They are based primarily on support for the Sequoia board.
31717
31718 Signed-off-by: Larry Johnson <lrj@acm.org>
31719
31720commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
31721Author: Larry Johnson <lrj@arlinx.com>
31722Date: Sat Dec 22 15:16:25 2007 -0500
31723
31724 Add configuration file for Korat board
31725
31726 This patch supplies the configuration file for the Korat PPC440EPx-
31727 processor board.
31728
31729 Signed-off-by: Larry Johnson <lrj@acm.org>
31730
31731commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
31732Author: Larry Johnson <lrj@arlinx.com>
31733Date: Sat Dec 22 15:16:11 2007 -0500
31734
31735 Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
31736
31737 Signed-off-by: Larry Johnson <lrj@acm.org>
31738
31739commit aba19604d848b2838cfb9ebe818909e6a216058e
31740Author: Larry Johnson <lrj@arlinx.com>
31741Date: Thu Dec 27 10:54:48 2007 -0500
31742
31743 Add 440EPx DDR2 SPD DIMM support
31744
31745 This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
31746 controller. It should also work on the 440GRx. It is based on the DDR2
31747 SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
31748
31749 This code has been tested on prototype Korat boards with three Kingston
31750 DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
31751 (two ranks). The Korat board has a single DIMM socket, but support has
31752 been provided (though not tested) for boards with two DIMM sockets.
31753
31754 Signed-off-by: Larry Johnson <lrj@acm.org>
31755
31756commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
31757Author: Larry Johnson <lrj@arlinx.com>
31758Date: Sat Dec 22 15:15:30 2007 -0500
31759
31760 Copy 440EPx/GRx SDRAM data-eye search to common directory
31761
31762 This patch creates a non-board-specific file for performing the SDRAM
31763 data-eye search. It also adds ECC error checking to the test of valid
31764 data on readback when ECC is enabled.
31765
31766 Signed-off-by: Larry Johnson <lrj@acm.org>
31767
31768commit c46f53333b22b1f9098676bea8884fc7db820cf3
31769Author: Larry Johnson <lrj@arlinx.com>
31770Date: Sat Dec 22 15:15:13 2007 -0500
31771
31772 Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
31773
31774 This patch adds the Denali SDRAM controller definitions to "ppc440.h".
31775 It also fixes two typos in the definitions, so the board-specific
31776 "sdram.h" files containing these definitions are also fixed to avoid
31777 compiler warnings.
31778
31779 Signed-off-by: Larry Johnson <lrj@acm.org>
31780
31781commit c348578bf612d0c56d8d376d23cae16defbd86af
31782Author: Larry Johnson <lrj@arlinx.com>
31783Date: Thu Dec 27 10:50:55 2007 -0500
31784
31785 Add Ethernet 1000BASE-X support for PPC4xx
31786
31787 This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG". When this symbol
31788 is defined, the PHY will advertise it's capabilities for autonegotiation
31789 based on the capabilities shown in the PHY's status registers, including
31790 1000BASE-X. When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
31791 advertise hard-coded capabilities, as before.
31792
31793 Signed-off-by: Larry Johnson <lrj@acm.org>
31794
31795commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
31796Author: Larry Johnson <lrj@arlinx.com>
31797Date: Thu Dec 27 09:52:17 2007 -0500
31798
31799 Add driver for National Semiconductor LM73 temperature sensor
31800
31801 This driver is based on the driver for the LM75.
31802
31803 Signed-off-by: Larry Johnson <lrj@acm.org>
31804
31805commit 12618278688ea9b3d76536960a5ad2e3790fac40
31806Author: Larry Johnson <lrj@arlinx.com>
31807Date: Sat Dec 22 15:14:00 2007 -0500
31808
31809 Add driver for STMicroelectronics M41T60 RTC
31810
31811 This driver is based on the driver for the M41T11. In the intended
31812 application, the RTC will be powered by a large capacitor, rather than a
31813 battery. The driver therefore checks to see whether the RTC has lost
31814 power. The chip's OUT bit is normally reset from its power-up state. If
31815 the OUT bit is read as set, or if the date and time are not valid, then the
31816 RTC is assumed to have lost power, and its date and time are reset to
31817 1900-01-01 00:00:00.
31818
31819 Support for adjusting the speed of the clock to improve accuracy is
31820 provided through an environment variable.
31821
31822 Signed-off-by: Larry Johnson <lrj@acm.org>
31823
31824commit d3471173e14b7544bb60339eda8d3d3906694b0a
31825Author: Larry Johnson <lrj@arlinx.com>
31826Date: Sat Dec 22 15:34:39 2007 -0500
31827
31828 Use out_be32() and friends to access memory-mapped registers in sequoia.c
31829
31830 Signed-off-by: Larry Johnson <lrj@acm.org>
31831
31832commit c68f59fe3ec16769f82b5fca7421983c336d3aac
31833Author: Larry Johnson <lrj@arlinx.com>
31834Date: Sat Dec 22 15:34:20 2007 -0500
31835
31836 Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
31837
31838 Signed-off-by: Larry Johnson <lrj@acm.org>
31839
31840commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
31841Author: Larry Johnson <lrj@arlinx.com>
31842Date: Sat Dec 22 15:23:50 2007 -0500
31843
31844 Cosmetic changes to ECC POST for AMCC Denali core
31845
31846 Signed-off-by: Larry Johnson <lrj@acm.org>
31847
31848commit 2e583d6c81034f80a267b89fa55498ae063ccef1
31849Author: Stefan Roese <sr@denx.de>
31850Date: Wed Dec 26 20:20:19 2007 +0100
31851
31852 ppc4xx: Fix compilation problem in 405 cache POST test
31853
31854 Signed-off-by: Stefan Roese <sr@denx.de>
31855
31856commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
31857Author: Stefan Roese <sr@denx.de>
31858Date: Sat Dec 22 12:20:09 2007 +0100
31859
31860 ppc4xx: Move virtual address of POST cache test to bigger address
31861
31862 On Sequoia & LWMON5 the virtual address of the POST cache test is now
31863 moved to a bigger address. This enables usage of more memory on those
31864 boards.
31865
31866 Signed-off-by: Stefan Roese <sr@denx.de>
31867
31868commit d91722102cf63f77a0148ed3f3d54a26d87575e9
31869Author: Stefan Roese <sr@denx.de>
31870Date: Sat Dec 22 12:18:26 2007 +0100
31871
31872 ppc4xx: Fix problem in 44x cache POST routine
31873
31874 As repoted by Larry Johnson, running "diag run cache" caused a crash
31875 in U-Boot. This problem was introduced by a patch that removed the
31876 TLB entry for the cache test after the test has completed. Since this
31877 TLB was only setup once, a 2nd attempt to run this cache test
31878 failed with a crash. Now this TLB entry is created every time the
31879 routine is called.
31880
31881 Signed-off-by: Stefan Roese <sr@denx.de>
31882
31883commit b0265b576bb8fa9465f99e99c323768b562fadc2
31884Author: Stefan Roese <sr@denx.de>
31885Date: Fri Dec 21 07:51:29 2007 +0100
31886
31887 ppc4xx: Update Makalu fdt support
31888
31889 Signed-off-by: Stefan Roese <sr@denx.de>
31890
31891commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
31892Author: Stefan Roese <sr@denx.de>
31893Date: Wed Dec 19 09:05:40 2007 +0100
31894
31895 ppc4xx: Add fdt support to AMCC Katmai eval board
31896
31897 Signed-off-by: Stefan Roese <sr@denx.de>
31898
31899commit 328a340392a5df9aaf00792be989df73e750859e
31900Author: Stefan Roese <sr@denx.de>
31901Date: Tue Dec 18 08:44:51 2007 +0100
31902
31903 ppc4xx: fdt: Cleanup setup of cpu node setup
31904
31905 Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
31906 without using the absolute path to the cpu node. This makes it possible
31907 to use this U-Boot version with both versions of cpu-node naming
31908 "cpu@0" and the former "PowerPC,440EPx@0".
31909
31910 Signed-off-by: Stefan Roese <sr@denx.de>
31911
31912commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
31913Author: Stefan Roese <sr@denx.de>
31914Date: Mon Dec 17 17:26:21 2007 +0100
31915
31916 ppc4xx: Fix lwmon5 compilation problem
31917
31918 Now that the 440EPx ECC test is not board specific anymore
31919 remove this Makefile.
31920
31921 Signed-off-by: Stefan Roese <sr@denx.de>
31922
31923commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
31924Author: Anatolij Gustschin <agustschin@t-online.de>
31925Date: Wed Dec 5 17:43:20 2007 +0100
31926
31927 Fix ppc4xx clear_bss() code
31928
31929 ppc4xx clear_bss() fails if BSS segment size is not
31930 divisible by 4 without remainder. This patch provides
31931 fix for this problem.
31932
31933 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31934
31935commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
31936Author: Niklaus Giger <niklausgiger@gmx.ch>
31937Date: Fri Nov 30 18:35:11 2007 +0100
31938
31939 PPC4xx: Minimal changes to add vxWorks support
31940
31941 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
31942
31943commit 052440b022ca8981d39b6f8c10d1aa6326f47480
31944Author: Markus Klotzbücher <mk@denx.de>
31945Date: Fri Nov 23 13:09:18 2007 +0100
31946
31947 ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
31948
31949 When using dhcp/bootp the "netmask" environment variable is not
31950 set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
31951 desireable, so the following patch adds this this option to the board
31952 config.
31953
31954 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
31955 Signed-off-by: Stefan Roese <sr@denx.de>
31956
31957commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
31958Author: Larry Johnson <lrj@arlinx.com>
31959Date: Sat Oct 27 12:48:15 2007 -0400
31960
31961 Fix/enhance ECC POST for 440EPx/GRx
31962
31963 This patch allows the ECC POST to be used for different boards with the
31964 PPC440 Denali SDRAM controller. Modifications include skipping the test
31965 if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
31966 to prevent timing errors.
31967
31968 Signed-off-by: Larry Johnson <lrj@acm.org>
31969
31970commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
31971Author: Larry Johnson <lrj@arlinx.com>
31972Date: Sat Oct 27 12:48:05 2007 -0400
31973
31974 PPC4xx: Move/rename ECC POST for 440EPx/GRx
31975
31976 Signed-off-by: Larry Johnson <lrj@acm.org>
31977
31978commit c29d2d3680046d430022c55e50fcb27f5866517e
31979Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31980Date: Fri Dec 14 11:20:33 2007 +0100
31981
31982 ppc4xx: use correct io accessors for 4xx ethernet POST
31983
31984 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31985
31986commit ba79fde58a48c0a6ff8e2a96caba951594142203
31987Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31988Date: Fri Dec 14 11:19:56 2007 +0100
31989
31990 ppc4xx: fix flush + invalidate_dcache_range arguments
31991
31992 flush + invalidate_dcache_range() expect the start and stop+1 address.
31993 So the stop address is the first address behind (!) the range.
31994
31995 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31996
31997commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
31998Author: Stefan Roese <sr@denx.de>
31999Date: Fri Dec 14 08:41:29 2007 +0100
32000
32001 ppc4xx: fdt: use fdt_fixup_ethernet()
32002
32003 By using aliases in the dts file, the ethernet node fixup is
32004 much easier with the recently added functions.
32005
32006 Please note that the dts file needs the aliases for this to work.
32007
32008 Signed-off-by: Stefan Roese <sr@denx.de>
32009
32010commit 136288847e3b04f2ff357a067ad45e10afa0a24c
32011Author: Stefan Roese <sr@denx.de>
32012Date: Thu Dec 13 14:52:53 2007 +0100
32013
32014 ppc4xx: Bring 4xx fdt support up-to-date
32015
32016 This patch update the 4xx fdt support. It enabled fdt booting
32017 on the AMCC Kilauea and Sequoia for now. More can follow later
32018 quite easily.
32019
32020 Signed-off-by: Stefan Roese <sr@denx.de>
32021
32022commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
32023Author: Stefan Roese <sr@denx.de>
32024Date: Thu Dec 27 07:50:54 2007 +0100
32025
32026 cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
32027
32028 The check for an sufficiently erased destination was missing in the
32029 buffered write function of the cfi flash driver (when
32030 CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
32031 writing to such a region will fail with the currect error message.
32032
32033 Signed-off-by: Stefan Roese <sr@denx.de>
32034
32035commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
32036Author: Martin Krause <martin.krause@tqs.de>
32037Date: Mon Nov 12 10:56:17 2007 +0100
32038
32039 Some configuration updates for the TQM5200 based TB5200 board:
32040
32041 - enable command line history
32042 - increase malloc space (because of bigger flash sectors)
32043
32044 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32045
32046commit e318d9e9021a0af7508171f84ed09d0e79f0284e
32047Author: Martin Krause <martin.krause@tqs.de>
32048Date: Thu Sep 27 11:10:08 2007 +0200
32049
32050 TQM8xx: use the CFI flash driver on all TQM8xx boards
32051
32052 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32053
32054commit 11d9eec479b470eab9242ab937fca70a876d9376
32055Author: Martin Krause <martin.krause@tqs.de>
32056Date: Wed Sep 26 17:55:56 2007 +0200
32057
32058 TQM885D: adjust for doubled flash sector size + some minor fixes
32059
32060 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32061
32062commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
32063Author: Jens Gehrlein <jens.gehrlein@tqs.de>
32064Date: Wed Sep 26 17:55:54 2007 +0200
32065
32066 TQM885D: Exchanged SDRAM timing by a more relaxed timing.
32067
32068 CAS-Latency=2, Write Recovery Time tWR=2
32069 The max. supported bus frequency is 66 MHz. Therefore, changed
32070 threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
32071
32072 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32073
32074commit b988b8cd443989be65161888eea0127ad03f846f
32075Author: Martin Krause <martin.krause@tqs.de>
32076Date: Wed Sep 26 17:55:56 2007 +0200
32077
32078 TQM885D: use calculated cpuclk instead of measuring it
32079
32080 On the TQM885D the measurement of cpuclk with the PIT reference
32081 timer ist not necessary. Since all module variants use the same
32082 external 10 MHz oscillator, the cpuclk only depends on the PLL
32083 configuration - which is readable by software.
32084
32085 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32086
32087commit 492c7049869348d31168de8dad89651315e468e0
32088Author: Jens Gehrlein <jens.gehrlein@tqs.de>
32089Date: Thu Sep 27 14:54:46 2007 +0200
32090
32091 TQM885D: fix SDRAM refresh
32092
32093 At 133 MHz the current SDRAM refresh rate is too fast
32094 (measured 4 * 1.17 us).
32095 CFG_MAMR_PTA changes from 39 to 128. This result
32096 in a refresh rate of 4 * 7.8 us at the default clock
32097 66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
32098 This is a compromise until a new method is found to
32099 adjust the refresh rate.
32100
32101 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32102
32103commit dabad4b9bc46908e301f73ce76b38b23626a96e9
32104Author: Jens Gehrlein <jens.gehrlein@tqs.de>
32105Date: Thu Sep 27 14:54:46 2007 +0200
32106
32107 TQM860M: Support for 10col SDRAMs, max. 128 MiB
32108
32109 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32110
32111commit 61fb15c516fef5631e305f1976d7b3a679725856
32112Author: Wolfgang Denk <wd@denx.de>
32113Date: Thu Dec 27 01:52:50 2007 +0100
32114
32115 Fix coding style issues; update CHANGELOG.
32116
32117 Signed-off-by: Wolfgang Denk <wd@denx.de>
32118
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010032119commit 467bcee11fe26ad422f2de971aa70866079870f2
32120Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32121Date: Fri Dec 14 15:36:18 2007 +0100
32122
32123 cfi_flash: Add manufacturer-specific fixups
32124
32125 Run fixups based on the JEDEC manufacturer ID independent of the
32126 command set ID.
32127
32128 This changes current behaviour: Previously, geometry reversal for AMD
32129 chips were done based on the command set ID, while they are now done
32130 based on the JEDEC manufacturer and device ID.
32131
32132 Also add fixup for top-boot Atmel chips. A fixup is needed for
32133 AT49BV6416(T) too, but since u-boot currently only reads the low byte
32134 of the device ID, there's no way to tell it apart from AT49BV642D,
32135 which should not have this fixup. Since AT49BV642D support is
32136 necessary to get ATNGW100 board support into mainline, I've commented
32137 out the fixup for now.
32138
32139 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32140
32141commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
32142Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32143Date: Fri Dec 14 15:36:17 2007 +0100
32144
32145 cfi_flash: Add cmdset-specific init functions
32146
32147 Move things like reading JEDEC IDs and fixing up geometry reversal
32148 into separate functions. The geometry reversal fixup is now performed
32149 by altering the qry structure directly, which makes the sector init
32150 code slightly cleaner.
32151
32152 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32153
32154commit e23741f4a6d8047520ef0d4971762749b3587d32
32155Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32156Date: Fri Dec 14 15:36:16 2007 +0100
32157
32158 cfi_flash: Read whole QRY structure in one go
32159
32160 Read out the whole CFI Standard Query structure after successful cfi
32161 identification. This allows subsequent code to access this information
32162 directly without having to go through flash_read_uchar() and friends.
32163
32164 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32165
32166commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
32167Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32168Date: Mon Dec 17 11:02:44 2007 +0100
32169
32170 AVR32: Fix logic inversion in disable_interrupts()
32171
32172 disable_interrupts() should return nonzero if interrupts were
32173 _enabled_ before, not disabled.
32174
32175 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32176
32177commit acac475212cbedb17b321a363a1c878e2b47b37f
32178Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32179Date: Fri Dec 14 16:51:22 2007 +0100
32180
32181 AVR32: Enable interrupts at bootup
32182
32183 The timer code depends on the timer interrupt to keep track of the
32184 upper 32 bits of the cycle counter. This obviously doesn't work when
32185 interrupts are disabled the whole time.
32186
32187 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32188
32189commit 9570bcd87f4db255514f43b6701746c412f8fef0
32190Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32191Date: Thu Nov 15 10:03:45 2007 +0100
32192
32193 AVR32: Fix wrong pin setup for USART3
32194
32195 As reported by Gerhard Berghofer:
32196
32197 in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
32198 instead of PB18 and PB19.
32199
32200 which is obviously correct. There's currently no code that uses
32201 USART3, but custom boards may run into problems.
32202
32203 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32204
32205commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
32206Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32207Date: Thu Nov 1 12:44:20 2007 +0100
32208
32209 README: Remove ATSTK1000 daughterboard list
32210
32211 As noted by Kim Phillips, these lists tend to become out of date.
32212
32213 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32214
32215commit c81cbbad21cb0ae983e2e796211202234cdc8be2
32216Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32217Date: Tue Oct 30 14:56:36 2007 +0100
32218
32219 Add ATSTK100[234] to MAINTAINERS
32220
32221 Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
32222 "mother". Also update the entry for ATSTK1000 to be not only about the
32223 AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
32224
32225 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32226
32227commit 64ff2357b1727213803591813dbc779c924bf772
32228Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32229Date: Mon Oct 29 13:02:54 2007 +0100
32230
32231 AVR32: Add support for the ATSTK1004 board
32232
32233 ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
32234 which is a derivative of AT32AP7000.
32235
32236 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32237
32238commit 667568db157f374b85abd7e03596ddd1f0b25681
32239Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32240Date: Mon Oct 29 13:02:54 2007 +0100
32241
32242 AVR32: Add support for the ATSTK1003 board
32243
32244 ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
32245 which is a derivative of AT32AP7000.
32246
32247 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32248
32249commit 5fee84a794a51ec830548cda485a770efb018b92
32250Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32251Date: Mon Oct 29 13:23:33 2007 +0100
32252
32253 AVR32: Make some AT32AP700x peripherals optional
32254
32255 Add a chip-features file providing definitions of the form
32256
32257 AT32AP700x_CHIP_HAS_<peripheral>
32258
32259 to indicate the availability of the given peripheral on the currently
32260 selected chip.
32261
32262 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32263
32264commit 36f28f8a9605ee5dcfa330482cfc62171261af97
32265Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32266Date: Mon Oct 29 13:09:56 2007 +0100
32267
32268 AVR32: Rename at32ap7000 -> at32ap700x
32269
32270 The SoC-specific code for all the AT32AP700x CPUs is practically
32271 identical; the only difference is that some chips have less features
32272 than others. By doing this rename, we can add support for the AP7000
32273 derivatives simply by making some features conditional.
32274
32275 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32276
32277commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
32278Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32279Date: Fri Jun 29 18:22:34 2007 +0200
32280
32281 atmel_mci: Show SR when block read fails
32282
32283 Show controller status as well as card status when an error occurs
32284 during block read.
32285
32286 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32287
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010032288commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
32289Author: Stefan Roese <sr@denx.de>
32290Date: Thu Dec 13 14:52:53 2007 +0100
32291
32292 ppc4xx: Bring 4xx fdt support up-to-date
32293
32294 This patch update the 4xx fdt support. It enabled fdt booting
32295 on the AMCC Kilauea and Sequoia for now. More can follow later
32296 quite easily.
32297
32298 Signed-off-by: Stefan Roese <sr@denx.de>
32299
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010032300commit 12d30aa79779c2aa7a998bbae4c075f822a53004
32301Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32302Date: Thu Dec 13 12:56:34 2007 +0100
32303
32304 cfi_flash: Use map_physmem() and unmap_physmem()
32305
32306 Use map_physmem() and unmap_physmem() to convert from physical to
32307 virtual addresses. This gives the arch a chance to provide an uncached
32308 mapping for flash accesses.
32309
32310 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32311
32312commit 4d7d6936eb29af7cca330937808312aa5f61454d
32313Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32314Date: Thu Dec 13 12:56:33 2007 +0100
32315
32316 Introduce map_physmem() and unmap_physmem()
32317
32318 map_physmem() returns a virtual address which can be used to access a
32319 given physical address without involving the cache. unmap_physmem()
32320 should be called when the virtual address returned by map_physmem() is
32321 no longer needed.
32322
32323 This patch adds a stub implementation which simply returns the
32324 physical address cast to a uchar * for all architectures except AVR32,
32325 which converts the physical address to an uncached virtual mapping.
32326 unmap_physmem() is a no-op on all architectures, but if any
32327 architecture needs to do such mappings through the TLB, this is the
32328 hook where those TLB entries can be invalidated.
32329
32330 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32331
32332commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
32333Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32334Date: Thu Dec 13 12:56:32 2007 +0100
32335
32336 cfi_flash: Introduce read and write accessors
32337
32338 Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
32339 them to access the flash memory. This makes it clearer when the flash
32340 is actually being accessed; merely dereferencing a volatile pointer
32341 looks just like any other kind of access.
32342
32343 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32344
32345commit 812711ce6b3a386125dcf0d6a59588e461abbb87
32346Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32347Date: Thu Dec 13 12:56:31 2007 +0100
32348
32349 Implement __raw_{read,write}[bwl] on all architectures
32350
32351 This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
32352 m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
32353 from Linux.
32354
32355 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32356
32357commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
32358Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32359Date: Sat Oct 6 18:55:36 2007 +0200
32360
32361 cfi_flash: Reorder functions and eliminate extra prototypes
32362
32363 Reorder the functions in cfi_flash.c so that each function only uses
32364 functions that have been defined before it. This allows the static
32365 prototype declarations near the top to be eliminated and might allow
32366 gcc to do a better job inlining functions.
32367
32368 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32369
32370commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
32371Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32372Date: Thu Dec 13 12:56:29 2007 +0100
32373
32374 cfi_flash: Make some needlessly global functions static
32375
32376 Make functions not declared in any header file static.
32377
32378 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32379
32380commit 7e5b9b471518c5652febc68ba62b432193d6abf4
32381Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32382Date: Thu Dec 13 12:56:28 2007 +0100
32383
32384 cfi_flash: Break long lines
32385
32386 This patch tries to keep all lines in the cfi_flash driver below 80
32387 columns. There are a few lines left which don't fit this requirement
32388 because I couldn't find any trivial way to break them (i.e. it would
32389 take some restructuring, which I intend to do in a later patch.)
32390
32391 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32392
32393commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
32394Author: Bartlomiej Sieka <tur@semihalf.com>
32395Date: Tue Dec 11 13:59:57 2007 +0100
32396
32397 CFI: synchronize command offsets with Linux CFI driver
32398
32399 Fixes non-working CFI Flash on the Inka4x0 board.
32400
32401 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
32402
32403commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
32404Author: Kumar Gala <galak@kernel.crashing.org>
32405Date: Fri Dec 7 12:17:34 2007 -0600
32406
32407 Handle MPC85xx PCIe reset errata (PCI-Ex 38)
32408
32409 On the MPC85xx boards that have PCIe enable the PCIe errata fix.
32410 (MPC8544DS, MPC8548CDS, MPC8568MDS).
32411
32412 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32413
32414commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
32415Author: Kumar Gala <galak@kernel.crashing.org>
32416Date: Fri Dec 7 12:04:30 2007 -0600
32417
32418 Update Freescale MPC85xx ADS/CDS/MDS board config
32419
32420 * Enabled CONFIG_CMD_ELF
32421
32422 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32423
32424commit d435793229ce29a42797c1edc39f5b34f987f91a
32425Author: Kumar Gala <galak@kernel.crashing.org>
32426Date: Fri Dec 7 04:59:26 2007 -0600
32427
32428 Handle Asynchronous DDR clock on 85xx
32429
32430 The MPC8572 introduces the concept of an asynchronous DDR clock with
32431 regards to the platform clock.
32432
32433 Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
32434 mode.
32435
32436 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32437
32438commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
32439Author: Kumar Gala <galak@kernel.crashing.org>
32440Date: Thu Nov 29 10:34:28 2007 -0600
32441
32442 Update Freescale MPC85xx ADS/CDS/MDS board config
32443
32444 * Removed some misc environment setup
32445 * Enabled CONFIG_CMDLINE_EDITING
32446
32447 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32448
32449commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
32450Author: Kumar Gala <galak@kernel.crashing.org>
32451Date: Thu Nov 29 10:47:44 2007 -0600
32452
32453 Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
32454
32455 Minor path corrections needed to ensure buildability.
32456
32457 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32458
32459commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
32460Author: Kumar Gala <galak@kernel.crashing.org>
32461Date: Thu Nov 29 10:16:18 2007 -0600
32462
32463 Move the MPC8540 ADS board under board/freescale.
32464
32465 Minor path corrections needed to ensure buildability.
32466
32467 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32468
32469commit 870ceac5b3a3486c109396e005af81ae762b5710
32470Author: Kumar Gala <galak@kernel.crashing.org>
32471Date: Thu Nov 29 10:14:50 2007 -0600
32472
32473 Move the MPC8560 ADS board under board/freescale.
32474
32475 Minor path corrections needed to ensure buildability.
32476
32477 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32478
32479commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
32480Author: Kumar Gala <galak@kernel.crashing.org>
32481Date: Thu Nov 29 10:13:47 2007 -0600
32482
32483 Move the MPC8568 MDS board under board/freescale.
32484
32485 Minor path corrections needed to ensure buildability.
32486
32487 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32488
32489commit a853d56c59b33415304531443633808736acfc6e
32490Author: Kumar Gala <galak@kernel.crashing.org>
32491Date: Thu Nov 29 02:18:59 2007 -0600
32492
32493 Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
32494
32495 We already had defines for LAWAR_TRGT_IF_* that we should use
32496 rather than creating new ones. Also, added some missing defines for
32497 PCIE targets.
32498
32499 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32500
32501commit 04db400892da37b76a585e332a0c137954ad2015
32502Author: Kumar Gala <galak@kernel.crashing.org>
32503Date: Thu Nov 29 02:10:09 2007 -0600
32504
32505 Stop using immap_t on 85xx
32506
32507 In the future the offsets to various blocks may not be in same location.
32508 Move to using CFG_MPC85xx_*_ADDR as the base of the registers
32509 instead of getting it via &immap.
32510
32511 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32512
32513commit 2714223f8e04ab3e4133ff65872eef366d90bfea
32514Author: Kumar Gala <galak@kernel.crashing.org>
32515Date: Thu Nov 29 01:23:09 2007 -0600
32516
32517 Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
32518
32519 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32520
32521commit c480861bf000156e6a3e932c258db59ff2212dd3
32522Author: Kumar Gala <galak@kernel.crashing.org>
32523Date: Thu Nov 29 01:06:19 2007 -0600
32524
32525 Update MPC8568 MDS to use libfdt
32526
32527 Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
32528 ethernet, pci, and serial for the various fixups that are done.
32529
32530 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32531
32532commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
32533Author: Haiying Wang <Haiying.Wang@freescale.com>
32534Date: Wed Nov 14 15:52:06 2007 -0500
32535
32536 Add PCI Express support on MPC8568MDS
32537
32538 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32539 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32540
32541commit b90d25497625b90ffa3f2911a0895ca237556ff5
32542Author: Kumar Gala <galak@kernel.crashing.org>
32543Date: Thu Nov 29 00:11:44 2007 -0600
32544
32545 Update MPC85xx CDS to use libfdt
32546
32547 Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
32548 ethernet, pci, and serial for the various fixups that are done.
32549
32550 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32551
32552commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
32553Author: Kumar Gala <galak@kernel.crashing.org>
32554Date: Wed Nov 28 22:54:27 2007 -0600
32555
32556 Update MPC8540 ADS to use libfdt
32557
32558 Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
32559 ethernet, pci, and serial for the various fixups that are done.
32560
32561 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32562
32563commit 5ce715802f6c50dc78b3405b92f184b1e3710519
32564Author: Kumar Gala <galak@kernel.crashing.org>
32565Date: Wed Nov 28 22:40:31 2007 -0600
32566
32567 Update MPC8560 ADS to use libfdt
32568
32569 Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
32570 ethernet, pci, and serial for the various fixups that are done.
32571
32572 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32573
32574commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
32575Author: Kumar Gala <galak@kernel.crashing.org>
32576Date: Wed Nov 28 00:36:33 2007 -0600
32577
32578 Stop using immap_t for cpm offset on 85xx
32579
32580 In the future the offsets to various blocks may not be in same location.
32581 Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
32582 instead of getting it via &immap->im_cpm.
32583
32584 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32585
32586commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
32587Author: Kumar Gala <galak@kernel.crashing.org>
32588Date: Tue Nov 27 23:25:02 2007 -0600
32589
32590 Stop using immap_t for guts offset on 85xx
32591
32592 In the future the offsets to various blocks may not be in same location.
32593 Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
32594 instead of getting it via &immap->im_gur.
32595
32596 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32597
32598commit 50c03c8cf494d91cdec39670d95337c743e16ec9
32599Author: Kumar Gala <galak@kernel.crashing.org>
32600Date: Tue Nov 27 22:42:34 2007 -0600
32601
32602 Update MPC8544 DS config
32603
32604 * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
32605 * Removed some misc environment setup
32606 * Moved to using fdtfile & fdtaddr as fdt env var names
32607 * Enabled CONFIG_CMDLINE_EDITING
32608
32609 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32610
32611commit addce57e2e4c49e77ffb2020a84690713bb18b47
32612Author: Kumar Gala <galak@kernel.crashing.org>
32613Date: Mon Nov 26 17:12:24 2007 -0600
32614
32615 Update MPC8544DS to use libfdt
32616
32617 Updated the MPC8544DS config to use libfdt and assume use of aliases for
32618 ethernet, pci, and serial for the various fixups that are done.
32619
32620 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32621
32622commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
32623Author: Kumar Gala <galak@kernel.crashing.org>
32624Date: Thu Nov 29 00:15:30 2007 -0600
32625
32626 Add libfdt based ft_cpu_setup for mpc85xx
32627
32628 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32629
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010032630commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
32631Author: Stefan Roese <sr@denx.de>
32632Date: Tue Dec 11 13:38:19 2007 +0100
32633
32634 ppc4xx: Correct GPIO offset in gpio_config()
32635
32636 Thanks to Gary Jennejohn for pointing this out.
32637
32638 Signed-off-by: Stefan Roese <sr@denx.de>
32639
32640commit 8809a2713b1ceaf3da55d9d785470294f15de06a
32641Author: Stefan Roese <sr@denx.de>
32642Date: Tue Dec 11 11:46:01 2007 +0100
32643
32644 rtc: Fix merging problem
32645
32646 Signed-off-by: Stefan Roese <sr@denx.de>
32647
32648commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
32649Author: Stefan Roese <sr@denx.de>
32650Date: Sat Dec 8 14:47:34 2007 +0100
32651
32652 ppc4xx: 405EX: Correctly enable USB pins
32653
32654 This patch selects the USB data pins in the 405EX GPIO and MFC (multi
32655 function control) registers. This is done for the AMCC Kilauea and
32656 Makalu eval boards.
32657
32658 Signed-off-by: Stefan Roese <sr@denx.de>
32659
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010032660commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
32661Author: Stefan Roese <sr@denx.de>
32662Date: Sat Dec 8 08:25:09 2007 +0100
32663
32664 CFI: Coding style cleanup
32665
32666 Signed-off-by: Stefan Roese <sr@denx.de>
32667
32668commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
32669Author: Michael Schwingen <michael@schwingen.org>
32670Date: Fri Dec 7 23:35:02 2007 +0100
32671
32672 CFI: support JEDEC flash roms in CFI-flash framework
32673
32674 The following patch adds support for non-CFI flash ROMS, by hooking into the
32675 CFI flash code and using most of its code, as recently discussed here in the
32676 thread "Mixing CFI and non-CFI flashs".
32677
32678 Signed-off-by: Michael Schwingen <michael@schwingen.org>
32679 Signed-off-by: Stefan Roese <sr@denx.de>
32680
32681commit c01b17dd856fa120b2970f50d9598546a4927ec3
32682Author: Gerald Van Baren <vanbaren@cideas.com>
32683Date: Wed Nov 28 21:24:50 2007 -0500
32684
32685 Conditionally compile fdt_fixup_ethernet()
32686
32687 Fix compiler warnings: On boards that don't have ethernets defined,
32688 don't compile fdt_fixup_ethernet().
32689
32690commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
32691Author: Kumar Gala <galak@kernel.crashing.org>
32692Date: Tue Nov 27 21:59:46 2007 -0600
32693
32694 Convert boards that set memory node to use fdt_fixup_memory()
32695
32696 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32697
32698commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
32699Author: Kumar Gala <galak@kernel.crashing.org>
32700Date: Mon Nov 26 17:06:15 2007 -0600
32701
32702 Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
32703
32704 We use a combination of the serialN alias and CONFIG_CONS_INDEX to
32705 determine which serial alias we should set linux,stdout-path to.
32706
32707 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32708
32709commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
32710Author: Kumar Gala <galak@kernel.crashing.org>
32711Date: Mon Nov 26 14:57:45 2007 -0600
32712
32713 Add common memory fixup function
32714
32715 Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
32716
32717 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32718
32719commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
32720Author: Kumar Gala <galak@kernel.crashing.org>
32721Date: Mon Nov 26 11:19:12 2007 -0600
32722
32723 Conditionally compile fdt_support.c
32724
32725 Modify common/Makefile to conditionally compile fdt_support.c based
32726 on CONFIG_OF_LIBFDT.
32727
32728 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32729
32730commit d88e7ba0980773479e1a64badb293116071b7ef0
32731Author: Kumar Gala <galak@kernel.crashing.org>
32732Date: Mon Nov 26 10:41:40 2007 -0600
32733
32734 Fix build breakage due to libfdt import
32735
32736 The IDS8247 got lost in the update and need an API update
32737 do to rename of functions in libfdt.
32738
32739 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32740
32741commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
32742Author: Gerald Van Baren <vanbaren@cideas.com>
32743Date: Fri Nov 23 19:43:20 2007 -0500
32744
32745 Add spaces around the = in the fdt print format.
32746
32747 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32748
32749commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
32750Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32751Date: Fri Dec 7 01:25:38 2007 +0900
32752
32753 sh: Moved driver of the SuperH dependence
32754
32755 The composition of the directory in the drivers/ changed.
32756 I moved SuperH serial driver and marubun PCMCIA driver.
32757
32758 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32759
32760commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
32761Author: Wolfgang Denk <wd@denx.de>
32762Date: Thu Dec 6 10:21:19 2007 +0100
32763
32764 Release v1.3.1
32765
32766 Signed-off-by: Wolfgang Denk <wd@denx.de>
32767
32768commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
32769Author: Wolfgang Denk <wd@denx.de>
32770Date: Thu Dec 6 10:21:03 2007 +0100
32771
32772 ADS5121 Board: fix compile problem.
32773
32774 Signed-off-by: Wolfgang Denk <wd@denx.de>
32775
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010032776commit a27044b14a9e93678a82d7b35f202b93e7687abc
32777Author: Stefan Roese <sr@denx.de>
32778Date: Thu Dec 6 05:58:43 2007 +0100
32779
32780 ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
32781
32782 This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
32783 setting the FIXD bit in the SDR0_MFR register. Here a description of the
32784 symptoms:
32785
32786 Problem Description
32787 ------------------------------
32788 If a DMA is performed between memory and PCI with the DMA 1 Controller
32789 using prefetch, and as a result uses a special purpose buffer selected by
32790 the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
32791 the first part of the transfer sequence is performed twice. The
32792 PPC440SPe PCI Controller requests more data than was needed such that in
32793 the case of enforce memory protection, a host CPU exception can occur.
32794 No data is corrupted, because data transfer is stopped in the PCI
32795 Controller. Prefetch enable is specified by setting DMA Configuration
32796 Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
32797
32798 Behavior that may be observed in a running system
32799 ---------------------------------------------------------------------------
32800
32801 1. DMA performance is decreased because of the double access on the PCI bus
32802 interface.
32803 2. If an illegal access to some address on the PCI bus is detected at the
32804 system level, a machine check or similar system error may occur.
32805
32806 Workarounds Available
32807 ----------------------------------
32808
32809 1. Do not program prefetch. Note that a prefetch command cannot be programmed
32810 without selecting a special purpose buffer.
32811 2. To avoid crossing a physical boundary of the PCI slave device, add 512
32812 bytes of address to the PCI address range.
32813
32814 This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
32815 from AMCC and slighly changed.
32816
32817 Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
32818 Signed-off-by: Stefan Roese <sr@denx.de>
32819
32820commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
32821Author: Stefan Roese <sr@denx.de>
32822Date: Tue Dec 4 16:29:48 2007 +0100
32823
32824 ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
32825
32826 Signed-off-by: Stefan Roese <sr@denx.de>
32827
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010032828commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
32829Author: Wolfgang Denk <wd@denx.de>
32830Date: Mon Dec 3 00:15:28 2007 +0100
32831
32832 Prepare for 1.3.1-rc1
32833
32834 Signed-off-by: Wolfgang Denk <wd@denx.de>
32835
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010032836commit e15e33433e7c05111968dc9b434a52fd42cbd221
32837Author: Stefan Roese <sr@denx.de>
32838Date: Fri Nov 30 07:15:41 2007 +0100
32839
32840 ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
32841
32842 This manual PCIe reset triggering solves the problem seen with the
32843 Intel EPRO/1000 card, which was not detected (link not established)
32844 upon power-up reset.
32845
32846 Signed-off-by: Stefan Roese <sr@denx.de>
32847
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010032848commit 260eea5676ca46903a335686cc020b29c4ca46fe
32849Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32850Date: Thu Nov 29 01:21:54 2007 +0900
32851
32852 sh: Add SuperH boards maintainer to MAINTAINERS file
32853
32854 Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
32855
32856 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32857
32858commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
32859Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32860Date: Thu Nov 29 00:13:04 2007 +0900
32861
32862 sh: Add ms7750se support in MAKEALL
32863
32864 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32865
32866commit c7144373427a178332bf9754131c8c34c52c200a
32867Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32868Date: Tue Nov 27 09:44:53 2007 +0100
32869
32870 sh: Add sh3 and sh4 support in MAKEALL
32871
32872 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32873 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32874
32875commit 130080874a3d28450098481a262c5f7c855e908d
32876Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32877Date: Sun Nov 25 02:51:17 2007 +0900
32878
32879 sh: Add document for SuperH.
32880
32881 This document is a summary of information concerning SuperH of U-Boot.
32882
32883 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32884
32885commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
32886Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32887Date: Sun Nov 25 02:39:31 2007 +0900
32888
32889 sh: Add marubun's pcmcia driver
32890
32891 Marubun pcmcia is a chip for PCMCIA used with SuperH.
32892 Of course, this can be used even by other architectures.
32893 When use this driver, came to be able to use CompactFlash
32894 and Ethernet.
32895
32896 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32897
32898commit febd86b969b975289ed948f1ac0eb9722da41ced
32899Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32900Date: Sun Nov 25 02:32:13 2007 +0900
32901
32902 sh: Update SuperH SCIF driver
32903
32904 - Changed volatile unsigned to vu_.
32905 - Changed Makefile for kconfig.
32906
32907 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32908
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010032909commit 8be760903645af09871be50ad0a6f9ebb62b311d
32910Author: Stefan Roese <sr@denx.de>
32911Date: Tue Nov 27 11:57:35 2007 +0100
32912
32913 ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
32914
32915 After an error in the AMCC 405EX users manual now correctly configure
32916 IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
32917 usage.
32918
32919 Signed-off-by: Stefan Roese <sr@denx.de>
32920
Wolfgang Denk8d4f0402007-12-03 00:15:28 +010032921commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
32922Author: Wolfgang Denk <wd@denx.de>
32923Date: Mon Nov 26 19:18:21 2007 +0100
32924
32925 Cleanup coding style; update CHANGELOG
32926
32927 Signed-off-by: Wolfgang Denk <wd@denx.de>
32928
32929commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
32930Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32931Date: Sun Nov 25 22:39:25 2007 +0100
32932
32933 MAKEALL: add missing 512x boards in ppc
32934
32935 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32936
32937commit a340c325e668ca7386c2276387681720be9c3757
32938Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32939Date: Sun Nov 25 18:45:47 2007 +0100
32940
32941 Makefile : fix tags ctags etags with new drivers organization
32942
32943 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32944
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010032945commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
32946Author: Stefan Roese <sr@denx.de>
32947Date: Mon Nov 26 15:06:14 2007 +0100
32948
32949 ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
32950
32951 As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
32952 operation.
32953
32954 Signed-off-by: Stefan Roese <sr@denx.de>
32955
32956commit ca1ce226287270bb01e25b8e3674c701f12edf19
32957Author: Stefan Roese <sr@denx.de>
32958Date: Mon Nov 26 15:01:45 2007 +0100
32959
32960 ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
32961
32962 Signed-off-by: Stefan Roese <sr@denx.de>
32963
Wolfgang Denka5f601f2007-11-26 19:18:21 +010032964commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
32965Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32966Date: Sun Nov 25 18:45:47 2007 +0100
32967
32968 Makefile : fix tags ctags etags with new drivers organization
32969
32970 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32971
32972commit 59829cc189378c142c13d2aa8d9a897d8bef3961
32973Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32974Date: Sat Nov 24 21:26:56 2007 +0100
32975
32976 drivers/mtd : move mtd drivers to drivers/mtd
32977
32978 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32979
32980commit 318c0b90431f2648552e5ade78833f42652ce859
32981Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32982Date: Sat Nov 24 21:17:55 2007 +0100
32983
32984 drivers/misc : move misc drivers to drivers/misc
32985
32986 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32987
32988commit 33daf5b7858807cb4ce4158c2c56524671c14c08
32989Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32990Date: Sat Nov 24 21:13:59 2007 +0100
32991
32992 drivers/block : move block drivers to drivers/block
32993
32994 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32995
32996commit 0c698dcaa70275eb8814f665b545547cee013892
32997Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32998Date: Sat Nov 24 20:59:50 2007 +0100
32999
33000 drivers/rtc : move rtc drivers to drivers/rtc
33001
33002 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33003
33004commit f868cc5a50757d94f36c312395481cb0f187d9e6
33005Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33006Date: Sat Nov 24 20:14:44 2007 +0100
33007
33008 drivers/hwmon : move hardware monitor drviers to drivers/hwmon
33009
33010 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33011
33012commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
33013Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33014Date: Sat Nov 24 19:46:45 2007 +0100
33015
33016 drivers/input : move input drivers to drivers/input
33017
33018 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33019
33020commit e4558666293364fc3af1c1d9381ca933fa0f1275
33021Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33022Date: Sat Nov 24 19:40:11 2007 +0100
33023
33024 drivers/usb : move usb drivers to drivers/usb
33025
33026 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33027
33028commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
33029Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33030Date: Sat Nov 24 19:33:38 2007 +0100
33031
33032 drivers/serial : move serial drivers to drivers/serial
33033
33034 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33035
33036commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
33037Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33038Date: Wed Nov 21 21:19:24 2007 +0100
33039
33040 drivers/net : move net drivers to drivers/net
33041
33042 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33043
33044commit 352d259130b349fe9593b8dada641bd78a9659e5
33045Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33046Date: Tue Nov 20 20:41:48 2007 +0100
33047
33048 drivers/video : move video drivers to drivers/video
33049
33050 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33051
33052commit 73646217186aa17afc8e305c5f06f06dd335eaad
33053Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33054Date: Tue Nov 20 20:33:09 2007 +0100
33055
33056 drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
33057
33058 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33059
33060commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
33061Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33062Date: Tue Nov 20 20:28:09 2007 +0100
33063
33064 drivers/pci : move pci drivers to drivers/pci
33065
33066 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33067
33068commit 9162352817579840d7802da6d85872b3ca003c97
33069Author: Gerald Van Baren <vanbaren@cideas.com>
33070Date: Thu Nov 22 17:23:23 2007 -0500
33071
33072 Fix fdt printing for updated libfdt
33073
33074 Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
33075
33076 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33077
33078commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
33079Author: Kumar Gala <galak@kernel.crashing.org>
33080Date: Wed Nov 21 13:30:15 2007 -0600
33081
33082 Add additional fdt fixup helper functions
33083
33084 Added the following fdt fixup helpers:
33085 * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
33086 * do_fixup_by_compat{_u32} - Find matching nodes by compat
33087
33088 The _u32 variants work the same only the property they are setting
33089 is know to be a 32-bit integer instead of a byte buffer.
33090
33091 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33092
33093commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
33094Author: Kumar Gala <galak@kernel.crashing.org>
33095Date: Wed Nov 21 11:11:03 2007 -0600
33096
33097 Add fdt_fixup_ethernet helper to set mac addresses
33098
33099 Added a fixup helper that uses aliases to set mac addresses
33100 in the device tree based on the bd_t
33101
33102 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33103
33104commit dbaf07ce620aab249e3502b20a986234a6af1d3a
33105Author: Kumar Gala <galak@kernel.crashing.org>
33106Date: Wed Nov 21 14:07:46 2007 -0600
33107
33108 Fix warnings from import of libfdt
33109
33110 cmd_fdt.c: In function fdt_print:
33111 cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
33112 cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
33113 cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
33114 cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
33115
33116 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33117
33118commit 8d04f02f6224e6983f4812ea4da704950ec8539c
33119Author: Kumar Gala <galak@kernel.crashing.org>
33120Date: Wed Oct 24 11:04:22 2007 -0500
33121
33122 Update libfdt from device tree compiler (dtc)
33123
33124 Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
33125 the device tree compiler (dtc) project.
33126
33127 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33128
33129commit e93becf80d732b64aef81b23e8b6ece02c40533d
33130Author: Kumar Gala <galak@kernel.crashing.org>
33131Date: Sat Nov 3 19:46:28 2007 -0500
33132
33133 Move do_fixup* for libfdt into common code
33134
33135 Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
33136 into common/fdt_support.c and renamed:
33137
33138 do_fixup() -> do_fixup_by_path()
33139 do_fixup_u32() -> do_fixup_by_path_u32()
33140
33141 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33142
33143commit f738b4a75998f42a7408defadc9baac7a31c92db
33144Author: Kumar Gala <galak@kernel.crashing.org>
33145Date: Thu Oct 25 16:15:07 2007 -0500
33146
33147 Make no options to fdt print default to '/'
33148
33149 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33150
33151commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
33152Author: Kumar Gala <galak@kernel.crashing.org>
33153Date: Wed Oct 24 10:21:57 2007 -0500
33154
33155 Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
33156
33157 Removed:
33158 fdt_node_is_compatible
33159 fdt_find_node_by_type
33160 fdt_find_compatible_node
33161
33162 To ease merge of newer libfdt as we aren't using them anywhere at this time.
33163
33164 Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
33165 reason.
33166
33167 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33168
33169commit 98e2867cc85409b919f862e6c16026461ec955df
33170Author: Grant Likely <grant.likely@secretlab.ca>
33171Date: Wed Nov 21 09:19:37 2007 -0700
33172
33173 [BUILD] Remove libraries when updating autoconf.mk
33174
33175 Fix library problems caused by conditional compilation. Using
33176 autoconf.mk to decide which files to compile has caused a problem when
33177 changing configuration from one board to another without clearing out
33178 the library (*.a) files.
33179
33180 It used to be that the linker was always passed the same list of .o
33181 files when building the .a files. However, that is not longer true
33182 with conditional compilation. Now, a different board config will have
33183 a different file list passed to the linker. The problem occurs when
33184 a library has already been built and the board config is changed.
33185
33186 Since the linker will update instead of replace a preexisting library,
33187 then if the file list changes to remove some object files the old
33188 objects will still exist in the library.
33189
33190 The solution is to remove all old library files when autoconf.mk is
33191 made.
33192
33193 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33194
33195commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
33196Author: Kumar Gala <galak@kernel.crashing.org>
33197Date: Wed Nov 21 08:49:50 2007 -0600
33198
33199 [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
33200
33201 Modify libfdt/Makefile to conditionally compile the *.c files based
33202 on the board config.
33203
33204 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33205
33206commit 4a43719a7738712811d822ca8125427b27a55cdc
33207Author: Grant Likely <grant.likely@secretlab.ca>
33208Date: Mon Sep 24 09:05:31 2007 -0600
33209
33210 [BUILD] conditionally compile common/cmd_*.c in common/Makefile
33211
33212 Modify common/Makefile to conditionally compile the cmd_*.c files based
33213 on the board config.
33214
33215 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33216
33217commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
33218Author: Grant Likely <grant.likely@secretlab.ca>
33219Date: Mon Sep 24 09:05:31 2007 -0600
33220
33221 [BUILD] Generate include/autoconf.mk from board config files
33222
33223 Use cpp and sed to postprocess config.h and import the defined values
33224 into include/autoconf.mk. autoconf.mk is then included by config.mk to
33225 give 'make' access to the board configuration.
33226
33227 Doing this enables conditional compilation at the Makefile level instead
33228 of by wrapping every .c file with #ifdef/#endif wrappers.
33229
33230 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33231
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010033232commit 68b88999da87ab88e71e1306192905be3450198e
33233Author: Jon Loeliger <jdl@freescale.com>
33234Date: Tue Nov 20 15:02:26 2007 -0600
33235
33236 8610HPCD: Enable the 8610 Display Interface Unit
33237
33238 Signed-off-by: Jon Loeliger <jdl@freescale.com>
33239
33240commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
33241Author: Jon Loeliger <jdl@freescale.com>
33242Date: Tue Nov 20 15:00:53 2007 -0600
33243
33244 Move 8610 DIU interface structure definitions to header file.
33245
33246 These two structures are still needed during the
33247 initialization and setup of the DIU hardware.
33248 So move them to the fsl_diu_fb.h file for now.
33249 Official "blah".
33250
33251 Noticed-by: York Sun <yorksun@freescale.com>
33252 Signed-off-by: Jon Loeliger <jdl@freescale.com>
33253
Wolfgang Denka5f601f2007-11-26 19:18:21 +010033254commit 080c646dbf474a109c3f85718fb01ce042a38c45
33255Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33256Date: Tue Nov 20 20:14:18 2007 +0100
33257
33258 drivers/i2c : move i2c drivers to drivers/i2c
33259
33260 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33261
33262commit 9a337ddc154a10a26f117fd147b009abcdeba75a
33263Author: Wolfgang Denk <wd@denx.de>
33264Date: Mon Nov 19 22:20:24 2007 +0100
33265
33266 Prepare for 1.3.0 release.
33267
33268 Signed-off-by: Wolfgang Denk <wd@denx.de>
33269
Wolfgang Denk9a337dd2007-11-19 22:20:24 +010033270commit f30ad49b16bf998b03c1a5228b6c86369d61c258
33271Author: Haiying Wang <Haiying.Wang@freescale.com>
33272Date: Mon Nov 19 10:02:13 2007 -0500
33273
33274 Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
33275
33276 CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
33277
33278 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33279
33280commit f8c320609366176b31104d9bf5e295232e1c7f1d
33281Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33282Date: Mon Nov 19 11:14:16 2007 +0900
33283
33284 [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
33285
33286 lowlevel_init.S: Assembler messages:
33287 lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
33288
33289 Looking at codes, the `memtest' and `clearmem' are intentional mixed
33290 use of `global symbols' and `label' for debugging purpose. To make it
33291 build, just disable global-symbols-use for now. As a result `memtest'
33292 still remains as unused, but leave it be...
33293
33294 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33295
33296commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
33297Author: Wolfgang Denk <wd@denx.de>
33298Date: Mon Nov 19 12:59:14 2007 +0100
33299
33300 Fix build problems with mp2usb board
33301
33302 Signed-off-by: Wolfgang Denk <wd@denx.de>
33303
33304commit 6bf4c686afca1e86e1c384d59218f914605713bf
33305Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33306Date: Sun Nov 18 18:36:11 2007 +0100
33307
33308 s3c24x0: Fix usb_ohci.c missing in Makefile
33309 and usb_ohci.c warning differ in signedness
33310
33311 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33312
33313commit 6073f61e078da5ddb521b56256bcc36508589883
33314Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33315Date: Sun Nov 18 12:55:02 2007 +0100
33316
33317 pb1x00 board: Fix u16 status declaration when PCMCIA is defined
33318
33319 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33320
33321commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
33322Author: Wolfgang Denk <wd@denx.de>
33323Date: Sun Nov 18 17:11:09 2007 +0100
33324
33325 Fix compiler warnings for ARM systems.
33326
33327 Signed-off-by: Wolfgang Denk <wd@denx.de>
33328
33329commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
33330Author: Wolfgang Denk <wd@denx.de>
33331Date: Sun Nov 18 16:36:27 2007 +0100
33332
33333 Fix compiler warnings for PPC systems. Update CHANGELOG.
33334
33335 Signed-off-by: Wolfgang Denk <wd@denx.de>
33336
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010033337commit 653811a3c2b35856bf12e196dcc8c4694e28e420
33338Author: Stefan Roese <sr@denx.de>
33339Date: Sun Nov 18 14:44:44 2007 +0100
33340
33341 ppc4xx: Correct 405EX PCIe UTL register mapping
33342
33343 Map 4k mem space for UTL registers for each port.
33344
33345 Signed-off-by: Stefan Roese <sr@denx.de>
33346
Wolfgang Denk409ecdc2007-11-18 16:36:27 +010033347commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
33348Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33349Date: Sat Nov 17 11:31:10 2007 +0100
33350
33351 Fix warning differ in signedness in net/net.c and net/nfs.c
33352
33353commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
33354Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33355Date: Sat Nov 17 20:42:45 2007 +0900
33356
33357 gth2.c: Fix a warning on gth2 build.
33358
33359 gth2.c: In function 'misc_init_r':
33360 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
33361
33362 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33363
33364commit 2309c130aa4c84b91bd874a41269c923eb61b555
33365Author: Stefan Roese <sr@denx.de>
33366Date: Sat Nov 17 07:58:25 2007 +0100
33367
33368 Fix warning differ in signedness in common/cmd_scsi.c
33369
33370 Signed-off-by: Stefan Roese <sr@denx.de>
33371
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010033372commit 9ea61b57968554eaf0f474ec7e088b17d367f474
33373Author: Stefan Roese <sr@denx.de>
33374Date: Sat Nov 17 14:52:29 2007 +0100
33375
33376 ppc4xx: Update AMCC Kilauea config file
33377
33378 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
33379
33380 Signed-off-by: Stefan Roese <sr@denx.de>
33381
Wolfgang Denk409ecdc2007-11-18 16:36:27 +010033382commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
33383Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33384Date: Sat Nov 17 20:05:26 2007 +0900
33385
33386 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
33387
33388 Current trick to pick up GNU assembler minor version does not work with the
33389 latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
33390 "(GNU Binutils) ".
33391
33392 $ sde-as --version |grep "GNU assembler"
33393 GNU assembler 2.15.94 mipssde-6.02.02-20050602
33394 $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
33395 2.15.94
33396 $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
33397 15
33398 $
33399
33400 $ mips-linux-as --version |grep "GNU assembler"
33401 GNU assembler (GNU Binutils) 2.18
33402 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
33403 (GNU
33404 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
33405 (no output)
33406 $
33407
33408 As a result of above, you'll see many noises with such binutils:
33409
33410 make -C cpu/mips/
33411 /bin/sh: line 0: [: : integer expression expected
33412 /bin/sh: line 0: [: : integer expression expected
33413 make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
33414 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
33415 /bin/sh: line 0: [: : integer expression expected
33416 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
33417 /bin/sh: line 0: [: : integer expression expected
33418 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
33419 /bin/sh: line 0: [: : integer expression expected
33420
33421 This patch simplifies the trick and makes it work with both versions of gas.
33422 I also replace an expensive `awk (or gawk)' with `cut'.
33423
33424 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33425
33426commit 16664f72850846e645616da1c0fa5afcd6d15f15
33427Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33428Date: Sat Nov 17 20:05:26 2007 +0900
33429
33430 [MIPS] Remove useless instructions for initializing $gp.
33431
33432 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33433
33434commit 03c031d5660ea946c39af6e2e16267da857c609f
33435Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33436Date: Sat Oct 27 15:27:06 2007 +0900
33437
33438 [MIPS] MIPS 4K core: Coding style cleanups
33439
33440 No logical changes.
33441
33442 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33443
33444commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
33445Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33446Date: Sat Nov 17 20:05:20 2007 +0900
33447
33448 [MIPS] gth2.c: Fix a warning on gth2 build.
33449
33450 gth2.c: In function 'misc_init_r':
33451 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
33452
33453 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33454
33455commit 4fbd0741b2b6441da10be93e10267122581b7079
33456Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33457Date: Sat Oct 27 15:22:33 2007 +0900
33458
33459 [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
33460
33461 au1x00_eth.c: In function 'au1x00_miiphy_write':
33462 au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
33463
33464 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33465
33466commit f01320459736f156707425cf8112f98606301aa4
33467Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33468Date: Sat Oct 27 15:00:25 2007 +0900
33469
33470 [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
33471
33472 au1x00_eth.c: In function 'au1x00_enet_initialize':
33473 au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
33474 au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
33475 au1x00_eth.c:246: error: for each function it appears in.)
33476 au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
33477 au1x00_eth.c: In function 'au1x00_miiphy_write':
33478 au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
33479 make[1]: *** [au1x00_eth.o] Error 1
33480
33481 Fixed by moving these two functions forward.
33482
33483 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33484
33485commit b09258c5393edd1087c5f39ae68338f16b49f8b3
33486Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33487Date: Sat Oct 27 15:00:25 2007 +0900
33488
33489 MAKEALL: Added missing pb1000 board
33490
33491 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33492
33493commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
33494Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33495Date: Sat Oct 27 15:00:24 2007 +0900
33496
33497 [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
33498
33499 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33500
33501commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
33502Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33503Date: Sat Oct 27 15:00:24 2007 +0900
33504
33505 [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
33506
33507 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33508
33509commit 5947f6999aafa7c54c1390983d264a8463dfea8e
33510Author: Wolfgang Denk <wd@denx.de>
33511Date: Sat Nov 17 02:34:38 2007 +0100
33512
33513 Update CHANGELOIG, prepare for -rc4
33514
33515 Signed-off-by: Wolfgang Denk <wd@denx.de>
33516
Wolfgang Denk5947f692007-11-17 02:34:38 +010033517commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
33518Author: Luotao Fu <l.fu@pengutronix.de>
33519Date: Wed Nov 14 18:58:33 2007 +0100
33520
33521 Fix the i2c frequency and default address in rsdproto board
33522
33523 rsdproto board support has wrong I2C frequency and wrong return value
33524 handling.
33525
33526 Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
33527
33528commit 429c180edad038f91c989cb14b478228092e7054
33529Author: Wolfgang Denk <wd@denx.de>
33530Date: Sat Nov 17 01:45:38 2007 +0100
33531
33532 powerpc: Backout relocation changes for MPC5121, too.
33533
33534 Apply Grant Likely's backout to MPC5121 code, too.
33535
33536 Pointed out by Rafal Jaworowski <raj@semihalf.com>
33537
33538 Signed-off-by: Wolfgang Denk <wd@denx.de>
33539
33540commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
33541Author: Grant Likely <grant.likely@secretlab.ca>
33542Date: Tue Nov 13 22:18:33 2007 -0700
33543
33544 powerpc: Backout relocation changes.
33545
33546 Ugh. I *hate* to back this change out, but these compiler flags don't
33547 work for relocation on all versions of GCC. I've not been able to
33548 reproduce the environment in my setup (and hence, not been able to
33549 find a combination that *does* work), so I've got no choice but to go
33550 back to the old gcc flags and linker script.
33551
33552 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33553
33554commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
33555Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33556Date: Tue Nov 13 09:11:05 2007 +0100
33557
33558 Fixed mips_io_port_base build errors.
33559
33560 This patch has been sent on:
33561 - 29 Sep 2007
33562
33563 Although mips_io_port_base is currently a part of IDE command, it is quite
33564 fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
33565 it to MIPS general part, and introduce `set_io_port_base()' from Linux.
33566
33567 This patch is triggered by multiple definition of `mips_io_port_base' build
33568 error on gth2 (and tb0229 also needs this fix.)
33569
33570 board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
33571 /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
33572 common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
33573 make: *** [u-boot] Error 1
33574
33575 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33576 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33577
33578commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
33579Author: Wolfgang Denk <wd@denx.de>
33580Date: Sat Nov 17 01:30:40 2007 +0100
33581
33582 Fix a bug in the slave serial programming mode for the Xilinx
33583 Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
33584 the most significant bit was set, which did not work on any
33585 architecture where "char" defaulted to be an unsigned type.
33586
33587 Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
33588
33589 Signed-off-by: Wolfgang Denk <wd@denx.de>
33590
33591commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
33592Author: Jon Loeliger <jdl@freescale.com>
33593Date: Thu Nov 1 12:23:29 2007 -0500
33594
33595 86xx: Fix broken variable reference when #def DEBUGing.
33596
33597 Sometimes you can't reference the DDR2 controller variables.
33598
33599 Signed-off-by: Jon Loeliger <jdl@freescale.com>
33600
33601commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
33602Author: Jason Jin <Jason.jin@freescale.com>
33603Date: Fri Oct 26 18:32:00 2007 +0800
33604
33605 make 8610 board use pixis reset
33606
33607 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33608
33609commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
33610Author: Jason Jin <Jason.jin@freescale.com>
33611Date: Mon Oct 29 19:26:21 2007 +0800
33612
33613 Unify pixis_reset altbank across board families
33614
33615 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
33616 into the separate board config files.
33617
33618 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33619 Signed-off-by: Jon Loeliger <jdl@freescale.com>
33620
33621commit 64bf555465c7926be13e1046ac0d0f05ac72829c
33622Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33623Date: Wed Nov 7 08:19:21 2007 +0100
33624
33625 Fix warning: pointer targets in assignment differ in signedness
33626
33627 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33628
33629commit 7a60ee7c6248a958c5757d3660a1702723a2786d
33630Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33631Date: Wed Nov 7 08:19:19 2007 +0100
33632
33633 Fix warning differ in signedness in common/cmd_ide.c
33634
33635 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33636
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010033637commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
33638Author: Stefan Roese <sr@denx.de>
33639Date: Fri Nov 16 14:16:54 2007 +0100
33640
33641 ppc4xx: Enable 405EX PCIe UTL register configuration
33642
33643 Till now the UTL registers on 405EX were not initialized but left with
33644 their default values. This patch new initializes some of the UTL
33645 registers on 405EX.
33646
33647 Signed-off-by: Stefan Roese <sr@denx.de>
33648
33649commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
33650Author: Stefan Roese <sr@denx.de>
33651Date: Fri Nov 16 14:00:59 2007 +0100
33652
33653 ppc4xx: Update AMCC Makalu for board rev 1.1
33654
33655 This patch adds changes needed for Makalu rev 1.1:
33656
33657 - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
33658 - Enable 2nd ethernet port EMAC1
33659 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
33660 - Reset PCIe ports via GPIO upon bootup
33661
33662 Signed-off-by: Stefan Roese <sr@denx.de>
33663
Wolfgang Denka5f601f2007-11-26 19:18:21 +010033664commit 4d4faae65e115e327425cd514c1a35146a85166b
33665Author: Grant Likely <grant.likely@secretlab.ca>
33666Date: Mon Sep 24 09:05:31 2007 -0600
33667
33668 Group PCI and PCMCIA drivers in drivers/Makefile
33669
33670 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33671
33672commit 5798f87dc10a496d79d3177b9f5a76488987fd35
33673Author: Grant Likely <grant.likely@secretlab.ca>
33674Date: Mon Sep 24 09:05:31 2007 -0600
33675
33676 Group block/flash drivers in drivers/Makefile
33677
33678 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33679
33680commit df58c81551700f058b44cacf55a7997fa63bfe0a
33681Author: Grant Likely <grant.likely@secretlab.ca>
33682Date: Mon Sep 24 09:05:31 2007 -0600
33683
33684 Group USB drivers in drivers/Makefile
33685
33686 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33687
33688commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
33689Author: Grant Likely <grant.likely@secretlab.ca>
33690Date: Mon Sep 24 09:05:30 2007 -0600
33691
33692 Group i2c drivers in drivers/Makefile
33693
33694 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33695
33696commit ec00c76de0e5971273905998d62d6bb119324218
33697Author: Grant Likely <grant.likely@secretlab.ca>
33698Date: Mon Sep 24 09:05:30 2007 -0600
33699
33700 Group console drivers in drivers/Makefile
33701
33702 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33703
33704commit 754f230aa01b8c789fc31f8013c2487954073300
33705Author: Grant Likely <grant.likely@secretlab.ca>
33706Date: Mon Sep 24 09:05:30 2007 -0600
33707
33708 Group network drivers in drivers/Makefile
33709
33710 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33711
33712commit f0037c56b0d12cd46215124667b9f83d60ef9391
33713Author: Grant Likely <grant.likely@secretlab.ca>
33714Date: Mon Sep 24 09:05:30 2007 -0600
33715
33716 Build: split COBJS value into multiple lines
33717
33718 This change is in preparation for condtitionial compile support in the
33719 build system. By spliting them all into seperate lines now, subsequent
33720 patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
33721 be less invasive and easier to review
33722
33723 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33724
33725commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
33726Author: Grant Likely <grant.likely@secretlab.ca>
33727Date: Mon Sep 24 09:05:30 2007 -0600
33728
33729 Add .gitignore files
33730
33731 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33732 Acked-by: Kim Phillips <kim.phillips@freescale.com>
33733
Wolfgang Denk5947f692007-11-17 02:34:38 +010033734commit 955413f35f054a82e40042f1dbcf501c6a05719b
33735Author: Grant Likely <grant.likely@secretlab.ca>
33736Date: Thu Nov 15 08:27:52 2007 -0700
33737
33738 Revert "Correct relocation fixup for mpc5xx"
33739
33740 This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
33741 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33742
33743commit e15633888a058aacb31a62d2cf1278e1e4c236ab
33744Author: Grant Likely <grant.likely@secretlab.ca>
33745Date: Thu Nov 15 08:24:32 2007 -0700
33746
33747 Revert "Correct fixup relocation for MPC5xxx"
33748
33749 This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
33750 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33751
33752commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
33753Author: Grant Likely <grant.likely@secretlab.ca>
33754Date: Thu Nov 15 08:21:04 2007 -0700
33755
33756 Revert "Correct fixup relocation for mpc8220"
33757
33758 This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
33759 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33760
33761commit 70922342369e5e39b286fe21e768a239ca07a514
33762Author: Grant Likely <grant.likely@secretlab.ca>
33763Date: Thu Nov 15 08:20:57 2007 -0700
33764
33765 Revert "Correct fixup relocation for mpc824x"
33766
33767 This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
33768 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33769
33770commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
33771Author: Grant Likely <grant.likely@secretlab.ca>
33772Date: Thu Nov 15 08:20:50 2007 -0700
33773
33774 Revert "Correct fixup relocation for mpc8260"
33775
33776 This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
33777 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33778
33779commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
33780Author: Grant Likely <grant.likely@secretlab.ca>
33781Date: Thu Nov 15 08:20:43 2007 -0700
33782
33783 Revert "Correct fixup relocation for mpc83xx"
33784
33785 This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
33786 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33787
33788commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
33789Author: Grant Likely <grant.likely@secretlab.ca>
33790Date: Thu Nov 15 08:20:25 2007 -0700
33791
33792 Revert "[MPC512x] Correct fixup relocation"
33793
33794 This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
33795 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33796
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010033797commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
33798Author: Stefan Roese <sr@denx.de>
33799Date: Thu Nov 15 14:25:09 2007 +0100
33800
33801 ppc4xx: Small AMCC Kilauea cleanup
33802
33803 Remove not needed pci_target_init() function.
33804
33805 Signed-off-by: Stefan Roese <sr@denx.de>
33806
33807commit aee747f19b460a0e9da20ff21e90fdaac1cec359
33808Author: Stefan Roese <sr@denx.de>
33809Date: Thu Nov 15 14:23:55 2007 +0100
33810
33811 ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
33812
33813 - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
33814 - Cleanup of the 4xx GPIO functions
33815 - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
33816
33817 Signed-off-by: Stefan Roese <sr@denx.de>
33818
33819commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
33820Author: Stefan Roese <sr@denx.de>
33821Date: Thu Nov 15 14:20:08 2007 +0100
33822
33823 ppc4xx: AMCC Taihu board config file cleanup
33824
33825 This patch makes the AMCC Taihu a little more compatible to the other
33826 AMCC eval boards.
33827
33828 Signed-off-by: Stefan Roese <sr@denx.de>
33829
33830commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
33831Author: Marian Balakowicz <m8@semihalf.com>
33832Date: Thu Nov 15 13:37:28 2007 +0100
33833
33834 [INKA4x0] NG hardware: flash support
33835
33836 Disabled and remove inka4x0 custom flash driver, use CFI flash
33837 driver instead.
33838
33839 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
33840
33841commit 5fb6d7191e206cdde0e23140fd8111caed93a595
33842Author: Marian Balakowicz <m8@semihalf.com>
33843Date: Thu Nov 15 13:29:55 2007 +0100
33844
33845 [INKA4x0] NG hardware: SDRAM support
33846
33847 Add support for three new DDR chips that may be present on a NG
33848 INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
33849
33850 Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
33851
33852 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
33853
33854commit f23cb34c367bb27585a4fdb8a75277370e7d0596
33855Author: Marian Balakowicz <m8@semihalf.com>
33856Date: Thu Nov 15 13:24:43 2007 +0100
33857
33858 [INKA4x0] NG hardware: platform code update
33859
33860 - Cleanup compile warnings.
33861 - Add missing '\0' in default environment.
33862 - Increase CFG_MONITOR_LEN to 256 KiB.
33863 - Add required CFG_USE_PPCENV.
33864
33865 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
33866
33867commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
33868Author: Peter Pearse <peter.pearse@arm.com>
33869Date: Thu Nov 15 08:58:00 2007 +0000
33870
33871 Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
33872 Remove warnings re onenand_read() & write()
33873
33874commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
33875Author: Peter Pearse <peter.pearse@arm.com>
33876Date: Thu Nov 15 08:45:13 2007 +0000
33877
33878 Correction patch
33879
33880commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
33881Author: Roy Zang <tie-fei.zang@freescale.com>
33882Date: Thu Sep 13 18:52:28 2007 +0800
33883
33884 Enable ULi1575 Ethernet support in 8610HPCD config
33885
33886 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
33887 Acked-by: Jon Loeliger <jdl@freescale.com>
33888
Wolfgang Denk5947f692007-11-17 02:34:38 +010033889commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
33890Author: Stefan Roese <sr@denx.de>
33891Date: Tue Nov 13 08:18:20 2007 +0100
33892
33893 ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
33894
33895 Signed-off-by: Stefan Roese <sr@denx.de>
33896
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010033897commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
33898Author: Stefan Roese <sr@denx.de>
33899Date: Tue Nov 13 08:06:11 2007 +0100
33900
33901 ppc4xx: Fix 405EX PCIe UTLSET register setup
33902
33903 Signed-off-by: Stefan Roese <sr@denx.de>
33904
Wolfgang Denk5947f692007-11-17 02:34:38 +010033905commit 1ce55151c85d068f70317a8d65c61058b891afb4
33906Author: Heiko Schocher <hs@denx.de>
33907Date: Tue Nov 13 07:50:29 2007 +0100
33908
33909 [UC101] SRAM now with 2 MB working.
33910
33911 Signed-off-by: Heiko Schocher <hs@denx.de>
33912
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010033913commit 2d14684341109a69616e4d6016cd61402d55086f
33914Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33915Date: Fri Nov 9 15:37:53 2007 +0100
33916
33917 ppc4xx: Use generic usb-ohci driver for sequoia board
33918
33919 This patch makes the sequoia board use the generic usb-ohci driver
33920 instead of cpu/ppc4xx/usb_ohci.c.
33921
33922 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33923 Signed-off-by: Stefan Roese <sr@denx.de>
33924
33925commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
33926Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33927Date: Fri Nov 9 15:37:23 2007 +0100
33928
33929 ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
33930
33931 This patch disables the 44x d-cache on 'usb start' and
33932 reenables it on 'usb stop'. This should be seen as a
33933 temporary fix until the generic usb-ohci driver can
33934 life with d-cache enabled.
33935
33936 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33937 Signed-off-by: Stefan Roese <sr@denx.de>
33938
33939commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
33940Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33941Date: Fri Nov 9 15:36:44 2007 +0100
33942
33943 ppc4xx: Remove redundant code from 4xx network driver
33944
33945 This patch removes some redundant code and decrements the end
33946 address of cache flush and invalidate by 1.
33947
33948 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33949 Signed-off-by: Stefan Roese <sr@denx.de>
33950
33951commit 5ca9881aad8c413ac2a82868a5e3719178254502
33952Author: Peter Pearse <peter.pearse@arm.com>
33953Date: Fri Nov 9 15:24:26 2007 +0000
33954
33955 Add apollon board support
33956 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33957
33958commit b53313dbfc74525d85f1e7e0102f902d5c863beb
33959Author: Stefan Roese <sr@denx.de>
33960Date: Fri Nov 9 12:19:58 2007 +0100
33961
33962 ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
33963
33964 Signed-off-by: Stefan Roese <sr@denx.de>
33965
33966commit c7f69c340277935a6c19a956421852da944a365f
33967Author: Stefan Roese <sr@denx.de>
33968Date: Fri Nov 9 12:18:54 2007 +0100
33969
33970 ppc4xx: Make output a little shorter on I2C bootrom detection
33971
33972 Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
33973 already print a line with the information which I2C bootrom is
33974 used for bootstrap configuration. So we don't need this extra line
33975 with "I2C boot EEPROM en-/dis-abled".
33976
33977 This patch also has a little code cleanup integrated.
33978
33979 Signed-off-by: Stefan Roese <sr@denx.de>
33980
Wolfgang Denk5947f692007-11-17 02:34:38 +010033981commit 8d737a28152ec12873f8544cca1fb39a49e5e693
33982Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33983Date: Thu Nov 8 12:50:18 2007 -0600
33984
33985 ColdFire: MCF5329 - Remove reset registers from CCM
33986
33987 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33988
33989commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
33990Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33991Date: Thu Nov 8 12:31:11 2007 -0600
33992
33993 ColdFire: MCF5329 - Add Reset structure to immap_5329.h
33994
33995 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33996
33997commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
33998Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33999Date: Thu Nov 8 12:19:01 2007 -0600
34000
34001 ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
34002
34003 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34004
34005commit 225a24b5e062ad94627424508ae814f51dbe1a34
34006Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34007Date: Wed Nov 7 18:00:54 2007 -0600
34008
34009 ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
34010
34011 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34012
34013commit 248c7c14835f34d5d910b45e5600050e58ca6cab
34014Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34015Date: Wed Nov 7 17:56:15 2007 -0600
34016
34017 ColdFire: MCF532x - Update do_reset() using core reset
34018
34019 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34020
34021commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
34022Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34023Date: Wed Nov 7 17:51:00 2007 -0600
34024
34025 ColdFire: Update cpu flag for 4.2-xx compiler
34026
34027 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34028
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010034029commit 070ba56115b4da63b46e974287fa4550d4023386
34030Author: York Sun <yorksun@freescale.com>
34031Date: Wed Oct 31 14:59:04 2007 -0500
34032
34033 8610: Add console frame buffer support to FSL 8610 DIU driver.
34034
34035 Add cfb console support to FSL 8610 DIU driver.
34036 Inspect board version from PIXIS to obtain correct pixel format.
34037
34038 Use #define CONFIG_VIDEO in config file to enable fb console.
34039
34040 To switch monitor, set monitor variable to
34041 0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
34042 followed by "diufb init".
34043
34044 Preserve logo bitmap at the top of the fb console.
34045
34046 Signed-off-by: York Sun <yorksun@freescale.com>
34047 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34048
34049commit a877880c6949e948bd63cd6ea4e216573d2f53dd
34050Author: York Sun <yorksun@freescale.com>
34051Date: Mon Oct 29 13:58:39 2007 -0500
34052
34053 8610: Add 8610 DIU display driver
34054
34055 1280x1024 and 1024x768 @ 32 bpp are supported now.
34056 DVI, Single-link LVDS, Double-link LVDS are all supported.
34057
34058 Environmental variable "monitor" is used to specify monitor port.
34059
34060 A new command "diufb" is introduced to reinitialize monitor
34061 and display a BMP file in the memory. So far, 1-bit, 4-bit,
34062 8-bit and 24-bit BMP formats are supported.
34063
34064 diufb init
34065 - initialize the diu driver
34066 Enable the port specified in the environmental variable "monitor"
34067
34068 diufb addr
34069 - display bmp file in memory.
34070 The bmp image should be no bigger than the resolution, 1280x1024
34071 for DVI and double-link LVDS, 1024x768 for single-link LVDS.
34072
34073 Note, this driver allocate memory but doesn't free it after use
34074 It is written on purpose -- to avoid a failure of reallocation
34075 due to memory fragement.
34076
34077 ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
34078
34079 Signed-off-by: York Sun <yorksun@freescale.com>
34080 Signed-off-by: Jon loeliger <jdl@freescale.com>
34081
34082commit 52e5ddfecdda308f75782fae206b677b1810f5f9
34083Author: York Sun <yorksun@freescale.com>
34084Date: Wed Oct 31 10:43:59 2007 -0500
34085
34086 FSL: Add a freescale bitmap logo.
34087
34088 This Freescale logo is a 340 x 128 x 4bpp BMP file
34089 that can be displayed by the DIU Framebuffer driver.
34090
34091 Signed-off-by: York Sun <yorksun@freescale.com>
34092 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34093
34094commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
34095Author: York Sun <yorksun@freescale.com>
34096Date: Mon Oct 29 13:57:53 2007 -0500
34097
34098 8610: Make some extra debug environment variables conditional.
34099
34100 One may #define ENV_DEBUG to get them back again.
34101
34102 Signed-off-by: York Sun <yorksun@freescale.com>
34103
34104commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
34105Author: Jason Jin <Jason.jin@freescale.com>
34106Date: Mon Oct 29 19:26:21 2007 +0800
34107
34108 8610: Actually enable pixis_reset CONFIGs
34109
34110 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
34111
34112commit f3bceaab230b4748d0afc4109b6837308f018b40
34113Author: Jason Jin <Jason.jin@freescale.com>
34114Date: Fri Oct 26 18:31:59 2007 +0800
34115
34116 Fix the BAT definition of PCI IO on 8610 board
34117
34118 The address in the BAT register is aligned with the BAT size.
34119 The original definition actually did not define BAT for PCIE2 IO.
34120 This patch fix this.
34121
34122 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
34123
34124commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
34125Author: Jason Jin <Jason.jin@freescale.com>
34126Date: Mon Oct 29 19:26:21 2007 +0800
34127
34128 Unify pixis_reset altbank across board families
34129
34130 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
34131 into the separate board config files.
34132
34133 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
34134 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34135
34136commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
34137Author: Jason Jin <Jason.jin@freescale.com>
34138Date: Fri Oct 26 18:32:00 2007 +0800
34139
34140 make 8610 board use pixis reset
34141
34142 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
34143
34144commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
34145Author: Jon Loeliger <jdl@freescale.com>
34146Date: Thu Nov 1 12:23:29 2007 -0500
34147
34148 86xx: Fix broken variable reference when #def DEBUGing.
34149
34150 Sometimes you can't reference the DDR2 controller variables.
34151
34152 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34153
Wolfgang Denk5947f692007-11-17 02:34:38 +010034154commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
34155Author: Roy Zang <tie-fei.zang@freescale.com>
34156Date: Mon Nov 5 17:39:24 2007 +0800
34157
34158 Implement general ULi 526x Ethernet driver support in U-boot
34159
34160 This patch implements general ULi 526x Ethernet driver.
34161 Until now, it is the only native Ethernet port on
34162 MPC8610HPCD board, but it could be used on other boards
34163 with ULi 526x Ethernet port as well.
34164
34165 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
34166 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
34167 Acked-by: Jon Loeliger <jdl@freescale.com>
34168 Signed-off-by: Ben Warren <bwarren@qstreams.com>
34169
34170commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
34171Author: Larry Johnson <lrj@arlinx.com>
34172Date: Thu Nov 1 08:46:50 2007 -0500
34173
34174 NET: Add Ethernet 1000BASE-X support for PPC4xx
34175
34176 This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
34177 "miiphy_duplex()". It also adds function "miiphy_is_1000base_x ()", which
34178 returns non-zero iff the PHY registers are configured for 1000BASE-X. The
34179 "mii info" command is modified to distinguish between 1000BASE-T and -X.
34180
34181 Signed-off-by: Larry Johnson <lrj@acm.org>
34182 Signed-off-by: Ben Warren <bwarren@qstreams.com>
34183
34184commit 298035df4948b113d29ac0e694717d34b95bc5dc
34185Author: Larry Johnson <lrj@arlinx.com>
34186Date: Wed Oct 31 11:21:29 2007 -0500
34187
34188 NET: Cosmetic changes
34189
34190 Signed-off-by: Larry Johnson <lrj@acm.org>
34191 Signed-off-by: Ben Warren <bwarren@qstreams.com>
34192
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010034193commit 654f38b3a387886996a5a75771fbfc29cb4f225e
34194Author: Stefan Roese <sr@denx.de>
34195Date: Mon Nov 5 07:43:05 2007 +0100
34196
34197 ppc4xx: Make output a little shorter on PCIe detection
34198
34199 Now not max 3 lines but 2 lines are printed per PCIe port.
34200
34201 Signed-off-by: Stefan Roese <sr@denx.de>
34202
Wolfgang Denk5947f692007-11-17 02:34:38 +010034203commit 992742a5b09d9040adbd156fb90756af66ade310
34204Author: Wolfgang Denk <wd@denx.de>
34205Date: Sat Nov 3 23:09:27 2007 +0100
34206
34207 Cleanup coding style; update CHANGELOG
34208
34209 Signed-off-by: Wolfgang Denk <wd@denx.de>
34210
Wolfgang Denk992742a2007-11-03 23:09:27 +010034211commit e881cb563e32f45832b7b6db77bdcd017adcbb41
34212Author: Bruce Adler <bruce.adler@ccpu.com>
34213Date: Fri Nov 2 13:15:42 2007 -0700
34214
34215 fix wording in README
34216
34217 Changed the wording to properly describe the shadowing
34218 of the environment from ROM to RAM
34219
34220 Signed-off-by: Bruce Adler <bruce.adler@acm.org>
34221
34222commit ad845beef06245426c57b53dcdc01b7dc70e0d45
34223Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34224Date: Wed Oct 31 02:18:15 2007 +0900
34225
34226 blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
34227
34228 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34229
34230commit ec22755799466c8a103664bb3a5e647bf9c238f4
34231Author: Vlad Lungu <vlad@comsys.ro>
34232Date: Thu Oct 25 16:08:14 2007 +0300
34233
34234 Trimmed some variables in ne2000.c
34235
34236 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
34237
34238commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
34239Author: Zhang Wei <wei.zhang@freescale.com>
34240Date: Thu Oct 25 17:51:27 2007 +0800
34241
34242 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
34243
34244 The scan code of the key 'z' is 0x1d, which should be handled.
34245
34246 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
34247 controller.
34248
34249 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
34250
34251commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
34252Author: Zhang Wei <wei.zhang@freescale.com>
34253Date: Thu Oct 25 17:30:04 2007 +0800
34254
34255 Fix USB support issue for MPC8641HPCN board.
34256
34257 The configuration file has already enabled USB, but it
34258 missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
34259 on MPC8641HPCN can not work because of the wrong USB
34260 register endian.
34261
34262 And add the USB command to U-Boot commands list.
34263
34264 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
34265
34266commit 4e62041023dc3de9d98d977bb080235bc6d035e0
34267Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34268Date: Wed Oct 24 18:16:01 2007 +0200
34269
34270 Use config_cmd_default.h instead of config_cmd_all.h
34271
34272 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34273
34274commit 56622f87857439b1c221e9deef11a9d5bb5d4308
34275Author: Marian Balakowicz <m8@semihalf.com>
34276Date: Wed Oct 24 01:37:36 2007 +0200
34277
34278 TQM5200: Call usb_cpu_init() during board init
34279
34280 usb_cpu_init() configures GPS USB pins, clocks, etc. and
34281 is required for proper operation of kernel USB subsystem.
34282 This setup was previously done in the kernel by the fixup
34283 code which is being removed, thus low level init must be
34284 done by U-boot now.
34285
34286 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
34287
34288commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
34289Author: Guennadi Liakhovetski <lg@denx.de>
34290Date: Tue Oct 23 16:25:50 2007 +0200
34291
34292 Fix typo in nfs.c
34293
34294 An obvious typo. Originally fixed in linkstation u-boot port.
34295
34296 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
34297
34298commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
34299Author: Guennadi Liakhovetski <lg@denx.de>
34300Date: Tue Oct 23 14:35:05 2007 +0200
34301
34302 Fix a typo in cpu/mpc824x/interrupts.c
34303
34304 Since December 2003 the timer_interrupt_cpu() function in
34305 cpu/mpc824x/interrupts.c contains what seems to be a superfluous
34306 parameter. Remove it.
34307
34308 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
34309
34310commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
34311Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
34312Date: Wed Oct 17 11:13:51 2007 +0200
34313
34314 add ft_cpu_setup(..) on mpc8260
34315
34316 Add ft_cpu_setup(..)-function to adapt it for use with libfdt
34317 based on code from mpc5xxx
34318
34319 Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
34320 --
34321
34322commit 6abd82e19ae93c0b4d104e50165e235915ec0875
34323Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
34324Date: Wed Oct 17 11:18:42 2007 +0200
34325
34326 changes for IDS8247 board support
34327
34328 To get the IDS8247 board working following are done:
34329 - FCC2 is deactivated
34330 - FCC1 is activated
34331 - I2C is activated
34332 - CFI driver is activated
34333 - Adapted for use with LIBFDT
34334
34335 Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
34336 --
34337
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010034338commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
34339Author: Stefan Roese <sr@denx.de>
34340Date: Sat Nov 3 12:08:28 2007 +0100
34341
34342 ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
34343
34344 This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
34345 Again, only one image supports both targets.
34346
34347 Signed-off-by: Stefan Roese <sr@denx.de>
34348
Wolfgang Denk992742a2007-11-03 23:09:27 +010034349commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
34350Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34351Date: Wed Oct 24 15:48:37 2007 +0200
34352
34353 ATSTK1002: Remove default ethernet addresses
34354
34355 Wolfgang is right: It's not a good idea to set up default initial
34356 ethernet addresses for a board, even though they belong to the local
34357 range.
34358
34359 This will change the failure mode from "IT manager screams at you for
34360 using duplicate ethernet addresses" to a nice error message explaining
34361 that the ethernet address hasn't been set properly.
34362
34363 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34364
34365commit e5c794e491a57d829b6d8733e2ed8368a2269abf
34366Author: Justin Flammia <jflammia@savantav.com>
34367Date: Mon Oct 29 17:40:35 2007 -0400
34368
34369 DHCP Client Fix
34370
34371 This is a multi-part message in MIME format.
34372
34373 commit e6e505eae94ed721e123e177489291fc4544b7b8
34374 Author: Justin Flammia <jflammia@savantav.com>
34375 Date: Mon Oct 29 17:19:03 2007 -0400
34376
34377 Found a bug in the way the DHCP Request packet is built, where the IP address
34378 that is offered by the server is bound to prematurely. This patch is a fix of
34379 that bug where the IP address offered by the DHCP server is not used until
34380 after the DHCP ACK from the server is received.
34381
34382 Signed-off-by: Justin Flammia <jflammia@savantav.com>
34383 Signed-off-by: Ben Warren <bwarren@qstreams.com>
34384
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010034385commit 5d96d40d3f36da33348e68f9ea993f383e11f997
34386Author: Stefan Roese <sr@denx.de>
34387Date: Wed Oct 31 20:58:34 2007 +0100
34388
34389 ppc4xx: Fix acadia_nand build problem
34390
34391 Since the cache handling functions were moved from start.S into cache.S
34392 the acadia NAND booting Makfile needs to be adapted accordingly.
34393
34394 Signed-off-by: Stefan Roese <sr@denx.de>
34395
34396commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
34397Author: Stefan Roese <sr@denx.de>
34398Date: Wed Oct 31 20:57:11 2007 +0100
34399
34400 ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
34401
34402 This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
34403 and to the Sequoia TLB init code. Now the cache can be enabled on 44x
34404 boards by defining CONFIG_4xx_DCACHE in the board config file. This
34405 option will disappear, when more boards use is successfully and no
34406 more known problems exist.
34407
34408 This is tested successfully on Sequoia and Katmai. The only problem that
34409 needs to be fixed is, that USB is not working on Sequoia right now, since
34410 it will need some cache handling code too, similar to the 4xx EMAC driver.
34411
34412 Signed-off-by: Stefan Roese <sr@denx.de>
34413
34414commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
34415Author: Stefan Roese <sr@denx.de>
34416Date: Wed Oct 31 20:51:10 2007 +0100
34417
34418 ppc4xx: Enable CPU POST test for 4xx with dcache enabled
34419
34420 Now with caches enabled (i- and d-cache) on 44x, we need a chance to
34421 disable the cache for the CPU POST tests, since these tests consist
34422 of self modifying code. This is done via the new change_tlb() function.
34423
34424 Signed-off-by: Stefan Roese <sr@denx.de>
34425
34426commit f71b2888b4b3c870909a0341427b2a914246f81f
34427Author: Stefan Roese <sr@denx.de>
34428Date: Wed Oct 31 20:47:26 2007 +0100
34429
34430 ppc4xx: Change 4xx POST ethernet test to handle cached memory too
34431
34432 This patch enables the 4xx EMAC POST driver to work too, when dcache is
34433 enabled.
34434
34435 Signed-off-by: Stefan Roese <sr@denx.de>
34436
34437commit a2685904061b35a17583d65fe47cdc2686a69eaa
34438Author: Stefan Roese <sr@denx.de>
34439Date: Wed Oct 31 20:45:53 2007 +0100
34440
34441 ppc4xx: Remove temporary TLB entry in POST cache test only for 440
34442
34443 Signed-off-by: Stefan Roese <sr@denx.de>
34444
34445commit ff768cb168d8157c24a25016dbfbeb465e47f420
34446Author: Stefan Roese <sr@denx.de>
34447Date: Wed Oct 31 18:01:24 2007 +0100
34448
34449 ppc4xx: Change 4xx ethernet driver to handle cached memory too
34450
34451 This patch enables the 4xx EMAC driver to work too, when dcache is
34452 enabled.
34453
34454 Signed-off-by: Stefan Roese <sr@denx.de>
34455
34456commit 483e09a223c666269ef81d3573a6591b1046b0ef
34457Author: Stefan Roese <sr@denx.de>
34458Date: Wed Oct 31 17:59:22 2007 +0100
34459
34460 ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
34461
34462 This function is used to either turn cache on or off in a specific
34463 memory area.
34464
34465 Signed-off-by: Stefan Roese <sr@denx.de>
34466
34467commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
34468Author: Stefan Roese <sr@denx.de>
34469Date: Wed Oct 31 17:57:52 2007 +0100
34470
34471 ppc4xx: Remove cache definition from 4xx board config files
34472
34473 All 4xx board config files don't need the cache definitions anymore.
34474 These are now defined in common headers.
34475
34476 Signed-off-by: Stefan Roese <sr@denx.de>
34477
34478commit 9b94ac61d2176185c30adf0793e079ec30e68687
34479Author: Stefan Roese <sr@denx.de>
34480Date: Wed Oct 31 17:55:58 2007 +0100
34481
34482 ppc4xx: Rework 4xx cache support
34483
34484 New cache handling functions added and all existing functions
34485 moved from start.S into seperate cache.S.
34486
34487 Signed-off-by: Stefan Roese <sr@denx.de>
34488
34489commit 06713773da4ac3d390c63d82641eb553224b27c2
34490Author: Stefan Roese <sr@denx.de>
34491Date: Tue Oct 23 18:03:12 2007 +0200
34492
34493 ppc4xx: Remove compiler warning from previous commit
34494
34495 Signed-off-by: Stefan Roese <sr@denx.de>
34496
34497commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
34498Author: Stefan Roese <sr@denx.de>
34499Date: Tue Oct 23 14:40:30 2007 +0200
34500
34501 ppc4xx: Remove temporary TLB entry in POST cache test
34502
34503 Signed-off-by: Stefan Roese <sr@denx.de>
34504
34505commit 1338e6a81834099ba19733b69aafd8ef5f098094
34506Author: Stefan Roese <sr@denx.de>
34507Date: Tue Oct 23 14:05:08 2007 +0200
34508
34509 ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
34510
34511 I lately noticed, that newer 4xx board with GBit support sometimes don't
34512 finish link autonegotiation in 4 seconds. Changing this timeout to 5
34513 seconds seems fine here.
34514
34515 Signed-off-by: Stefan Roese <sr@denx.de>
34516
34517commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
34518Author: Stefan Roese <sr@denx.de>
34519Date: Tue Oct 23 14:03:17 2007 +0200
34520
34521 ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
34522
34523 This patch changes all in32/out32 calls to use the recommended in_be32/
34524 out_be32 macros instead.
34525
34526 Signed-off-by: Stefan Roese <sr@denx.de>
34527
34528commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
34529Author: Stefan Roese <sr@denx.de>
34530Date: Thu Oct 25 12:24:59 2007 +0200
34531
34532 ppc4xx: Fix POST ethernet test for Haleakala
34533
34534 The POST ethernet test needed to be changed to dynamically determine
34535 the count of ethernet devices. This code is cloned from the 4xx
34536 ethernet driver.
34537
34538 Signed-off-by: Stefan Roese <sr@denx.de>
34539
34540commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
34541Author: Stefan Roese <sr@denx.de>
34542Date: Tue Oct 23 11:31:05 2007 +0200
34543
34544 ppc4xx: Correct UART input clock calculation and passing to fdt
34545
34546 We now use a value in the gd (global data) structure for the UART input
34547 frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
34548 in get_sys_info().
34549
34550 Signed-off-by: Stefan Roese <sr@denx.de>
34551
34552commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
34553Author: Stefan Roese <sr@denx.de>
34554Date: Tue Oct 23 10:10:08 2007 +0200
34555
34556 ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
34557
34558 The Haleakala is nearly identical with the Kilauea eval board. The only
34559 difference is that the 405EXr only supports one EMAC and one PCIe
34560 interface. This patch adds support for the Haleakala board by using
34561 the identical image for Kilauea and Haleakala. The distinction is done
34562 by comparing the PVR.
34563
34564 Signed-off-by: Stefan Roese <sr@denx.de>
34565
34566commit 9f798766aa85e62eb8fa8c721e148df609b78137
34567Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
34568Date: Tue Oct 23 08:29:10 2007 +0200
34569
34570 ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
34571
34572 This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
34573
34574 Note:
34575 As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
34576 DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
34577 modules are still plugged in. So it is recommended to remove the DIMM
34578 modules while using the NAND booting code with the fixed SDRAM setup!
34579
34580 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
34581 Signed-off-by: Stefan Roese <sr@denx.de>
34582
34583commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
34584Author: Stefan Roese <sr@denx.de>
34585Date: Mon Oct 22 16:24:44 2007 +0200
34586
34587 ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
34588
34589 Signed-off-by: Stefan Roese <sr@denx.de>
34590
34591commit 3248f63ad89cb031491edb7016587fe6e9a238b9
34592Author: Stefan Roese <sr@denx.de>
34593Date: Mon Oct 22 16:22:40 2007 +0200
34594
34595 ppc4xx: Rework of 4xx serial driver (4)
34596
34597 Change 4xx_uart.c:
34598
34599 - Use in_8/out_8 macros instead of in8/out8
34600 - No need for UART_BASE marco anymore, now really handled via function
34601 parameter
34602 - serial_init_common() introduced
34603 - Further coding style cleanup
34604
34605 Signed-off-by: Stefan Roese <sr@denx.de>
34606
34607commit e61cb8163a66b8a135696ae232e2bead1ce0a049
34608Author: Stefan Roese <sr@denx.de>
34609Date: Mon Oct 22 15:45:49 2007 +0200
34610
34611 ppc4xx: Rework of 4xx serial driver (3)
34612
34613 Change all linker scripts to reference the changed driver name iop480_uart.o.
34614
34615 Signed-off-by: Stefan Roese <sr@denx.de>
34616
34617commit 882ae41274921f9016131806bdeb27e19606f47a
34618Author: Stefan Roese <sr@denx.de>
34619Date: Mon Oct 22 15:44:39 2007 +0200
34620
34621 ppc4xx: Rework of 4xx serial driver (2)
34622
34623 Change all linker scripts to reference the changed driver name 4xx_uart.o.
34624
34625 Note: In most cased all these explicit referencing of these object files
34626 in the linker scripts is not neccessary. Only for manually embedded
34627 environment into the U-Boot image, which is not done is most cases.
34628
34629 Signed-off-by: Stefan Roese <sr@denx.de>
34630
34631commit ad31e40bed042cb670d0036fea96435007afb838
34632Author: Stefan Roese <sr@denx.de>
34633Date: Mon Oct 22 15:09:59 2007 +0200
34634
34635 ppc4xx: Rework of 4xx serial driver (1)
34636
34637 This patch starts the rework of the PPC4xx serial driver. First we split
34638 the file into two seperate files, one 4xx_uart.c with the 405/440 UART
34639 handling code and the other one iop480_uart.c with the UART code for the
34640 PLX-Tech IOP480 PPC (PPC403 based).
34641
34642 Signed-off-by: Stefan Roese <sr@denx.de>
34643
34644commit 764e7417ee5f6e25b1715720e7d7dd3487109385
34645Author: Stefan Roese <sr@denx.de>
34646Date: Mon Oct 22 10:30:38 2007 +0200
34647
34648 ppc4xx: Correct UART input clock calculation and passing to fdt
34649
34650 Signed-off-by: Stefan Roese <sr@denx.de>
34651
34652commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
34653Author: Stefan Roese <sr@denx.de>
34654Date: Mon Oct 22 07:34:34 2007 +0200
34655
34656 ppc4xx: Add initial AMCC Makalu 405EX support
34657
34658 Signed-off-by: Stefan Roese <sr@denx.de>
34659
34660commit fa8aea20456e6f1dba43f46bcc72024dd9499998
34661Author: Stefan Roese <sr@denx.de>
34662Date: Mon Oct 22 07:33:52 2007 +0200
34663
34664 ppc4xx: Add freqUART to CPU speed detection
34665
34666 This value is needed later for the device tree configuration of
34667 the uart clock.
34668
34669 Signed-off-by: Stefan Roese <sr@denx.de>
34670
34671commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
34672Author: Stefan Roese <sr@denx.de>
34673Date: Sun Oct 21 14:26:29 2007 +0200
34674
34675 ppc: Small Kilauea cleanup of config file
34676
34677 Signed-off-by: Stefan Roese <sr@denx.de>
34678
34679commit 758c037aeead34b49631b8da3a90b1bba14c0410
34680Author: Stefan Roese <sr@denx.de>
34681Date: Sun Oct 21 08:16:12 2007 +0200
34682
34683 rtc: Add Xicor/Intersil X1205 RTC support
34684
34685 This patch adds support for the Xicor/Intersil X1205 RTC used on the
34686 AMCC Makalu eval board. This driver is basically cloned from the Linux
34687 driver version (2.6.23).
34688
34689 This patch also introduces the Linux bcd.h header for the BCD2BIN/
34690 BIN2BCD conversions. In the future some of the other U-Boot RTC driver
34691 should be converted to also use this header instead of implementing
34692 their own local copy of these functions/macros.
34693
34694 Signed-off-by: Stefan Roese <sr@denx.de>
34695
34696commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
34697Author: Stefan Roese <sr@denx.de>
34698Date: Sun Oct 21 08:12:41 2007 +0200
34699
34700 ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
34701
34702 This patch moves some common 4xx macros and the PPC405_SYS_INFO/
34703 PPC440_SYS_INFO structure into the common ppc4xx.h header.
34704
34705 Lot's of other macros are good candidates to be consolidated this way
34706 in the future.
34707
34708 Signed-off-by: Stefan Roese <sr@denx.de>
34709
34710commit 770c7af5800f598d22730d1f4b70f16c9b33512e
34711Author: Stefan Roese <sr@denx.de>
34712Date: Sun Oct 21 08:05:18 2007 +0200
34713
34714 ppc4xx: Fix size setup in Kilauea DDR2 init routine
34715
34716 The size was initilized wrong. Instead of 256MB, the DDR2 controller
34717 was setup to 512MB. Now the correct values is used.
34718
34719 This patch also does a little cleanup and adds a comment here.
34720
34721 Signed-off-by: Stefan Roese <sr@denx.de>
34722
34723commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
34724Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
34725Date: Thu Oct 18 17:29:04 2007 +0200
34726
34727 ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
34728
34729 CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
34730 number is used to access system registers.
34731
34732 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
34733 Signed-off-by: Stefan Roese <sr@denx.de>
34734
34735commit c36c68160333ac5fe41ec3db12a728b7075b3912
34736Author: Stefan Roese <sr@denx.de>
34737Date: Thu Oct 18 07:42:27 2007 +0200
34738
34739 ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
34740
34741 On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
34742 is the internal SRAM. Since I now ported and tested this endpoint mode
34743 on Kilauea successfully to map to 0 (SDRAM), I also changed this for
34744 Katmai.
34745
34746 Yucca will stay at internal SRAM for now. Not sure if somebody relies on
34747 this setup.
34748
34749 Signed-off-by: Stefan Roese <sr@denx.de>
34750
34751commit 5cb4af4791f61843432155142b6cfac901f66c10
34752Author: Stefan Roese <sr@denx.de>
34753Date: Thu Oct 18 07:39:38 2007 +0200
34754
34755 ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
34756
34757 This patch adds endpoint support for the AMCC Kilauea eval board. It can
34758 be tested by connecting a reworked PCIe cable (only 1x lane singles
34759 connected) to another root-complex.
34760
34761 In this test setup, a 64MB inbound window is configured at BAR0 which maps
34762 to 0 on the PLB side. So accessing this BAR0 from the root-complex will
34763 access the first 64MB of the SDRAM on the PPC side.
34764
34765 Signed-off-by: Stefan Roese <sr@denx.de>
34766
34767commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
34768Author: Stefan Roese <sr@denx.de>
34769Date: Sat Oct 13 16:43:23 2007 +0200
34770
34771 ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
34772
34773 This patch adds support for dynamic configuration of PCIe ports for the
34774 AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
34775 boards Yucca & Katmai and the 405EX board Kilauea.
34776
34777 This dynamic configuration is done via the "pcie_mode" environement
34778 variable. This variable can be set to "EP" or "RP" for endpoint or
34779 rootpoint mode. Multiple values can be joined via the ":" delimiter.
34780 Here an example:
34781
34782 pcie_mode=RP:EP:EP
34783
34784 This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
34785 as endpoint.
34786
34787 Per default Yucca will be configured as:
34788 pcie_mode=RP:EP:EP
34789
34790 Per default Katmai will be configured as:
34791 pcie_mode=RP:RP:REP
34792
34793 Per default Kilauea will be configured as:
34794 pcie_mode=RP:RP
34795
34796 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
34797 Signed-off-by: Stefan Roese <sr@denx.de>
34798
34799commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
34800Author: Stefan Roese <sr@denx.de>
34801Date: Thu Oct 11 11:15:59 2007 +0200
34802
34803 ppc4xx: Enable device tree support (fdt) on Kilauea per default
34804
34805 This patch enables the fdt support on the AMCC Kilauea eval board.
34806 Additionally now EBC ranges fdt fixup is included to support NOR
34807 FLASH mapping via the Linux physmap_of driver.
34808
34809 This Kilauea port now support booting arch/ppc and arch/powerpc
34810 Linux kernels. The default environment "net_nfs" is for arch/ppc
34811 and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
34812 support will be removed.
34813
34814 Signed-off-by: Stefan Roese <sr@denx.de>
34815
34816commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
34817Author: Stefan Roese <sr@denx.de>
34818Date: Thu Oct 11 11:11:45 2007 +0200
34819
34820 ppc4xx: Add additional debug info to 4xx fdt support
34821
34822 Signed-off-by: Stefan Roese <sr@denx.de>
34823
34824commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
34825Author: Stefan Roese <sr@denx.de>
34826Date: Fri Oct 5 21:28:58 2007 +0200
34827
34828 ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
34829
34830 Signed-off-by: Stefan Roese <sr@denx.de>
34831
34832commit 1941cce71b1ae975602854045061e82f94ecd012
34833Author: Stefan Roese <sr@denx.de>
34834Date: Fri Oct 5 17:35:10 2007 +0200
34835
34836 ppc4xx: Fix small merge problem in 4xx_enet.c
34837
34838 Signed-off-by: Stefan Roese <sr@denx.de>
34839
34840commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
34841Author: Stefan Roese <sr@denx.de>
34842Date: Fri Oct 5 17:11:30 2007 +0200
34843
34844 ppc4xx: Add initial AMCC Kilauea 405EX support
34845
34846 Signed-off-by: Stefan Roese <sr@denx.de>
34847
34848commit dbbd125721aea6645fdb962f36bd41f59e272f9d
34849Author: Stefan Roese <sr@denx.de>
34850Date: Fri Oct 5 17:10:59 2007 +0200
34851
34852 ppc4xx: Add PPC405EX support
34853
34854 Signed-off-by: Stefan Roese <sr@denx.de>
34855
34856commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
34857Author: Stefan Roese <sr@denx.de>
34858Date: Fri Oct 5 17:09:36 2007 +0200
34859
34860 ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
34861
34862 Signed-off-by: Stefan Roese <sr@denx.de>
34863
34864commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
34865Author: Stefan Roese <sr@denx.de>
34866Date: Fri Oct 5 17:07:50 2007 +0200
34867
34868 ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
34869
34870 Signed-off-by: Stefan Roese <sr@denx.de>
34871
34872commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
34873Author: Stefan Roese <sr@denx.de>
34874Date: Fri Oct 5 17:04:57 2007 +0200
34875
34876 POST: Add 405EX support to 4xx UART POST test
34877
34878 Signed-off-by: Stefan Roese <sr@denx.de>
34879
34880commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
34881Author: Stefan Roese <sr@denx.de>
34882Date: Fri Oct 5 15:10:02 2007 +0200
34883
34884 DTT: Prepare DS1775 driver for use of different I2C addresses
34885
34886 Signed-off-by: Stefan Roese <sr@denx.de>
34887
34888commit 19e93b1e16d267220440d827b920fbad8abfa70f
34889Author: Stefan Roese <sr@denx.de>
34890Date: Fri Oct 5 14:23:43 2007 +0200
34891
34892 ppc4xx: 4xx_pcie: Change PCIe status output to match common style
34893
34894 Signed-off-by: Stefan Roese <sr@denx.de>
34895
34896commit ff68f66bcb0da847845aa2fac11eba6c25938c99
34897Author: Stefan Roese <sr@denx.de>
34898Date: Fri Oct 5 09:22:33 2007 +0200
34899
34900 ppc4xx: 4xx_pcie: Disable debug output as default
34901
34902 Signed-off-by: Stefan Roese <sr@denx.de>
34903
34904commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
34905Author: Stefan Roese <sr@denx.de>
34906Date: Fri Oct 5 09:18:23 2007 +0200
34907
34908 ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
34909
34910 Signed-off-by: Stefan Roese <sr@denx.de>
34911
34912commit 4dbee8a90df613eb517aadbecebd70f168913d30
34913Author: Stefan Roese <sr@denx.de>
34914Date: Fri Oct 5 07:57:20 2007 +0200
34915
34916 ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
34917
34918 128MB seems to be the smallest possible value for the memory size
34919 for on PCIe port. With this change now the BAR's of the PCIe cards
34920 are accessible under U-Boot.
34921
34922 One big note: This only works for PCIe port 0 & 1. For port 2 this
34923 currently doesn't work, since the base address is now 0xc0000000
34924 (0xb0000000 + 2 * 0x08000000), and this is already occupied by
34925 CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
34926 to change the base addresses completely and this change would have
34927 too much impact right now.
34928
34929 This patch adds debug output to the 4xx pcie driver too.
34930
34931 Signed-off-by: Stefan Roese <sr@denx.de>
34932
34933commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
34934Author: Stefan Roese <sr@denx.de>
34935Date: Wed Oct 3 21:16:32 2007 +0200
34936
34937 ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
34938
34939 Signed-off-by: Stefan Roese <sr@denx.de>
34940
34941commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
34942Author: Stefan Roese <sr@denx.de>
34943Date: Wed Oct 3 15:01:02 2007 +0200
34944
34945 ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
34946
34947 These files were introduced with the IBM 405GP but are currently used on all
34948 4xx PPC platforms. So the name doesn't match the content anymore. This patch
34949 renames the files to 4xx_pci.c/h.
34950
34951 Signed-off-by: Stefan Roese <sr@denx.de>
34952
34953commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
34954Author: Stefan Roese <sr@denx.de>
34955Date: Wed Oct 3 14:14:58 2007 +0200
34956
34957 ppc4xx: Add a comment for 405EX PCIe endpoint configuration
34958
34959 Signed-off-by: Stefan Roese <sr@denx.de>
34960
34961commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
34962Author: Stefan Roese <sr@denx.de>
34963Date: Wed Oct 3 10:38:09 2007 +0200
34964
34965 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
34966
34967 (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
34968 the SDR registers of the PCIe ports. This makes the overall design
34969 clearer, since it removed a lot of switch statements which are not
34970 needed anymore.
34971
34972 Also, the functions ppc4xx_init_pcie_rootport() and
34973 ppc4xx_init_pcie_entport() are merged into a single function
34974 ppc4xx_init_pcie_port(), since most of the code was duplicated.
34975 This makes maintainance and porting to other 4xx platforms
34976 easier.
34977
34978 Signed-off-by: Stefan Roese <sr@denx.de>
34979
34980commit 026f71106871f31d17d0ea0db9a7547ff92934bc
34981Author: Stefan Roese <sr@denx.de>
34982Date: Wed Oct 3 07:48:09 2007 +0200
34983
34984 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
34985
34986 This patch is the first patch of a series to make the 440SPe PCIe code
34987 usable on different 4xx PPC platforms. In preperation for the new 405EX
34988 which is also equipped with PCIe interfaces.
34989
34990 (2) This patch renames the functions from 440spe_ to 4xx_ with a
34991 little additional cleanup
34992
34993 Signed-off-by: Stefan Roese <sr@denx.de>
34994
34995commit c7c6da23028f146d912514b95aefa3da7cf37699
34996Author: Stefan Roese <sr@denx.de>
34997Date: Wed Oct 3 07:34:10 2007 +0200
34998
34999 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
35000
35001 This patch is the first patch of a series to make the 440SPe PCIe code
35002 usable on different 4xx PPC platforms. In preperation for the new 405EX
35003 which is also equipped with PCIe interfaces.
35004
35005 (1) This patch renames the files from 440spe_pcie to 4xx_pcie
35006
35007 Signed-off-by: Stefan Roese <sr@denx.de>
35008
Wolfgang Denkd3a65322008-01-10 00:55:14 +010035009commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
35010Author: Marian Balakowicz <m8@semihalf.com>
35011Date: Wed Oct 24 01:37:36 2007 +0200
35012
35013 TQM5200: Call usb_cpu_init() during board init
35014
35015 usb_cpu_init() configures GPS USB pins, clocks, etc. and
35016 is required for proper operation of kernel USB subsystem.
35017 This setup was previously done in the kernel by the fixup
35018 code which is being removed, thus low level init must be
35019 done by U-boot now.
35020
35021 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35022 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
35023
35024commit b5af773f8d92677e06f3295b45557c9d0a487c24
35025Author: Zhang Wei <wei.zhang@freescale.com>
35026Date: Thu Oct 25 17:51:27 2007 +0800
35027
35028 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
35029
35030 The scan code of the key 'z' is 0x1d, which should be handled.
35031
35032 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
35033 controller.
35034
35035 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
35036 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
35037
35038commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
35039Author: Rodolfo Giometti <giometti@enneenne.com>
35040Date: Mon Oct 15 11:59:17 2007 +0200
35041
35042 PXA USB OHCI: "usb stop" implementation.
35043
35044 Some USB keys need to be switched off before loading the kernel
35045 otherwise they can remain in an undefined status which prevents them
35046 to be correctly recognized by the kernel.
35047
35048 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
35049 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
35050
Wolfgang Denk5947f692007-11-17 02:34:38 +010035051commit 31548249decf18a6b877a18436b6139dd483fe4a
35052Author: Justin Flammia <jflammia@savantav.com>
35053Date: Mon Oct 29 17:40:35 2007 -0400
35054
35055 DHCP Client Fix
35056
35057 This is a multi-part message in MIME format.
35058
35059 commit e6e505eae94ed721e123e177489291fc4544b7b8
35060 Author: Justin Flammia <jflammia@savantav.com>
35061 Date: Mon Oct 29 17:19:03 2007 -0400
35062
35063 Found a bug in the way the DHCP Request packet is built, where the IP address
35064 that is offered by the server is bound to prematurely. This patch is a fix of
35065 that bug where the IP address offered by the DHCP server is not used until
35066 after the DHCP ACK from the server is received.
35067
35068 Signed-off-by: Justin Flammia <jflammia@savantav.com>
35069 Signed-off-by: Ben Warren <bwarren@qstreams.com>
35070
Wolfgang Denk992742a2007-11-03 23:09:27 +010035071commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
35072Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35073Date: Thu Oct 25 17:16:22 2007 -0500
35074
35075 ColdFire 54455: Fix correct boot location for atmel and intel
35076
35077 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35078
35079commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
35080Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35081Date: Thu Oct 25 17:14:00 2007 -0500
35082
35083 ColdFire: Fix build error when CONFIG_WATCHDOG is defined
35084
35085 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35086
35087commit c67e12e705b204cfe914e3e3e693d69a445dcabf
35088Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35089Date: Thu Oct 25 17:12:36 2007 -0500
35090
35091 ColdFire 5329: Assign correct SDRAM size and fix cache
35092
35093 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35094
35095commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
35096Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35097Date: Thu Oct 25 17:10:23 2007 -0500
35098
35099 ColdFire 5253: Assign correct SDRAM size
35100
35101 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35102
35103commit 2acefa72ee0026f862ab65597ca687428f63a973
35104Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35105Date: Thu Oct 25 17:09:17 2007 -0500
35106
35107 ColdFire 5282: Fix external flash boot and return dramsize
35108
35109 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35110
35111commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
35112Author: Bartlomiej Sieka <tur@semihalf.com>
35113Date: Thu Oct 25 17:20:01 2007 +0200
35114
35115 TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
35116
35117 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35118
35119commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
35120Author: Martin Krause <martin.krause@tqs.de>
35121Date: Wed Oct 24 08:42:25 2007 +0200
35122
35123 TQM5200: fix spurious characters on second serial interface
35124
35125 With this patch PSC3 is configured as UART. This is done, because if
35126 the pins of PSC3 are not configured at all (-> all pins are GPI),
35127 due to crosstalk, spurious characters may be send over the RX232_2_TXD
35128 signal line.
35129
35130 Signed-off-by: Martin Krause <martin.krause@tqs.de>
35131 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35132
35133commit be4a87f11e297a5cededbf7dd71c0248f3874acd
35134Author: Martin Krause <martin.krause@tqs.de>
35135Date: Wed Oct 24 08:41:27 2007 +0200
35136
35137 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
35138
35139 Some commands for the STK52xx base board try to access the SM501 grafic
35140 controller. But the TQM5200S has no grafic controller (only the TQM5200
35141 and the TQM5200B have). This patch deactivates the commands accessing
35142 the SM501 for the TQM5200S.
35143
35144 Signed-off-by: Martin Krause <martin.krause@tqs.de>
35145 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35146
35147commit b31f64343ead9482cd439b1adbe4c34026a641b1
35148Author: Martin Krause <martin.krause@tqs.de>
35149Date: Mon Oct 22 16:45:53 2007 +0200
35150
35151 TQM5200: fix spurious characters on second serial interface
35152
35153 With this patch PSC3 is configured as UART. This is done, because if
35154 the pins of PSC3 are not configured at all (-> all pins are GPI),
35155 due to crosstalk, spurious characters may be send over the RX232_2_TXD
35156 signal line.
35157
35158 Signed-off-by: Martin Krause <martin.krause@tqs.de>
35159
35160commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
35161Author: Martin Krause <martin.krause@tqs.de>
35162Date: Mon Oct 22 16:40:06 2007 +0200
35163
35164 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
35165
35166 Some commands for the STK52xx base board try to access the SM501 grafic
35167 controller. But the TQM5200S has no grafic controller (only the TQM5200
35168 and the TQM5200B have). This patch deactivates the commands accessing
35169 the SM501 for the TQM5200S.
35170
35171 Signed-off-by: Martin Krause <martin.krause@tqs.de>
35172
35173commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
35174Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35175Date: Sun Oct 21 09:14:28 2007 +0200
35176
35177 Mips: Fix string functions differ prototype declaration
35178
35179 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35180
35181commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
35182Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35183Date: Fri Oct 19 17:51:40 2007 -0500
35184
35185 fsl_pci_init enable COMMAND_MEMORY if inbound window
35186
35187 Patch 16e23c3f removed PCSRBAR allocation. But passing zero windows
35188 to pciauto_setup_device has the side effect of not getting
35189 COMMAND_MEMORY set.
35190
35191 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35192
35193commit e9d0d527992566ebef9826962ff1745b2f082b92
35194Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35195Date: Fri Oct 19 10:55:24 2007 +0200
35196
35197 delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
35198
35199 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35200
35201commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
35202Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35203Date: Fri Oct 19 08:10:15 2007 +0200
35204
35205 fix warning: no return statement in function returning non-void
35206
35207 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35208
35209commit e78220f6e514206757acfe247297fc9a328a881f
35210Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35211Date: Fri Oct 19 06:33:45 2007 +0200
35212
35213 xsengine: Fix no partition type specified, use DOS as default
35214
35215 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35216
35217commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
35218Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35219Date: Fri Oct 19 00:24:59 2007 +0200
35220
35221 lubbock: Fix no partition type specified, use DOS as default
35222
35223 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35224
35225commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
35226Author: Wolfgang Denk <wd@denx.de>
35227Date: Tue Oct 23 16:50:03 2007 +0200
35228
35229 Coding style: keep lists sorted; update CHANGELOG
35230
35231 Signed-off-by: Wolfgang Denk <wd@denx.de>
35232
Wolfgang Denk41b4d282007-10-23 16:50:03 +020035233commit 58b74b05c621e2835ecf4e2d3243042cf4186777
35234Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35235Date: Fri Oct 19 00:09:05 2007 +0200
35236
35237 Fix missing drivers makefile entries ds1722.c mw_eeprom.c
35238
35239 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35240
35241commit 96455bfebc9887837095c9051d216f53c61b5f10
35242Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35243Date: Fri Oct 19 00:07:39 2007 +0200
35244
35245 Fix warning differ in signedness in board/innokom/innokom.c
35246
35247 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35248
35249commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
35250Author: Marcel Ziswiler <marcel@ziswiler.com>
35251Date: Fri Oct 19 00:25:33 2007 +0200
35252
35253 fix pxa255_idp board
35254
35255 The pxa255_idp being an old unmaintained board showed several issues:
35256 1. CONFIG_INIT_CRITICAL was still defined.
35257 2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
35258 3. Symbol flash_addr was undeclared.
35259 4. The boards lowlevel_init function was still called memsetup.
35260 5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
35261 6. Using -march=armv5 instead of -march=armv5te resulted in lots of
35262 'target CPU does not support interworking' warnings on recent compilers.
35263 7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
35264 indexes rather than the register definitions from the pxa-regs header
35265 file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
35266 avoid any ambiguities.
35267 8. There were several redefinition warnings concerning ICMR, OSMR3,
35268 OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
35269 9. The board configuration file was rather outdated.
35270 10. The part header file defined the vendor, product and revision arrays
35271 as unsigned chars instead of just chars in the block_dev_desc_t
35272 structure.
35273
35274 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
35275
35276commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
35277Author: Rune Torgersen <runet@innovsys.com>
35278Date: Wed Oct 17 11:56:31 2007 -0500
35279
35280 Make MPC8266ADS command selection more robust
35281
35282 Fix MPC8266 command line definition so it won't break when new commands
35283 are added to u-boot.
35284 Signed-off-by Rune Torgersen <runet@innovsys.com>
35285
Wolfgang Denk992742a2007-11-03 23:09:27 +010035286commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
35287Author: Bartlomiej Sieka <tur@semihalf.com>
35288Date: Tue Oct 23 13:14:10 2007 +0200
35289
35290 Motion-PRO: Update configuration to accomodate next generation board.
35291
35292 New board has faster oscillator and a different Flash chip. This affects:
35293 - CFG_MPC5XXX_CLKIN
35294 - SDRAM timings
35295 - Flash CS configuration (timings)
35296 - Flash sector size, and thus MTD partition layout
35297 - malloc() arena size (due to bigger Flash sectors)
35298 - smaller memory test range (due to bigger malloc() arena)
35299
35300 This patch also enables more extensive memory testing via "mtest".
35301
35302 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35303
35304commit eff501904df2bf1724a750062628ba2c51dbb1f8
35305Author: Bartlomiej Sieka <tur@semihalf.com>
35306Date: Tue Oct 23 11:36:07 2007 +0200
35307
35308 Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
35309
35310 Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
35311 register must be written a value of 0x00000004 as the first step of the
35312 SDRAM contorller configuration.
35313
35314 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35315
35316commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
35317Author: Peter Pearse <peter.pearse@arm.com>
35318Date: Tue Oct 23 10:22:16 2007 +0100
35319
35320 Move PL01* serial drivers to drivers/serial and adjust Makefiles.
35321
Wolfgang Denk5947f692007-11-17 02:34:38 +010035322commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
35323Author: Stefan Roese <sr@denx.de>
35324Date: Tue Oct 23 10:17:42 2007 +0200
35325
35326 ppc4xx: lwmon5: Some further GPIO config changes
35327
35328 Signed-off-by: Stefan Roese <sr@denx.de>
35329
Wolfgang Denk992742a2007-11-03 23:09:27 +010035330commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
35331Author: Vlad Lungu <vlad@comsys.ro>
35332Date: Sun Oct 21 22:10:10 2007 +0900
35333
35334 [MIPS] Fix UNCACHED_SDRAM
35335
35336 PHYSADDR is for physical address, KSEG1ADDR is for uncached.
35337
35338 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
35339 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35340
35341commit 00101dd7a32d12f698150123e47e4b3420279f86
35342Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35343Date: Sun Oct 21 21:30:42 2007 +0900
35344
35345 [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
35346
35347 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35348
35349commit eb700636db017d310edaeb559b13d82588560674
35350Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35351Date: Sun Oct 21 10:55:37 2007 +0900
35352
35353 [MIPS] u-boot.lds: Define _gp in a standard manner
35354
35355 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35356
35357commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
35358Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35359Date: Sun Oct 21 10:55:36 2007 +0900
35360
35361 [MIPS] Fix $gp usage
35362
35363 Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
35364 As a general principle, we should use _gp for $gp.
35365
35366 Thanks to linker script's help we fortunately have _gp which equals to
35367 _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
35368 be able to access to GOT entires, global variables and procedure entry
35369 points. The right thing to do is to use _gp.
35370
35371 This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
35372 which holds the offset from _gp. When updating GOT entries, we use this
35373 offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
35374
35375 This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
35376 I made some change to leave over num_got_entries.
35377
35378 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35379 Cc: Vlad Lungu <vlad@comsys.ro>
35380
35381commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
35382Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35383Date: Sun Oct 21 10:55:36 2007 +0900
35384
35385 [MIPS] u-boot.lds: Fix __got_start and __got_end
35386
35387 Ensure that __got_start points to top of the `.got', and __got_end points
35388 to bottom as well, so that we never fail to count num_got_entries.
35389
35390 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35391
35392commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
35393Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35394Date: Sun Oct 21 10:55:36 2007 +0900
35395
35396 [MIPS] u-boot.lds: Remove duplicated .sdata section
35397
35398 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35399
Wolfgang Denk41b4d282007-10-23 16:50:03 +020035400commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
35401Author: Wolfgang Denk <wd@denx.de>
35402Date: Sun Oct 21 01:01:17 2007 +0200
35403
35404 Minor coding style cleanup; update CHANGELOG
35405
35406 Signed-off-by: Wolfgang Denk <wd@denx.de>
35407
Wolfgang Denk05bf4912007-10-21 01:01:17 +020035408commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
35409Author: Vlad Lungu <vlad@comsys.ro>
35410Date: Thu Oct 4 20:47:10 2007 +0300
35411
35412 Fix NE2000 driver:
35413
35414 Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
35415 to do anything in eth_stop() if eth_init() was not called.
35416 Simplified RX path in order to avoid timeouts on really really
35417 fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
35418 clever enough to cope with 1 packet per eth_rx().
35419
35420 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
35421
Wolfgang Denk992742a2007-11-03 23:09:27 +010035422commit df90968b48fb34fa9072fab150db2ac89678f537
35423Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
35424Date: Mon Sep 24 13:32:13 2007 -0400
35425
35426 Setting MSR[DE] in do_reset
35427
35428 Hello,
35429 This patch ensures the soft reset of the board for the 85xx boards
35430 by setting the MSR[DE] in the do_reset function.
35431
35432 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
35433
35434commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
35435Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
35436Date: Mon Sep 24 13:36:01 2007 -0400
35437
35438 MSR overwrite fix
35439
35440 Hello,
35441 This patch fixes the MSR overwrite in the start.S when moving out of
35442 the last 4K page.
35443
35444 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
35445
35446commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
35447Author: Dan Wilson <dwilson@fulcrummicro.com>
35448Date: Fri Oct 19 11:33:48 2007 -0500
35449
35450 tsec driver should clear RHALT on startup
35451
35452 This was causing problems for some people.
35453
35454 Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
35455 Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
35456 Signed-off-by: Andy Fleming <afleming@freescale.com>
35457
35458commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
35459Author: Kumar Gala <galak@kernel.crashing.org>
35460Date: Thu Oct 11 00:29:18 2007 -0500
35461
35462 Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
35463
35464 On the MPC85xx CDS we have two issues:
35465
35466 1. The device tree fixup code did not check to see if the property we are
35467 trying to update is actually found. Its possible that it would update
35468 random memory starting at 0.
35469
35470 2. Newer Linux kernel's have moved the location of the PCI nodes to be
35471 sibilings of the soc node and not children. The explicit PATH to the PCI
35472 node would not be found for these device trees. Add the ability to handle
35473 both paths. In the future we shouldn't handle such fixups by explicit path.
35474
35475 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35476
35477commit a3063eec775719b7e91023bbec3f64b3118791df
35478Author: Kumar Gala <galak@kernel.crashing.org>
35479Date: Thu Oct 11 00:18:48 2007 -0500
35480
35481 Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
35482
35483 On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
35484 console. Make it so we match that config what we tell Linux as the early
35485 STDOUT console.
35486
35487 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35488
35489commit e1ce3cb617bb06f91f82f98915391175addf3e82
35490Author: Kumar Gala <galak@kernel.crashing.org>
35491Date: Tue Oct 2 11:12:27 2007 -0500
35492
35493 Remove magic numbers from cache related operations for mpc85xx
35494
35495 The mpc85xx start code uses some magic numbers that we actually
35496 have #defines for in <config.h> so use those instead.
35497
35498 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35499
Wolfgang Denk05bf4912007-10-21 01:01:17 +020035500commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
35501Author: Detlev Zundel <dzu@denx.de>
35502Date: Fri Oct 19 16:47:26 2007 +0200
35503
35504 Fix two typos.
35505
35506 Signed-off-by: Detlev Zundel <dzu@denx.de>
35507
35508commit 281df457c1aa50d2752165d0c5c3282d4027b974
35509Author: Tony Li <tony.li@freescale.com>
35510Date: Thu Oct 18 17:47:19 2007 +0800
35511
35512 mpc83xx: Add configure entry for MPC83xx ATM support
35513
35514 Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
35515 Makfile and MAKEALL
35516
35517 Signed-off-by: Tony Li <tony.li@freescale.com>
35518 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35519
35520commit d2646554f529a9577515eceb0ec5eceee18244ba
35521Author: Tony Li <tony.li@freescale.com>
35522Date: Thu Oct 18 17:44:38 2007 +0800
35523
35524 mpc83xx: pq-mds-pib.c typo error
35525
35526 Correct to val8 from val.
35527
35528 Signed-off-by: Tony Li <tony.li@freescale.com>
35529 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35530
35531commit 3e11ae80fec1ee12194940955431186abf6009c2
35532Author: Stefan Roese <sr@denx.de>
35533Date: Wed Oct 17 15:40:19 2007 +0200
35534
35535 ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
35536
35537 Signed-off-by: Stefan Roese <sr@denx.de>
35538
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010035539commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
35540Author: Jon Loeliger <jdl@freescale.com>
35541Date: Tue Oct 16 15:27:43 2007 -0500
35542
35543 Initial mpc8610hpcd Makefile files.
35544
35545 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35546 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
35547 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
35548 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35549
35550commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
35551Author: Jon Loeliger <jdl@freescale.com>
35552Date: Tue Oct 16 15:26:51 2007 -0500
35553
35554 Initial mpc8610hpcd cpu/, README and include/ files.
35555
35556 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35557 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
35558 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
35559 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35560
35561commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
35562Author: Jon Loeliger <jdl@freescale.com>
35563Date: Tue Oct 16 13:54:01 2007 -0500
35564
35565 Initial mpc8610hpcd board files.
35566
35567 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35568 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
35569 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
35570 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35571
Wolfgang Denk05bf4912007-10-21 01:01:17 +020035572commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
35573Author: runet@innovsys.com <runet@innovsys.com>
35574Date: Tue Oct 16 14:50:40 2007 -0500
35575
35576 Make MPC8266ADS board compile again.
35577
35578 Signed-off-by: Runet Torgersen <runet@innovsys.com>
35579
35580commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
35581Author: Jon Loeliger <jdl@freescale.com>
35582Date: Mon Aug 27 12:41:03 2007 -0500
35583
35584 86xx: Allow for fewer DDR slots per memory controller.
35585
35586 As a direct correlation exists between DDR DIMM slots
35587 and SPD EEPROM addresses used to configure them, use
35588 the individually defined SPD_EEPROM_ADDRESS* values to
35589 determine if a DDR DIMM slot should have its SPD
35590 configuration read or not.
35591
35592 Effectively, this now allows for 1 or 2 DIMM slots
35593 per memory controller.
35594
35595 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35596
35597commit 4d4a945e189a2f384c66432316da2788a0ac1607
35598Author: Rodolfo Giometti <giometti@enneenne.com>
35599Date: Mon Oct 15 11:59:17 2007 +0200
35600
35601 PXA USB OHCI: "usb stop" implementation.
35602
35603 Some USB keys need to be switched off before loading the kernel
35604 otherwise they can remain in an undefined status which prevents them
35605 to be correctly recognized by the kernel.
35606
35607 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
35608
35609commit e2e93442e558cf1500e92861f99713b2f045ea22
35610Author: Stefan Roese <sr@denx.de>
35611Date: Mon Oct 15 11:39:00 2007 +0200
35612
35613 ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
35614
35615 The I2C bootstrap values that can be setup via the "bootstrap" command,
35616 were setup incorrect regarding the generation of the internal sync PCI
35617 clock. The values for PLB clock == 133MHz were slighly incorrect and the
35618 values for PLB clock == 166MHz were totally incorrect. This could
35619 lead to a hangup upon booting while PCI configuration scan.
35620
35621 This patch fixes this issue and configures valid PCI divisor values
35622 for the sync PCI clock, with respect to the provided external async
35623 PCI frequency.
35624
35625 Here the values of the formula in the chapter 14.2 "PCI clocking"
35626 from the 440EPx users manual:
35627
35628 AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
35629
35630 33MHz async PCI frequency:
35631 PLB = 133:
35632 => 32 <= 44.3 <= 65 (div = 3)
35633
35634 PLB = 166:
35635 => 32 <= 55.3 <= 65 (div = 3)
35636
35637 66MHz async PCI frequency:
35638 PLB = 133:
35639 => 65 <= 66.5 <= 132 (div = 2)
35640
35641 PLB = 166:
35642 => 65 <= 83 <= 132 (div = 2)
35643
35644 Signed-off-by: Stefan Roese <sr@denx.de>
35645
35646commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
35647Author: Stefan Roese <sr@denx.de>
35648Date: Mon Oct 15 11:29:33 2007 +0200
35649
35650 ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
35651
35652 The BCSR status bit for the 66MHz PCI operation was correctly
35653 addressed (MSB/LSB problem). Now the correct currently setup
35654 PCI frequency is displayed upon bootup.
35655
35656 This patch also fixes this problem on Rainier & Yellowstone, since these
35657 boards use the same souce code as Sequoia & Yosemite do.
35658
35659 Signed-off-by: Stefan Roese <sr@denx.de>
35660
35661commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
35662Author: Martin Krause <martin.krause@tqs.de>
35663Date: Wed Sep 26 17:55:56 2007 +0200
35664
35665 TQM860M: adjust for doubled flash sector size.
35666
35667 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
35668 doubled sector size.
35669
35670 Signed-off-by: Martin Krause <martin.krause@tqs.de>
35671
35672commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
35673Author: Jens Gehrlein <jens.gehrlein@tqs.de>
35674Date: Wed Sep 26 17:55:54 2007 +0200
35675
35676 TQM8xx: Fix CAN timing.
35677
35678 Signed-off-by: Martin Krause <martin.krause@tqs.de>
35679
35680commit d43e489baf02afae49077791fb22332d240d8656
35681Author: Martin Krause <martin.krause@tqs.de>
35682Date: Thu Sep 27 14:54:36 2007 +0200
35683
35684 TQM866M: fix SDRAM refresh
35685
35686 At 133 MHz the current SDRAM refresh rate is too fast
35687 (measured 4 * 1.17 us).
35688 CFG_MAMR_PTA changes from 39 to 97. This result
35689 in a refresh rate of 4 * 7.8 us at the default clock
35690 50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
35691 This is a compromise until a new method is found to
35692 adjust the refresh rate.
35693
35694 Signed-off-by: Martin Krause <martin.krause@tqs.de>
35695
35696commit 9ef57bbee1c67cc01da2026c242c4692db32be36
35697Author: Martin Krause <martin.krause@tqs.de>
35698Date: Wed Sep 26 17:55:55 2007 +0200
35699
35700 TQM866M: adjust for doubled flash sector size.
35701
35702 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
35703 doubled sector size.
35704
35705 Signed-off-by: Martin Krause <martin.krause@tqs.de>
35706
35707commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
35708Author: Michal Simek <monstr@monstr.eu>
35709Date: Sun Oct 14 16:12:29 2007 +0200
35710
35711 [FIX] XUPV2P change command handling
35712 and remove code violation
35713
35714commit 636400198228d96983c06657b17f760f5989958e
35715Author: Wolfgang Denk <wd@denx.de>
35716Date: Sun Oct 14 00:13:19 2007 +0200
35717
35718 Prepare for 1.3.0-rc3 release
35719
35720 Signed-off-by: Wolfgang Denk <wd@denx.de>
35721
Wolfgang Denk63640012007-10-14 00:13:19 +020035722commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
35723Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35724Date: Sat Sep 29 13:41:37 2007 +0200
35725
35726 Fix warning differ in signedness in cpu/pxa/mmc.c
35727
35728 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35729
35730commit fc19e36f741e8bc727c0a330170b3b5db90399ef
35731Author: Wolfgang Denk <wd@denx.de>
35732Date: Sat Oct 13 23:51:14 2007 +0200
35733
35734 Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
35735
35736 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35737 Signed-off-by: Wolfgang Denk <wd@denx.de>
35738
35739commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
35740Author: Wolfgang Denk <wd@denx.de>
35741Date: Sat Oct 13 21:15:39 2007 +0200
35742
35743 Coding Style cleanup.
35744
35745 Signed-off-by: Wolfgang Denk <wd@denx.de>
35746
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020035747commit e1893815b0999410d7a327589611c7b38e95299e
35748Author: Wolfgang Denk <wd@denx.de>
35749Date: Fri Oct 12 15:49:39 2007 +0200
35750
35751 GP3 SSA: enable RTC
35752
35753 Signed-off-by: Wolfgang Denk <wd@denx.de>
35754
35755commit 8002012041f1ff9f997a5727abe5015f70cd2e46
35756Author: Grzegorz Bernacki <gjb@semihalf.com>
35757Date: Tue Oct 9 13:58:24 2007 +0200
35758
35759 [ads5121] EEPROM support added.
35760
35761 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
35762
Wolfgang Denk63640012007-10-14 00:13:19 +020035763commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
35764Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
35765Date: Sat Oct 6 18:55:35 2007 +0200
35766
35767 AVR32: Initialize bi_flash* in board_init_r
35768
35769 The ATSTK1000-specific flash driver intializes bi_flashstart,
35770 bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
35771 driver, don't.
35772
35773 Initialize these in board_init_r instead so that things will still be
35774 set up correctly when we switch to the CFI driver.
35775
35776 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
35777
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020035778commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
35779Author: Marian Balakowicz <m8@semihalf.com>
35780Date: Fri Oct 5 10:40:54 2007 +0200
35781
35782 tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
35783
35784 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35785
35786commit 92869195ef8210758d2176230c0a36897afd50ed
35787Author: Bartlomiej Sieka <tur@semihalf.com>
35788Date: Fri Oct 5 09:46:06 2007 +0200
35789
35790 CM5200: Fix missing null-termination in hostname manipulation code
35791
35792 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35793
Wolfgang Denk63640012007-10-14 00:13:19 +020035794commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
35795Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
35796Date: Tue Oct 2 19:09:01 2007 +0200
35797
35798 Fix memtest breakage
35799
35800 CFG_MEMTEST_START uses weird magic involving gd, which fails to
35801 compile. Use hardcoded values instead (we actually know how much RAM
35802 we have on board.)
35803
35804 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
35805
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020035806commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
35807Author: Stefan Roese <sr@denx.de>
35808Date: Tue Oct 2 11:44:46 2007 +0200
35809
35810 ppc4xx: Coding style cleanup
35811
35812 Signed-off-by: Stefan Roese <sr@denx.de>
35813
35814commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
35815Author: Stefan Roese <sr@denx.de>
35816Date: Tue Oct 2 11:44:19 2007 +0200
35817
35818 ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
35819
35820 Signed-off-by: Stefan Roese <sr@denx.de>
35821
35822commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
35823Author: Grzegorz Bernacki <gjb@semihalf.com>
35824Date: Mon Oct 1 09:51:50 2007 +0200
35825
35826 Program EPLD to force full duplex mode for PHY.
35827
35828 EPLD forces modes of PHY operation. By default full duplex is turned off.
35829 This fix turns it on.
35830
35831 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
35832
Wolfgang Denk05bf4912007-10-21 01:01:17 +020035833commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
35834Author: Timo Ketola <timo.ketola@exertus.fi>
35835Date: Mon Sep 24 14:50:32 2007 +0300
35836
35837 Bugfix: Use only one PTD for one endpoint
35838
35839 Original isp116x-hcd code prepared multiple PTDs for longer than 16
35840 byte transfers for one endpoint. That is unnecessary because the
35841 ISP116x is able to split long data from one PTD into multiple
35842 transactions based on the buffer size of the endpoint. It also caused
35843 serious problems if the endpoint NAKed some of the transactions. In
35844 that case ISP116x wouldn't notice that the other PTDs were for the same
35845 endpoint and would try the other PTDs possibly out of order. That would
35846 break the whole transfer.
35847
35848 This patch makes isp116x_submit_job to use one PTD for one transfer.
35849
35850 Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
35851 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
35852
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020035853commit 86ec86c04326c3913178a7679aa910de071da75d
35854Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35855Date: Thu Sep 27 23:27:47 2007 +0200
35856
35857 Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
35858
35859 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35860
35861commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
35862Author: Stefan Roese <sr@denx.de>
35863Date: Tue Sep 11 14:12:55 2007 +0200
35864
35865 ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
35866
35867 Signed-off-by: Stefan Roese <sr@denx.de>
35868
Wolfgang Denk992742a2007-11-03 23:09:27 +010035869commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
35870Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35871Date: Wed Sep 26 16:35:54 2007 -0500
35872
35873 85xx io out functions need sync after write.
35874
35875 This fixes the mc146818 rtc_read/write functions for 85xx.
35876
35877 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35878
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020035879commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
35880Author: Grant Likely <grant.likely@secretlab.ca>
35881Date: Tue Sep 25 15:48:05 2007 -0600
35882
35883 Fpga: fix incorrect test of CFG_FPGA_XILINX macro
35884
35885 CFG_FPGA_XILINX is a bit value used to test against the value in
35886 CONFIG_FPGA. Testing for a value will always return TRUE. I don't
35887 think that is the intention in this code.
35888
35889 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35890
Wolfgang Denk63640012007-10-14 00:13:19 +020035891commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
35892Author: Michal Simek <monstr@monstr.eu>
35893Date: Mon Sep 24 00:41:30 2007 +0200
35894
35895 [FIX] change command handling and removing code violation
35896
35897commit f240356507038e5ce55e8a24cb2607e9eae6d10c
35898Author: Michal Simek <monstr@monstr.eu>
35899Date: Mon Sep 24 00:36:06 2007 +0200
35900
35901 [FIX] change sets of commands
35902 because changing of command handling brings
35903 compilation problems
35904
35905commit cb1bc63b75a232571eb69aa2c8aa919321655845
35906Author: Michal Simek <monstr@monstr.eu>
35907Date: Mon Sep 24 00:30:42 2007 +0200
35908
35909 [FIX] Email reparation & Copyright
35910 Both codes are written by myself without any
35911 support from CTU
35912
35913commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
35914Author: Michal Simek <monstr@monstr.eu>
35915Date: Mon Sep 24 00:25:11 2007 +0200
35916
35917 [PATCH] Change macro name for UartLite
35918 because PowerPC 405 can use UartLite as console
35919
35920commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
35921Author: Michal Simek <monstr@monstr.eu>
35922Date: Mon Sep 24 00:21:19 2007 +0200
35923
35924 [PATCH] Add support for design without interrupt controller
35925 Polling timer
35926
35927commit 0731933ec8ec45d02ba89b52df673d526873cdde
35928Author: Michal Simek <monstr@monstr.eu>
35929Date: Mon Sep 24 00:19:48 2007 +0200
35930
35931 [FIX] resolve problem with cpu without barrel shifter
35932
35933commit db14d77995ce515b728b178b63f82babe60e3d56
35934Author: Michal Simek <monstr@monstr.eu>
35935Date: Mon Sep 24 00:18:46 2007 +0200
35936
35937 [FIX] repair email address
35938
35939commit 481d4328618804add1f818a6c96296121cd0528e
35940Author: Michal Simek <monstr@monstr.eu>
35941Date: Mon Sep 24 00:17:42 2007 +0200
35942
35943 [FIX] repair MFSL commands
35944
35945commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
35946Author: Michal Simek <monstr@monstr.eu>
35947Date: Mon Sep 24 00:08:37 2007 +0200
35948
35949 synchronizition with mainline
35950
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010035951commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
35952Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35953Date: Sun Sep 23 02:42:38 2007 +0900
35954
35955 sh: Add support command of ide with sh
35956
35957 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35958
35959commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
35960Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35961Date: Sun Sep 23 02:38:42 2007 +0900
35962
35963 sh: Update Makefile
35964
35965 Add support MS7722SE01 to Makefile.
35966
35967 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35968
35969commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
35970Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35971Date: Sun Sep 23 02:31:13 2007 +0900
35972
35973 sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
35974
35975 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35976
35977commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
35978Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35979Date: Sun Sep 23 02:19:24 2007 +0900
35980
35981 sh: Update MS7750SE01 platform
35982
35983 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35984
35985commit 516ad760db3553766267ada01b7d5d727faa4bbd
35986Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35987Date: Sun Sep 23 02:17:08 2007 +0900
35988
35989 sh: Remove comment out code from include/asm-sh/cpu_sh4.h
35990
35991 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35992
35993commit b02bad128669e567fce87d8df823b06a0144b8db
35994Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35995Date: Sun Sep 23 02:12:30 2007 +0900
35996
35997 sh: Update core code of SuperH.
35998
35999 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
36000
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020036001commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
36002Author: Wolfgang Denk <wd@denx.de>
36003Date: Thu Sep 20 00:04:14 2007 +0200
36004
36005 v1.3.0-rc2
36006
36007 Signed-off-by: Wolfgang Denk <wd@denx.de>
36008
Wolfgang Denk66dcad32007-09-20 00:04:14 +020036009commit 135e19bc2773ebca487e9a8371f67e1ba202313a
36010Author: Wolfgang Denk <wd@denx.de>
36011Date: Tue Sep 18 21:36:35 2007 +0200
36012
36013 Avoid compiler warning.
36014
36015 Signed-off-by: Wolfgang Denk <wd@denx.de>
36016
36017commit 8a783a65851bc7421ab69f442261215e21b8891a
36018Author: Grant Likely <grant.likely@secretlab.ca>
36019Date: Tue Sep 18 12:24:57 2007 -0600
36020
36021 Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
36022
36023 /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
36024 nulls in a string differently. For example, the following statement:
36025 echo "this is a string\0" > afile
36026 Will produce the following with /bin/bash:
36027 "this is a string\0"
36028 But with /bin/dash, will produce:
36029 "this is a string
36030
36031 Bug fixed by moving the embedded null out of the makefile and into the
36032 config header. Also renamed the macro to avoid usage colision with the same
36033 macro used by other board ports.
36034
36035 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36036
36037commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
36038Author: Wolfgang Denk <wd@denx.de>
36039Date: Tue Sep 18 17:40:27 2007 +0200
36040
36041 MCC200: fix build warning
36042
36043 The MCC200 board config file includes version.h for some customer-
36044 specific setting, which causes warnings with "make depend"; build
36045 version.h before depend.
36046
36047 Signed-off-by: Wolfgang Denk <wd@denx.de>
36048
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020036049commit bd86220f58b99d6896198c385fda132f0c980915
36050Author: Peter Pearse <peter.pearse@arm.com>
36051Date: Tue Sep 18 13:07:54 2007 +0100
36052
36053 Move coloured led API to status_led.h
36054 Improve indentation in drivers/at45.c
36055
Wolfgang Denk63640012007-10-14 00:13:19 +020036056commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
36057Author: Eirik Aanonsen <eaa@wprmedical.com>
36058Date: Tue Sep 18 08:47:20 2007 +0200
36059
36060 Update atstk1002 bootargs.
36061
36062 Updates to atstk1002 U-Boot header file:
36063 - Changed bootargs:
36064 * Set the bootargs for at1002 to point to the SD-card partition instead
36065 * ... of the boot flash.
36066 * Removing the rootfstype since that argument are not needed.
36067
36068 Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
36069 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
36070
36071commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
36072Author: Eirik Aanonsen <eaa@wprmedical.com>
36073Date: Wed Sep 12 13:32:37 2007 +0200
36074
36075 Add some comments to clocks in atstk1002.h
36076
36077 This patch applies some clarifying comments to how the different
36078 clocks are setup according to atstk1002.h Some of the previous
36079 comments where stating wrongful information.
36080
36081 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
36082
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020036083commit 97213f32416ead885deafea86774e912ffd60ad0
36084Author: David Saada <David.Saada@ecitele.com>
36085Date: Mon Sep 17 17:04:47 2007 +0200
36086
36087 Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
36088
36089 Signed-off-by: David Saada <david.saada@ecitele.com>
36090
Wolfgang Denk63640012007-10-14 00:13:19 +020036091commit 30363e98fa470fbecea5e8bc0f1443352754f303
36092Author: Stefan Roese <sr@denx.de>
36093Date: Mon Sep 17 08:20:47 2007 +0200
36094
36095 Small whitespace cleanup of OneNAND patch
36096
36097 Signed-off-by: Stefan Roese <sr@denx.de>
36098
36099commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
36100Author: Kyungmin Park <kmpark@infradead.org>
36101Date: Mon Sep 10 17:15:14 2007 +0900
36102
36103 OneNAND support (take #2)
36104
36105 [PATCH 3/3] OneNAND support (take #2)
36106
36107 OneNAND support at U-Boot
36108
36109 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36110
36111commit 17aa2800457df0c06b41516f46f126712c196219
36112Author: Kyungmin Park <kmpark@infradead.org>
36113Date: Mon Sep 10 17:14:34 2007 +0900
36114
36115 OneNAND support (take #2)
36116
36117 [PATCH 2/3] OneNAND support (take #2)
36118
36119 OneNAND support at U-Boot
36120
36121 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36122
36123commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
36124Author: Kyungmin Park <kmpark@infradead.org>
36125Date: Mon Sep 10 17:13:49 2007 +0900
36126
36127 OneNAND support (take #2)
36128
36129 [PATCH 1/3] OneNAND support (take #2)
36130
36131 OneNAND support at U-Boot
36132
36133 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36134
Wolfgang Denk05bf4912007-10-21 01:01:17 +020036135commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
36136Author: Michal Simek <monstr@monstr.eu>
36137Date: Sun Sep 16 20:51:57 2007 +0200
36138
36139 [FIX] remove files form repository
36140
Wolfgang Denk66dcad32007-09-20 00:04:14 +020036141commit 67c31036acaaaa992fc346cc89db0909a7e733c4
36142Author: Wolfgang Denk <wd@denx.de>
36143Date: Sun Sep 16 17:10:04 2007 +0200
36144
36145 TQM8xx[LM]: Fix broken environment alignment.
36146
36147 With recent toolchains, the environment sectors were no longer aligned to
36148 sector boundaries. The reason was a combination of two bugs:
36149
36150 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
36151 for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
36152 this gets defined, is not included here (and cannot be included
36153 without causing lots of problems).
36154
36155 Added a new #define CFG_USE_PPCENV for all boards which really
36156 want to put the environment is a ".ppcenv" section.
36157
36158 2) The linker scripts just include environment.o, silently assuming
36159 that the objects in that file are really in the order in which
36160 they are coded in the C file, i. e. "environment" first, then
36161 "redundand_environment", and "env_size" last. However, current
36162 toolchains (GCC-4.x) reorder the objects, causing the environment
36163 data not to start on a flash sector boundary:
36164
36165 Instead of: we got:
36166
36167 40008000 T environment 40008000 T env_size
36168 4000c000 T redundand_environment 40008004 T redundand_environment
36169 40010000 T env_size 4000c004 T environment
36170
36171 Note: this patch fixes just the first part, and cures the alignment
36172 problem by making sure that "env_size" gets placed correctly. However,
36173 we still have a potential issue because primary and redundant
36174 environment sectors are actually swapped, i. e. we have now:
36175
36176 40008000 T redundand_environment
36177 4000c000 T environment
36178 40010000 T env_size
36179
36180 This shall be fixed in the next version.
36181
36182 Signed-off-by: Wolfgang Denk <wd@denx.de>
36183
36184commit eb6da8050797c204c9d010548424186c7ce32fc1
36185Author: Wolfgang Denk <wd@denx.de>
36186Date: Sun Sep 16 02:39:35 2007 +0200
36187
36188 TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
36189
36190 Signed-off-by: Wolfgang Denk <wd@denx.de>
36191
36192commit cd2d1602c54cc6957bdef3872272a4b264893960
36193Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
36194Date: Mon Sep 10 14:54:56 2007 -0400
36195
36196 Typo fix in tsec.c
36197
36198 Fixup for the break statement in wrong place.
36199
36200 [Patch by urwithsughosh@gmail.com]
36201 Acked-by: Andy Fleming <afleming@freescale.com>
36202 Signed-off-by: Wolfgang Denk <wd@denx.de>
36203
36204commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
36205Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36206Date: Tue Sep 11 17:04:00 2007 +0200
36207
36208 Fix do_div() usage in nand process output
36209
36210 Fix usage of do_div() in nand erase|read|write process output.
36211
36212 The last patch to nand_util.c introduced do_div() instead of libgcc's
36213 implementation. But do_div() returns the quotient in its first
36214 macro parameter and not as result.
36215
36216 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36217
36218commit c750d2e6692a000a82f29de7bf24e3dc21239161
36219Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36220Date: Wed Sep 12 12:36:53 2007 +0200
36221
36222 NAND: Add CFG_NAND_QUIET option
36223
36224 This config option sets the default for the progress information
36225 output behavior that can also be configured through the 'quiet'
36226 environment variable.
36227
36228 The legacy NAND code does not print the current progress info
36229 on the console. So this option is for backward compatibility for
36230 units that are in the field and where setting the quiet variable
36231 is not an option. With CFG_NAND_QUIET set to '1' the console
36232 progress info is turned off. This can still be overwritten
36233 through the environment variable.
36234
36235 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36236
36237commit dcb88630290d2bcd803386dd4c2be73142994c4f
36238Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
36239Date: Thu Sep 13 16:06:05 2007 -0700
36240
36241 ColdFire: fix build error becasue of bad type of mii_init()
36242
36243 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36244
36245commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
36246Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
36247Date: Thu Sep 13 16:04:05 2007 -0700
36248
36249 ColdFire: Fix build error caused by pixis.c
36250
36251 Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
36252
36253 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36254
36255commit e21659e30660a1377c42af135a6114efe39801d9
36256Author: Sam Sparks <SSparks@twacs.com>
36257Date: Fri Sep 14 11:14:42 2007 -0600
36258
36259 Update MPC8349ITX*_config to place config.tmp in right place.
36260
36261 MPC834ITX*_config does not store config.tmp at the correct locatation,
36262 causing MPC8349ITXGP to have the wrong TEXT_BASE.
36263
36264 Signed-off-by: Sam Sparks <SSparks@twacs.com>
36265 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36266
36267commit 1218abf1b5817a39a82399b4b928b00750575bda
36268Author: Wolfgang Denk <wd@denx.de>
36269Date: Sat Sep 15 20:48:41 2007 +0200
36270
36271 Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
36272
36273 Signed-off-by: Wolfgang Denk <wd@denx.de>
36274
36275commit 66b3f24d665be678a9dbb125b1e84185400f63b5
36276Author: Dirk Behme <dirk.behme@googlemail.com>
36277Date: Sat Sep 15 11:55:42 2007 +0200
36278
36279 Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
36280
36281 As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
36282 function local.
36283
36284 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
36285
36286 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
36287
Wolfgang Denk05bf4912007-10-21 01:01:17 +020036288commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
36289Author: Michal Simek <monstr@monstr.eu>
36290Date: Sat Sep 15 00:03:35 2007 +0200
36291
36292 Synchronize with U-BOOT mainline
36293
36294commit d7fee32b7e61fe11c64e371cde79faa4768e8350
36295Author: Sam Sparks <SSparks@twacs.com>
36296Date: Fri Sep 14 11:14:42 2007 -0600
36297
36298 Update MPC8349ITX*_config to place config.tmp in right place.
36299
36300 MPC834ITX*_config does not store config.tmp at the correct locatation,
36301 causing MPC8349ITXGP to have the wrong TEXT_BASE.
36302
36303 Signed-off-by: Sam Sparks <SSparks@twacs.com>
36304 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36305 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36306
Wolfgang Denk66dcad32007-09-20 00:04:14 +020036307commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
36308Author: Bartlomiej Sieka <tur@semihalf.com>
36309Date: Thu Sep 13 18:21:48 2007 +0200
36310
36311 cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
36312
36313 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36314
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020036315commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
36316Author: Bartlomiej Sieka <tur@semihalf.com>
36317Date: Thu Sep 13 16:33:59 2007 +0200
36318
36319 tqm5200: Restore customary env. variable boot commands for powerpc kernels
36320
36321 - update default definitions of kernel_addr and fdt_addr env. variables
36322 - make arch/powerpc booting the default scenario
36323 - update MTD partition layout to match the above
36324
36325 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36326
Wolfgang Denk66dcad32007-09-20 00:04:14 +020036327commit f34024d4a328e6edd906456da98d2c537155c4f7
36328Author: Wolfgang Denk <wd@denx.de>
36329Date: Wed Sep 12 00:48:57 2007 +0200
36330
36331 Fix memory corruption problem on STX GP3 SSA Board.
36332
36333 Signed-off-by: Wolfgang Denk <wd@denx.de>
36334
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020036335commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
36336Author: Peter Pearse <peter.pearse@arm.com>
36337Date: Tue Sep 11 15:35:01 2007 +0100
36338
36339 Final tidy
36340
Wolfgang Denk66dcad32007-09-20 00:04:14 +020036341commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
36342Author: Grzegorz Bernacki <gjb@semihalf.com>
36343Date: Tue Sep 11 15:42:11 2007 +0200
36344
36345 [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
36346 scan on second pci bus.
36347
36348 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36349
36350commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
36351Author: Grzegorz Bernacki <gjb@semihalf.com>
36352Date: Tue Sep 11 12:57:52 2007 +0200
36353
36354 [ppc4xx] Individual handling of sdram.c for bamboo_nand build
36355
36356 Bamboo has a file sdram.c which needs special treatment when building in
36357 separate directory. It has to be linked to build directory otherwise it is
36358 not seen.
36359
36360 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36361
Wolfgang Denk63640012007-10-14 00:13:19 +020036362commit d45963854eff39d575124d859419bb4953ce2c87
36363Author: Michal Simek <monstr@monstr.eu>
36364Date: Tue Sep 11 00:37:04 2007 +0200
36365
36366 [FIX] Microblaze ML401 - repare FLASH handling
36367
Wolfgang Denk66dcad32007-09-20 00:04:14 +020036368commit 38c1ef728d19950414a8ab1ccfc53767848fa346
36369Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
36370Date: Mon Sep 10 16:55:59 2007 +0100
36371
36372 Allocate CPU Architecture Code for STMicroelectronics' ST200.
36373
36374 Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
36375 ---------------------------------------------------
36376
36377commit 754bac48156f8958d8f6a53a51eda88ab5758929
36378Author: Wolfgang Denk <wd@denx.de>
36379Date: Mon Sep 10 20:42:31 2007 +0200
36380
36381 Update version to match current state.
36382
36383 Signed-off-by: Wolfgang Denk <wd@denx.de>
36384
36385commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
36386Author: Grzegorz Bernacki <gjb@semihalf.com>
36387Date: Mon Sep 10 17:39:08 2007 +0200
36388
36389 [MPC512x] Streamline frame handling in the FEC driver
36390
36391 - convert frame size settings to be derived from a single base
36392 - set frame size to the recommended default value
36393
36394 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36395
36396commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
36397Author: Kyungmin Park <kmpark@infradead.org>
36398Date: Mon Sep 10 11:34:00 2007 +0900
36399
36400 Remove compiler warning: target CPU does not support interworking
36401
36402 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36403
36404commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
36405Author: Wolfgang Denk <wd@denx.de>
36406Date: Sun Sep 9 21:21:33 2007 +0200
36407
36408 Fix compile error in spc1920 config.
36409
36410 Signed-off-by: Markus Klotzbücher <mk@denx.de>
36411 Signed-off-by: Wolfgang Denk <wd@denx.de>
36412
36413commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
36414Author: Grant Likely <grant.likely@secretlab.ca>
36415Date: Fri Sep 7 09:25:07 2007 -0600
36416
36417 Bugfix: make bootm+libfdt compile on boards with no flash
36418
36419 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36420
36421commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
36422Author: Grzegorz Bernacki <gjb@semihalf.com>
36423Date: Fri Sep 7 18:35:37 2007 +0200
36424
36425 [PPC440SPe] PCIe environment settings for Katmai and Yucca
36426
36427 - 'pciconfighost' is set by default in order to be able to scan bridges
36428 behind the primary host/PCIe
36429
36430 - 'pciscandelay' env variable is recognized to allow for user-controlled
36431 delay before the PCIe bus enumeration; some peripheral devices require a
36432 significant delay before they can be scanned (e.g. LSI8408E); without the
36433 delay they are not detected
36434
36435 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36436
36437commit 7f1913938984ef6c6a46cb53e003719196d9c5de
36438Author: Grzegorz Bernacki <gjb@semihalf.com>
36439Date: Fri Sep 7 18:20:23 2007 +0200
36440
36441 [PPC440SPe] Improve PCIe configuration space access
36442
36443 - correct configuration space mapping
36444 - correct bus numbering
36445 - better access to config space
36446
36447 Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
36448 first device on the first bus. We now allow to configure up to 16 buses;
36449 also, scanning for devices behind the PCIe-PCIe bridge is supported, so
36450 peripheral devices farther in hierarchy can be identified.
36451
36452 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36453
36454commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
36455Author: Grzegorz Bernacki <gjb@semihalf.com>
36456Date: Fri Sep 7 17:46:18 2007 +0200
36457
36458 [PPC440SPe] Convert machine check exceptions handling
36459
36460 Convert using fixup mechanism to suppressing MCK for the duration of config
36461 read/write transaction: while fixups work fine with the case of a precise
36462 exception, we identified a major drawback with this approach when there's
36463 an imprecise case. In this scenario there is the following race condition:
36464 the fixup is (by design) set to catch the instruction following the one
36465 actually causing the exception; if an interrupt (e.g. decrementer) happens
36466 between those two instructions, the ISR code is executed before the fixup
36467 handler the machine check is no longer protected by the fixup handler as it
36468 appears as within the ISR code. In consequence the fixup approach is being
36469 phased out and replaced with explicit suppressing of MCK during a PCIe
36470 config read/write cycle.
36471
36472 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36473
36474commit ff7640c9ead8806b5d827f2b29f9cb2632add729
36475Author: Wolfgang Denk <wd@denx.de>
36476Date: Fri Sep 7 17:43:36 2007 +0200
36477
36478 Fix typo in MAKEALL script.
36479
36480 Signed-off-by: Wolfgang Denk <wd@denx.de>
36481
36482commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
36483Author: Grzegorz Bernacki <gjb@semihalf.com>
36484Date: Fri Sep 7 17:09:21 2007 +0200
36485
36486 [MPC512x] Proper handling of larger frames in the FEC driver
36487
36488 When frame larger than local RX buffer is received, it is split and handled
36489 by two buffer descriptors. Prior to this patch the FEC driver discarded
36490 contents of a buffer descriptor without the 'LAST' bit set, so the first
36491 part of the frame was lost in case of larger frames. This fix allows to
36492 safely combine the two pieces into the whole frame.
36493
36494 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36495
36496commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
36497Author: Rafal Jaworowski <raj@semihalf.com>
36498Date: Fri Sep 7 17:05:36 2007 +0200
36499
36500 [MPC512x] Correct fixup relocation
36501
36502 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
36503
36504commit a89cbbd27a60e6740772000fd0688ffba1c2576a
36505Author: Wolfgang Denk <wd@denx.de>
36506Date: Fri Sep 7 01:21:25 2007 +0200
36507
36508 Update CHANGELOG, minor coding style cleanup.
36509
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020036510commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
36511Author: stefano babic <sbabic@denx.de>
36512Date: Thu Aug 30 23:01:49 2007 +0200
36513
36514 PXA270: Added support for TrizepsIV board.
36515
36516 This patch add support for the Trizeps IV module (520Mhz).
36517
36518 Signed-off-by: Stefano Babic <sbabic@denx.de>
36519
36520commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
36521Author: stefano babic <sbabic@denx.de>
36522Date: Thu Aug 30 22:57:04 2007 +0200
36523
36524 PXA270: Add support for multiple serial ports.
36525
36526 This patch adds support for multiple serial ports to the PXA target.
36527 FFUART, BTUART and STUART are supported.
36528
36529 Signed-off-by: Stefano Babic <sbabic@denx.de>
36530
36531commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
36532Author: stefano babic <sbabic@denx.de>
36533Date: Thu Aug 30 22:48:47 2007 +0200
36534
36535 PXA270: fix compile issue (invalid lvalue)
36536
36537 Code is broken for PXA270 due to "invalid lvalue in assignment".
36538
36539 This patch fix it in pxa-regs.h
36540
36541 Signed-off-by: Stefano Babic <sbabic@denx.de>
36542
36543commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
36544Author: Jason Jin <Jason.jin@freescale.com>
36545Date: Thu Aug 30 18:19:05 2007 +0800
36546
36547 Add BUILD_DIR support for bios emulator.
36548
36549 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36550
36551commit b4d8a55145442f136982634862341a3e02002bda
36552Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
36553Date: Fri Aug 31 14:41:51 2007 +0900
36554
36555 [MIPS] Remove inline asm string functions
36556
36557 Stop using inline string functions on MIPS as other ARCHs do so,
36558 since the optimized inline asm versions are not small.
36559
36560 This change is triggered by a following MIPS build error:
36561 common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
36562 common/exports.c:32: undefined reference to `strcmp'
36563 make: *** [u-boot] Error 1
36564
36565 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
36566
36567commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
36568Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
36569Date: Fri Aug 31 14:41:45 2007 +0900
36570
36571 [MIPS] Update asm string header
36572
36573 This patches contains several bugfixes and cleanups in the latest upstream:
36574
36575 - Don't include linux/config.h
36576 - Remove buggy inline version of memscan.
36577 - Merge with Linux 2.6.11-rc3.
36578 - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
36579 - Goodbye mips64. 31704 lines of code bite the dust.
36580 - Replace extern inline with static inline.
36581 - Fix return value of strncpy.
36582 - Remove a bunch more "$1" clobbers.
36583
36584 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
36585
36586commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
36587Author: Bartlomiej Sieka <tur@semihalf.com>
36588Date: Tue Sep 4 17:31:22 2007 +0200
36589
36590 Fix do_bootm_linux() so that multi-file images with FDT blob boot.
36591
36592 Fix incorrect blob address calculation in do_bootm_linux() that prevents
36593 booting the kernel from a multi-file image (kernel + initrd + blob).
36594
36595 Also, make minor updates to the U-Boot's output and to the coding style.
36596
36597 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36598
36599commit 041a2554ad619e80dce520c1a33210affcb6a3f2
36600Author: Gary Jennejohn <gary.jennejohn@freenet.de>
36601Date: Fri Aug 31 14:29:04 2007 +0200
36602
36603 Add support for Sil680 IDE controller.
36604
36605 o add drivers/sil680.c to support the Sil680 IDE-controller.
36606 o drivers/Makefile: add sil680.o.
36607
36608 Signed-off-by: Gary Jennejohn <garyj@denx.de>
36609
36610commit e79021223bc339df655e360645a52c457a74b067
36611Author: Grant Likely <grant.likely@secretlab.ca>
36612Date: Thu Sep 6 09:47:40 2007 -0600
36613
36614 bootm/fdt: Only process the fdt if an fdt address was provided
36615
36616 Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
36617 kernels using the board info structure (instead of passing a device tree)
36618 This change allows the old style booting to be used if the fdt argument
36619 was not passed to 'bootm'.
36620
36621 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36622 Acked-by: Kim Phillips <kim.phillips@freescale.com>
36623
36624commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
36625Author: Grant Likely <grant.likely@secretlab.ca>
36626Date: Thu Sep 6 09:46:23 2007 -0600
36627
36628 Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
36629
36630 Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
36631
36632 Tested on: lite5200b
36633
36634 Note: the fixup functions have not been moved to a common place. This
36635 patch is targeted for immediate merging as in solves a build issue, but
36636 the final name/location of the fixups is still subject to debate. I
36637 propose to merge this now, and move the fixups in the next merge window
36638 to be usable by all targets.
36639
36640 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36641
36642commit 41bb76e941929f54a73206fb132f7a4c275543a3
36643Author: Grant Likely <grant.likely@secretlab.ca>
36644Date: Thu Sep 6 09:46:17 2007 -0600
36645
36646 libfdt: add convenience function fdt_find_and_setprop()
36647
36648 Given the path to a node, fdt_find_and_setprop() allows a property value
36649 to be set directly.
36650
36651 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36652
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020036653commit 80767a6cead9990d9e77e62be947843c2c72f469
36654Author: Peter Pearse <peter.pearse@arm.com>
36655Date: Wed Sep 5 16:04:41 2007 +0100
36656
36657 Changed API name to coloured_led.h
36658 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
36659 Tidied other cpu/arm920t/start.S code
36660
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020036661commit 56a9270521baaa00e12639a978302a67f61ef060
36662Author: Kumar Gala <galak@kernel.crashing.org>
36663Date: Thu Aug 30 16:18:18 2007 -0500
36664
36665 Fix ULI RTC support on MPC8544 DS
36666
36667 The RTC on the M1575 ULI chipset requires a dummy read before
36668 we are able to talk to the RTC. We accomplish this by adding a
36669 second memory region to the PHB the ULI is on and read from it.
36670
36671 The second region is added to maintain compatiabilty with Linux's
36672 view of the PCI memory map.
36673
36674 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36675
36676commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
36677Author: Ed Swarthout <Ed.Swarthout@freescale.com>
36678Date: Thu Aug 30 01:58:48 2007 -0500
36679
36680 ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
36681
36682 pcie is now differentiated from pci. Add 8641 bus-range updates.
36683
36684 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
36685
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020036686commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
36687Author: Peter Pearse <peter.pearse@arm.com>
36688Date: Tue Sep 4 16:18:38 2007 +0100
36689
36690 Add coloured led interface for ARM boards.
36691 Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
36692
36693commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
36694Author: Peter Pearse <peter.pearse@arm.com>
36695Date: Tue Sep 4 14:49:28 2007 +0100
36696
36697 Move include/led.h to board/at91rm9200dk
36698
36699commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
36700Author: Peter Pearse <peter.pearse@arm.com>
36701Date: Tue Sep 4 14:25:51 2007 +0100
36702
36703 Ran Lindent on drivers/at45.c
36704
36705commit 557ab89d294f08dd532f21d19861b40093200a33
36706Author: Peter Pearse <peter.pearse@arm.com>
36707Date: Tue Sep 4 14:23:50 2007 +0100
36708
36709 Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
36710
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020036711commit 81b73dec16fd1227369a191e725e10044a9d56b8
36712Author: Gary Jennejohn <garyj@denx.de>
36713Date: Fri Aug 31 15:21:46 2007 +0200
36714
36715 ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
36716
36717 The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
36718 set to non-zero, because it doesn't support MRM (memory-read-
36719 multiple) correctly. We now added the possibility to configure
36720 this register in the board config file, so that the default value
36721 of 8 can be overridden.
36722
36723 Here the details of this patch:
36724
36725 o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
36726 board-specific settings. As an example the sequoia board requires 0.
36727 Idea from Stefan Roese <sr@denx.de>.
36728 o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
36729 PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
36730 o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
36731 CFG_PCI_CACHE_LINE_SIZE to 0.
36732
36733 Signed-off-by: Gary Jennejohn <garyj@denx.de>
36734 Signed-off-by: Stefan Roese <sr@denx.de>
36735
36736commit 60174746c668b309378a91488dded898e9553eae
36737Author: Wolfgang Denk <wd@denx.de>
36738Date: Fri Aug 31 10:01:51 2007 +0200
36739
36740 Fix TFTP OACK code for short packets.
36741
36742 The old code had a loop limit overflow bug which caused a semi-
36743 infinite loop for small packets, because in "i<len-8", "i" was signed,
36744 but "len" was unsigned, and "len-8" became a huge number for small
36745 values of "len".
36746
36747 This is a workaround which replaces broken commit 8f1bc284.
36748
36749 Signed-off-by: Wolfgang Denk <wd@denx.de>
36750
Wolfgang Denk63640012007-10-14 00:13:19 +020036751commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
36752Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
36753Date: Thu Aug 30 15:03:05 2007 +0200
36754
36755 Reduce BOOTDELAY variable to 1 second by default for STK1002
36756
36757 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
36758 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
36759
36760commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
36761Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
36762Date: Thu Aug 30 15:03:04 2007 +0200
36763
36764 Remove double quotation marks around MAC address for STK1002
36765
36766 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
36767 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
36768
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020036769commit ff13ac8c7bbebb238e339592de765c546dba1073
36770Author: Wolfgang Denk <wd@denx.de>
36771Date: Thu Aug 30 14:42:15 2007 +0200
36772
36773 Backout commit 8f1bc284 as it causes TFTP to fail.
36774
36775 Signed-off-by: Wolfgang Denk <wd@denx.de>
36776
36777commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
36778Author: Ed Swarthout <Ed.Swarthout@freescale.com>
36779Date: Thu Aug 30 02:26:17 2007 -0500
36780
36781 Revert "Fix MPC8544DS PCIe3 scsi."
36782
36783 This reverts commit 9468e680.
36784 Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
36785
36786 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
36787
36788commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
36789Author: Grant Likely <grant.likely@secretlab.ca>
36790Date: Wed Aug 29 18:26:24 2007 -0600
36791
36792 tftp: don't implicity trust the format of recevied packets
36793
36794 The TFTP OACK code trusts that the incoming packet is formated as
36795 ASCII text and can be processed by string functions. It also has a
36796 loop limit overflow bug where if the packet length is less than 8, it
36797 ends up looping over *all* of memory to find the 'blksize' string.
36798
36799 This patch solves the problem by forcing the packet to be null
36800 terminated and using strstr() to search for the sub string.
36801
36802 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36803
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020036804commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
36805Author: Stefan Roese <sr@denx.de>
36806Date: Wed Aug 29 16:31:18 2007 +0200
36807
36808 ppc4xx: Change lwmon5 default environment to support Linux RTC
36809
36810 The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
36811 to supply the RTC I2C address as bootline parameter. This patch
36812 adds support for this rtc probing parameter to the bootargs:
36813
36814 "rtc-pcf8563.probe=0,0x51"
36815
36816 Signed-off-by: Stefan Roese <sr@denx.de>
36817
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020036818commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
36819Author: Kim Phillips <kim.phillips@freescale.com>
36820Date: Wed Aug 29 09:06:05 2007 -0500
36821
36822 sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
36823
36824 this had slipped through the cracks, since the sbc board was added
36825 after I wrote the original patch to remove all these symbols, and
36826 before it was merged.
36827
36828 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36829
36830commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
36831Author: Wolfgang Denk <wd@denx.de>
36832Date: Wed Aug 29 14:05:30 2007 +0200
36833
36834 Add mii_init() prototype
36835
36836 to get rid of a *lot* of compiler warnings.
36837
36838 Signed-off-by: Wolfgang Denk <wd@denx.de>
36839
36840commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
36841Author: Wolfgang Denk <wd@denx.de>
36842Date: Wed Aug 29 13:35:03 2007 +0200
36843
36844 Disable network support on cmi_mpc5xx board
36845
36846 ..because it caused compiler errors and there seems to be no
36847 board maintainer to take care of this.
36848
36849 Signed-off-by: Wolfgang Denk <wd@denx.de>
36850
36851commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
36852Author: Kumar Gala <galak@kernel.crashing.org>
36853Date: Mon Aug 20 09:44:00 2007 -0500
36854
36855 Fix MPC8544DS PCIe3 scsi.
36856
36857 <ed.swarthout@freescale.com>
36858
36859 The problem is pciauto_setup_device() getting called from fsl_pci_init.c
36860 is allocating memory space it doesn't need.
36861
36862 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
36863 Signed-off-by: Andy Fleming <afleming@freescale.com>
36864
36865commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
36866Author: Ed Swarthout <Ed.Swarthout@freescale.com>
36867Date: Tue Aug 21 09:38:59 2007 -0500
36868
36869 8548cds fixes
36870
36871 Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
36872 correct consoledev needed for linux boot.
36873 Standardize on fdt{file,addr} var to hold dtb file name.
36874
36875 Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
36876
36877 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
36878
36879commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
36880Author: Haiying Wang <Haiying.Wang@freescale.com>
36881Date: Thu Aug 23 15:20:54 2007 -0400
36882
36883 Enable L2 cache for MPC8568MDS board
36884
36885 The L2 cache size is 512KB for 8568, print out the correct informaiton.
36886
36887 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
36888
36889commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
36890Author: Jason Jin <Jason.jin@freescale.com>
36891Date: Wed Aug 22 17:54:49 2007 +0800
36892
36893 Remove the bios emulator binary files from MAI board
36894
36895 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36896
36897commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
36898Author: Kim Phillips <kim.phillips@freescale.com>
36899Date: Tue Aug 21 17:00:17 2007 -0500
36900
36901 support board vendor-common makefiles
36902
36903 if a board/$(VENDOR)/common/Makefile exists, build it.
36904
36905 also add the first such case, board/freescale/common/Makefile, to
36906 handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
36907 dictated by board configuration.
36908
36909 thusly get rid of alternate build dir errors such as:
36910
36911 FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
36912
36913 by putting the common/ mkdir command in its proper place (the common
36914 Makefile). Common bits from existing individual board Makefiles have
36915 been removed.
36916
36917 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36918
36919commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
36920Author: stefano babic <sbabic@denx.de>
36921Date: Tue Aug 21 15:52:33 2007 +0200
36922
36923 Fix: TFTP is not working on little endian systems
36924
36925 TFTP does not work anymore after multicast tftp
36926 patch was applied on little endian systems.
36927 This patch fix it.
36928
36929 Signed-off-by: Stefano Babic <sbabic@denx.de>
36930
36931commit 5f470948570526e9186f053a3003da7719604e90
36932Author: stefano babic <sbabic@denx.de>
36933Date: Tue Aug 21 15:50:33 2007 +0200
36934
36935 Fix MAC address setting in DM9000 driver.
36936
36937 The logic to check if there is a correct MAC address in the DM9000
36938 EEPROM, added in the last patch, is wrong. Now the MAC address is
36939 always taken from the environment, even if a suitable MAC is present
36940 in the EEPROM.
36941
36942 Signed-off-by: Stefano Babic <sbabic@denx.de>
36943
36944commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
36945Author: Martin Krause <martin.krause@tqs.de>
36946Date: Tue Aug 21 12:40:34 2007 +0200
36947
36948 MPC5xxx: fix some compiler warnings in USB code
36949
36950 Fix the following warnings:
36951 - usb.c:xx: warning: function declaration isn't a prototype
36952 - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
36953 from pointer wihtout a cast
36954
36955 Signed-off-by: Martin Krause <martin.krase@tqs.de>
36956
36957commit 16e23c3f5dab6937f5109365416808c7f15c122b
36958Author: Ed Swarthout <Ed.Swarthout@freescale.com>
36959Date: Mon Aug 20 23:55:33 2007 -0500
36960
36961 fsl_pci_init - Remove self PCSRBAR allocation
36962
36963 CPU physical address space was being wasted by allocating a
36964 PCSRBAR PCI inbound region to it's memory space.
36965
36966 As a rule, PCSRBAR should be left alone since it does not affect
36967 transactions from self and other masters may have changed it.
36968
36969 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
36970
36971commit 0e700ce03a23bb1921149bc77008ace7103d5289
36972Author: Martin Krause <martin.krause@tqs.de>
36973Date: Mon Aug 20 13:56:47 2007 +0200
36974
36975 Fix compiler warning in include/s3c2410.h
36976
36977 This patch fixes the "type qualifiers ignored on fuction return tpye"
36978 warning for include/s3c2410.h
36979
36980 Signed-off-by: Martin Krause <martin.krause@tqs.de>
36981
36982commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
36983Author: Dirk Behme <dirk.behme@googlemail.com>
36984Date: Mon Aug 20 07:09:05 2007 +0200
36985
36986 Fix compilation error for omap2420h4_config.
36987
36988 omap2420h4 switched to cfi, so remove old (already disabled) flash.c
36989 and flash_probe() calls in env_flash.c.
36990
36991 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
36992
36993commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
36994Author: Kim Phillips <kim.phillips@freescale.com>
36995Date: Fri Aug 10 14:34:14 2007 -0500
36996
36997 fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
36998
36999 and make some minor corrections to the FDT part of the README.
37000
37001 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37002
37003commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
37004Author: Wolfgang Denk <wd@denx.de>
37005Date: Wed Aug 29 01:32:05 2007 +0200
37006
37007 Minor coding style cleanup.
37008
37009 Signed-off-by: Wolfgang Denk <wd@denx.de>
37010
37011commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
37012Author: Heiko Schocher <hs@pollux.denx.de>
37013Date: Tue Aug 28 17:40:33 2007 +0200
37014
37015 [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
37016
37017 Signed-off-by: Heiko Schocher <hs@denx.de>
37018
37019commit f98984cb194bb34dbe1db9429d3b51133af30d07
37020Author: Heiko Schocher <hs@pollux.denx.de>
37021Date: Tue Aug 28 17:39:14 2007 +0200
37022
37023 IDE: - make ide_inb () and ide_outb () "weak", so boards can
37024 define there own I/O functions.
37025 (Needed for the pcs440ep board).
37026 - The default I/O Functions are again 8 Bit accesses.
37027 - Added CONFIG_CMD_IDE for the pcs440ep Board.
37028
37029 Signed-off-by: Heiko Schocher <hs@denx.de>
37030
Wolfgang Denk63640012007-10-14 00:13:19 +020037031commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
37032Author: Semih Hazar <semih.hazar@indefia.com>
37033Date: Mon Aug 20 19:00:01 2007 +0300
37034
37035 AVR32: Change prototype of memset
37036
37037 Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
37038 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
37039
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020037040commit 9c02defc29b57945b600714cf61ddfd02b02fb14
37041Author: Yuri Tikhonov <yur@emcraft.com>
37042Date: Sat Aug 25 05:07:16 2007 +0200
37043
37044 POST: limit memory test area to not touch global data anymore
37045
37046 As experienced on lwmon5, on some boards the POST memory test can
37047 corrupt the global data buffer (bd). This patch fixes this issue
37048 by checking and limiting this area.
37049
37050 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
37051 Signed-off-by: Stefan Roese <sr@denx.de>
37052
37053commit 75e1a84d483e36be10e206e539b028c4889e1158
37054Author: Stefan Roese <sr@denx.de>
37055Date: Fri Aug 24 15:41:42 2007 +0200
37056
37057 ppc4xx: Add RTC POST test to lwmon5 board configuration
37058
37059 Since this RTC POST test is taking quite a while to complete
37060 it's only initiated upon special keypress same as the complete
37061 memory POST.
37062
37063 Signed-off-by: Stefan Roese <sr@denx.de>
37064
37065commit d7bfa620037a6d2210159387571bdf93aa32c162
37066Author: Stefan Roese <sr@denx.de>
37067Date: Fri Aug 24 15:19:10 2007 +0200
37068
37069 ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
37070
37071 Signed-off-by: Stefan Roese <sr@denx.de>
37072
37073commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
37074Author: Stefan Roese <sr@denx.de>
37075Date: Thu Aug 23 11:02:37 2007 +0200
37076
37077 ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
37078
37079 This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
37080 board. Now the "eeprom" command can be used to read/write from/to this
37081 device. Additionally a new command was added "eepromwp" to en-/disable
37082 the write-protect of this 2nd EEPROM.
37083
37084 The 1st EEPROM is not affected by this write-protect command.
37085
37086 Signed-off-by: Stefan Roese <sr@denx.de>
37087
37088commit c64fb30e4c5976007d56fc1789c7a0666082b536
37089Author: Stefan Roese <sr@denx.de>
37090Date: Wed Aug 22 08:56:09 2007 +0200
37091
37092 ppc4xx: Remove unused option CFG_INIT_RAM_OCM
37093
37094 Signed-off-by: Stefan Roese <sr@denx.de>
37095
37096commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
37097Author: Stefan Roese <sr@denx.de>
37098Date: Tue Aug 21 16:27:57 2007 +0200
37099
37100 ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
37101
37102 This patch adds support for the matrix keyboard on the lwmon5 board.
37103 Since the implementation in the dsPCI is kind of compatible with the
37104 "old" lwmon board, most of the code is copied from the lwmon
37105 board directory.
37106
37107 Signed-off-by: Stefan Roese <sr@denx.de>
37108
37109commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
37110Author: Wolfgang Denk <wd@denx.de>
37111Date: Sun Aug 19 10:27:34 2007 +0200
37112
37113 Fix some build errors.
37114
37115 Signed-off-by: Wolfgang Denk <wd@denx.de>
37116
37117commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
37118Author: Wolfgang Denk <wd@denx.de>
37119Date: Sat Aug 18 22:00:38 2007 +0200
37120
37121 Update CHANGELOG.
37122
Wolfgang Denk05675732007-08-18 22:00:38 +020037123commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
37124Author: Kim Phillips <kim.phillips@freescale.com>
37125Date: Thu Aug 16 22:52:39 2007 -0500
37126
37127 lib_ppc: make board_add_ram_info weak
37128
37129 platforms wishing to display RAM diagnostics in addition to size,
37130 can do so, on one line, in their own board_add_ram_info()
37131 implementation.
37132
37133 this consequently eliminates CONFIG_ADD_RAM_INFO.
37134
37135 Thanks to Stefan for the hint.
37136
37137 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37138
37139commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
37140Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37141Date: Fri Aug 17 12:43:44 2007 +0900
37142
37143 PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
37144
37145 This patch has been sent on:
37146 - 6 Jun 2007
37147
37148 Many users of PCI config read routines tend to ignore the function
37149 ret value, and are only concerned about the contents of *val. Based
37150 on this, pci_hose_read_config_{byte,word}_via_dword should initialize
37151 the *val on dword read error.
37152
37153 Without this fix, for example, we'll go on scanning bus with vendor or
37154 header_type uninitialized. This brings many unnecessary config trials.
37155
37156 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37157
37158commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
37159Author: Stefan Roese <sr@denx.de>
37160Date: Sat Aug 18 14:37:52 2007 +0200
37161
37162 ColdFire: Fix some remaining problems with CFG_CMD_
37163
37164 Signed-off-by: Stefan Roese <sr@denx.de>
37165
37166commit 8280f6a1c43247616b68224675188e5ccd124650
37167Author: Stefan Roese <sr@denx.de>
37168Date: Sat Aug 18 14:33:02 2007 +0200
37169
37170 Coding style cleanup
37171
37172 Signed-off-by: Stefan Roese <sr@denx.de>
37173
37174commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
37175Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37176Date: Thu Aug 16 19:23:50 2007 -0500
37177
37178 ColdFire: Add M5235EVB Platform for MCF523x
37179
37180 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37181
37182commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
37183Author: Kim Phillips <kim.phillips@freescale.com>
37184Date: Fri Aug 17 09:30:00 2007 -0500
37185
37186 mpc83xx: fix typo in DDR2 programming
37187
37188 introduced in the implement board_add_ram_info patch as I was cleaning out the
37189 magic numbers. sorry.
37190
37191 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37192
37193commit e58fe95784d2514fc9c21028dc59f2b319a35d80
37194Author: Kim Phillips <kim.phillips@freescale.com>
37195Date: Thu Aug 16 22:53:09 2007 -0500
37196
37197 mpc83xx: move freescale boards to boards/freescale
37198
37199 includes build fixes.
37200
37201 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37202
37203commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
37204Author: Kim Phillips <kim.phillips@freescale.com>
37205Date: Thu Aug 16 22:52:59 2007 -0500
37206
37207 mpc83xx: suppress unused variable 'val8' warning
37208
37209 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37210
37211commit bbea46f76f767b919070b4829bf34c86bd223248
37212Author: Kim Phillips <kim.phillips@freescale.com>
37213Date: Thu Aug 16 22:52:48 2007 -0500
37214
37215 mpc83xx: implement board_add_ram_info
37216
37217 add board_add_ram_info, to make memory diagnostic output more
37218 consistent. u-boot banner output now looks like:
37219
37220 DRAM: 256 MB (DDR1, 64-bit, ECC on)
37221
37222 and for boards with SDRAM on the local bus, a line such as this is
37223 added:
37224
37225 SDRAM: 64 MB (local bus)
37226
37227 also replaced some magic numbers with their equivalent define names.
37228
37229 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37230
37231commit 14778585d1389d86d5846efec29e5fce892680ce
37232Author: Tony Li <tony.li@freescale.com>
37233Date: Fri Aug 17 10:35:59 2007 +0800
37234
37235 mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
37236
37237 The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
37238 And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
37239
37240 Signed-off-by Tony Li <tony.li@freescale.com>
37241
37242commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
37243Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37244Date: Thu Aug 16 15:05:11 2007 -0500
37245
37246 ColdFire: Add M54455EVB for MCF5445x
37247
37248 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37249
37250commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
37251Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37252Date: Thu Aug 16 13:20:50 2007 -0500
37253
37254 ColdFire: Add M5253EVBE platform for MCF52x2
37255
37256 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37257
37258commit a605aacd8324094199402816cc6d9124aba57b8d
37259Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37260Date: Thu Aug 16 05:04:31 2007 -0500
37261
37262 ColdFire: Add M5249EVB platform for MCF52x2
37263
37264 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37265
37266commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
37267Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37268Date: Wed Aug 15 20:32:06 2007 -0500
37269
37270 ColdFire: Update Freescale MCF52x2 platforms
37271
37272 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37273
37274commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
37275Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37276Date: Wed Aug 15 19:55:10 2007 -0500
37277
37278 ColdFire: Update EB+MCF-EV123 platform
37279
37280 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37281
37282commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
37283Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37284Date: Wed Aug 15 19:46:38 2007 -0500
37285
37286 ColdFire: update TASREG platform for MCF52x2
37287
37288 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37289
37290commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
37291Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37292Date: Wed Aug 15 19:45:51 2007 -0500
37293
37294 ColdFire: update r5200 platform for MCF52x2
37295
37296 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37297
37298commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
37299Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37300Date: Wed Aug 15 19:43:20 2007 -0500
37301
37302 ColdFire: idmr platform MCF52x2 update
37303
37304 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37305
37306commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
37307Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37308Date: Wed Aug 15 19:41:06 2007 -0500
37309
37310 ColdFire: cobra5272 platform for MCF52x2 update
37311
37312 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37313
37314commit 56115665b4a64c10c01440c57749b265e0908fa4
37315Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37316Date: Wed Aug 15 19:38:15 2007 -0500
37317
37318 ColdFire: MCF52x2 Header files update
37319
37320 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37321
37322commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
37323Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37324Date: Wed Aug 15 19:21:21 2007 -0500
37325
37326 ColdFire: MCF52x2 update
37327
37328 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37329
37330commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
37331Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37332Date: Wed Aug 15 18:46:11 2007 -0500
37333
37334 ColdFire: MCF5329 update cache
37335
37336 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37337
37338commit 7171977fb8fd77cfb6676953fa9a05789c450513
37339Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37340Date: Wed Aug 15 15:40:20 2007 -0500
37341
37342 ColdFire: MCF5329 header file clean up
37343
37344 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37345
37346commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
37347Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37348Date: Wed Aug 15 15:39:17 2007 -0500
37349
37350 ColdFire: MCF5329 Update and cleanup
37351
37352 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37353
37354commit 10327dc5541f947c0cf7e31fef86c4706169607a
37355Author: Andy Fleming <afleming@freescale.com>
37356Date: Thu Aug 16 16:35:02 2007 -0500
37357
37358 Add CONFIG_HAS_ETH0 to all boards with TSEC
37359
37360 The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
37361 to update TSEC1's device-tree node, so we need to add it
37362 to all the boards with TSECs. Do this for 83xx and 86xx, too,
37363 since they will eventually do something similar.
37364
37365 Signed-off-by: Andy Fleming <afleming@freescale.com>
37366
37367commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
37368Author: Kumar Gala <galak@kernel.crashing.org>
37369Date: Thu Aug 16 15:05:04 2007 -0500
37370
37371 Update MPC8544 DS PCI memory map
37372
37373 The PCIe bus that the ULI M1575 is connected to has no possible way of
37374 needing more than the fixed amount of IO & Memory space needed by the ULI.
37375
37376 So make it use far less IO & memory space and have it use the shared LAW. This
37377 free's up a LAW for PCIe1 IO space. Also reduce the amount of IO space needed
37378 by each bus.
37379
37380 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37381
37382commit ea5877e31ed63ade948fd1293895ec23fe01472e
37383Author: Kumar Gala <galak@kernel.crashing.org>
37384Date: Thu Aug 16 11:01:21 2007 -0500
37385
37386 Fix up some fdt issues on 8544DS
37387
37388 It looks like we had a merge issue that duplicated a bit of code
37389 in ft_board_setup. Also, we need to set CONFIG_HAS_ETH0 to get
37390 the MAC address properly set in the device tree on boot for TSEC1
37391
37392 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37393
37394commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
37395Author: Niklaus Giger <niklaus.giger@netstal.com>
37396Date: Thu Aug 16 15:16:03 2007 +0200
37397
37398 PPC4xx:HCU4/5 cleanup
37399
37400 Minor cleanups to confirm to the u-boot coding style.
37401 Some german expressions -> english.
37402 HCU5 enforces a unique IP adress for a given slot in the rack.
37403
37404 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
37405
37406commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
37407Author: Niklaus Giger <niklaus.giger@netstal.com>
37408Date: Thu Aug 16 15:16:02 2007 +0200
37409
37410 PPC4xx:HCU4/5 cleanup ecc/sdram init
37411
37412 Make ecc initialisation robust, as DDR2-ECC errors may be generated
37413 while zeroing the RAM.
37414
37415 Return 16 bytes (a cacheline) less than the available memory, as the
37416 board and/or PPC440EPx might have problems accessing the last bytes.
37417
37418 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
37419
37420commit d35b508a55508535b6e8445b718585d27df733d3
37421Author: Kim Phillips <kim.phillips@freescale.com>
37422Date: Wed Aug 15 22:29:56 2007 -0500
37423
37424 fdt: suppress unused variable 'bd' warning
37425
37426 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37427
37428commit 82bd9ee77490588d4da785d75829ca63d0176baf
37429Author: Andy Fleming <afleming@freescale.com>
37430Date: Wed Aug 15 20:06:50 2007 -0500
37431
37432 Fix warnings from of_data copy fix
37433
37434 Forgot to cast of_flat_tree to ulong.
37435
37436 Signed-off-by: Andy Fleming <afleming@freescale.com>
37437
37438commit 7613afda77d5eec0f47d303025b0c661b70e4c73
37439Author: Andy Fleming <afleming@freescale.com>
37440Date: Wed Aug 15 20:03:44 2007 -0500
37441
37442 Don't wait for disconnected TSECs
37443
37444 The TSEC driver's PHY code waits a long time for autonegotiation to
37445 complete, even if the link is down. The PHY knows the link is
37446 down or up before autonegotiation completes, so we can short-circuit
37447 the process if the link is down.
37448
37449 Signed-off-by: Andy Fleming <afleming@freescale.com>
37450
37451commit b96c83d4ae475a70ef2635cd0e748174c44c8601
37452Author: Andy Fleming <afleming@freescale.com>
37453Date: Wed Aug 15 20:03:34 2007 -0500
37454
37455 Fix numerous bugs in the 8568 UEC support
37456
37457 Actually, fixed a large bug in the UEC for *all* platforms.
37458 How did this ever work?
37459
37460 uec_init() did not follow the spec for eth_init(), and returned
37461 0 on success. Switch it to return the link like tsec_init()
37462 (and 0 on error)
37463
37464 The immap for the 8568 was defined based on MPC8568, rather than
37465 CONFIG_MPC8568
37466
37467 CONFIG_QE was off
37468
37469 CONFIG_ETHPRIME was set to "Freescale GETH". Now is "FSL UEC0"
37470
37471 Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
37472 enabled
37473
37474 Signed-off-by: Andy Fleming <afleming@freescale.com>
37475
37476commit 3a79013e2adda53332dfd0b511066a805e929a9d
37477Author: Andy Fleming <afleming@freescale.com>
37478Date: Wed Aug 15 20:03:25 2007 -0500
37479
37480 Define tsec flag values in config files
37481
37482 The tsec_info structure and array has a "flags" field for each
37483 ethernet controller. This field is the only reason there are
37484 settings. Switch to defining TSECn_FLAGS for each controller
37485 in the config header, and we can greatly simplify the array, and
37486 also simplify the addition of future boards.
37487
37488 Signed-off-by: Andy Fleming <afleming@freescale.com>
37489
37490commit ec7238229507e7f47533a611ea8c53319d234cf3
37491Author: Andy Fleming <afleming@freescale.com>
37492Date: Wed Aug 15 20:03:13 2007 -0500
37493
37494 Add support for building all boards with a TSEC
37495
37496 Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
37497 Now we can do a MAKEALL test on all of them!
37498
37499 Signed-off-by: Andy Fleming <afleming@freescale.com>
37500
37501commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
37502Author: Andy Fleming <afleming@freescale.com>
37503Date: Wed Aug 15 17:30:56 2007 -0500
37504
37505 Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
37506
37507 The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
37508 neglected to *also* put the code inside the similar #ifdef
37509 for CONFIG_OF_FLAT_TREE.
37510
37511 Signed-off-by: Andy Fleming <afleming@freescale.com>
37512
37513commit 78f9fef7f406078c8bf7191e665a73f795157746
37514Author: Scott Wood <scottwood@freescale.com>
37515Date: Wed Aug 15 15:46:46 2007 -0500
37516
37517 mpc885ads: Don't define CONFIG_BZIP2.
37518
37519 bzip2 requires a significant chunk of malloc space, and there isn't
37520 enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
37521 and a downloaded image at 0x400000.
37522
37523 Signed-off-by: Scott Wood <scottwood@freescale.com>
37524
37525commit 002275a3ed8b114885f6702d6d544d0780dfe689
37526Author: Michal Simek <Monstr@seznam.cz>
37527Date: Thu Aug 16 08:54:10 2007 +0200
37528
37529 Bios emulator - fix microblaze toolchain problem
37530
37531 microblaze CPU have problem with bios_emulator code.
37532 Microblaze toolchain doesn't support PRAGMA PACK.
37533
37534 Signed-off-by: Michal Simek <monstr@monstr.eu>
37535
37536commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
37537Author: Wolfgang Denk <wd@denx.de>
37538Date: Thu Aug 16 11:51:04 2007 +0200
37539
37540 Minor Coding Style fix; Update CHANGELOG file.
37541
37542 Signed-off-by: Wolfgang Denk <wd@denx.de>
37543
37544commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
37545Author: Stefan Roese <sr@denx.de>
37546Date: Thu Aug 16 11:21:49 2007 +0200
37547
37548 ppc4xx: Remove #warning in esd auto_update.c
37549
37550 Signed-off-by: Stefan Roese <sr@denx.de>
37551
Wolfgang Denka5a38f42007-08-16 11:51:04 +020037552commit 2d78074d2e806edc380c1464eb9e5df335ece65e
37553Author: Stefan Roese <sr@denx.de>
37554Date: Fri Jun 22 17:32:28 2007 +0200
37555
37556 ppc7xx: Update CPCI750 board
37557
37558 This small CPCI750 update extends the board specific command
37559 "show_config" to display the Marvell strapping registers and
37560 extends the PCI IDE controller.
37561
37562 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
37563 Signed-off-by: Stefan Roese <sr@denx.de>
37564
Wolfgang Denk63640012007-10-14 00:13:19 +020037565commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
37566Author: Michal Simek <monstr@monstr.eu>
37567Date: Thu Aug 16 10:46:28 2007 +0200
37568
37569 [FIX] Changes for bios_emulator code for others architecture
37570
37571commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
37572Author: Michal Simek <monstr@monstr.eu>
37573Date: Thu Aug 16 10:45:09 2007 +0200
37574
37575 [FIX] Remove unused include file
37576
Wolfgang Denk05675732007-08-18 22:00:38 +020037577commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
37578Author: Stefan Roese <sr@denx.de>
37579Date: Thu Aug 16 10:18:33 2007 +0200
37580
37581 ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
37582
37583 Signed-off-by: Stefan Roese <sr@denx.de>
37584
37585commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
37586Author: Stefan Roese <sr@denx.de>
37587Date: Thu Aug 16 09:54:51 2007 +0200
37588
37589 Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
37590
37591 Signed-off-by: Stefan Roese <sr@denx.de>
37592
37593commit 02ba7022f62bb75908296c58c63866e1d294b69a
37594Author: Stefan Roese <sr@denx.de>
37595Date: Thu Aug 16 09:52:29 2007 +0200
37596
37597 ppc4xx: Update Sequoia/Rainier bootstrap command
37598
37599 As suggested by David Mitchell, here an update for the Sequoia/Rainier
37600 bootstrap command.
37601
37602 Signed-off-by: Stefan Roese <sr@denx.de>
37603
37604commit 35cc4e4823668e8745854899cfaedd4489beb0ef
37605Author: Kim Phillips <kim.phillips@freescale.com>
37606Date: Wed Aug 15 22:30:39 2007 -0500
37607
37608 mpc83xx: enable libfdt by default on freescale boards
37609
37610 this enables libfdt code by default for the
37611 freescale mpc8313erdb, mpc832xemds, mpc8349emds,
37612 mpc8349itx and gp boards.
37613
37614 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37615
37616commit 3fde9e8b22cfbd7af489214758f9839a206576cb
37617Author: Kim Phillips <kim.phillips@freescale.com>
37618Date: Wed Aug 15 22:30:33 2007 -0500
37619
37620 mpc83xx: migrate remaining freescale boards to libfdt
37621
37622 this adds libfdt support code for the freescale
37623 mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
37624 and gp boards.
37625
37626 Boards remain compatible with OF_FLAT_TREE.
37627
37628 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37629
37630commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
37631Author: Kim Phillips <kim.phillips@freescale.com>
37632Date: Wed Aug 15 22:30:26 2007 -0500
37633
37634 mpc83xx: move common /memory node update mechanism to cpu.c
37635
37636 also adds common prototypes to include/common.h.
37637
37638 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37639
37640commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
37641Author: Kim Phillips <kim.phillips@freescale.com>
37642Date: Wed Aug 15 22:30:19 2007 -0500
37643
37644 mpc83xx: remaining 8360 libfdt fixes
37645
37646 PCI clocks and QE frequencies weren't being updated, and the core clock
37647 was being updated incorrectly. This patch also adds a /memory node if
37648 it doesn't already exist prior to update.
37649
37650 plus some cosmetic trimming to single line comments.
37651
37652 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37653
37654commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
37655Author: Kim Phillips <kim.phillips@freescale.com>
37656Date: Wed Aug 15 22:30:12 2007 -0500
37657
37658 mpc83xx: fix UEC2->1 typo in libfdt setup code
37659
37660 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37661
37662commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
37663Author: Kim Phillips <kim.phillips@freescale.com>
37664Date: Wed Aug 15 22:30:05 2007 -0500
37665
37666 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
37667
37668 and reorder the existing 83xx maintainers alpha.
37669
37670 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37671
Wolfgang Denk63640012007-10-14 00:13:19 +020037672commit 5b4de9309d7a03aa1db2e5391ab696363391f460
37673Author: Michal Simek <monstr@monstr.eu>
37674Date: Wed Aug 15 21:15:05 2007 +0200
37675
37676 [FIX] Resolve problem with warnings
37677 microblaze toolchain don't support PRAGMA PACK.
37678
37679commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
37680Author: Michal Simek <monstr@monstr.eu>
37681Date: Wed Aug 15 21:05:07 2007 +0200
37682
37683 [FIX] Correction command setting for Microblaze boards
37684
37685commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
37686Author: Michal Simek <monstr@monstr.eu>
37687Date: Wed Aug 15 21:03:41 2007 +0200
37688
37689 [FIX] Correction command definition
37690
Wolfgang Denka5a38f42007-08-16 11:51:04 +020037691commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
37692Author: Jon Loeliger <jdl@freescale.com>
37693Date: Wed Aug 15 11:55:35 2007 -0500
37694
37695 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
37696
37697 Remove a leftover in net/tftp.c while we're at it.
37698
37699 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37700
37701commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
37702Author: Jon Loeliger <jdl@freescale.com>
37703Date: Wed Aug 15 12:20:40 2007 -0500
37704
37705 Move the MPC8641HPCN board under board/freescale.
37706
37707 Minor path corrections needed to ensure buildability.
37708
37709 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37710
37711commit 8662577fe36fdb6a44b55b998d9daac6392a736a
37712Author: Jon Loeliger <jdl@freescale.com>
37713Date: Wed Aug 15 11:46:22 2007 -0500
37714
37715 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
37716
37717 Remove a leftover in net/tftp.c while we're at it.
37718
37719 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37720
37721commit 210f463c71917b7a4495c2103c228b9c179ae64d
37722Author: Jerry Van Baren <gvb.uboot@gmail.com>
37723Date: Wed Aug 15 11:13:15 2007 -0400
37724
37725 Fix where the #ifdef CFG_BOOTMAPSZ is placed.
37726
37727 Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
37728 interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
37729 when it should have gone inside of the conditional. As a result, it
37730 broke non-LIBFDT board builds.
37731
37732 Also added a missing "not." to the comment.
37733
37734 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
37735
Wolfgang Denk05675732007-08-18 22:00:38 +020037736commit 0e19209767194a97cec6d93dba9e64d1da8d548e
37737Author: Niklaus Giger <niklaus.giger@netstal.com>
37738Date: Wed Aug 15 12:14:23 2007 +0200
37739
37740 PPC4xx:HCU4/5-Board fix compile warning
37741
37742 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
37743
Wolfgang Denka5a38f42007-08-16 11:51:04 +020037744commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
37745Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37746Date: Tue Aug 14 14:06:45 2007 -0500
37747
37748 Fix malloc size error in ahci_init_one.
37749
37750 Typically this causes scsi init to corrupt the
37751 devlist and break the coninfo command.
37752 Fix a compiler size warning.
37753
37754 Signed-off-by: Jason Jin <jason.jin@freescale.com>
37755 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37756 Acked-by: Andy Fleming <afleming@freescale.com>
37757
37758commit b361acd64fd2525c081b9b288b0804efe209c0e9
37759Author: ksi@koi8.net <ksi@koi8.net>
37760Date: Tue Aug 14 10:02:16 2007 -0700
37761
37762 TI DaVinci - fix unsupported %hhx format
37763
37764 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
37765
37766commit f01dbb5424a81453c81190dd30e945891466f621
37767Author: Wolfgang Denk <wd@denx.de>
37768Date: Tue Aug 14 18:42:36 2007 +0200
37769
37770 Coding style cleanup. Update CHANGELOG.
37771
37772 Signed-off-by: Wolfgang Denk <wd@denx.de>
37773
Wolfgang Denkf01dbb52007-08-14 18:42:36 +020037774commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
37775Author: Andy Fleming <afleming@freescale.com>
37776Date: Tue Aug 14 10:32:59 2007 -0500
37777
37778 Fix initrd/dtb interaction
37779
37780 The original code would wrongly relocate the blob to be right before
37781 the initrd if it existed. The blob *must* be within CFG_BOOTMAPSZ,
37782 if it is defined. So we make two changes:
37783
37784 1) flag the blob for relocation whenever its address is above BOOTMAPSZ
37785
37786 2) If the blob is being relocated, relocate it before kbd, not initrd
37787
37788 Signed-off-by: Andy Fleming <afleming@freescale.com>
37789
37790commit e54b970173769307a116bd34028b6d0c2eea2a4e
37791Author: Peter Pearse <peter.pearse@arm.com>
37792Date: Tue Aug 14 15:40:00 2007 +0100
37793
37794 Supply spi interface in at45.c
37795
Wolfgang Denka5a38f42007-08-16 11:51:04 +020037796commit 4ce846ec59f36b85d6644a769690ad3feb667575
37797Author: Stefan Roese <sr@denx.de>
37798Date: Tue Aug 14 15:12:01 2007 +0200
37799
37800 POST: Fix merge problem
37801
37802 Signed-off-by: Stefan Roese <sr@denx.de>
37803
37804commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
37805Author: Stefan Roese <sr@denx.de>
37806Date: Tue Aug 14 15:03:17 2007 +0200
37807
37808 Coding style cleanup
37809
37810 Signed-off-by: Stefan Roese <sr@denx.de>
37811
37812commit 779e975117a75e91fcebe226a63104dbfb924ab1
37813Author: Stefan Roese <sr@denx.de>
37814Date: Tue Aug 14 14:44:41 2007 +0200
37815
37816 ppc4xx: Add initial Zeus (PPC405EP) board support
37817
37818 Signed-off-by: Stefan Roese <sr@denx.de>
37819
37820commit c5a172a5fd636c12467429e3f7910e53773979c6
37821Author: Stefan Roese <sr@denx.de>
37822Date: Tue Aug 14 14:41:55 2007 +0200
37823
37824 POST: Add option for external ethernet loopback test
37825
37826 When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
37827 is not done using an internal loopback connection, but by assuming
37828 that an external loopback connector is plugged into the board.
37829
37830 Signed-off-by: Stefan Roese <sr@denx.de>
37831
37832commit eb2b4010ae426245172988804ee8d9193fb41038
37833Author: Stefan Roese <sr@denx.de>
37834Date: Tue Aug 14 14:39:44 2007 +0200
37835
37836 POST: Add ppc405 support to cache and UART POST
37837
37838 Signed-off-by: Stefan Roese <sr@denx.de>
37839
Wolfgang Denkf01dbb52007-08-14 18:42:36 +020037840commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
37841Author: Peter Pearse <peter.pearse@arm.com>
37842Date: Tue Aug 14 10:46:32 2007 +0100
37843
37844 Replace lost end of at45.c.
37845
37846commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
37847Author: Peter Pearse <peter.pearse@arm.com>
37848Date: Tue Aug 14 10:30:06 2007 +0100
37849
37850 Update Makefiles for merged and split at45.c.
37851
37852commit 3454cece2db57cb9eb7087995f7e73066a163f71
37853Author: Peter Pearse <peter.pearse@arm.com>
37854Date: Tue Aug 14 10:21:06 2007 +0100
37855
37856 Delete the merged files.
37857
37858commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
37859Author: Peter Pearse <peter.pearse@arm.com>
37860Date: Tue Aug 14 10:14:05 2007 +0100
37861
37862 Add the files.
37863
37864commit d4fc6012fd0a5c211b825691f44b06f8032c0551
37865Author: Peter Pearse <peter.pearse@arm.com>
37866Date: Tue Aug 14 10:10:52 2007 +0100
37867
37868 Add MACH_TYPE records for several AT91 boards.
37869 Merge to two at45.c files into a common file, split to at45.c and spi.c
37870 Fix spelling error in DM9161 PHY Support.
37871 Initialize at91rm9200 board (and set LED).
37872 Add PIO control for at91rm9200dk LEDs and Mux.
37873 Change dataflash partition boundaries to be compatible with Linux 2.6.
37874
37875 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
37876 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
37877
37878commit 4ef35e53c693556c54b0c22d6f873de87bade253
37879Author: Wolfgang Denk <wd@denx.de>
37880Date: Tue Aug 14 09:54:46 2007 +0200
37881
37882 Coding style cleanup, update CHANGELOG
37883
37884 Signed-off-by: Wolfgang Denk <wd@denx.de>
37885
Wolfgang Denk4ef35e52007-08-14 09:54:46 +020037886commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
37887Author: Wolfgang Denk <wd@denx.de>
37888Date: Tue Aug 14 09:47:27 2007 +0200
37889
37890 Coding style cleanup; rebuild CHANGELOG
37891
37892commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
37893Author: Randy Vinson <rvinson@linuxbox.(none)>
37894Date: Tue Feb 27 19:42:22 2007 -0700
37895
37896 85xxCDS: Add make targets for legacy systems.
37897
37898 The PCI ID select values on the Arcadia main board differ depending
37899 on the version of the hardware. The standard configuration supports
37900 Rev 3.1. The legacy target supports Rev 2.x.
37901
37902 Signed-off-by Randy Vinson <rvinson@mvista.com>
37903
37904commit e41094c7e38177c755fbd9b182018069614f080d
37905Author: Andy Fleming <afleming@freescale.com>
37906Date: Tue Aug 14 01:50:09 2007 -0500
37907
37908 85xxCDS: Enable the VIA PCI-to-ISA bridge.
37909
37910 Author: Randy Vinson <rvinson@linuxbox.(none)>
37911
37912 Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
37913 Arcadia main board.
37914
37915 Signed-off-by: Randy Vinson <rvinson@mvista.com>
37916 Signed-off-by: York Sun <yorksun@freescale.com>
37917
37918commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
37919Author: Andy Fleming <afleming@freescale.com>
37920Date: Tue Aug 14 00:14:25 2007 -0500
37921
37922 Add support for UEC to 8568
37923
37924 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
37925 Signed-off-by: Andy Fleming <afleming@freescale.com>
37926
37927commit c59e4091ffe0148398b9e9ff14a019ea038b7432
37928Author: Haiying Wang <Haiying.Wang@freescale.com>
37929Date: Tue Jun 19 14:18:34 2007 -0400
37930
37931 Add PCI support for MPC8568MDS board
37932
37933 This patch is against u-boot-mpc85xx.git of www.denx.com
37934
37935 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
37936 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
37937
37938commit d111d6382c99fdea08c2312eeeae8786945e189a
37939Author: Haiying Wang <Haiying.Wang@freescale.com>
37940Date: Tue Jun 19 14:18:32 2007 -0400
37941
37942 Empirically set cpo and clk_adjust for mpc85xx DDR2 support
37943
37944 This patch is against u-boot-mpc85xx.git of www.denx.com
37945
37946 Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
37947 both MPC8548CDS board and MPC8568MDS board, especially for supporting
37948 533MHz DDR2.
37949
37950 Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
37951 DDR2 on all current board versions especially ver 1.92 or later to bring
37952 up.
37953
37954 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
37955
37956commit 3db0bef59eab1155801618cef5c481e97553b597
37957Author: Kumar Gala <galak@kernel.crashing.org>
37958Date: Tue Aug 7 18:07:27 2007 -0500
37959
37960 Use an absolute address when jumping out of 4k boot page
37961
37962 On e500 when we leave the 4k boot page we should use an absolute address since
37963 we don't know where the board code may want us to be really running at.
37964
37965 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37966
37967commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
37968Author: Andy Fleming <afleming@freescale.com>
37969Date: Mon Aug 13 14:49:59 2007 -0500
37970
37971 MPC85xx BA bits not set for 3-bit bank address DIMM
37972
37973 The current implementation does not set the number of bank address bits
37974 (BA) in the processor. The default assumes 2 logical bank bits. This
37975 works fine for a DIMM that uses devices with 4 internal banks (SPD
37976 byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
37977 devices with 8 internal banks (SPD byte17 = 0x8).
37978
37979 Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
37980
37981commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
37982Author: Andy Fleming <afleming@freescale.com>
37983Date: Mon Aug 13 14:38:06 2007 -0500
37984
37985 Fix minor 85xx warnings
37986
37987 Some patches had inserted warnings into the build:
37988 * mpc8560ads declared data without using it
37989 * cpu_init declared ecm and immap without using it in all CONFIGs
37990 * MPC8548CDS.h had its default filenames changed so that they contained
37991 "\m" in the paths. Made the defaults not Windows-specific (or
37992 anything-specific)
37993
37994 Signed-off-by: Andy Fleming <afleming@freescale.com>
37995
37996commit f2cff6b104f82b993bef6086ce0c97159bbe1add
37997Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37998Date: Fri Jul 27 01:50:52 2007 -0500
37999
38000 8548cds PCIE support.
38001
38002 Make the early L1 cache stack region guarded to prevent speculative
38003 fetches outside the locked range.
38004
38005 Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
38006 init.S whitespace cleanup.
38007
38008 Allow TEXT_BASE value to be specified on command line. This allows it
38009 to be set to 0xfffc0000 which cuts the uboot binary in half.
38010
38011 Clear and enable lbc and ecm errors.
38012
38013 Update last_busno in device-tree for pci and pcie.
38014
38015 Remove load of obsolete cpu/mpc85xx/pci.0
38016
38017 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38018 Acked-by: Andy Fleming <afleming@freescale.com>
38019
38020commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
38021Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38022Date: Fri Jul 27 01:50:51 2007 -0500
38023
38024 8544ds PCIE support
38025
38026 PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
38027
38028 Enable LBC and ECM errors and clear error registers.
38029
38030 Add tftpflash env var to get uboot from tftp server and flash it.
38031
38032 Add pci/pcie convenience env vars to display register space:
38033 "run pcie3regs" to see all pcie3 ccsr registers
38034 "run pcie3cfg" to see all cfg registers
38035 Whitespace cleanup and MPC8544DS.h
38036
38037 Enable CONFIG_INTERRUPTS.
38038
38039 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38040 Acked-by: Andy Fleming <afleming@freescale.com>
38041
38042commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
38043Author: Andy Fleming <afleming@freescale.com>
38044Date: Tue Aug 14 01:34:21 2007 -0500
38045
38046 85xx start.S cleanup and exception support
38047
38048 From: Ed Swarthout <Ed.Swarthout@freescale.com>
38049
38050 Support external interrupts from platform to eliminate system hangs.
38051 Define CONFIG_INTERRUPTS board configure option to enable.
38052 Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
38053
38054 Remove extra cpu initialization redundant with hardware initialization.
38055 Whitespace cleanup.
38056
38057 Define and use _START_OFFSET consistent with other processors using
38058 ppc_asm.tmpl
38059
38060 Move additional code from .text to boot page to make room for
38061 exception vectors at start of image.
38062
38063 Handle Machine Check, External and Critical exceptions.
38064
38065 Fix e500 machine check error determination in traps.c
38066
38067 TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
38068
38069 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38070 Acked-by: Andy Fleming <afleming@freescale.com>
38071
38072commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
38073Author: Andy Fleming <afleming@freescale.com>
38074Date: Tue Aug 14 01:33:18 2007 -0500
38075
38076 Add MPC8544DS README
38077
38078 Signed-off-by: Andy Fleming <afleming@freescale.com>
38079
38080commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
38081Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38082Date: Fri Jul 27 01:50:48 2007 -0500
38083
38084 85xx allow debugger to configure ddr.
38085
38086 Only check for mpc8548 rev 1 when compiled for 8548.
38087
38088 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38089 Acked-by: Andy Fleming <afleming@freescale.com>
38090
38091commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
38092Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38093Date: Fri Jul 27 01:50:47 2007 -0500
38094
38095 mpc85xx L2 cache reporting and SRAM relocation option.
38096
38097 Allow debugger to override flash cs0/cs1 settings to enable alternate
38098 boot regions
38099
38100 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38101 Acked-by: Andy Fleming <afleming@freescale.com>
38102
38103commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
38104Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38105Date: Fri Jul 27 01:50:46 2007 -0500
38106
38107 e500 needs ppc_asm.tmp MCK_EXCEPTION
38108
38109 Always define MCK_EXCEPTION macro - so e500 can use it too.
38110
38111 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38112 Acked-by: Andy Fleming <afleming@freescale.com>
38113
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +020038114commit 53a5c424bf8655b7b4e2c305a441963259a26a81
38115Author: David Updegraff <dave@cray.com>
38116Date: Mon Jun 11 10:41:07 2007 -0500
38117
38118 multicast tftp: RFC2090
38119
38120 Implemented IETF RFC2090, Multicast TFTP. Initial implementation
38121 on Realtek RTL8139 and Freescale TSEC.
38122
38123 Signed-off-by: David Updegraff <dave@cray.com>
38124 Signed-off-by: Ben Warren <bwarren@qstreams.com>
38125
38126commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
38127Author: Wilson Callan <wcallan@savantav.com>
38128Date: Sat Jul 28 10:56:13 2007 -0400
38129
38130 New CONFIG_BOOTP_SERVERIP option
38131
38132 Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
38133 from the bootp server
38134
38135 Signed-off-by: Wilson Callan <wcallan@savantav.com>
38136 Signed-off-by: Ben Warren <bwarren@qstreams.com>
38137
38138commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
38139Author: Mike Rapoport <mike@compulab.co.il>
38140Date: Sun Aug 12 08:48:27 2007 +0300
38141
38142 Add ability to take MAC address from the environment to DM9000 driver
38143
38144 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
38145 Signed-off-by: Ben Warren <bwarren@qstreams.com>
38146
38147commit be5d72d10d47609326226225181e301fb9a33b58
38148Author: Wolfgang Denk <wd@denx.de>
38149Date: Mon Aug 13 21:57:53 2007 +0200
38150
38151 Minor coding style cleanup. Update CHANGELOG.
38152
38153 Signed-off-by: Wolfgang Denk <wd@denx.de>
38154
38155commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
38156Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
38157Date: Sat Aug 11 06:54:58 2007 -0500
38158
38159 Modify SBC8641D to use new Freescale PCI routines
38160
38161 PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
38162 adapter.
38163
38164 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
38165 Signde-off-by: Jon Loeliger <jdl@freescale.com>
38166
Wolfgang Denkbe5d72d2007-08-13 21:57:53 +020038167commit a08458303e7f9db67f296980036d3292c35cb45c
38168Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38169Date: Fri Jun 29 18:38:51 2007 +0200
38170
38171 atmel_mci: Fix data timeout value
38172
38173 Calculate the data timeout based on values from the CSD instead of
38174 just using a hardcoded DTOR value. This is a backport of a similar fix
38175 in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
38176 instead of down.
38177
38178 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38179
38180commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
38181Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38182Date: Mon Aug 13 17:22:31 2007 +0200
38183
38184 AVR32: Include <div64.h> instead of <asm/div64.h>
38185
38186 include/asm-avr32/div64.h was recently moved to include/div64.h, but
38187 cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
38188 the patch was merged perhaps?)
38189
38190 This patch updates cpu/at32ap/interrupts.c so that the avr32 port
38191 compiles again.
38192
38193 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38194
38195commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
38196Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38197Date: Wed Jun 27 13:34:26 2007 +0200
38198
38199 atmel_mci: Use 512 byte blocksize if possible
38200
38201 Instead of always using the largest blocksize the card supports, check
38202 if it can support smaller block sizes and use 512 bytes if possible.
38203 Most cards do support this, and other parts of u-boot seem to have
38204 trouble with block sizes different from 512 bytes.
38205
38206 Also enable underrun/overrun protection.
38207
38208 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38209 Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
38210
Wolfgang Denka5a38f42007-08-16 11:51:04 +020038211commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
38212Author: Stefan Roese <sr@denx.de>
38213Date: Mon Aug 13 09:05:33 2007 +0200
38214
38215 ppc4xx: Fix problem in PLL clock calculation
38216
38217 This patch was originall provided by David Mitchell <dmitchell@amcc.com>
38218 and fixes a bug in the PLL clock calculation.
38219
38220 Signed-off-by: Stefan Roese <sr@denx.de>
38221
Wolfgang Denkbe5d72d2007-08-13 21:57:53 +020038222commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
38223Author: Wolfgang Denk <wd@denx.de>
38224Date: Sun Aug 12 21:34:50 2007 +0200
38225
38226 Update CHANGELOG
38227
Wolfgang Denk9986bc32007-08-12 21:34:50 +020038228commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
38229Author: Wolfgang Denk <wd@denx.de>
38230Date: Sun Aug 12 21:34:34 2007 +0200
38231
38232 Minor alignment of output, 2nd try.
38233 Also update CHANGELOG
38234
38235 Signed-off-by: Wolfgang Denk <wd@denx.de>
38236
38237commit 6b309f22a724fad8418e811751a0741b893419cf
38238Author: Wolfgang Denk <wd@denx.de>
38239Date: Sun Aug 12 20:35:49 2007 +0200
38240
38241 Minor alignment of output
38242
38243 Signed-off-by: Wolfgang Denk <wd@denx.de>
38244
38245commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
38246Author: Wolfgang Denk <wd@denx.de>
38247Date: Sun Aug 12 18:28:18 2007 +0200
38248
38249 Cleanup output on ADS5121 board
38250
38251 Signed-off-by: Wolfgang Denk
38252
38253commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
38254Author: Wolfgang Denk <wd@denx.de>
38255Date: Sun Aug 12 15:11:38 2007 +0200
38256
38257 Adapt board configuration and fix kernel crash on MCC200 board.
38258
38259 The update procedure was modified to turn off the USB subsystem
38260 before exit for MCC200 and TRAB. This is necessary as otherwise the
38261 USB controller continues to write periodically to system memory!
38262
38263 MCC200-specific notes:
38264 - the patch disables the magic key check for MCC200
38265 - the patch contains the configuration changes made
38266 for the new revision of the board.
38267
38268 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38269 Signed-off-by: Wolfgang Denk <wd@denx.de>
38270
38271commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
38272Author: Wolfgang Denk <wd@denx.de>
38273Date: Sun Aug 12 14:47:54 2007 +0200
38274
38275 Adjust default configuration of ADS5121 board.
38276
38277 Signed-off-by: Wolfgang Denk <wd@denx.de>
38278
38279commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
38280Author: Wolfgang Denk <wd@denx.de>
38281Date: Sun Aug 12 14:27:39 2007 +0200
38282
38283 Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
38284
38285 Signed-off-by: Wolfgang Denk <wd@denx.de>
38286
38287commit 5fe6be6208dda852c3564e384bd78d75784dea3e
38288Author: Gerald Van Baren <vanbaren@cideas.com>
38289Date: Tue Aug 7 21:14:22 2007 -0400
38290
38291 Improve error print messages.
38292
38293 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38294
38295commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
38296Author: Kim Phillips <kim.phillips@freescale.com>
38297Date: Tue Jul 17 13:57:04 2007 -0500
38298
38299 fdt: allow for builds that don't want env and bd_t nodes
38300
38301 protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
38302 area.
38303
38304 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38305
38306commit 91148bf7aeba142d6f348805db7625db7da64d6f
38307Author: Kim Phillips <kim.phillips@freescale.com>
38308Date: Tue Jul 17 13:56:53 2007 -0500
38309
38310 fdt: do board setup based on fdt address specified on bootm line
38311
38312 The last fdt patch to bootm did board setup based on the address
38313 specified by a prior fdt address command invocation. The bootm
38314 code, as its call to fdt_chosen does, should use the fdt specified
38315 by the user on the bootm command. Note this restores full
38316 functionality for the 8360's existing default boot environment
38317 values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
38318 before booting a kernel).
38319
38320 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38321
38322commit e125a2ffc209dd34794e326c7175658253beadf3
38323Author: Gerald Van Baren <vanbaren@cideas.com>
38324Date: Tue Jul 10 20:40:39 2007 -0400
38325
38326 Call ft_board_setup() from the bootm command.
38327
38328 In the patch titled "Create new fdt boardsetup command..." I removed the
38329 call to ft_board_setup() from the routine fdt_chosen(), but I forgot
38330 to add a direct call back into cmd_bootm.c
38331
38332 This fixes the oversight by adding the direct call to the bootm command.
38333
38334 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38335
38336commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
38337Author: Gerald Van Baren <vanbaren@cideas.com>
38338Date: Mon Jun 25 23:25:28 2007 -0400
38339
38340 Create new fdt boardsetup command, fix bug parsing [] form of set values.
38341
38342 Previously ft_board_setup() was called by fdt_chosen() which was not
38343 really correctly structured. This splits ft_board_setup() out by creating
38344 a new fdt boardsetup command.
38345
38346 Fix a bug when parsing fdt set command values which have the square
38347 bracket form [00 11 22 33] - the length was updated incorrectly in when
38348 parsing that form.
38349
38350 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38351
38352commit 6f35ded9e85493595e0eb66a82b502a95326d049
38353Author: Gerald Van Baren <vanbaren@cideas.com>
38354Date: Mon Jun 25 20:55:58 2007 -0400
38355
38356 Tighten up the error messages.
38357
38358 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38359
38360commit c45874b05aae897a6c29d1a97d4bb708fca2756c
38361Author: Gerald Van Baren <vanbaren@cideas.com>
38362Date: Mon Jun 25 19:52:23 2007 -0400
38363
38364 Asthetic improvements: error messages and line lengths.
38365
38366 Tighten up the error messages, split overlength lines.
38367
38368 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38369
38370commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
38371Author: Gerald Van Baren <vanbaren@cideas.com>
38372Date: Fri May 25 22:08:57 2007 -0400
38373
38374 Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
38375
38376 The fdt_chosen() function was adding/seting some properties ad-hoc
38377 improperly and duplicated (poorly) what was done in ft_board_setup()
38378
38379 Clean up long lines (setting properties, printing errors).
38380
38381 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38382
38383commit 06e19a07701c968f15d72c083b5872a1a11c7b01
38384Author: Gerald Van Baren <vanbaren@cideas.com>
38385Date: Mon May 21 23:27:16 2007 -0400
38386
38387 For fdt_find_node_by_path(), handle the root path properly.
38388
38389 Also removes the special case root path detection in cmd_fdt.c since it
38390 is no longer necessary.
38391
38392 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38393
38394commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
38395Author: Gerald Van Baren <vanbaren@cideas.com>
38396Date: Thu May 17 23:54:36 2007 -0400
38397
38398 Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
38399
38400 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
38401 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38402
38403commit 1a861169bc3758f9de3aead62b058736c6891246
38404Author: Gerald Van Baren <vanbaren@cideas.com>
38405Date: Wed Jun 6 22:47:58 2007 -0400
38406
38407 Replace fdt_node_offset() with fdt_find_node_by_path().
38408
38409 The new name matches more closely the kernel's name, which is also
38410 a much better description.
38411
38412 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
38413 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38414
38415commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
38416Author: Gerald Van Baren <vanbaren@cideas.com>
38417Date: Wed May 16 22:39:59 2007 -0400
38418
38419 Fix cmd_fdt line lengths, refactor code.
38420
38421 Break lines that were greater than 80 characters in length.
38422 Move the fdt print and property parsing code to separate static functions
38423 to reduce coding clutter in the fdt_cmd handling body.
38424
38425 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38426
38427commit 25114033ab21788810c48ba4df103b649da1223b
38428Author: Gerald Van Baren <vanbaren@cideas.com>
38429Date: Sat May 12 09:47:25 2007 -0400
38430
38431 FDT command improvements.
38432
38433 Fix "fdt set" so that it will create a non-existing property.
38434 Add "fdt mknode" to create nodes.
38435
38436 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38437
38438commit 38eb508e8e811e2e57628f445de3a24a23c7d804
38439Author: Gerald Van Baren <vanbaren@cideas.com>
38440Date: Sat May 12 09:45:46 2007 -0400
38441
38442 Reorganize and fix problems (returns) in the bootm command.
38443
38444 Do *NOT* return after the "point of no return" has been passed.
38445 If something goes wrong, the board must be reset after that point.
38446 Move the "Transferring control to Linux" debug message back to where it
38447 belongs: just before transferring control to linux.
38448
38449 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38450
38451commit 89c8757d8f213c47709bdc4efe0695263a6080a6
38452Author: Gerald Van Baren <vanbaren@cideas.com>
38453Date: Tue May 8 21:27:35 2007 -0400
38454
38455 Fix bugs in the CONFIG_OF_LIBFDT
38456
38457 Stupid coding mistakes (identified by Timur Tabi, thanks).
38458
38459 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38460
38461commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
38462Author: Gerald Van Baren <vanbaren@cideas.com>
38463Date: Wed Apr 25 22:47:15 2007 -0400
38464
38465 Improve fdt move length handling.
38466
38467 Make the length parameter optional: if not specified, do the move using
38468 the current size unchanged.
38469
38470 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38471
38472commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
38473Author: Gerald Van Baren <vanbaren@cideas.com>
38474Date: Wed Apr 25 22:23:36 2007 -0400
38475
38476 Minor code clean up.
38477
38478 Declare the variable fdt properly as extern.
38479 Call the "set_fn" function pointer the "short way" without the full
38480 dereferencing syntax.
38481
38482 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38483
38484commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
38485Author: Gerald Van Baren <vanbaren@cideas.com>
38486Date: Wed Apr 25 21:24:27 2007 -0400
38487
38488 Improve error messages, more informative.
38489
38490 Print more than the raw libfdt error message strings. This is especially
38491 useful for cluing in the user when the bootm command aborts due to
38492 blob problems.
38493
38494 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38495
38496commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
38497Author: Gerald Van Baren <vanbaren@cideas.com>
38498Date: Fri Apr 20 22:46:53 2007 -0400
38499
38500 libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
38501
38502 This is the way u-boot reduces configured-out code. At Wolfgang
38503 Grandegger and Wolfgang Denk's request, make libfdt conform.
38504
38505 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38506
38507commit 923efd286411ed052d9e074f59f8986d6081061c
38508Author: Bruce Adler <bruce.adler@ccpu.com>
38509Date: Fri Aug 10 14:54:47 2007 -0700
38510
38511 add image size and descriptors for Spartan 3E FPGA chips
38512
38513 Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
38514
38515 Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
38516
38517commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
38518Author: Kim Phillips <kim.phillips@freescale.com>
38519Date: Fri Aug 10 15:34:48 2007 -0500
38520
38521 make MAKEALL more immune to merge conflicts
38522
38523 ..by placing board entries one per line, as suggested by jdl.
38524
38525 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38526
38527commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
38528Author: Kim Phillips <kim.phillips@freescale.com>
38529Date: Fri Aug 10 13:28:25 2007 -0500
38530
38531 README: Remove outdated cpu type, board type, and NAME_config lists
38532
38533 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38534
38535commit 49bb59912d21aacb507eb81fd21fb7af650c706c
38536Author: Dave Liu <r63238@freescale.com>
38537Date: Fri Aug 10 15:48:59 2007 +0800
38538
38539 mpc83xx: Suppress the warning 'burstlen'
38540
38541 suppress the warning 'burstlen' of spd_sdram.
38542
38543 Signed-off-by: Dave Liu <daveliu@freescale.com>
38544
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +020038545commit c646bba6465a45c60746d4cc1602cd06c1960f2d
38546Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
38547Date: Thu Aug 9 15:11:03 2007 -0500
38548
38549 Add support for SBC8641D. Config files.
38550
38551 Add support for Wind River's SBC8641D reference board.
38552
38553 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
38554 Acked-by: Wolfgang Denk <wd@denx.de>
38555 Acked-by: Jon Loeliger <jdl@freescale.com>
38556
38557commit 8ac273271d57321f90505c7a51cdb1ef2113b628
38558Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
38559Date: Thu Aug 9 15:10:53 2007 -0500
38560
38561 Add support for SBC8641D. Board files.
38562
38563 Add support for Wind River's SBC8641D reference board.
38564
38565 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
38566 Acked-by: Wolfgang Denk <wd@denx.de>
38567 Acked-by: Jon Loeliger <jdl@freescale.com>
38568
Wolfgang Denk9986bc32007-08-12 21:34:50 +020038569commit c2c0ab4aff86622b837a48a0e560351f9afafb95
38570Author: Stefan Roese <sr@denx.de>
38571Date: Fri Aug 10 20:34:58 2007 +0200
38572
38573 Conding style cleanup
38574
38575 Signed-off-by: Stefan Roese <sr@denx.de>
38576
38577commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
38578Author: Sergey Kubushyn <ksi@koi8.net>
38579Date: Fri Aug 10 20:26:18 2007 +0200
38580
38581 [ARM] TI DaVinci support, hopefully final
38582
38583 Add support for the following DaVinci boards:
38584 - DV_EVM
38585 - SCHMOOGIE
38586 - SONATA
38587
38588 Changes:
38589
38590 - Split into separate board directories
38591 - Removed changes to MTD_DEBUG (or whatever it's called)
38592 - New CONFIG_CMD party line followed
38593 - Some cosmetic fixes, cleanup etc.
38594 - Patches against the latest U-Boot tree as of now.
38595 - Fixed CONFIG_CMD_NET in net files.
38596 - Fixed CONFIG_CMD_EEPROM for schmoogie.
38597 - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
38598 DV_EVM. Can't check if it works on SONATA, don't have a board any more,
38599 but it at least compiles.
38600
38601 Here is an excerpt from session log on SCHMOOGIE...
38602
38603 U-Boot 1.2.0-g6c33c785-dirty (Aug 7 2007 - 13:07:17)
38604
38605 DRAM: 128 MB
38606 NAND: 128 MiB
38607 In: serial
38608 Out: serial
38609 Err: serial
38610 ARM Clock : 297MHz
38611 DDR Clock : 162MHz
38612 ETH PHY : DP83848 @ 0x01
38613 U-Boot > iprobe
38614 Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
38615 U-Boot > ping 192.168.253.10
38616 host 192.168.253.10 is alive
38617 U-Boot >
38618
38619 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
38620 Acked-by: Dirk Behme <dirk.behme@gmail.com>
38621 Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
38622 Acked-by: Stefan Roese <sr@denx.de>
38623
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +020038624commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
38625Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38626Date: Fri Jul 27 01:50:45 2007 -0500
38627
38628 fsl_pci_init cleanup.
38629
38630 Do not enable normal errors created during probe (master abort, perr,
38631 and pcie Invalid Configuration access).
38632
38633 Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
38634
38635 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38636 Acked-by: Andy Fleming <afleming@freescale.com>
38637
38638commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
38639Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38640Date: Fri Jul 27 01:50:44 2007 -0500
38641
38642 pciauto_setup_device bars_num fix
38643
38644 Passing bars_num=0 to pciauto_setup_device should assign no bars.
38645
38646 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38647 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
38648 Acked-by: Andy Fleming <afleming@freescale.com>
38649
38650commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
38651Author: Jon Loeliger <jdl@freescale.com>
38652Date: Mon Aug 6 17:39:44 2007 -0500
38653
38654 8641hpcn: Do correct sized pointer math.
38655
38656 When I rebased Ed's patch and cleaned up a few compilation
38657 problems, I apparently rebased my brain on crack first.
38658 Fix that by doing (char *) sized pointer math as needed.
38659
38660 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38661
38662commit cfc7a7f5bb3273c9951173c788001d45118f141f
38663Author: Jon Loeliger <jdl@freescale.com>
38664Date: Thu Aug 2 14:42:20 2007 -0500
38665
38666 cpu/86xx fixes.
38667
38668 Remove rev 1 fixes.
38669 Always set PICGCR_MODE.
38670 Enable machine check and provide board config option
38671 to set and handle SoC error interrupts.
38672
38673 Include MSSSR0 in error message.
38674
38675 Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
38676
38677 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38678 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38679
Wolfgang Denka5a38f42007-08-16 11:51:04 +020038680commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
38681Author: Stefan Roese <sr@denx.de>
38682Date: Fri Aug 10 10:42:25 2007 +0200
38683
38684 Coding style cleanup
38685
38686 Signed-off-by: Stefan Roese <sr@denx.de>
38687
Wolfgang Denk9986bc32007-08-12 21:34:50 +020038688commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
38689Author: Dirk Behme <dirk.behme@googlemail.com>
38690Date: Thu Aug 2 17:42:08 2007 +0200
38691
38692 Make use of generic 64bit division in nand_util.c
38693
38694 Use generic 64bit division in nand_util.c. This makes nand_util.c
38695 independent of any toolchain 64bit division.
38696
38697 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
38698
38699commit f7c086e94e8ce9aad7268af97f73aa6884686f27
38700Author: Dirk Behme <dirk.behme@googlemail.com>
38701Date: Thu Aug 2 17:41:14 2007 +0200
38702
38703 Move 64bit division from avr32 to generic lib
38704
38705 Move the 64bit division from lib_avr32 to lib_generic. With this, all
38706 boards can do_div/__div64_32 if needed, not only avr one. Code is put
38707 to lib_generic, so no larger memory footprint if not used. No code
38708 modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
38709
38710 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
38711
Wolfgang Denka5a38f42007-08-16 11:51:04 +020038712commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
38713Author: Niklaus Giger <niklausgiger@gmx.ch>
38714Date: Fri Jul 27 11:31:22 2007 +0200
38715
38716 Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
38717
38718 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38719
38720commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
38721Author: Niklaus Giger <niklausgiger@gmx.ch>
38722Date: Fri Jul 27 11:30:33 2007 +0200
38723
38724 Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
38725
38726 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38727
38728commit e8397fc78c9394d71de233a4d810fbc9047e4c76
38729Author: Niklaus Giger <niklausgiger@gmx.ch>
38730Date: Fri Jul 27 11:38:26 2007 +0200
38731
38732 Add PPC4xx-HCU4 and HCU5 boards: common files
38733
38734 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38735
38736commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
38737Author: Niklaus Giger <niklausgiger@gmx.ch>
38738Date: Fri Jul 27 11:28:44 2007 +0200
38739
38740 Add PPC4xx-HCU4 and HCU5 boards: make related
38741
38742 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38743
38744commit 137fdd9f474ecb853efdace5200576308c67f18d
38745Author: Niklaus Giger <niklausgiger@gmx.ch>
38746Date: Fri Jul 27 11:28:03 2007 +0200
38747
38748 Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
38749
38750 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38751
38752commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
38753Author: Niklaus Giger <niklausgiger@gmx.ch>
38754Date: Fri Jul 27 11:27:15 2007 +0200
38755
38756 Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
38757
38758 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38759
38760commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
38761Author: Niklaus Giger <niklausgiger@gmx.ch>
38762Date: Fri Jul 27 11:25:31 2007 +0200
38763
38764 Add PPC4xx-HCU4 and HCU5 boards: READMEs
38765
38766 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38767
38768commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
38769Author: Niklaus Giger <niklausgiger@gmx.ch>
38770Date: Fri Jul 27 11:37:40 2007 +0200
38771
38772 Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
38773
38774 This series of patches adds support for 2 boards from Netstal Maschinen.
38775
38776 The HCU4 has a PPC405Gpr and
38777 the HCU5 has a PPC440EPX.
38778
38779 The HCU4 has a somehow complicated flash setup, as the booteprom is
38780 only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
38781 elegant solution.
38782
38783 The HCU5 has only a booteprom as the whole code will be downloaded from a
38784 different board which has HD, CD-ROM, etc and where all code is stored.
38785
38786 This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
38787 Thanks them a lot.
38788
38789 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38790
38791commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
38792Author: Stefan Roese <sr@denx.de>
38793Date: Fri Aug 10 08:42:55 2007 +0200
38794
38795 ppc4xx: Update lwmon5 POST configuration
38796
38797 Signed-off-by: Stefan Roese <sr@denx.de>
38798
38799commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
38800Author: Yuri Tikhonov <yur@emcraft.com>
38801Date: Fri Aug 10 08:25:22 2007 +0200
38802
38803 POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
38804
38805 The patch adds support for UART POST on ppc44x-based boards with no
38806 external serial clocks installed.
38807
38808 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38809 Acked-by: Stefan Roese <sr@denx.de>
38810
Wolfgang Denk9986bc32007-08-12 21:34:50 +020038811commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
38812Author: Kim Phillips <kim.phillips@freescale.com>
38813Date: Mon Aug 6 18:18:34 2007 -0500
38814
38815 mpc83xx: fix ITX[GP] O=builddir builds
38816
38817 make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'. Stop.
38818
38819 Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
38820 "BUILD_DIR=<some dir> ./MAKEALL ..."
38821
38822 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38823
38824commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
38825Author: Dave Liu <r63238@freescale.com>
38826Date: Wed Aug 1 15:00:59 2007 +0800
38827
38828 mpc83xx: Correct the README for DDR ECC
38829
38830 Update the README for DDR ECC, change the name
38831 to README.mpc83xx.ddrecc.
38832
38833 Signed-off-by: Dave Liu <daveliu@freescale.com>
38834 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38835
38836commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
38837Author: Dave Liu <r63238@freescale.com>
38838Date: Wed Aug 1 15:00:15 2007 +0800
38839
38840 mpc83xx: Consolidate the ECC support of 83xx
38841
38842 Remove the duplicated source code of ecc command on the <board>.c,
38843 for reused, move these code to cpu/mpc83xx directory.
38844
38845 Signed-off-by: Dave Liu <daveliu@freescale.com>
38846 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38847
38848commit 036575c544cf1b69654d8fb334bda69c6ff3da36
38849Author: Dave Liu <r63238@freescale.com>
38850Date: Sat Aug 4 13:37:39 2007 +0800
38851
38852 mpc83xx: Correct the burst length for DDR2 with 32 bits
38853
38854 The burst length should be 4 for DDR2 with 32 bits bus
38855
38856 Signed-off-by: Dave Liu <daveliu@freescale.com>
38857
38858commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
38859Author: Kim Phillips <kim.phillips@freescale.com>
38860Date: Wed Jul 25 19:25:33 2007 -0500
38861
38862 mpc83xx: add support for the MPC8323E RDB
38863
38864 MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
38865 five 10/100 ethernet ports connected via an ICPlus IP175C
38866 switch, one PCI slot, and serial. Features not supported
38867 in this patch are SD card interface, 2 USB ports, and the
38868 two phone ports.
38869
38870 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
38871 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38872
38873commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
38874Author: Kim Phillips <kim.phillips@freescale.com>
38875Date: Wed Jul 25 19:25:28 2007 -0500
38876
38877 mpc83xx: fixup generic pci for libfdt
38878
38879 add libfdt support to the generic 83xx pci code
38880
38881 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38882
38883commit f57ac7a7b37109245b69db80839ebee26179966a
38884Author: Kim Phillips <kim.phillips@freescale.com>
38885Date: Wed Jul 25 19:25:22 2007 -0500
38886
38887 mpc83xx: fix 8360 and cpu functions to update fdt being passed
38888
38889 ..and not the global fdt. Rename local fdt vars to blob so as not to
38890 be confused with the global var with the same three-letter name.
38891
38892 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38893
38894commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
38895Author: Jerry Van Baren <gvb.uboot@gmail.com>
38896Date: Wed Jul 4 21:34:24 2007 -0400
38897
38898 mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
38899
38900 Several node strings were not correct (trailing slashes and properties
38901 in the strings)
38902 Added setting of the timebase-frequency.
38903 Improved error messages and use debug() instead of printf().
38904
38905 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38906 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38907
38908commit 26d02c9bbac1751c5e19294f000100b48d43a920
38909Author: Jerry Van Baren <gvb.uboot@gmail.com>
38910Date: Wed Jul 4 21:27:30 2007 -0400
38911
38912 mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
38913
38914 The new name matches more closely the kernel's name, which is also
38915 a much better description.
38916
38917 These are the mpc83xx changes made necessary by the function name change.
38918
38919 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
38920 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38921 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38922
38923commit 9be39a67c9f8fef7107f5df09d673005f04d0963
38924Author: Dave Liu <daveliu@freescale.com>
38925Date: Mon Jun 25 10:41:56 2007 +0800
38926
38927 mpc83xx: Add support for the display of reset status
38928
38929 83xx processor family has many reset sources, such as
38930 power on reset, software hard reset, software soft reset,
38931 JTAG, bus monitor, software watchdog, check stop reset,
38932 external hard reset, external software reset.
38933 sometimes, to figure out the fault of system, we need to
38934 know the cause of reset early before the prompt of
38935 u-boot present.
38936
38937 Signed-off-by: Dave Liu <daveliu@freescale.com>
38938 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38939
38940commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
38941Author: Dave Liu <daveliu@freescale.com>
38942Date: Mon Jun 25 10:41:04 2007 +0800
38943
38944 mpc83xx: Fix the align bug of SDMA buffer
38945
38946 According to the latest user manual, the SDMA temporary
38947 buffer base address must be 4KB aligned.
38948
38949 Signed-off-by: Dave Liu <daveliu@freescale.com>
38950 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38951
38952commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
38953Author: Dave Liu <daveliu@freescale.com>
38954Date: Mon Jun 25 13:21:12 2007 +0800
38955
38956 mpc83xx: Revise the MPC8360EMDS readme doc
38957
38958 When the rev2.x silicon mount on the MPC8360EMDS baord,
38959 and if you are using the u-boot version after the commit
38960 3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
38961 to make the ethernet interface usable, we have to setup
38962 the jumpers correctly.
38963
38964 Signed-off-by: Dave Liu <daveliu@freescale.com>
38965 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38966
38967commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
38968Author: Timur Tabi <timur@freescale.com>
38969Date: Tue Jul 3 13:46:32 2007 -0500
38970
38971 FSL I2C driver programs the two I2C busses differently
38972
38973 The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
38974 The second I2C bus has its slave address programmed incorrectly and is
38975 missing a 5-us delay.
38976
38977 Signed-off-by: Timur Tabi <timur@freescale.com>
38978 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38979
38980commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
38981Author: Timur Tabi <timur@freescale.com>
38982Date: Tue Jul 3 13:04:34 2007 -0500
38983
38984 Update SCCR programming in cpu_init_f() to support all 83xx processors
38985
38986 Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
38987 bitfields for all 83xx processors. The code to update some bitfields was
38988 compiled only on some processors. Now, the bitfields are programmed as long
38989 as the corresponding CFG_SCCR option is defined in the board header file.
38990 This means that the board header file should not define any CFG_SCCR macros
38991 for bitfields that don't exist on that processor, otherwise the SCCR will be
38992 programmed incorrectly.
38993
38994 Signed-off-by: Timur Tabi <timur@freescale.com>
38995 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38996
38997commit 9546266999f0b9b51372636614211b88d90f0f25
38998Author: Martin Krause <martin.krause@tqs.de>
38999Date: Fri Jun 22 13:04:22 2007 +0200
39000
39001 TQM834x: cleanup configuraton
39002
39003 Remove irritating #undef DEBUG
39004
39005 Signed-off-by: Martin Krause <martin.krause@tqs.de>
39006 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39007
39008commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
39009Author: david.saada <David.Saada@ecitele.com>
39010Date: Mon Jun 18 09:09:53 2007 -0700
39011
39012 MPC83xx: Fix makefile to generate config.h file in the build directory
39013
39014 MPC83xx: Fix the Makefile config sections to generate the include/config.h
39015 file in the build directory instead of the source directory.
39016
39017 Signed-off-by: David Saada <david.saada@ecitele.com>
39018 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39019
39020commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
39021Author: Lee Nipper <Lee.Nipper@freescale.com>
39022Date: Thu Jun 14 20:07:33 2007 -0500
39023
39024 mpc83xx: Add support for 8360 silicon revision 2.1
39025
39026 This change adds 8360 silicon revision 2.1 support to u-boot.
39027
39028 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
39029 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39030
39031commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
39032Author: Kumar Gala <galak@kernel.crashing.org>
39033Date: Wed Aug 8 04:14:28 2007 -0500
39034
39035 Treat ppc64 host as ppc
39036
39037 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39038
39039commit 0dc4279b08ff82472bec2e2c90858602459febe8
39040Author: Jason Jin <Jason.jin@freescale.com>
39041Date: Wed Aug 8 09:01:46 2007 +0800
39042
39043 Minor fix for bios emulator makefile
39044
39045 Add $(obj) to LIB avoiding objects be built in the source dir
39046
39047 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39048
39049commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
39050Author: Jason Jin <Jason.jin@freescale.com>
39051Date: Wed Aug 8 08:33:11 2007 +0800
39052
39053 Add CONFIG_BIOSEMU define to guard all the bios emulator code
39054
39055 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39056
39057 This patch fix the compile issue on the board that did not enable the bios emulator
39058
39059commit ed8106433522f2ea8933e9808346860d061d7731
39060Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
39061Date: Tue Jul 31 12:27:25 2007 -0500
39062
39063 tsec: fix multiple PHY support
39064
39065 The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
39066 broke multiple PHY support in tsec.c. This fixes it.
39067
39068 Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
39069 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39070
39071commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
39072Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
39073Date: Thu Aug 9 09:08:18 2007 -0500
39074
39075 tsec: Allow Ten Bit Interface address to be configurable
39076
39077 Allow the address of the Ten Bit Interface (TBI) to be changed in the
39078 event of a conflict with another device.
39079
39080 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
39081
Wolfgang Denk05675732007-08-18 22:00:38 +020039082commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
39083Author: Stefan Roese <sr@denx.de>
39084Date: Wed Aug 8 09:54:26 2007 +0200
39085
39086 Coding style cleanup
39087
39088 Signed-off-by: Stefan Roese <sr@denx.de>
39089
39090commit a41de1f0d373e09c782dea558385a06247111ba5
39091Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39092Date: Sun Aug 5 05:15:18 2007 -0500
39093
39094 Port enabled for I2C signals and chipselects port configuration.
39095
39096 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39097
39098commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
39099Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39100Date: Sun Aug 5 04:31:18 2007 -0500
39101
39102 Added NAND support
39103
39104 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39105
39106commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
39107Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39108Date: Sun Aug 5 04:11:20 2007 -0500
39109
39110 Added I2C support
39111
39112 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39113
39114commit 99c03c175d2689093176facf17c58ce2cb320001
39115Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39116Date: Sun Aug 5 03:58:52 2007 -0500
39117
39118 Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
39119
39120 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39121
39122commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
39123Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39124Date: Sun Aug 5 03:55:21 2007 -0500
39125
39126 Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
39127
39128 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39129
39130commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
39131Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39132Date: Sun Aug 5 03:43:30 2007 -0500
39133
39134 Moved sync() from board file to include/asm-m68k/io.h
39135
39136 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39137
39138commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
39139Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39140Date: Sun Aug 5 03:30:44 2007 -0500
39141
39142 Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
39143
39144 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39145
39146commit 9998bd37ead85e93953559720710d3b0685c81e6
39147Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39148Date: Sun Aug 5 03:19:10 2007 -0500
39149
39150 Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
39151
39152 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39153
Wolfgang Denk9986bc32007-08-12 21:34:50 +020039154commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
39155Author: Jason Jin <Jason.jin@freescale.com>
39156Date: Tue Aug 7 16:17:06 2007 +0800
39157
39158 Add CONFIG_BIOSEMU define to guard all the bios emulator code
39159
39160 This patch fix the compile issue on the board that did not enable the bios emulator
39161
39162commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
39163Author: Wolfgang Denk <wd@denx.de>
39164Date: Tue Aug 7 16:02:13 2007 +0200
39165
39166 Fix missing brace error in fs/fat/fat.c
39167 [pointed out by Roderik Wildenburg]
39168
39169 Signed-off-by: Wolfgang Denk <wd@denx.de>
39170
Wolfgang Denk63640012007-10-14 00:13:19 +020039171commit 706714d97a0d08d59eda4de2268c39f504688329
39172Author: Michal Simek <monstr@monstr.eu>
39173Date: Mon Aug 6 23:41:53 2007 +0200
39174
39175 [FIX] remove cute code
39176
39177commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
39178Author: Michal Simek <monstr@monstr.eu>
39179Date: Mon Aug 6 23:35:26 2007 +0200
39180
39181 [FIX] Fix romfs code
39182
39183commit ab4b956d3143f8f8174089053f5dfabbb04762b0
39184Author: Michal Simek <monstr@monstr.eu>
39185Date: Mon Aug 6 23:31:49 2007 +0200
39186
39187 [FIX] Coding style cleanup - Wolfgang's suggestions
39188
Wolfgang Denk9986bc32007-08-12 21:34:50 +020039189commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
39190Author: Wolfgang Denk <wd@denx.de>
39191Date: Mon Aug 6 23:21:05 2007 +0200
39192
39193 Fixed typo in README (pointed out by Martin Jost).
39194
39195 Signed-off-by: Wolfgang Denk <wd@denx.de>
39196
Wolfgang Denka5a38f42007-08-16 11:51:04 +020039197commit 537223afa61f64480df31ce440a9cb386df4a814
39198Author: Stefan Roese <sr@denx.de>
39199Date: Mon Aug 6 21:10:17 2007 +0200
39200
39201 ppc4xx: Update AMCC Bamboo README doc/README.bamboo
39202
39203 As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
39204 here an updated Bamboo README.
39205
39206 Signed-off-by: Stefan Roese <sr@denx.de>
39207
Wolfgang Denk9986bc32007-08-12 21:34:50 +020039208commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
39209Author: Wolfgang Denk <wd@denx.de>
39210Date: Mon Aug 6 02:17:36 2007 +0200
39211
39212 Coding style cleanup. Update CHANGELOG.
39213
39214 Signed-off-by: Wolfgang Denk <wd@denx.de>
39215
39216commit 221838cc7eb178370ff62aa05920a582e12ac322
39217Author: Jason Jin <Jason.jin@freescale.com>
39218Date: Tue Jul 10 09:03:22 2007 +0800
39219
39220 Remove the bios emulator from MAI board.
39221
39222 The bios emulator in the MAI board can not pass compile
39223 and have a lot of crap in it. remove it and will have a
39224 clean and small bios emulator in the drivers directory
39225 which can be uesed for every board.
39226
39227 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39228
39229commit 5618332409bb96f4448d1712899369fc80c0b489
39230Author: Jason Jin <Jason.jin@freescale.com>
39231Date: Fri Jul 13 12:14:59 2007 +0800
39232
39233 Fix some compile issues for MAI board.
39234
39235 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39236
39237commit 0f460a1ee148b648ee242c3157650287d4296260
39238Author: Jason Jin <Jason.jin@freescale.com>
39239Date: Fri Jul 13 12:14:58 2007 +0800
39240
39241 Configurations for ATI video card BIOS emulator
39242
39243 This patch add definition of the BIOS emulator and the ATI framebuffer
39244 driver for MPC8641HPCN board.
39245
39246 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39247 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
39248
39249commit ece92f85053b8df613edcf05b26a416cbc3d629c
39250Author: Jason Jin <Jason.jin@freescale.com>
39251Date: Fri Jul 6 08:34:56 2007 +0800
39252
39253 This is a BIOS emulator, porting from SciTech for u-boot, mainly for
39254 ATI video card BIOS. and can be used for x86 code emulation by some
39255 modifications.
39256
39257 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39258
39259commit 5072188acabde3178fac7f5a597150e6e74fd40c
39260Author: Jason Jin <Jason.jin@freescale.com>
39261Date: Fri Jul 6 08:33:33 2007 +0800
39262
39263 This is a framebuffer driver for ATI video card, can work for PCI9200,
39264 X300, X700, X800 ATI video cards.
39265
39266 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
39267 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39268
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +020039269commit 5728be389e65fd47f34b33c2596271eb4db751ae
39270Author: Wolfgang Denk <wd@denx.de>
39271Date: Mon Aug 6 01:01:49 2007 +0200
39272
39273 Coding style cleanup. Update CHANGELOG.
39274
39275 Signed-off-by: Wolfgang Denk <wd@denx.de>
39276
Wolfgang Denk5728be32007-08-06 01:01:49 +020039277commit 8092fef4c29b395958bb649647da7e3775731517
39278Author: Martin Krause <Martin.Krause@tqs.de>
39279Date: Tue Dec 12 14:26:01 2006 +0100
39280
39281 Add functions to list of exported functions
39282
39283 Additionally export the following fuctions (to make trab_config build again):
39284 - simple_strtol()
39285 - strcmp()
39286
39287 Also bump the ABI version to reflect this change
39288
39289 Signed-off-by: Martin Krause <martin.krause@tqs.de>
39290
39291commit 63cec5814fab5d2b1c86982327433807a5ac0249
39292Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39293Date: Thu Aug 2 14:09:49 2007 -0500
39294
39295 Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
39296
39297 All of the PCI/PCI-Express driver and initialization code that
39298 was in the MPC8641HPCN port has now been moved into the common
39299 drivers/fsl_pci_init.c. In a subsequent patch, this will be
39300 utilized by the 85xx ports as well.
39301
39302 Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
39303
39304 Also enable the second PCI-Express controller on 8641
39305 by getting its BATS and CFG_ setup right.
39306
39307 Fixed a u16 vendor compiler warning in AHCI driver too.
39308
39309 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39310 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
39311 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39312
Wolfgang Denk63640012007-10-14 00:13:19 +020039313commit a274ca4f6d68830e7c916f897561cff8c4101c38
39314Author: Michal Simek <monstr@monstr.eu>
39315Date: Sun Aug 5 22:33:05 2007 +0200
39316
39317 [FIX] Coding style cleanup
39318
39319commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
39320Author: Michal Simek <monstr@monstr.eu>
39321Date: Sun Aug 5 16:13:31 2007 +0200
39322
39323 [FIX] Xilinx Uartlite driver
39324 Because PPC405 can use UARTLITE serial interface and
39325 Microblaze can use Uart16550 serial interface not only Uartlite.
39326
39327commit 98889edd50aadf862071eb5664747ad0d568a20e
39328Author: Michal Simek <monstr@monstr.eu>
39329Date: Sun Aug 5 15:54:53 2007 +0200
39330
39331 [FIX] Change configuration for XUPV2P Microblaze board
39332
39333commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
39334Author: Michal Simek <monstr@monstr.eu>
39335Date: Sun Aug 5 15:53:50 2007 +0200
39336
39337 [PATCH] Added support for Xilinx Emac community driver
39338
Wolfgang Denk9986bc32007-08-12 21:34:50 +020039339commit 86b116b1b1e165ca4840daefed36d2e3b8460173
39340Author: Bartlomiej Sieka <tur@semihalf.com>
39341Date: Fri Aug 3 12:08:16 2007 +0200
39342
39343 cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
39344
39345 Add the ability for modules from the Schindler cm5200 family to use a
39346 single U-Boot image:
39347 - rename cm1_qp1 to cm5200
39348 - add run-time module detection
39349 - parametrize SDRAM configuration according to the module we are running on
39350
39351 Few minor, board-specific fixes included in this patch:
39352 - better MAC address handling
39353 - updated default environment ('update' command uses +{filesize} now)
39354 - improved error messages in the auto-update code
39355 - allow booting U-Boot from RAM (CFG_RAMBOOT)
39356
39357 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
39358 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
39359 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39360
Wolfgang Denk5728be32007-08-06 01:01:49 +020039361commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
39362Author: Andy Fleming <afleming@freescale.com>
39363Date: Fri Aug 3 04:05:25 2007 -0500
39364
39365 Add Marvell 1149 PHY support to the TSEC
39366
Wolfgang Denkf2c2a932007-08-06 01:11:08 +020039367commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
Wolfgang Denk5728be32007-08-06 01:01:49 +020039368Author: Wolfgang Denk <wd@denx.de>
Wolfgang Denkf2c2a932007-08-06 01:11:08 +020039369Date: Thu Aug 2 21:27:46 2007 +0200
Wolfgang Denk5728be32007-08-06 01:01:49 +020039370
Wolfgang Denkf2c2a932007-08-06 01:11:08 +020039371 Coding style cleanup, update CHANGELOG
Wolfgang Denk5728be32007-08-06 01:01:49 +020039372
39373 Signed-off-by: Wolfgang Denk <wd@denx.de>
39374
Wolfgang Denk5728be32007-08-06 01:01:49 +020039375commit 63e22764d2f8653f68888c667eb65b3996b52680
39376Author: Wolfgang Denk <wd@denx.de>
39377Date: Thu Aug 2 10:11:18 2007 +0200
39378
39379 Minor cleanup of <board>_nand build rules.
39380
Wolfgang Denka5a38f42007-08-16 11:51:04 +020039381commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
39382Author: Stefan Roese <sr@denx.de>
39383Date: Thu Aug 2 08:33:56 2007 +0200
39384
39385 ppc4xx: Code cleanup
39386
39387 Signed-off-by: Stefan Roese <sr@denx.de>
39388
39389commit c92409812206ac67a7fa7aae298539a9c3804a46
39390Author: Grzegorz Bernacki <gjb@semihalf.com>
39391Date: Tue Jul 31 18:51:48 2007 +0200
39392
39393 [ppc440SPe] Graceful recovery from machine check during PCIe configuration
39394
39395 During config transactions on the PCIe bus an attempt to scan for a
39396 non-existent device can lead to a machine check exception with certain
39397 peripheral devices. In order to avoid crashing in such scenarios the
39398 instrumented versions of the config cycle read routines are introduced, so
39399 the exceptions fixups framework can gracefully recover.
39400
39401 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
39402 Acked-by: Rafal Jaworowski <raj@semihalf.com>
39403
39404commit dec99558b9ea75a37940d07f41a3565a50b54ad1
39405Author: Rafal Jaworowski <raj@semihalf.com>
39406Date: Tue Jul 31 18:19:54 2007 +0200
39407
39408 [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
39409
39410 This brings back separate settings for PCIe bus numbers depending on chip
39411 revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
39412 commit. 440SPe rev. A does NOT work properly with the same settings as for
39413 the rev. B (no devices are seen on the bus during enumeration).
39414
39415 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
39416
Wolfgang Denk5728be32007-08-06 01:01:49 +020039417commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
39418Author: Wolfgang Denk <wd@denx.de>
39419Date: Thu Aug 2 00:48:45 2007 +0200
39420
39421 Fix build errors and warnings / code cleanup.
39422
39423 Signed-off-by: Wolfgang Denk <wd@denx.de>
39424
Wolfgang Denka5a38f42007-08-16 11:51:04 +020039425commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
39426Author: Eugene OBrien <eugene.obrien@advantechamt.com>
39427Date: Tue Jul 31 10:24:56 2007 +0200
39428
39429 ppc4xx: Update AMCC Bamboo 440EP support
39430
39431 Changed storage type of cfg_simulate_spd_eeprom to const
39432 Changed storage type of gpio_tab to stack storage
39433 (Cannot access global data declarations in .bss until afer code relocation)
39434
39435 Improved SDRAM tests to catch problems where data is not uniquely addressable
39436 (e.g. incorrectly programmed SDRAM row or columns)
39437
39438 Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
39439 Fixed AM29LV320DT (OpCode Flash) sector map
39440
39441 Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
39442 Signed-off-by: Stefan Roese <sr@denx.de>
39443
39444commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
39445Author: Stefan Roese <sr@denx.de>
39446Date: Tue Jul 31 08:37:01 2007 +0200
39447
39448 ppc4xx: Update 440EPx lwmon5 board support
39449
39450 - Clear ECC status regs after ECC POST test
39451 - Set dcbz for ECC generation with caches enabled as default
39452 - Code cleanup
39453
39454 Signed-off-by: Stefan Roese <sr@denx.de>
39455
39456commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
39457Author: Stefan Roese <sr@denx.de>
39458Date: Mon Jul 30 11:04:57 2007 +0200
39459
39460 ppc4xx: Only print ECC related info when the error bis are set
39461
39462 Signed-off-by: Stefan Roese <sr@denx.de>
39463
39464commit e36220a4baf1f188ba60f17e9d0f043069b1362a
39465Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39466Date: Fri Jul 27 16:44:31 2007 +0200
39467
39468 new FPGA image for PLU405 board
39469
39470 new FPGA image for PLU405 board with improved CompactFlash timing
39471
39472 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39473
Wolfgang Denkb1b54e32007-08-02 21:27:46 +020039474commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
39475Author: Rafal Jaworowski <raj@semihalf.com>
39476Date: Fri Jul 27 14:43:59 2007 +0200
39477
39478 [ADS5121] Support for the ADS5121 board
39479
39480 The following MPC5121e subsystems are supported:
39481
39482 - low-level CPU init
39483 - NOR Boot Flash (common CFI driver)
39484 - DDR SDRAM
39485 - FEC
39486 - I2C
39487 - Watchdog
39488
39489 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
39490 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
39491 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
39492
39493commit 1863cfb7b100ba0ee3401799457a01dc058745f8
39494Author: Rafal Jaworowski <raj@semihalf.com>
39495Date: Fri Jul 27 14:22:04 2007 +0200
39496
39497 [PPC] Remove unused MSR_USER definition
39498
39499 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
39500
Wolfgang Denka5a38f42007-08-16 11:51:04 +020039501commit d4024bb72dd81695ec099b2199eda0d27c623e62
39502Author: John Otken <john@softadvances.com>
39503Date: Thu Jul 26 17:49:11 2007 +0200
39504
39505 ppc4xx: Add support for AMCC 405EP Taihu board
39506
39507 Signed-off-by: John Otken <john@softadvances.com>
39508
39509commit b66091de6c7390620312c2501db23d8391e7cabb
39510Author: Anatolij Gustschin <agust@denx.de>
39511Date: Thu Jul 26 15:08:01 2007 +0200
39512
39513 ppc4xx: lwmon5: Update Lime initialization
39514
39515 Change Lime SDRAM initialization to now support 100MHz and
39516 133MHz (if enabled). Also the framebuffer is initialized to
39517 display a blue rectangle with a white border.
39518
39519 Signed-off-by: Anatolij Gustschin <agust@denx.de>
39520 Signed-off-by: Stefan Roese <sr@denx.de>
39521
39522commit 9f24a808f17fc0f37b7fb4805f734741335caecc
39523Author: Stefan Roese <sr@denx.de>
39524Date: Tue Jul 24 09:52:52 2007 +0200
39525
39526 ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
39527
39528 The used Intel NOR FLASH chips have internally two dies, and are now
39529 treated as two seperate chips.
39530
39531 Signed-off-by: Stefan Roese <sr@denx.de>
39532
39533commit aedf5bde179ecfbd0a96130d18996a96518b785f
39534Author: Stefan Roese <sr@denx.de>
39535Date: Tue Jul 24 07:20:09 2007 +0200
39536
39537 ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
39538
39539 As suggested by Hakan Eryigit, here an updated setup for the lwmon5
39540 interrupt controller.
39541
39542 Signed-off-by: Stefan Roese <sr@denx.de>
39543
39544commit a71d96eac8130b53a91f93cd10c70fca0db18d52
39545Author: Stefan Roese <sr@denx.de>
39546Date: Fri Jul 20 15:03:44 2007 +0200
39547
39548 ppc4xx: Fix bug with default GPIO output value
39549
39550 As spotted by Matthias Fuchs, the default output values for all GPIO1
39551 outputs were not setup correctly. This patch fixes this issue.
39552
39553 Signed-off-by: Stefan Roese <sr@denx.de>
39554
39555commit 531e3e8b831f357056448fa573137d5fb37000fd
39556Author: Pavel Kolesnikov <concord@emcraft.com>
39557Date: Fri Jul 20 15:03:03 2007 +0200
39558
39559 POST: Add ECC POST for the lwmon5 board
39560
39561 This patch adds ECC Post test for the Lwmon5 board based
39562 on PPC440EPx to U-Boot.
39563
39564 Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
39565 Acked-by: Yuri Tikhonov <yur@emcraft.com>
39566 Acked-by: Stefan Roese <sr@denx.de>
39567
Wolfgang Denkb1b54e32007-08-02 21:27:46 +020039568commit cc3023b9f95d7ac959a764471a65001062aecf41
39569Author: Rafal Jaworowski <raj@semihalf.com>
39570Date: Thu Jul 19 17:12:28 2007 +0200
39571
39572 Fix breakage of 8xx boards from recent commit.
39573
39574 This patch fixes the negative consequences for 8xx of the recent
39575 "ppc4xx: Clean up 440 exceptions handling" commit.
39576
39577 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
39578
Wolfgang Denk05675732007-08-18 22:00:38 +020039579commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
39580Author: Stefan Roese <sr@denx.de>
39581Date: Mon Jul 16 13:11:12 2007 +0200
39582
39583 Coding style cleanup
39584
39585 Signed-off-by: Stefan Roese <sr@denx.de>
39586
Wolfgang Denka5a38f42007-08-16 11:51:04 +020039587commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
39588Author: Stefan Roese <sr@denx.de>
39589Date: Mon Jul 16 10:02:12 2007 +0200
39590
39591 ppc4xx: Code cleanup
39592
39593 Signed-off-by: Stefan Roese <sr@denx.de>
39594
39595commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
39596Author: Stefan Roese <sr@denx.de>
39597Date: Mon Jul 16 10:01:38 2007 +0200
39598
39599 ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
39600
39601 Signed-off-by: Stefan Roese <sr@denx.de>
39602
39603commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
39604Author: Stefan Roese <sr@denx.de>
39605Date: Mon Jul 16 10:00:43 2007 +0200
39606
39607 ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
39608
39609 The new boardspecific DDR2 controller configuration is used for the Yucca
39610 board. Now the Yucca board with 440SPe Rev. A chips is also supported.
39611
39612 Signed-off-by: Stefan Roese <sr@denx.de>
39613
39614commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
39615Author: Stefan Roese <sr@denx.de>
39616Date: Mon Jul 16 09:57:00 2007 +0200
39617
39618 ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
39619
39620 The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
39621 support non default, boardspecific DDR(2) controller configuration.
39622
39623 Signed-off-by: Stefan Roese <sr@denx.de>
39624
39625commit 5743a9207a370b90f09b20ebd61167c806b937f3
39626Author: Stefan Roese <sr@denx.de>
39627Date: Mon Jul 16 08:53:51 2007 +0200
39628
39629 ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
39630
39631 The new function remove_tlb() can be used to remove the TLB's used to
39632 map a specific memory region. This is especially useful for the DDR(2)
39633 setup routines which configure the SDRAM area temporarily as a cached
39634 area (for speedup on auto-calibration and ECC generation) and later
39635 need this area uncached for normal usage.
39636
39637 Signed-off-by: Stefan Roese <sr@denx.de>
39638
Wolfgang Denk63640012007-10-14 00:13:19 +020039639commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
39640Author: Michal Simek <monstr@monstr.eu>
39641Date: Mon Jul 16 00:31:07 2007 +0200
39642
39643 [PATCH] Support for Xilinx EmacLite controller
39644
Wolfgang Denkb1b54e32007-08-02 21:27:46 +020039645commit 3a6cab844cf74f76639d795e0be8717e02c86af7
39646Author: Wolfgang Denk <wd@denx.de>
39647Date: Sat Jul 14 22:51:02 2007 +0200
39648
39649 Update CHANGELOG
39650
39651 Signed-off-by: Wolfgang Denk <wd@denx.de>
39652
Wolfgang Denk63640012007-10-14 00:13:19 +020039653commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
39654Author: Michal Simek <monstr@monstr.eu>
39655Date: Sat Jul 14 13:11:28 2007 +0200
39656
39657 [FIX] support for simply measuring time
39658
39659commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
39660Author: Michal Simek <monstr@monstr.eu>
39661Date: Sat Jul 14 12:41:23 2007 +0200
39662
39663 [FS] Added support for ROMFS
39664
Wolfgang Denk3a6cab82007-07-14 22:51:02 +020039665commit 011595307731a7a67a7445d107c279d031e8ab97
39666Author: Heiko Schocher <hs@pollux.denx.de>
39667Date: Sat Jul 14 01:06:58 2007 +0200
39668
39669 [PCS440EP] - fix compile error, if BUILD_DIR is used
39670
Wolfgang Denk63640012007-10-14 00:13:19 +020039671commit 5a2f1098d81ad58b309e5e558d0492643166a799
39672Author: Michal Simek <monstr@monstr.eu>
39673Date: Sat Jul 14 00:18:48 2007 +0200
39674
39675 [PATCH] Support time without timer
39676
39677commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
39678Author: Michal Simek <monstr@monstr.eu>
39679Date: Fri Jul 13 21:43:55 2007 +0200
39680
39681 [PATCH] Remove problem with disabled BARREL SHIFTER
39682
39683commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
39684Author: Michal Simek <monstr@monstr.eu>
39685Date: Fri Jul 13 21:41:44 2007 +0200
39686
39687 [FIX] correct help for rspr
39688
Wolfgang Denk3a6cab82007-07-14 22:51:02 +020039689commit fad63407154f46246ce80d53a9c669a44362ac67
39690Author: Heiko Schocher <hs@pollux.denx.de>
39691Date: Fri Jul 13 09:54:17 2007 +0200
39692
39693 make show_boot_progress () weak.
39694
39695 Signed-off-by: Heiko Schocher <hs@denx.de>
39696
39697commit 907902472391b6ca1876ec300687562ecaf459b1
39698Author: Heiko Schocher <hs@pollux.denx.de>
39699Date: Fri Jul 13 08:26:05 2007 +0200
39700
39701 [PCS440EP] - The DIAG LEDs are now blinking, if an error occur
39702 - fix compile error, if BUILD_DIR is used
39703
39704 Signed-off-by: Heiko Schocher <hs@denx.de>
39705
Wolfgang Denka5a38f42007-08-16 11:51:04 +020039706commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
39707Author: Stefan Roese <sr@denx.de>
39708Date: Thu Jul 12 16:32:08 2007 +0200
39709
39710 ppc4xx: Change receive buffer handling in the 4xx emac driver
39711
39712 This change fixes a bug in the receive buffer handling, that
39713 could lead to problems upon high network traffic (broadcasts...).
39714
39715 Signed-off-by: Stefan Roese <sr@denx.de>
39716
Wolfgang Denk3a6cab82007-07-14 22:51:02 +020039717commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
39718Author: Wolfgang Denk <wd@denx.de>
39719Date: Thu Jul 12 01:45:34 2007 +0200
39720
39721 Update CHANGELOG, minor coding style cleanup.
39722
39723 Signed-off-by: Wolfgang Denk <wd@denx.de>
39724
Wolfgang Denk5728be32007-08-06 01:01:49 +020039725commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
39726Author: Andy Fleming <afleming@freescale.com>
39727Date: Fri Jun 8 16:41:18 2007 -0500
39728
39729 Remove erroneous errata code from Marvel 88E1111S driver
39730
39731 The Marvel 88E1111S driver for the TSEC was copied from the
39732 88E1101 driver, and included a fix for an erratum which does not
Wolfgang Denkec06b272007-08-06 15:59:45 +020039733 exist on that part. Now it is removed
Wolfgang Denk5728be32007-08-06 01:01:49 +020039734
39735 Signed-off-by: Andy Fleming <afleming@freescale.com>
39736
39737commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
39738Author: Andy Fleming <afleming@freescale.com>
39739Date: Tue Jun 5 16:38:44 2007 -0500
39740
39741 From: eran liberty <eran.liberty@gmail.com>
39742
39743 adds the reset register to 85xx immap
39744
39745 Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
39746 Signed-off-by: Andy Fleming <afleming@freescale.com>
39747
39748commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
39749Author: Andy Fleming <afleming@freescale.com>
39750Date: Thu May 10 17:50:01 2007 -0500
39751
39752 Polished the 85xx ADS config files
39753
39754 Made the boot commands use device trees by default.
39755 Also moved the ramdisk to 1000000 (I think the previous address
39756 was getting overridden during boot).
39757
39758 Signed-off-by: Andy Fleming <afleming@freescale.com>
39759
39760commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
39761Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39762Date: Wed May 9 11:03:32 2007 -0500
39763
39764 8544ds: Fix Makefile after moving pixis to board/freescale.
39765
39766 The OBJTREE != SRCTREE build scenario was broken.
39767 This fixes it.
39768
39769 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39770 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39771
39772commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
39773Author: Andy Fleming <afleming@freescale.com>
39774Date: Wed May 9 00:54:20 2007 -0500
39775
39776 tsec: Fix PHY code to match first driver
39777
39778 Jarrold Wen noticed that the generic PHY code always matches
39779 under the current implementation. Change it so the first match
39780 wins, and *only* unknown PHYs trigger the generic driver
39781
39782 Signed-off-by: Andy Fleming <afleming@freescale.com>
39783
39784commit ccc091aac61a38cd998d575d92f7232e256d6312
39785Author: Andy Fleming <afleming@freescale.com>
39786Date: Tue May 8 17:27:43 2007 -0500
39787
39788 Add support for CPM device tree configuration to 8560 ADS
39789
39790 * Adds code to modify CPM frequencies
39791 * Cleans up the config file to #define TSEC and (for now) #undef FCC
39792 * Adds the MII command for all 8560 ADS configurations
39793 * Updates config file to provide convenience commands for booting
39794 with a device tree
39795
39796 Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
39797 Signed-off-by: Andy Fleming <afleming@freescale.com>
39798
39799commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
39800Author: Andy Fleming <afleming@freescale.com>
39801Date: Tue May 8 17:23:02 2007 -0500
39802
39803 Fix Marvell 88e1145 PHY init code
39804
39805 Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
39806 where the reset was being done after the errata code instead of
39807 before.
39808
39809 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
39810 Signed-off-by: Andy Fleming <afleming@freescale.com>
39811
39812commit 5dc210dec5bace98a50b6ba905347890091a9bb0
39813Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39814Date: Wed Jul 11 14:52:16 2007 -0500
39815
39816 Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
39817
39818 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39819
39820commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
39821Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39822Date: Wed Jul 11 14:52:08 2007 -0500
39823
39824 pciauto setup bridge
39825
39826 The P2P bridge bus numbers programmed into the device are relative to
39827 hose->first_busno.
39828
39829 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39830
39831commit 571f49fa717004ca4268b4e24057efc7bf9f987b
39832Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39833Date: Wed Jul 11 14:52:01 2007 -0500
39834
39835 Support PCIe extended config registers
39836
39837 FSL PCIe block has extended cfg registers in the 100 and 400 range.
39838 For example, to read the LTSSM register: pci display <busn>.0 404 1
39839
39840 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39841
39842commit ba5feb12581bb2912ce301e4866b71f846e9fc07
39843Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39844Date: Wed Jul 11 14:51:48 2007 -0500
39845
39846 Minor improvements to drivers/pci_auto.c
39847
39848 - Make pciauto_{pre,post}scan_setup_bridge non-static
39849 - Added physical address display in debug messages.
39850
39851 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39852
39853commit 40e81addab7bb74d20ddf681ce9babc880a828ee
39854Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39855Date: Wed Jul 11 14:51:35 2007 -0500
39856
39857 Start pci hose scan from hose->current_busno.
39858
39859 Ensure hose->current_busno is not less than first_busno. This fixes
39860 broken board code which leaves current_busno=0 when first_busno is
39861 greater than 0 for the cases with multiple controllers.
39862
39863 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39864
39865commit 3865b1fb7843a08ad49a6319a36415752276ff48
39866Author: Stefan Roese <sr@denx.de>
39867Date: Wed Jul 11 12:13:53 2007 +0200
39868
39869 Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
39870
39871 Signed-off-by: Stefan Roese <sr@denx.de>
39872
Wolfgang Denk239f05e2007-07-12 01:45:34 +020039873commit fa1df308926a6f70e3504c57514ef27ac31fd13a
39874Author: Bartlomiej Sieka <tur@semihalf.com>
39875Date: Wed Jul 11 20:11:07 2007 +0200
39876
39877 CM1.QP1: Support for the Schindler CM1.QP1 board.
39878
39879 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
39880 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39881
39882commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
39883Author: Heiko Schocher <hs@pollux.denx.de>
39884Date: Wed Jul 11 18:39:11 2007 +0200
39885
39886 [PCS440EP] - Show on the DIAG LEDs, if the SHA1 check failed
39887 - now the Flash ST M29W040B is supported (not tested)
39888 - fix the "led" command
39889 - fix compile error, if BUILD_DIR is used
39890
39891 Signed-off-by: Heiko Schocher <hs@denx.de>
39892
Wolfgang Denk5728be32007-08-06 01:01:49 +020039893commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
39894Author: Stefan Roese <sr@denx.de>
39895Date: Sun Jul 8 13:44:27 2007 +0200
39896
39897 Fix malloc problem introduced with the relocation fixup for the PPC platform
39898
39899 The relocation fixup didn't handle the malloc pointer initialization
39900 correctly. This patch fixes this problem. Tested successfully on 4xx.
39901 The relocation fixup patches for 4xx will follow soon.
39902
39903 Signed-off-by: Stefan Roese <sr@denx.de>
39904
Wolfgang Denk05675732007-08-18 22:00:38 +020039905commit 0dca874db62718e41253659e60f3a1de7eb418ce
39906Author: TsiChung <tcliew@Goku.(none)>
39907Date: Tue Jul 10 15:45:43 2007 -0500
39908
39909 Cache update and added CFG_UNIFY_CACHE
39910
39911 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.
39912
39913 Signed-off-by: TsiChung <tcliew@Goku.(none)>
39914
39915commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
39916Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39917Date: Thu Jul 5 23:36:16 2007 -0500
39918
39919 Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
39920
39921 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
39922
39923 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39924
39925commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
39926Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39927Date: Thu Jul 5 23:31:25 2007 -0500
39928
39929 Update header files
39930
39931 Include immap.h and renamed mcfrtc.h to rtc.h
39932
39933 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39934
39935commit 2870e98ac8e5553e9187b12a47e5f46babb53990
39936Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39937Date: Thu Jul 5 23:29:21 2007 -0500
39938
39939 Add mcffec_initialize()
39940
39941 Added mcffec_initialize() in eth_initialize()
39942
39943 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39944
39945commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
39946Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39947Date: Thu Jul 5 23:27:40 2007 -0500
39948
39949 Update header file and clean up
39950
39951 Include immap.h
39952
39953 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39954
39955commit 0cee9c66318602c856a899ae5fa7579ccba6443a
39956Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39957Date: Thu Jul 5 23:23:15 2007 -0500
39958
39959 New uart structure and defines
39960
39961 Seperated from mcfuart.h
39962
39963 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39964
39965commit a90e79de8d99e9c9d69d60bfff9f24c337165900
39966Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39967Date: Thu Jul 5 23:22:31 2007 -0500
39968
39969 New timer structure and defines
39970
39971 Seperated from mcftimer.h
39972
39973 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39974
39975commit e04acb2eba4782489417240eff76e20e176aec10
39976Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39977Date: Thu Jul 5 23:21:09 2007 -0500
39978
39979 Rename mcfrtc to rtc
39980
39981 Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
39982
39983 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39984
39985commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
39986Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39987Date: Thu Jul 5 23:17:36 2007 -0500
39988
39989 Rename mcfserial.c. Update include header
39990
39991 Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
39992
39993 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39994
39995commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
39996Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39997Date: Thu Jul 5 23:13:58 2007 -0500
39998
39999 Header file update, clean up and cache handling
40000
40001 Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
40002
40003 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40004
40005commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
40006Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40007Date: Thu Jul 5 23:10:40 2007 -0500
40008
40009 Create interrupts.c and modify Makefile
40010
40011 interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
40012
40013 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40014
40015commit ddd104f1ed655eda50c06ba636237a83ed943f34
40016Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40017Date: Thu Jul 5 23:06:55 2007 -0500
40018
40019 Enable Icache
40020
40021 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40022
40023commit b9bf3de377b2bae70c983c9b97feae914999e735
40024Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40025Date: Thu Jul 5 23:05:31 2007 -0500
40026
40027 Update header file and some clean up
40028
40029 Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
40030
40031 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40032
40033commit 84a015b52ec820a5ae173717d78516de731c89c2
40034Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40035Date: Thu Jul 5 23:03:28 2007 -0500
40036
40037 Update header file and enable icache
40038
40039 Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
40040
40041 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40042
40043commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
40044Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40045Date: Thu Jul 5 23:01:22 2007 -0500
40046
40047 Update header file and removed interrupt_init()
40048
40049 Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
40050
40051 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40052
40053commit 3b635492c95bd0d6e08f93f699821cba1f602a64
40054Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40055Date: Thu Jul 5 22:57:46 2007 -0500
40056
40057 Update for flash.o and mii.o
40058
40059 Removed flash.o and added mii.o
40060
40061 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40062
40063commit c5ded275d839e4ff79f41718d50a835d989f57bc
40064Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40065Date: Thu Jul 5 22:56:19 2007 -0500
40066
40067 MII functions calls.
40068
40069 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40070
40071commit 427c814104560e29bda14955c67703245aaaa5b4
40072Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40073Date: Thu Jul 5 22:54:42 2007 -0500
40074
40075 Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
40076
40077 The removed MII routines will be placed in mii.c.
40078
40079 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40080
40081commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
40082Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40083Date: Thu Jul 5 22:51:05 2007 -0500
40084
40085 Duplicate code
40086
40087 There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
40088
40089 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40090
40091commit 2744354a8437b8f78db178e30660215688bff570
40092Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40093Date: Thu Jul 5 22:46:38 2007 -0500
40094
40095 Seperate old structure defines and new structure defines
40096
40097 Removed new uart structure and defines to uart.h
40098
40099 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40100
40101commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
40102Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40103Date: Thu Jul 5 22:45:01 2007 -0500
40104
40105 Seperate old structure defines and new structure defines
40106
40107 New timer structure and defines will move to new timer.h
40108
40109 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40110
40111commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
40112Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40113Date: Thu Jul 5 22:42:23 2007 -0500
40114
40115 Clean up
40116
40117 Removed whitespace
40118
40119 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40120
40121commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
40122Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40123Date: Thu Jul 5 22:41:24 2007 -0500
40124
40125 Clean up
40126
40127 Replaced whitespace with tabs
40128
40129 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40130
40131commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
40132Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40133Date: Thu Jul 5 22:39:07 2007 -0500
40134
40135 Create new header file and move peripherals base address from configs file to new header file.
40136
40137 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.
40138
40139 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40140
40141commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
40142Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40143Date: Thu Jul 5 22:24:58 2007 -0500
40144
40145 Revert file mode
40146
40147 Changed MAKEALL file mode to executable, removed executable file mode from Makefile
40148
40149 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40150
Wolfgang Denk5728be32007-08-06 01:01:49 +020040151commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
40152Author: Jon Loeliger <jdl@freescale.com>
40153Date: Tue Jul 10 11:19:50 2007 -0500
40154
40155 disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
40156
40157 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
40158 Those always evaluated TRUE, and thus were always compiled
40159 even when IDE really wasn't defined/wanted.
40160
40161 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40162
40163commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
40164Author: Jon Loeliger <jdl@freescale.com>
40165Date: Tue Jul 10 11:13:21 2007 -0500
40166
40167 drivers/: Remove lingering references to CFG_CMD_* symbols.
40168
40169 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
40170 Those always evaluated TRUE, and thus were always compiled
40171 even when IDE really wasn't defined/wanted.
40172
40173 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40174
40175commit f40a7f3e3888b42a43674b099e5470022c8c544c
40176Author: Jon Loeliger <jdl@freescale.com>
40177Date: Tue Jul 10 11:07:56 2007 -0500
40178
40179 fs/: Remove lingering references to CFG_CMD_* symbols.
40180
40181 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
40182 Those always evaluated TRUE, and thus were always compiled
40183 even when IDE really wasn't defined/wanted.
40184
40185 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40186
40187commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
40188Author: Jon Loeliger <jdl@freescale.com>
40189Date: Tue Jul 10 11:05:02 2007 -0500
40190
40191 net/: Remove lingering references to CFG_CMD_* symbols.
40192
40193 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
40194 Those always evaluated TRUE, and thus were always compiled
40195 even when IDE really wasn't defined/wanted.
40196
40197 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40198
40199commit 902531788376046da212afd1661cffb62f3daa1c
40200Author: Jon Loeliger <jdl@freescale.com>
40201Date: Tue Jul 10 11:02:44 2007 -0500
40202
40203 common/: Remove lingering references to CFG_CMD_* symbols.
40204
40205 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
40206 Those always evaluated TRUE, and thus were always compiled
40207 even when IDE really wasn't defined/wanted.
40208
40209 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40210
40211commit d39b57415838c73fb0a37eca84de3c68ba990586
40212Author: Jon Loeliger <jdl@freescale.com>
40213Date: Tue Jul 10 10:48:22 2007 -0500
40214
40215 board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
40216
40217 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
40218 Those always evaluated TRUE, and thus were always compiled
40219 even when IDE really wasn't defined/wanted.
40220
40221 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40222
40223commit 77a318545d57aefa844752465b94c7e09a3f26d0
40224Author: Jon Loeliger <jdl@freescale.com>
40225Date: Tue Jul 10 10:39:10 2007 -0500
40226
40227 board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
40228
40229 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
40230 Those always evaluated TRUE, and thus were always compiled
40231 even when IDE really wasn't defined/wanted.
40232
40233 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40234
40235commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
40236Author: Jon Loeliger <jdl@freescale.com>
40237Date: Tue Jul 10 10:27:39 2007 -0500
40238
40239 cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
40240
40241 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40242
40243commit 079a136c3588814784561d6e4856970ee82d6e2a
40244Author: Jon Loeliger <jdl@freescale.com>
40245Date: Tue Jul 10 10:12:10 2007 -0500
40246
40247 include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
40248
40249 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
40250 used to be included but CONFIG_BOOTP_MASK was not defined.
40251
40252 Remove lingering references to CFG_CMD_* symbols.
40253
40254 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40255
40256commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
40257Author: Jon Loeliger <jdl@freescale.com>
40258Date: Tue Jul 10 09:38:02 2007 -0500
40259
40260 include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
40261
40262 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
40263 used to be included but CONFIG_BOOTP_MASK was not defined.
40264
40265 Remove lingering references to CFG_CMD_* symbols.
40266
40267 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40268
40269commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
40270Author: Jon Loeliger <jdl@freescale.com>
40271Date: Tue Jul 10 09:29:01 2007 -0500
40272
40273 include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
40274
40275 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
40276 used to be included but CONFIG_BOOTP_MASK was not defined.
40277
40278 Remove lingering references to CFG_CMD_* symbols.
40279
40280 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40281
40282commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
40283Author: Jon Loeliger <jdl@freescale.com>
40284Date: Tue Jul 10 09:22:23 2007 -0500
40285
40286 include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
40287
40288 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
40289 used to be included but CONFIG_BOOTP_MASK was not defined.
40290
40291 Remove lingering references to CFG_CMD_* symbols.
40292
40293 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40294
40295commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
40296Author: Jon Loeliger <jdl@freescale.com>
40297Date: Tue Jul 10 09:10:49 2007 -0500
40298
40299 include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
40300
40301 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
40302 used to be included but CONFIG_BOOTP_MASK was not defined.
40303
40304 Remove lingering references to CFG_CMD_* symbols.
40305
40306 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40307
40308commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
40309Author: Jon Loeliger <jdl@freescale.com>
40310Date: Tue Jul 10 09:02:57 2007 -0500
40311
40312 include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
40313
40314 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
40315 used to be included but CONFIG_BOOTP_MASK was not defined.
40316
40317 Remove lingering references to CFG_CMD_* symbols.
40318
40319 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40320
40321commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
40322Author: Jon Loeliger <jdl@freescale.com>
40323Date: Mon Jul 9 22:08:34 2007 -0500
40324
40325 Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
40326
40327 All of the choices for CONFIG_BOOTP_ are now documented in
40328 the README file. You must now individually select exactly
40329 the set that you want using a series of
40330 #define CONFIG_BOOTP_<x>
40331 statements in the board port config files now.
40332
40333 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40334
40335commit d3b8c1a743dcd31625c99e6a44590f207eb00028
40336Author: Jon Loeliger <jdl@freescale.com>
40337Date: Mon Jul 9 21:57:31 2007 -0500
40338
40339 include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
40340
40341 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40342
40343commit 2fd90ce575b02d189cbf443c85309bcd001aa393
40344Author: Jon Loeliger <jdl@freescale.com>
40345Date: Mon Jul 9 21:48:26 2007 -0500
40346
40347 include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
40348
40349 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40350
40351commit 37d4bb70586659dedef1658ce1bed071be098aec
40352Author: Jon Loeliger <jdl@freescale.com>
40353Date: Mon Jul 9 21:38:02 2007 -0500
40354
40355 include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
40356
40357 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40358
40359commit 18225e8dd1950bd6dbf35011e436db7f474c187d
40360Author: Jon Loeliger <jdl@freescale.com>
40361Date: Mon Jul 9 21:31:24 2007 -0500
40362
40363 include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
40364
40365 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40366
40367commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
40368Author: Jon Loeliger <jdl@freescale.com>
40369Date: Mon Jul 9 21:24:19 2007 -0500
40370
40371 include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
40372
40373 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40374
40375commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
40376Author: Jon Loeliger <jdl@freescale.com>
40377Date: Mon Jul 9 21:16:53 2007 -0500
40378
40379 include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
40380
40381 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40382
40383commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
40384Author: Jon Loeliger <jdl@freescale.com>
40385Date: Mon Jul 9 19:12:30 2007 -0500
40386
40387 Retire CONFIG_COMMANDS finally.
40388 Strip old CFG_CMD_* symbols out.
40389
40390 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40391
40392commit b5501f7d720fed99ab0b42c83f5dea52868ce007
40393Author: Jon Loeliger <jdl@freescale.com>
40394Date: Mon Jul 9 19:10:03 2007 -0500
40395
40396 Update README.* to reference new CONFIG_CMD_* names now.
40397
40398 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40399
40400commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
40401Author: Jon Loeliger <jdl@freescale.com>
40402Date: Mon Jul 9 19:06:00 2007 -0500
40403
40404 cpu/m*: Remove obsolete references to CONFIG_COMMANDS
40405
40406 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40407
40408commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
40409Author: Jon Loeliger <jdl@freescale.com>
40410Date: Mon Jul 9 18:57:22 2007 -0500
40411
40412 cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
40413
40414 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40415
40416commit ab3abcbabd840928fb1eb5122118ca466b5e5013
40417Author: Jon Loeliger <jdl@freescale.com>
40418Date: Mon Jul 9 18:45:16 2007 -0500
40419
40420 board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
40421
40422 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40423
40424commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
40425Author: Jon Loeliger <jdl@freescale.com>
40426Date: Mon Jul 9 18:38:39 2007 -0500
40427
40428 board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
40429
40430 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40431
40432commit c508a4cefd8a953fc64957650506a035e6e3d9d1
40433Author: Jon Loeliger <jdl@freescale.com>
40434Date: Mon Jul 9 18:31:28 2007 -0500
40435
40436 board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
40437
40438 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40439
40440commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
40441Author: Jon Loeliger <jdl@freescale.com>
40442Date: Mon Jul 9 18:24:55 2007 -0500
40443
40444 board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
40445
40446 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40447
40448commit fcec2eb93e126400009729328e797f12bc94f1fd
40449Author: Jon Loeliger <jdl@freescale.com>
40450Date: Mon Jul 9 18:19:09 2007 -0500
40451
40452 board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
40453
40454 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40455
40456commit a593814f2be0c9cdc3133cd550b167b8a988328f
40457Author: Jon Loeliger <jdl@freescale.com>
40458Date: Mon Jul 9 18:10:50 2007 -0500
40459
40460 rtc/: Remove obsolete references to CONFIG_COMMANDS
40461
40462 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40463
40464commit 67350568f9d46e66c21829f3513b3db0caeb948b
40465Author: Jon Loeliger <jdl@freescale.com>
40466Date: Mon Jul 9 18:05:38 2007 -0500
40467
40468 lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
40469
40470 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40471
40472commit 7def6b34f910f08d7ef0a14646da067719237ca2
40473Author: Jon Loeliger <jdl@freescale.com>
40474Date: Mon Jul 9 18:02:11 2007 -0500
40475
40476 lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
40477
40478 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40479
40480commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
40481Author: Jon Loeliger <jdl@freescale.com>
40482Date: Mon Jul 9 17:56:50 2007 -0500
40483
40484 fs/: Remove obsolete references to CONFIG_COMMANDS
40485
40486 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40487
40488commit c91898bbc505aff3e12a807af88e76da18efb7ee
40489Author: Jon Loeliger <jdl@freescale.com>
40490Date: Mon Jul 9 17:46:09 2007 -0500
40491
40492 tools/: Remove obsolete references to CONFIG_COMMANDS
40493
40494 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40495
40496commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
40497Author: Jon Loeliger <jdl@freescale.com>
40498Date: Mon Jul 9 17:45:14 2007 -0500
40499
40500 net/: Remove obsolete references to CONFIG_COMMANDS
40501
40502 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40503
40504commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
40505Author: Jon Loeliger <jdl@freescale.com>
40506Date: Mon Jul 9 17:39:42 2007 -0500
40507
40508 drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
40509
40510 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40511
40512commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
40513Author: Jon Loeliger <jdl@freescale.com>
40514Date: Mon Jul 9 17:30:01 2007 -0500
40515
40516 drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
40517
40518 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40519
40520commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
40521Author: Jon Loeliger <jdl@freescale.com>
40522Date: Mon Jul 9 17:22:37 2007 -0500
40523
40524 disk/: Remove obsolete references to CONFIG_COMMANDS
40525
40526 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40527
40528commit 639221c76c88215bd55af83ad174fc30d1940f8f
40529Author: Jon Loeliger <jdl@freescale.com>
40530Date: Mon Jul 9 17:15:49 2007 -0500
40531
40532 include/: Remove obsolete references to CONFIG_COMMANDS
40533 Mostly removed from comments here.
40534
40535 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40536
Wolfgang Denk239f05e2007-07-12 01:45:34 +020040537commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
40538Author: Wolfgang Denk <wd@denx.de>
40539Date: Tue Jul 10 00:01:28 2007 +0200
40540
40541 Coding style cleanup; update CHANGELOG.
40542
40543 Signed-off-by: Wolfgang Denk <wd@denx.de>
40544
Wolfgang Denka5a38f42007-08-16 11:51:04 +020040545commit c8603cfbd4573379a6076c9c208545ba2bbf019a
40546Author: Stefan Roese <sr@denx.de>
40547Date: Mon Jul 9 11:00:24 2007 +0200
40548
40549 Small coding style cleanup
40550
40551 Signed-off-by: Stefan Roese <sr@denx.de>
40552
40553commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
40554Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40555Date: Mon Jul 9 10:10:08 2007 +0200
40556
40557 Migrate esd 405EP boards to new NAND subsystem
40558
40559 Remove unused CFG_NAND_LEGACY define
40560
40561 These boards to not have NAND.
40562
40563 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40564
40565commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
40566Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40567Date: Mon Jul 9 10:10:06 2007 +0200
40568
40569 Migrate esd 405EP boards to new NAND subsystem
40570
40571 Migrate esd 405EP boards to new NAND subsystem
40572
40573 -cleanup
40574 -use correct io accessors (in/out_be32())
40575
40576 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40577
40578commit e09f7ab5749c345f924da272bea0521a73af5b11
40579Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40580Date: Mon Jul 9 10:10:04 2007 +0200
40581
40582 Migrate esd 405EP boards to new NAND subsystem
40583
40584 This patch prepares the migration from the legacy NAND driver
40585 to U-Boot's new NAND subsystem for esd boards.
40586
40587 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40588
Wolfgang Denk5728be32007-08-06 01:01:49 +020040589commit c3517f919d0f61650cf3027fd4faf0f631142f6c
40590Author: Jon Loeliger <jdl@freescale.com>
40591Date: Sun Jul 8 18:10:08 2007 -0500
40592
40593 common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
40594
40595 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40596
40597commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
40598Author: Jon Loeliger <jdl@freescale.com>
40599Date: Sun Jul 8 18:05:39 2007 -0500
40600
40601 common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
40602
40603 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40604
40605commit c76fe47425afc7d5d670ff0539823c85d65d9c42
40606Author: Jon Loeliger <jdl@freescale.com>
40607Date: Sun Jul 8 18:02:23 2007 -0500
40608
40609 common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
40610
40611 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40612
40613commit baa26db4113679b80970ff447d91cc10217742a6
40614Author: Jon Loeliger <jdl@freescale.com>
40615Date: Sun Jul 8 17:51:39 2007 -0500
40616
40617 common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
40618
40619 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40620
40621commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
40622Author: Jon Loeliger <jdl@freescale.com>
40623Date: Sun Jul 8 17:02:01 2007 -0500
40624
40625 Clear up confusion over the CMD_POST and POST_DIAG mess.
40626
40627 For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
40628 when it really means just CONFIG_CMD_DIAG. There is no CMD_POST.
40629 Clear this mess up some.
40630
40631 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40632
40633commit b3631487105a57ab7cbadfc26efbaf9676275018
40634Author: Jon Loeliger <jdl@freescale.com>
40635Date: Sun Jul 8 15:45:08 2007 -0500
40636
40637 Remove references to the old cmd_confdefs.h include file.
40638
40639 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40640
40641commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
40642Author: Jon Loeliger <jdl@freescale.com>
40643Date: Sun Jul 8 15:42:59 2007 -0500
40644
40645 include/configs: Catch some CONFIG_CMD_* conversion stragglers.
40646
40647 Use new CONFIG_CMD_* in lwmon5.h board config file.
40648 Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
40649
40650 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40651
40652commit a5562901661bd428f7e5feb333f796372cb81019
40653Author: Jon Loeliger <jdl@freescale.com>
40654Date: Sun Jul 8 15:31:57 2007 -0500
40655
40656 include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
40657
40658 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40659
40660commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
40661Author: Jon Loeliger <jdl@freescale.com>
40662Date: Sun Jul 8 15:02:44 2007 -0500
40663
40664 include/configs: Use new CONFIG_CMD_* in various S* named board config files.
40665
40666 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40667
40668commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
40669Author: Jon Loeliger <jdl@freescale.com>
40670Date: Sun Jul 8 15:12:40 2007 -0500
40671
40672 include/configs: Use new CONFIG_CMD_* in various R* named board config files.
40673
40674 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40675
40676commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
40677Author: Jon Loeliger <jdl@freescale.com>
40678Date: Sun Jul 8 14:55:07 2007 -0500
40679
40680 include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
40681
40682 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40683
40684commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
40685Author: Jon Loeliger <jdl@freescale.com>
40686Date: Sun Jul 8 14:49:44 2007 -0500
40687
40688 include/configs: Use new CONFIG_CMD_* in various P* named board config files.
40689
40690 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40691
40692commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
40693Author: Jon Loeliger <jdl@freescale.com>
40694Date: Sun Jul 8 14:21:43 2007 -0500
40695
40696 include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
40697
40698 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40699
40700commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
40701Author: Jon Loeliger <jdl@freescale.com>
40702Date: Sun Jul 8 14:14:17 2007 -0500
40703
40704 include/configs: Use new CONFIG_CMD_* in various M* named board config files.
40705
40706 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40707
40708commit 348f258f24253433e4a2302a0bbceb6740a67246
40709Author: Jon Loeliger <jdl@freescale.com>
40710Date: Sun Jul 8 13:46:18 2007 -0500
40711
40712 include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
40713
40714 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40715
40716commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
40717Author: Jon Loeliger <jdl@freescale.com>
40718Date: Sun Jul 8 10:09:35 2007 -0500
40719
40720 include/configs: Use new CONFIG_CMD_* in various H* named board config files.
40721
40722 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40723
40724commit 60a0876b5106b34220e459c208bbf648073306c0
40725Author: Jon Loeliger <jdl@freescale.com>
40726Date: Sat Jul 7 21:04:26 2007 -0500
40727
40728 include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
40729
40730 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40731
40732commit dcaa71562826a2466e894c868d132509dcda8444
40733Author: Jon Loeliger <jdl@freescale.com>
40734Date: Sat Jul 7 20:56:05 2007 -0500
40735
40736 include/configs: Use new CONFIG_CMD_* in various E* named board config files.
40737
40738 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40739
40740commit 3c3227f3c737502311b25b72084573901cbbf17d
40741Author: Jon Loeliger <jdl@freescale.com>
40742Date: Sat Jul 7 20:40:43 2007 -0500
40743
40744 include/configs: Use new CONFIG_CMD_* in various D* named board config files.
40745
40746 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40747
40748commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
40749Author: Jon Loeliger <jdl@freescale.com>
40750Date: Thu Jul 5 19:52:35 2007 -0500
40751
40752 include/configs: Use new CONFIG_CMD_* in various C* named board config files.
40753
40754 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40755
40756commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
40757Author: Jon Loeliger <jdl@freescale.com>
40758Date: Thu Jul 5 19:32:07 2007 -0500
40759
40760 include/configs: Use new CONFIG_CMD_* in various B* named board config files.
40761
40762 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40763
40764commit 498ff9a228485bd4b9f23d066bada268f9add1dd
40765Author: Jon Loeliger <jdl@freescale.com>
40766Date: Thu Jul 5 19:13:52 2007 -0500
40767
40768 include/configs: Use new CONFIG_CMD_* in various A* named board config files.
40769
40770 Since ADS860.h includes "board/fads/fads.h" with ramifications
40771 on the CONFIG_COMMAND treatment, it too has to be adjusted to
40772 exclude already configured commands in this same commit.
40773
40774 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40775
Wolfgang Denka5a38f42007-08-16 11:51:04 +020040776commit 10e038932f22ee80ebd53de312531e70e6590a2f
40777Author: Thomas Knobloch <knobloch@siemens.com>
40778Date: Fri Jul 6 14:58:39 2007 +0200
40779
40780 [NAND] Bad block skipping for command nboot
40781
40782 The old implementation of command nboot does not support reading the image from
40783 NAND flash with skipping of bad blocks. The patch implements a new version of
40784 the nboot command: by calling nboot.jffs2 from the u-boot command line the
40785 command will load the image from NAND flash with respect to bad blocks (by using
40786 nand_read_opts()). This is similar to e.g. the NAND read command: "nand
40787 read.jffs2 ...".
40788
40789 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
40790 Signed-off-by: Stefan Roese <sr@denx.de>
40791
40792commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
40793Author: Stefan Roese <sr@denx.de>
40794Date: Fri Jul 6 12:26:51 2007 +0200
40795
40796 ppc4xx: Update lwmon5 default environment
40797
40798 Signed-off-by: Stefan Roese <sr@denx.de>
40799
40800commit 5d187430a055d62f17ca84d75e7245439d1f7e75
40801Author: Stefan Roese <sr@denx.de>
40802Date: Fri Jul 6 11:48:24 2007 +0200
40803
40804 ppc4xx: Update lwmon5 board
40805
40806 Add unlock=yes environment variable to default variables to unlock
40807 the CFI flash by default.
40808
40809 Signed-off-by: Stefan Roese <sr@denx.de>
40810
Wolfgang Denk5728be32007-08-06 01:01:49 +020040811commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
40812Author: Stefan Roese <sr@denx.de>
40813Date: Fri Jul 6 09:45:47 2007 +0200
40814
40815 Fix problem with get/setdcr commands introduced by cfg patches
40816
40817 Signed-off-by: Stefan Roese <sr@denx.de>
40818
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020040819commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
40820Author: Wolfgang Denk <wd@denx.de>
40821Date: Fri Jul 6 02:50:19 2007 +0200
40822
40823 Code cleanup and default config update for STC GP3 SSA board.
40824
40825 Signed-off-by: Wolfgang Denk <wd@denx.de>
40826
Wolfgang Denk5728be32007-08-06 01:01:49 +020040827commit e4dbe1b215f5c6c462e76909d240bd96472b84de
40828Author: Wolfgang Denk <wd@denx.de>
40829Date: Thu Jul 5 17:56:27 2007 +0200
40830
40831 Fixing some typos etc. introduced mainly by cfg patches.
40832
40833 Signed-off-by: Wolfgang Denk <wd@denx.de>
40834
40835commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
40836Author: Wolfgang Denk <wd@denx.de>
40837Date: Thu Jul 5 11:12:16 2007 +0200
40838
40839 Minor coding style cleanup. Update CHANGELOG.
40840
Wolfgang Denkb6b46842007-07-05 11:12:16 +020040841commit dca3b3d6d6396b67e5e84af53452164923c73443
40842Author: Jon Loeliger <jdl@jdl.com>
40843Date: Wed Jul 4 22:33:46 2007 -0500
40844
40845 include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
40846
40847 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40848
40849commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
40850Author: Jon Loeliger <jdl@jdl.com>
40851Date: Wed Jul 4 22:33:38 2007 -0500
40852
40853 include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
40854
40855 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40856
40857commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
40858Author: Jon Loeliger <jdl@jdl.com>
40859Date: Wed Jul 4 22:33:30 2007 -0500
40860
40861 include/configs: Use new CONFIG_CMD_* in various s* named board config files.
40862
40863 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40864
40865commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
40866Author: Jon Loeliger <jdl@jdl.com>
40867Date: Wed Jul 4 22:33:23 2007 -0500
40868
40869 include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
40870
40871 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40872
40873commit 26a34560d56a9df5bc2ae23525d9229736134757
40874Author: Jon Loeliger <jdl@jdl.com>
40875Date: Wed Jul 4 22:33:17 2007 -0500
40876
40877 include/configs: Use new CONFIG_CMD_* in various p* named board config files.
40878
40879 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40880
40881commit a5cb23092a7d31490a33d4ec871468b63babfa3c
40882Author: Jon Loeliger <jdl@jdl.com>
40883Date: Wed Jul 4 22:33:13 2007 -0500
40884
40885 include/configs: Use new CONFIG_CMD_* in various o* named board config files.
40886
40887 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40888
40889commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
40890Author: Jon Loeliger <jdl@jdl.com>
40891Date: Wed Jul 4 22:33:07 2007 -0500
40892
40893 include/configs: Use new CONFIG_CMD_* in various n* named board config files.
40894
40895 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40896
40897commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
40898Author: Jon Loeliger <jdl@jdl.com>
40899Date: Wed Jul 4 22:33:01 2007 -0500
40900
40901 include/configs: Use new CONFIG_CMD_* in various m* named board config files.
40902
40903 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40904
40905commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
40906Author: Jon Loeliger <jdl@jdl.com>
40907Date: Wed Jul 4 22:32:57 2007 -0500
40908
40909 include/configs: Use new CONFIG_CMD_* in various l* named board config files.
40910
40911 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40912
40913commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
40914Author: Jon Loeliger <jdl@jdl.com>
40915Date: Wed Jul 4 22:32:51 2007 -0500
40916
40917 include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
40918
40919 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40920
40921commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
40922Author: Jon Loeliger <jdl@jdl.com>
40923Date: Wed Jul 4 22:32:32 2007 -0500
40924
40925 include/configs: Use new CONFIG_CMD_* in various i* named board config files.
40926
40927 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40928
40929commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
40930Author: Jon Loeliger <jdl@jdl.com>
40931Date: Wed Jul 4 22:32:25 2007 -0500
40932
40933 include/configs: Use new CONFIG_CMD_* in various h* named board config files.
40934
40935 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40936
40937commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
40938Author: Jon Loeliger <jdl@jdl.com>
40939Date: Wed Jul 4 22:32:19 2007 -0500
40940
40941 include/configs: Use new CONFIG_CMD_* in various g* named board config files.
40942
40943 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40944
40945commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
40946Author: Jon Loeliger <jdl@jdl.com>
40947Date: Wed Jul 4 22:32:10 2007 -0500
40948
40949 include/configs: Use new CONFIG_CMD_* in various e* named board config files.
40950
40951 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40952
40953commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
40954Author: Jon Loeliger <jdl@jdl.com>
40955Date: Wed Jul 4 22:32:03 2007 -0500
40956
40957 include/configs: Use new CONFIG_CMD_* in various d* named board config files.
40958
40959 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40960
40961commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
40962Author: Jon Loeliger <jdl@jdl.com>
40963Date: Wed Jul 4 22:31:56 2007 -0500
40964
40965 include/configs: Use new CONFIG_CMD_* in various c* named board config files.
40966
40967 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40968
40969commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
40970Author: Jon Loeliger <jdl@jdl.com>
40971Date: Wed Jul 4 22:31:49 2007 -0500
40972
40973 include/configs: Use new CONFIG_CMD_* in various b* named board config files.
40974
40975 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40976
40977commit 0b361c916617aff79e647b40f0e43361e0bbaccf
40978Author: Jon Loeliger <jdl@jdl.com>
40979Date: Wed Jul 4 22:31:42 2007 -0500
40980
40981 include/configs: Use new CONFIG_CMD_* in various a* named board config files.
40982
40983 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40984
40985commit b730cda82e362df6a22f4c59c0a9b97e885b1014
40986Author: Jon Loeliger <jdl@jdl.com>
40987Date: Wed Jul 4 22:31:35 2007 -0500
40988
40989 include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
40990
40991 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40992
40993commit d794cfefead5fc177cf4f41164e80382e9c9484a
40994Author: Jon Loeliger <jdl@jdl.com>
40995Date: Wed Jul 4 22:31:15 2007 -0500
40996
40997 include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
40998
40999 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41000
41001commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
41002Author: Jon Loeliger <jdl@jdl.com>
41003Date: Wed Jul 4 22:31:07 2007 -0500
41004
41005 include/configs: Use new CONFIG_CMD_* in STx board config files.
41006
41007 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41008
41009commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
41010Author: Jon Loeliger <jdl@jdl.com>
41011Date: Wed Jul 4 22:30:58 2007 -0500
41012
41013 include/configs: Use new CONFIG_CMD_* in sbc* board config files.
41014
41015 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41016
41017commit 2694690e285acaa34922f55f4b5ae030da60c55a
41018Author: Jon Loeliger <jdl@jdl.com>
41019Date: Wed Jul 4 22:30:50 2007 -0500
41020
41021 include/configs: Use new CONFIG_CMD_* in TQM board config files.
41022
41023 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41024
41025commit 1cc4c458329765b58e584a19821e796b3c10e976
41026Author: Jon Loeliger <jdl@jdl.com>
41027Date: Wed Jul 4 22:30:28 2007 -0500
41028
41029 include/configs: Use new CONFIG_CMD_* in 82xx board config files.
41030
41031 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41032
41033commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
41034Author: Jon Loeliger <jdl@jdl.com>
41035Date: Wed Jul 4 22:30:06 2007 -0500
41036
41037 include/configs: Use new CONFIG_CMD_* in 83xx board config files.
41038
41039 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41040
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020041041commit b44896215a09c60fa40cae906f7ed207bbc2c492
41042Author: Sergei Poselenov <sposelenov@emcraft.com>
41043Date: Thu Jul 5 08:17:37 2007 +0200
41044
41045 Merged POST framework with the current TOT.
41046
41047 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
41048
Wolfgang Denkb6b46842007-07-05 11:12:16 +020041049commit b24629fa377214d63bb40d1360e354b6d3e4af56
41050Author: Jon Loeliger <jdl@jdl.com>
41051Date: Wed Jun 13 13:23:15 2007 -0500
41052
41053 mpc86xx: Remove old CFG_CMD_* references.
41054
41055 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41056
41057commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
41058Author: Jon Loeliger <jdl@jdl.com>
41059Date: Wed Jun 13 13:22:54 2007 -0500
41060
41061 Add MPC8568MDS to MAKEALL 85xx target.
41062
41063 It was missing from the original port submission.
41064
41065 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41066
41067commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
41068Author: Jon Loeliger <jdl@jdl.com>
41069Date: Wed Jun 13 13:22:08 2007 -0500
41070
41071 include/configs: Use new CONFIG_CMD_* in 85xx board config files.
41072
41073 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41074
41075commit 56b304ac2091689506088a9ae67f63fd6300cf16
41076Author: Jon Loeliger <jdl@jdl.com>
41077Date: Wed Jun 13 13:21:37 2007 -0500
41078
41079 Fix #if typo in CONFIG_CMD_* changes.
41080
41081 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41082
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020041083commit f780b83316d9af1f61d71cc88b1917b387b9b995
41084Author: Niklaus Giger <niklausgiger@gmx.ch>
41085Date: Wed Jun 27 18:11:38 2007 +0200
41086
41087 resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
41088
41089 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
41090
41091commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
41092Author: Stefan Roese <sr@denx.de>
41093Date: Wed Jul 4 10:06:30 2007 +0200
41094
41095 ppc4xx: Update lwmon5 board
41096
41097 - Add optional ECC generation routine to preserve existing
41098 RAM values. This is needed for the Linux log-buffer support
41099 - Add optional DDR2 setup with CL=4
41100 - GPIO50 not used anymore
41101 - Lime register setup added
41102
41103 Signed-off-by: Stefan Roese <sr@denx.de>
41104
Wolfgang Denkb6b46842007-07-05 11:12:16 +020041105commit 6810a34677dbc446334f5e451f1682426dd33b49
41106Author: Grant Likely <grant.likely@secretlab.ca>
41107Date: Tue Jul 3 00:17:28 2007 -0600
41108
41109 Fix Makefile to use $(MKCONFIG) macro for all board ports
41110
41111 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41112
41113commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
41114Author: Grant Likely <grant.likely@secretlab.ca>
41115Date: Tue Jul 3 00:17:28 2007 -0600
41116
41117 Fix Makefile to use $(MKCONFIG) macro for all board ports
41118
41119 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41120
41121commit 057004f4a4863554d56cc56268bfa7c7d9738e27
41122Author: Grant Likely <grant.likely@secretlab.ca>
41123Date: Tue Jul 3 00:34:49 2007 -0600
41124
41125 Correct fixup relocation for mpc83xx
41126
41127 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41128
41129commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
41130Author: Grant Likely <grant.likely@secretlab.ca>
41131Date: Tue Jul 3 00:34:44 2007 -0600
41132
41133 Correct fixup relocation for mpc8260
41134
41135 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41136
41137commit f3a52fe05923935db86985daf9438e2f70ac39aa
41138Author: Grant Likely <grant.likely@secretlab.ca>
41139Date: Tue Jul 3 00:34:39 2007 -0600
41140
41141 Correct fixup relocation for mpc824x
41142
41143 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41144
41145commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
41146Author: Grant Likely <grant.likely@secretlab.ca>
41147Date: Tue Jul 3 00:34:34 2007 -0600
41148
41149 Correct fixup relocation for mpc8220
41150
41151 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41152
41153commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
41154Author: Grant Likely <grant.likely@secretlab.ca>
41155Date: Tue Jul 3 00:34:29 2007 -0600
41156
41157 Correct fixup relocation for MPC5xxx
41158
41159 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41160
41161commit 3649cd99ba815b6601868735765602f00ef3692b
41162Author: Grant Likely <grant.likely@secretlab.ca>
41163Date: Tue Jul 3 00:34:24 2007 -0600
41164
41165 Correct relocation fixup for mpc5xx
41166
41167 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41168
41169commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
41170Author: Grant Likely <grant.likely@secretlab.ca>
41171Date: Tue Jul 3 00:34:19 2007 -0600
41172
41173 Don't set gd->reloc_off if relocation of .fixup works correctly
41174
41175 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41176
41177commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
41178Author: Grant Likely <grant.likely@secretlab.ca>
41179Date: Tue Jul 3 00:34:14 2007 -0600
41180
41181 Remove obsolete mpc83xx linker scripts
41182
41183 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41184
41185commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
41186Author: Grant Likely <grant.likely@secretlab.ca>
41187Date: Tue Jul 3 00:34:09 2007 -0600
41188
41189 Consolidate mpc8260 linker scripts
41190
41191 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41192
41193commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
41194Author: Grant Likely <grant.likely@secretlab.ca>
41195Date: Tue Jul 3 00:34:04 2007 -0600
41196
41197 Remove obsolete mpc824x linker scripts
41198
41199 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41200
41201commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
41202Author: Grant Likely <grant.likely@secretlab.ca>
41203Date: Tue Jul 3 00:33:59 2007 -0600
41204
41205 Remove obsolete mpc824x linker scripts (3 of 4)
41206
41207 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41208
41209commit a71c084f3ac7fedf144537db2b2da47323068833
41210Author: Grant Likely <grant.likely@secretlab.ca>
41211Date: Tue Jul 3 00:33:53 2007 -0600
41212
41213 Remove obsolete mpc824x linker scripts (2 of 4)
41214
41215 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41216
41217commit f670a15468d1365241d40022b9408e1004181f5e
41218Author: Grant Likely <grant.likely@secretlab.ca>
41219Date: Tue Jul 3 00:33:48 2007 -0600
41220
41221 Remove obsolete mpc824x linker scripts (1 of 4)
41222
41223 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41224
41225commit 09555bd45a04c0e54f172528d21bc18896550d28
41226Author: Grant Likely <grant.likely@secretlab.ca>
41227Date: Tue Jul 3 00:33:43 2007 -0600
41228
41229 Remove obsolete mpc8220 linker scripts
41230
41231 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41232
41233commit 5efb992f046e51225c93d52f80fecbe433abd789
41234Author: Grant Likely <grant.likely@secretlab.ca>
41235Date: Tue Jul 3 00:33:38 2007 -0600
41236
41237 Remove obsolete mpc5xxx linker scripts (3 of 3)
41238
41239 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41240
41241commit 07c13dfef65b31647e69d8b61daa1eec598add1a
41242Author: Grant Likely <grant.likely@secretlab.ca>
41243Date: Tue Jul 3 00:33:33 2007 -0600
41244
41245 Remove obsolete mpc5xxx linker scripts (2 of 3)
41246
41247 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41248
41249commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
41250Author: Grant Likely <grant.likely@secretlab.ca>
41251Date: Tue Jul 3 00:33:28 2007 -0600
41252
41253 Remove obsolete mpc5xxx linker scripts (1 of 3)
41254
41255 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41256
41257commit b7d8e05f8675249b5f208aa73babeed384a4519d
41258Author: Grant Likely <grant.likely@secretlab.ca>
41259Date: Tue Jul 3 00:33:23 2007 -0600
41260
41261 Remove obsolete mpc5xx linker scripts
41262
41263 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41264
41265commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
41266Author: Grant Likely <grant.likely@secretlab.ca>
41267Date: Tue Jul 3 00:33:18 2007 -0600
41268
41269 Consolidate mpc83xx linker scripts
41270
41271 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41272
41273commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
41274Author: Grant Likely <grant.likely@secretlab.ca>
41275Date: Tue Jul 3 00:33:13 2007 -0600
41276
41277 Consolidate mpc8260 linker scripts
41278
41279 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41280
41281commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
41282Author: Grant Likely <grant.likely@secretlab.ca>
41283Date: Tue Jul 3 00:33:08 2007 -0600
41284
41285 Consolidate mpc824x linker scripts
41286
41287 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41288
41289commit 9c757b789a59a855db57b448dd825329c4e9c4a0
41290Author: Grant Likely <grant.likely@secretlab.ca>
41291Date: Tue Jul 3 00:33:03 2007 -0600
41292
41293 Consolidate mpc8220 linker scripts
41294
41295 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41296
41297commit d181c9a15cd41863fe24840d17848429f27d3c8c
41298Author: Grant Likely <grant.likely@secretlab.ca>
41299Date: Tue Jul 3 00:32:58 2007 -0600
41300
41301 Consolidate mpc5xxx linker scripts
41302
41303 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41304
41305commit 287ac924adb7291bebe5086652a362a30ab28b13
41306Author: Grant Likely <grant.likely@secretlab.ca>
41307Date: Tue Jul 3 00:32:53 2007 -0600
41308
41309 Consolidate mpc5xx linker scripts
41310
41311 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41312
41313commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
41314Author: Wolfgang Denk <wd@denx.de>
41315Date: Wed Jul 4 00:43:53 2007 +0200
41316
41317 Fix a few file permission problems.
41318
41319 Signed-off-by: Wolfgang Denk <wd@denx.de>
41320
41321commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
41322Author: Wolfgang Denk <wd@denx.de>
41323Date: Wed Jul 4 00:38:38 2007 +0200
41324
41325 Minor coding style cleanup. Rebuild CHANGELOG file.
41326
Wolfgang Denk78e0cf22007-07-04 00:38:38 +020041327commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
41328Author: Jon Loeliger <jdl@jdl.com>
41329Date: Mon Jun 11 19:03:44 2007 -0500
41330
41331 configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
41332
41333 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41334
41335commit 602ad3b33d9ceef83dbab46be68646d645d637ee
41336Author: Jon Loeliger <jdl@jdl.com>
41337Date: Mon Jun 11 19:03:39 2007 -0500
41338
41339 README: Rewrite command line config to use CONFIG_CMD_* names.
41340
41341 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41342
41343commit 72a074cec68e5bad60d63206c050974e08afd804
41344Author: Jon Loeliger <jdl@jdl.com>
41345Date: Mon Jun 11 19:03:34 2007 -0500
41346
41347 include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41348
41349 This is a compatibility step that allows both the older form
41350 and the new form to co-exist for a while until the older can
41351 be removed entirely.
41352
41353 All transformations are of the form:
41354 Before:
41355 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41356 After:
41357 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41358
41359 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41360
41361commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
41362Author: Jon Loeliger <jdl@jdl.com>
41363Date: Mon Jun 11 19:03:28 2007 -0500
41364
41365 tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41366
41367 This is a compatibility step that allows both the older form
41368 and the new form to co-exist for a while until the older can
41369 be removed entirely.
41370
41371 All transformations are of the form:
41372 Before:
41373 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41374 After:
41375 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41376
41377 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41378
41379commit 9107ebe0d352420895ab69b715697bdebc8caf50
41380Author: Jon Loeliger <jdl@jdl.com>
41381Date: Mon Jun 11 19:03:23 2007 -0500
41382
41383 board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41384
41385 This is a compatibility step that allows both the older form
41386 and the new form to co-exist for a while until the older can
41387 be removed entirely.
41388
41389 All transformations are of the form:
41390 Before:
41391 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41392 After:
41393 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41394
41395 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41396
41397commit 5e378003d592ea828ec69d6defcd4de79096dd5c
41398Author: Jon Loeliger <jdl@jdl.com>
41399Date: Mon Jun 11 19:03:19 2007 -0500
41400
41401 board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41402
41403 This is a compatibility step that allows both the older form
41404 and the new form to co-exist for a while until the older can
41405 be removed entirely.
41406
41407 All transformations are of the form:
41408 Before:
41409 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41410 After:
41411 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41412
41413 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41414
41415commit 737184114ec9c9e0ab94d6713536126073bd2472
41416Author: Jon Loeliger <jdl@jdl.com>
41417Date: Mon Jun 11 19:03:15 2007 -0500
41418
41419 cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41420
41421 This is a compatibility step that allows both the older form
41422 and the new form to co-exist for a while until the older can
41423 be removed entirely.
41424
41425 All transformations are of the form:
41426 Before:
41427 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41428 After:
41429 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41430
41431 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41432
41433commit f48070fe5fe440dfb5ee5268c920de70e48ea327
41434Author: Jon Loeliger <jdl@jdl.com>
41435Date: Mon Jun 11 19:03:08 2007 -0500
41436
41437 cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41438
41439 This is a compatibility step that allows both the older form
41440 and the new form to co-exist for a while until the older can
41441 be removed entirely.
41442
41443 All transformations are of the form:
41444 Before:
41445 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41446 After:
41447 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41448
41449 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41450
41451commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
41452Author: Jon Loeliger <jdl@jdl.com>
41453Date: Mon Jun 11 19:03:03 2007 -0500
41454
41455 lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41456
41457 This is a compatibility step that allows both the older form
41458 and the new form to co-exist for a while until the older can
41459 be removed entirely.
41460
41461 All transformations are of the form:
41462 Before:
41463 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41464 After:
41465 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41466
41467 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41468
41469commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
41470Author: Jon Loeliger <jdl@jdl.com>
41471Date: Mon Jun 11 19:02:58 2007 -0500
41472
41473 lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41474
41475 This is a compatibility step that allows both the older form
41476 and the new form to co-exist for a while until the older can
41477 be removed entirely.
41478
41479 All transformations are of the form:
41480 Before:
41481 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41482 After:
41483 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41484
41485 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41486
41487commit 98b79003c21c2578206003256de4e781d6b36ca8
41488Author: Jon Loeliger <jdl@jdl.com>
41489Date: Mon Jun 11 19:02:53 2007 -0500
41490
41491 rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41492
41493 This is a compatibility step that allows both the older form
41494 and the new form to co-exist for a while until the older can
41495 be removed entirely.
41496
41497 All transformations are of the form:
41498 Before:
41499 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41500 After:
41501 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41502
41503 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41504
41505commit 6e2115acb6a892d53a6881bf253ae41d3df39156
41506Author: Jon Loeliger <jdl@jdl.com>
41507Date: Mon Jun 11 19:02:49 2007 -0500
41508
41509 net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41510
41511 This is a compatibility step that allows both the older form
41512 and the new form to co-exist for a while until the older can
41513 be removed entirely.
41514
41515 All transformations are of the form:
41516 Before:
41517 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41518 After:
41519 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41520
41521 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41522
41523commit 45cdb9b72c94655c7308b464a2666057c0b286e0
41524Author: Jon Loeliger <jdl@jdl.com>
41525Date: Mon Jun 11 19:02:34 2007 -0500
41526
41527 disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41528
41529 This is a compatibility step that allows both the older form
41530 and the new form to co-exist for a while until the older can
41531 be removed entirely.
41532
41533 All transformations are of the form:
41534 Before:
41535 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41536 After:
41537 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41538
41539 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41540
41541commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
41542Author: Jon Loeliger <jdl@jdl.com>
41543Date: Mon Jun 11 19:02:20 2007 -0500
41544
41545 fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41546
41547 This is a compatibility step that allows both the older form
41548 and the new form to co-exist for a while until the older can
41549 be removed entirely.
41550
41551 All transformations are of the form:
41552 Before:
41553 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41554 After:
41555 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41556
41557 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41558
41559commit d5be43de93ff905c465e509d45a3164ef48d26e7
41560Author: Jon Loeliger <jdl@jdl.com>
41561Date: Mon Jun 11 19:02:10 2007 -0500
41562
41563 drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41564
41565 This is a compatibility step that allows both the older form
41566 and the new form to co-exist for a while until the older can
41567 be removed entirely.
41568
41569 All transformations are of the form:
41570 Before:
41571 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41572 After:
41573 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41574
41575 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41576
41577commit b453960d4fdb87b3970d96119b90df2ed024fc4a
41578Author: Jon Loeliger <jdl@jdl.com>
41579Date: Mon Jun 11 19:02:05 2007 -0500
41580
41581 common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41582
41583 This is a compatibility step that allows both the older form
41584 and the new form to co-exist for a while until the older can
41585 be removed entirely.
41586
41587 All transformations are of the form:
41588 Before:
41589 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41590 After:
41591 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41592
41593 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41594
41595commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
41596Author: Jon Loeliger <jdl@jdl.com>
41597Date: Mon Jun 11 19:01:54 2007 -0500
41598
41599 common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41600
41601 This is a compatibility step that allows both the older form
41602 and the new form to co-exist for a while until the older can
41603 be removed entirely.
41604
41605 All transformations are of the form:
41606 Before:
41607 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41608 After:
41609 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41610
41611 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41612
41613commit a76adc8142c1d956385a109e0b70f9319ede4d66
41614Author: Jon Loeliger <jdl@jdl.com>
41615Date: Mon Jun 11 19:01:43 2007 -0500
41616
41617 common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
41618
41619 This is a compatibility step that allows both the older form
41620 and the new form to co-exist for a while until the older can
41621 be removed entirely.
41622
41623 All transformations are of the form:
41624 Before:
41625 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
41626 After:
41627 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
41628
41629 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41630
41631commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
41632Author: Jon Loeliger <jdl@jdl.com>
41633Date: Mon Jun 11 19:01:34 2007 -0500
41634
41635 Introduce initial versions of new Command Config files.
41636
41637 Derive three new files from cmd_confdefs.h:
41638 config_bootp.h - Has BOOTP related config options, not commands
41639 config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
41640 config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
41641
41642 For now, include "config_bootp.h" for compatability until all
41643 users of it directly include it properly.
41644
41645 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41646
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020041647commit 1f2a05898658900dc5717761e27abf2052e67e13
41648Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
41649Date: Sat Jun 30 18:50:48 2007 +0200
41650
41651 Fix S-ATA support.
41652
41653 Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
41654
41655commit a5d71e290f3673269be8eefb4ec44f53412f9461
41656Author: Heiko Schocher <hs@pollux.denx.de>
41657Date: Mon Jun 25 19:11:37 2007 +0200
41658
41659 [PCS440EP] get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
41660
41661 Signed-off-by: Heiko Schocher <hs@denx.de>
41662
41663commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
41664Author: Niklaus Giger <niklaus.giger@nestal.com>
41665Date: Mon Jun 25 17:03:13 2007 +0200
41666
41667 ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
41668
41669 This patch prints the DDR status registers upon machine check
41670 interrupt on the 440EPx/GRx. This can be useful especially when
41671 ECC support is enabled.
41672
41673 I added some small changes to the original patch from Niklaus to
41674 make it compile clean.
41675
41676 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
41677 Signed-off-by: Stefan Roese <sr@denx.de>
41678
41679commit 807018fb7faceb429ce0cb47baa2073746b33a4e
41680Author: Niklaus Giger <niklaus.giger@nestal.com>
41681Date: Mon Jun 25 16:50:55 2007 +0200
41682
41683 ppc4xx: Fix O=buildir builds
41684
41685 This patch fixes the problem to assemble cpu/ppc4xx/start.S
41686 experienced last week where building failed having specified
41687 O=../build.sequoia.
41688
41689 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
41690
41691commit 466fff1a7bb5fe764a06450626f6098219f446b8
41692Author: Stefan Roese <sr@denx.de>
41693Date: Mon Jun 25 15:57:39 2007 +0200
41694
41695 ppc4xx: Add pci_pre_init() for 405 boards
41696
41697 This patch removes the CFG_PCI_PRE_INIT option completely, since
41698 it's not needed anymore with the patch from Matthias Fuchs with
41699 the "weak" pci_pre_init() implementation.
41700
41701 Signed-off-by: Stefan Roese <sr@denx.de>
41702
41703commit 6f35c53166213c24a5a0e2390ed861136ff73870
41704Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41705Date: Sun Jun 24 17:41:21 2007 +0200
41706
41707 ppc4xx: Maintenance patch for esd's CPCI405 derivats
41708
41709 -add pci_pre_init() for pci interrupt fixup code
41710 -disable phy sleep mode via reset_phy() function
41711 -use correct io accessors
41712 -cleanup
41713
41714 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41715
41716commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
41717Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41718Date: Sun Jun 24 17:23:41 2007 +0200
41719
41720 ppc4xx: Add pci_pre_init() for 405 boards
41721
41722 This patch adds support for calling a plattform dependant
41723 pci_pre_init() function for 405 boards. This can be used to
41724 move the current pci_405gp_fixup_irq() function into the
41725 board code.
41726
41727 This patch also makes the CFG_PCI_PRE_INIT define obsolete.
41728 A default function with 'weak' attribute is used when
41729 a board specific pci_pre_init() is not implemented.
41730
41731 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41732
41733commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
41734Author: Wolfgang Denk <wd@denx.de>
41735Date: Fri Jun 22 23:59:00 2007 +0200
41736
41737 Coding stylke cleanup; rebuild CHANGELOG
41738
Wolfgang Denk1636d1c2007-06-22 23:59:00 +020041739commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
41740Author: Igor Lisitsin <igor@emcraft.com>
41741Date: Wed Apr 18 14:55:19 2007 +0400
41742
41743 Adapt log buffer code to support Linux 2.6
41744
41745 A new environment variable, "logversion", selects the log buffer
41746 behaviour. If it is not set or set to a value other than 2, then the
41747 old, Linux 2.4.4, behaviour is selected.
41748
41749 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
41750 --
41751
41752commit a11e06965ec91270c51853407ff1261d3c740386
41753Author: Igor Lisitsin <igor@emcraft.com>
41754Date: Wed Mar 28 19:06:19 2007 +0400
41755
41756 Extend POST support for PPC440
41757
41758 Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
41759
41760 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
41761 --
41762
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020041763commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
41764Author: Heiko Schocher <hs@pollux.denx.de>
41765Date: Fri Jun 22 19:11:54 2007 +0200
41766
41767 [PCS440EP] upgrade the PCS440EP board:
41768 - Show on the Status LEDs, some States of the board.
41769 - Get the MAC addresses from the EEProm
41770 - use PREBOOT
41771 - use the CF on the board.
41772 - check the U-Boot image in the Flash with a SHA1
41773 checksum.
41774 - use dynamic TLB entries generation for the SDRAM
41775
41776 Signed-off-by: Heiko Schocher <hs@denx.de>
41777
41778commit 3a1f5c81b0b9557817a789bece839905581c2205
41779Author: Stefan Roese <sr@denx.de>
41780Date: Fri Jun 22 16:58:40 2007 +0200
41781
41782 ppc4xx: Fix problem with extended program_tlb() funtion
41783
41784 The recently extended program_tlb() function had a problem when
41785 multiple TLB's had to be setup (for example with 512MB of SDRAM). The
41786 virtual address was not incremented. This patch fixes this issue
41787 and is tested on Katmai with 512MB SDRAM.
41788
41789 Signed-off-by: Stefan Roese <sr@denx.de>
41790
Wolfgang Denk1636d1c2007-06-22 23:59:00 +020041791commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
41792Author: Rafal Jaworowski <raj@semihalf.com>
41793Date: Fri Jun 22 14:58:04 2007 +0200
41794
41795 [ppc] Fix build breakage for all non-4xx PowerPC variants.
41796
41797 - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
41798 - minor 4xx cleanup
41799
Wolfgang Denka5a38f42007-08-16 11:51:04 +020041800commit d677b32855f577ae2690dcd64a172cdd706e0ffc
41801Author: Mike Frysinger <vapier@gentoo.org>
41802Date: Fri Jun 22 10:34:12 2007 +0200
41803
41804 [patch] add nand_init() prototype to nand.h
41805
41806 since nand_init() is expected to be called by other parts of u-boot, there
41807 should be a prototype for it in nand.h
41808
41809 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41810 Signed-off-by: Stefan Roese <sr@denx.de>
41811
Wolfgang Denk1636d1c2007-06-22 23:59:00 +020041812commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
41813Author: Wolfgang Denk <wd@denx.de>
41814Date: Wed Jun 20 18:14:24 2007 +0200
41815
41816 Coding style cleanup. Refresh CHANGELOG.
41817
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020041818commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
41819Author: Stefan Roese <sr@denx.de>
41820Date: Tue Jun 19 17:22:44 2007 +0200
41821
41822 ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
41823
41824 This patch adds a board command to configure the I2C bootstrap EEPROM
41825 values. Right now 533 and 667MHz are supported for booting either via NOR
41826 or NAND FLASH. Here the usage:
41827
41828 => bootstrap 533 nor ;to configure the board for 533MHz NOR booting
41829 => bootstrap 667 nand ;to configure the board for 667MHz NNAND booting
41830
41831 Signed-off-by: Stefan Roese <sr@denx.de>
41832
41833commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
41834Author: Stefan Roese <sr@denx.de>
41835Date: Tue Jun 19 16:42:31 2007 +0200
41836
41837 [ppc4xx] Fix problem with NAND booting on AMCC Acadia
41838
41839 The latest changes showed a problem with the location of the NAND-SPL
41840 image in the OCM and the init-data area (incl. cache). This patch
41841 fixes this problem.
41842
41843 Signed-off-by: Stefan Roese <sr@denx.de>
41844
41845commit 86ba99e34194394052d24c04dc40d1263d29a26f
41846Author: Stefan Roese <sr@denx.de>
41847Date: Tue Jun 19 16:40:58 2007 +0200
41848
41849 [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
41850
41851 Signed-off-by: Stefan Roese <sr@denx.de>
41852
Wolfgang Denk05675732007-08-18 22:00:38 +020041853commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
41854Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41855Date: Mon Jun 18 13:50:13 2007 -0500
41856
41857 Added M5329AFEE and M5329BFEE Platforms
41858
41859 Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
41860 drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
41861 include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
41862 rtc/mcfrtc.c
41863
41864 Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
41865 common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
41866 include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
41867 include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
41868 include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
41869 lib_m68k/time.c, net/eth.c and rtc/Makefile
41870
41871 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41872
Wolfgang Denk63640012007-10-14 00:13:19 +020041873commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
41874Author: Michal Simek <monstr@monstr.eu>
41875Date: Sun Jun 17 19:04:11 2007 +0200
41876
41877 [fix] email reparation
41878
41879commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
41880Author: Michal Simek <monstr@monstr.eu>
41881Date: Sun Jun 17 19:03:21 2007 +0200
41882
41883 [FIX] fix microblaze file permitission
41884
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020041885commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
41886Author: Stefan Roese <sr@denx.de>
41887Date: Fri Jun 15 11:33:41 2007 +0200
41888
41889 [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
41890
41891 Now CONFIG_440 has to be defined in all PPC440 board config files.
41892
41893 Signed-off-by: Stefan Roese <sr@denx.de>
41894
41895commit efa35cf12d914d4caba942acd5a6c45f217de302
41896Author: Grzegorz Bernacki <gjb@semihalf.com>
41897Date: Fri Jun 15 11:19:28 2007 +0200
41898
41899 ppc4xx: Clean up 440 exceptions handling
41900
41901 - Introduced dedicated switches for building 440 and 405 images required
41902 for 440-specific machine instructions like 'rfmci' etc.
41903
41904 - Exception vectors moved to the proper location (_start moved away from
41905 the critical exception handler space, which it occupied)
41906
41907 - CriticalInput now serviced (with default handler)
41908
41909 - MachineCheck properly serviced (added a dedicated handler and return
41910 subroutine)
41911
41912 - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
41913 unhandled and those not relevant for 4xx were eliminated)
41914
41915 - Eliminated Linux leftovers, removed dead code
41916
41917 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
41918 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
41919 Signed-off-by: Stefan Roese <sr@denx.de>
41920
41921commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
41922Author: Stefan Roese <sr@denx.de>
41923Date: Fri Jun 15 08:18:01 2007 +0200
41924
41925 [ppc4xx] Add initial lwmon5 board support
41926
41927 This patch adds initial support for the Liebherr lwmon5 board euqipped
41928 with an AMCC 440EPx PowerPC.
41929
41930 Signed-off-by: Stefan Roese <sr@denx.de>
41931
41932commit 85f737376d5ff3d5f0d45a8b657686326d175307
41933Author: Stefan Roese <sr@denx.de>
41934Date: Fri Jun 15 07:39:43 2007 +0200
41935
41936 [ppc4xx] Extend 44x GPIO setup with default output state
41937
41938 The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
41939 is extended with the default GPIO output state (level).
41940
41941 Signed-off-by: Stefan Roese <sr@denx.de>
41942
41943commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
41944Author: Stefan Roese <sr@denx.de>
41945Date: Thu Jun 14 11:14:32 2007 +0200
41946
41947 [ppc4xx] Extend program_tlb() with virtual & physical addresses
41948
41949 Now program_tlb() allows to program a TLB (or multiple) with
41950 different virtual and physical addresses. With this change, now one
41951 physical region (e.g. SDRAM) can be mapped 2 times, once with caches
41952 diabled and once with caches enabled.
41953
41954 Signed-off-by: Stefan Roese <sr@denx.de>
41955
41956commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
41957Author: Detlev Zundel <dzu@denx.de>
41958Date: Wed May 23 19:02:41 2007 +0200
41959
41960 Change 'repeatable' attribute of some commands to sensible values.
41961
41962 Most prominently this changes 'erase' to be non-repeatable.
41963
41964 Signed-off-by: Detlev Zundel <dzu@denx.de>
41965
41966commit 5afb202093f6a001797db92cf695b93a70ea9ab4
41967Author: Detlev Zundel <dzu@denx.de>
41968Date: Wed May 23 18:47:48 2007 +0200
41969
41970 Fix 'run' not to continue after interrupted command
41971
41972 Signed-off-by: Detlev Zundel <dzu@denx.de>
41973
Wolfgang Denk9986bc32007-08-12 21:34:50 +020041974commit 9b7464a2c88614e1061f509c48930a3d240d1a35
41975Author: Jason Jin <Jason.jin@freescale.com>
41976Date: Mon Jun 11 15:14:24 2007 +0200
41977
41978 USB: This patch fix readl in ohci swap reg access.
41979
41980 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
41981
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020041982commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
41983Author: Bartlomiej Sieka <tur@semihalf.com>
41984Date: Fri Jun 8 14:52:22 2007 +0200
41985
41986 TQM5200: Add Flat Device Tree support, update default env. accordingly.
41987
41988 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
41989 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
41990
41991commit 9045f33c023f698660a2e45d1b2194c0711abebc
41992Author: Wolfgang Denk <wd@denx.de>
41993Date: Fri Jun 8 10:24:58 2007 +0200
41994
41995 Fix config problems on SC3 board; make ide_reset_timeout work.
41996
41997commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
41998Author: Benoît Monin <bmonin@adeneo.eu>
41999Date: Fri Jun 8 09:55:24 2007 +0200
42000
42001 [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
42002
42003 Set the correct value in GPIOx_TCR when configuring the gpio
42004 with CFG_440_GPIO_TABLE.
42005
42006 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
42007 Signed-off-by: Stefan Roese <sr@denx.de>
42008
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +020042009commit f539edc076cfe52bff919dd512ba8d7af0e22092
42010Author: Vadim Bendebury <vbendeb@google.com>
42011Date: Thu May 24 15:52:25 2007 -0700
42012
42013 cosmetic changes to bcm570x driver
42014
42015 This is a cosmetic only changes submission.
42016 It affects files relevant to bcm570x driver.
42017 the commands used to generate this change was
42018
42019 cd drivers
42020 Lindent -pcs -l80 bcm570x.c bcm570x_lm.h bcm570x_mm.h tigon3.c tigon3.h
42021
42022 The BMW target (the only one using this chip so far) builds cleanly, the
42023 `before and after' generated object files for drivers/bcm570x.c and
42024 drivers/tigon3.o are identical as reported by objdump -d
42025
42026 Signed-off-by: Vadim Bendebury <vbendeb@google.com>
42027 Signed-off-by: Ben Warren <bwarren@qstreams.com>
42028
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020042029commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
42030Author: Wolfgang Denk <wd@denx.de>
42031Date: Wed Jun 6 16:26:56 2007 +0200
42032
42033 Coding Style cleanup; generate new CHANGELOG file.
42034
42035 Signed-off-by: Wolfgang Denk <wd@denx.de>
42036
Wolfgang Denk9986bc32007-08-12 21:34:50 +020042037commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
42038Author: Markus Klotzbuecher <mk@denx.de>
42039Date: Wed Jun 6 11:49:44 2007 +0200
42040
42041 TRAB, USB: update trab board configuration for use of generic ohci driver
42042
42043commit dace45acd1c1357daa9322099d07c9a9e08b0024
42044Author: Markus Klotzbuecher <mk@denx.de>
42045Date: Wed Jun 6 11:49:43 2007 +0200
42046
42047 USB: ohci fixes and cleanup for ppc4xx and yosemite board.
42048
42049commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
42050Author: Markus Klotzbuecher <mk@denx.de>
42051Date: Wed Jun 6 11:49:43 2007 +0200
42052
42053 USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
42054
42055commit fc43be478f2aa37ce38acd85355038866e4162af
42056Author: Markus Klotzbuecher <mk@denx.de>
42057Date: Wed Jun 6 11:49:35 2007 +0200
42058
42059 USB/OHCI: endianness cleanup in the generic ohci driver
42060
Wolfgang Denk725671c2007-06-06 16:26:56 +020042061commit c440bfe6d6d92d66478a7e84402b31f48413617b
42062Author: Stefan Roese <sr@denx.de>
42063Date: Wed Jun 6 11:42:13 2007 +0200
42064
42065 ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
42066
42067 This patch adds NAND booting support for the AMCC Acadia eval board.
42068
42069 Please make sure to configure jumper J7 to position 2-3 when booting
42070 from NOR, and to position 1-2 when booting for NAND.
42071
42072 I also added a board command to configure the I2C bootstrap EEPROM
42073 values. Right now only 267MHz is support for booting either via NOR
42074 or NAND FLASH. Here the usage:
42075
42076 => bootstrap 267 nor ;to configure the board for 267MHz NOR booting
42077 => bootstrap 267 nand ;to configure the board for 267MHz NNAND booting
42078
42079 Signed-off-by: Stefan Roese <sr@denx.de>
42080
Wolfgang Denk9986bc32007-08-12 21:34:50 +020042081commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
42082Author: Rodolfo Giometti <giometti@linux.it>
42083Date: Wed Jun 6 10:08:14 2007 +0200
42084
42085 Files include/linux/byteorder/{big,little}_endian.h define
42086 __BIG_ENDIAN and __LITTLE_ENDIAN.
42087
42088 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
42089
42090commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
42091Author: Zhang Wei <wei.zhang@freescale.com>
42092Date: Wed Jun 6 10:08:14 2007 +0200
42093
42094 Add USB PCI-OHCI, USB keyboard and event poll support to the
42095 MPC8641HPCN board config file.
42096
42097 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
42098
42099commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
42100Author: Zhang Wei <wei.zhang@freescale.com>
42101Date: Wed Jun 6 10:08:14 2007 +0200
42102
42103 USB PCI-OHCI, interrupt pipe and usb event poll support
42104
42105 This patch added USB PCI-OHCI chips support, interrupt pipe support
42106 and usb event poll support. For supporting the USB interrupt pipe, the
42107 globe urb_priv is moved to purb in ed struct. Now, we can process
42108 several urbs at one time. The interrupt pipe support codes are ported
42109 from Linux kernel 2.4.
42110
42111 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
42112
42113commit fdcfaa1b02268b2899e374b35adf936c911a47eb
42114Author: Zhang Wei <wei.zhang@freescale.com>
42115Date: Wed Jun 6 10:08:13 2007 +0200
42116
42117 USB event poll support
42118
42119 This patch adds USB event poll support, which could be used in usbkbd
42120 and other usb devices driver when the asynchronous interrupt
42121 processing is supported.
42122
42123 Signed-off-by: Zhang Wei <wei.zhang@freescale.com
42124
42125commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
42126Author: Rodolfo Giometti <giometti@linux.it>
42127Date: Wed Jun 6 10:08:12 2007 +0200
42128
42129 ISP116x: delay for crappy USB keys
42130
42131 Using some (very) slow USB keys cause the USB host controller buffers
42132 are not ready to be read by the CPU so we need an extra delay before
42133 reading the USB storage data.
42134
42135 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
42136
42137commit 09444143670c9c2243cb7aba9f70b3713d33bed1
42138Author: Markus Klotzbuecher <mk@denx.de>
42139Date: Wed Jun 6 10:08:12 2007 +0200
42140
42141 Change duplicate usb_cpu_init_fail to usb_board_init_fail
42142
42143 Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
42144 this out.
42145
42146 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42147
Wolfgang Denk725671c2007-06-06 16:26:56 +020042148commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
42149Author: Ed Swarthout <Ed.Swarthout@freescale.com>
42150Date: Tue Jun 5 12:30:52 2007 -0500
42151
42152 mpc8641 image size cleanup
42153
42154 e600 does not have a bootpg restriction.
42155 Move the version string to beginning of image at fff00000.
42156 Resetvec.S is not needed.
42157 Update flash copy instructions.
42158 Add tftpflash env variable
42159
42160 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
42161 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42162
42163commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
42164Author: Benoît Monin <bmonin@adeneo.eu>
42165Date: Mon Jun 4 08:36:05 2007 +0200
42166
42167 [PATCH] Fix ppc4xx bootstrap letter displayed on startup
42168
42169 The attached patch is mainly cosmetic, allowing u-boot to
42170 display the correct bootstrap option letter according to the
42171 datasheets.
42172
42173 The original patch was extended with 405EZ support by Stefan
42174 Roese.
42175
42176 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
42177 Signed-off-by: Stefan Roese <sr@denx.de>
42178
Wolfgang Denk9986bc32007-08-12 21:34:50 +020042179commit 5b1313fb2758ffce8b624457f777d8cc6709608d
42180Author: Nikita V. Youshchenko <yoush@debian.org>
42181Date: Wed May 23 12:45:19 2007 +0400
42182
42183 fix compilation problem for mpc8349itx CFG_RAMBOOT
42184
42185 Current include/configs/MPC8349ITX.h does contain some support for building
42186 image that will be started from memory (without putting in into flash).
42187 It could be triggered by building with TEXT_BASE set to a low value.
42188
42189 However, this support is incomplete: using of low TEXT_BASE causes
42190 defining configuration macros in inconsistent way, which later leads
42191 to compilation errors. In particular. flash support is being disabled,
42192 but then flash structures get referenced.
42193
42194 This patch fixes this, making it possible to build with low TEXT_BASE.
42195
42196 Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
42197
42198 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42199
42200commit 8a364f0970de49949d635e60accf463c6443ef8c
42201Author: Nikita V. Youshchenko <yoush@debian.org>
42202Date: Wed May 23 12:45:25 2007 +0400
42203
42204 add missing 'console' var to default mpc8349itx config
42205
42206 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42207
Wolfgang Denk725671c2007-06-06 16:26:56 +020042208commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
42209Author: Stefan Roese <sr@denx.de>
42210Date: Fri Jun 1 16:18:17 2007 +0200
42211
42212 ppc4xx: Add missing file for Bamboo NAND booting support
42213
42214 Signed-off-by: Stefan Roese <sr@denx.de>
42215
42216commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
42217Author: Stefan Roese <sr@denx.de>
42218Date: Fri Jun 1 15:58:19 2007 +0200
42219
42220 ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
42221
42222 This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
42223 suggested by AMCC it is not recommended to dynamically change the EBC
42224 speed after bootup. So we undo this change to be on the safe side.
42225
42226 Signed-off-by: Stefan Roese <sr@denx.de>
42227
42228commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
42229Author: Stefan Roese <sr@denx.de>
42230Date: Fri Jun 1 15:29:04 2007 +0200
42231
42232 ppc4xx: Update Sequoia NAND booting support with ECC
42233
42234 Signed-off-by: Stefan Roese <sr@denx.de>
42235
42236commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
42237Author: Stefan Roese <sr@denx.de>
42238Date: Fri Jun 1 15:27:11 2007 +0200
42239
42240 ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
42241
42242 This patch adds NAND booting support for the AMCC Bamboo eval board.
42243 Since the NAND-SPL boot image is limited to 4kbytes, this version
42244 only supports the onboard 64MBytes of DDR. The DIMM modules can't be
42245 supported, since the setup code for I2C DIMM autodetection and
42246 configuration is too big for this NAND bootloader.
42247
42248 Signed-off-by: Stefan Roese <sr@denx.de>
42249
42250commit 42be56f53c8b107868e6125c8524ae84293e95a7
42251Author: Stefan Roese <sr@denx.de>
42252Date: Fri Jun 1 15:23:04 2007 +0200
42253
42254 NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
42255
42256 The U-Boot NAND booting support is now extended to support ECC
42257 upon loading of the NAND U-Boot image.
42258
42259 Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
42260
42261 Signed-off-by: Stefan Roese <sr@denx.de>
42262
42263commit a471db07fbb65a841ffc9f4f112562b945230f98
42264Author: Stefan Roese <sr@denx.de>
42265Date: Fri Jun 1 15:19:29 2007 +0200
42266
42267 ppc4xx: Prepare Bamboo port for NAND booting support
42268
42269 This patch updates the "normal" Bamboo NOR booting port, so
42270 that it is compatible with the coming soon NAND booting
42271 Bamboo port.
42272
42273 It also enables the 2nd NAND flash on the Bamboo.
42274
42275 Signed-off-by: Stefan Roese <sr@denx.de>
42276
42277commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
42278Author: Stefan Roese <sr@denx.de>
42279Date: Fri Jun 1 15:16:58 2007 +0200
42280
42281 ppc4xx: Update in_be32() functions and friends to latest Linux version
42282
42283 Signed-off-by: Stefan Roese <sr@denx.de>
42284
42285commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
42286Author: Stefan Roese <sr@denx.de>
42287Date: Fri Jun 1 15:15:12 2007 +0200
42288
42289 NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
42290
42291 This patch adds hardware ECC support to the NDFC driver. It also
42292 changes the register access from using the "simple" in32/out32
42293 functions to the in_be32/out_be32 functions, which make sure
42294 that the access is correctly synced. This is the only recommended
42295 access to SoC registers in the current Linux kernel.
42296
42297 Signed-off-by: Stefan Roese <sr@denx.de>
42298
42299commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
42300Author: Stefan Roese <sr@denx.de>
42301Date: Fri Jun 1 15:12:15 2007 +0200
42302
42303 NAND: Update nand_ecc.c to latest Linux version
42304
42305 This patch updates the nand_ecc code to the latest Linux version.
42306 The main reason for this is the more compact code. This makes
42307 it possible to include the ECC code into the NAND bootloader
42308 image (NAND_SPL) for PPC4xx.
42309
42310 Signed-off-by: Stefan Roese <sr@denx.de>
42311
42312commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
42313Author: Stefan Roese <sr@denx.de>
42314Date: Fri Jun 1 15:09:50 2007 +0200
42315
42316 ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
42317
42318 Signed-off-by: Stefan Roese <sr@denx.de>
42319
42320commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
42321Author: Stefan Roese <sr@denx.de>
42322Date: Fri Jun 1 13:45:24 2007 +0200
42323
42324 ppc4xx: Change Luan config file to support ECC
42325
42326 With the updated 44x DDR2 driver the Luan board now supports
42327 ECC generation and checking.
42328
42329 Signed-off-by: Stefan Roese <sr@denx.de>
42330
42331commit 7187db73491c8de0fb56efb5e5134ba5ec443089
42332Author: Stefan Roese <sr@denx.de>
42333Date: Fri Jun 1 13:45:00 2007 +0200
42334
42335 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
42336
42337 Add config option for 180 degree advance clock control as needed
42338 for the AMCC Luan eval board.
42339
42340 Signed-off-by: Stefan Roese <sr@denx.de>
42341
42342commit ee1529838abbfaa35f14e3ffbeaaba693159475f
42343Author: Wolfgang Denk <wd@denx.de>
42344Date: Thu May 31 17:20:09 2007 +0200
42345
42346 Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
42347
42348 Signed-off-by: Wolfgang Denk <wd@denx.de>
42349
42350commit 7049288fb1f16f1b317140226cdebd07bd416395
42351Author: Bartlomiej Sieka <tur@semihalf.com>
42352Date: Sun May 27 17:26:46 2007 +0200
42353
42354 Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
42355
42356 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
42357
42358commit 4520fd4d2c450da49637216aa0e53739b61c60ac
42359Author: Bartlomiej Sieka <tur@semihalf.com>
42360Date: Sun May 27 17:06:36 2007 +0200
42361
42362 Motion-PRO: Add support for redundant environment.
42363
42364 Enable redundant environment, add a MTD partition for it; also add env.
42365 variable command for passing MTD partitions to the kernel command line.
42366
42367 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
42368 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
42369
42370commit a26eabeec31746f06d309103690892805696e344
42371Author: Bartlomiej Sieka <tur@semihalf.com>
42372Date: Sun May 27 17:05:11 2007 +0200
42373
42374 Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
42375
42376 Allow passing longer command line to the kernel - useful especially
42377 for passing MTD partition layout.
42378
42379 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
42380 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
42381
42382commit 9160b96f71483a116de81c68985e8ee306d36764
42383Author: Bartlomiej Sieka <tur@semihalf.com>
42384Date: Sun May 27 17:04:18 2007 +0200
42385
42386 Fix: Add missing NULL termination in strings expanded by macros parser.
42387
42388 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
42389 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
42390
42391commit 630ec84aef7228fc1dbfb38dec78541403a786cd
42392Author: Bartlomiej Sieka <tur@semihalf.com>
42393Date: Sun May 27 17:03:37 2007 +0200
42394
42395 Motion-PRO: Update EEPROM's page write bits and write delay.
42396
42397 Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
42398 have a page write capability of two bytes", and "This device offers fast (1ms)
42399 byte write". Add 3ms of extra delay.
42400
42401 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
42402 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
42403
42404commit c00125e07c1ebc125bab40e1e18bceed8be0c162
42405Author: Bartlomiej Sieka <tur@semihalf.com>
42406Date: Sun May 27 16:58:45 2007 +0200
42407
42408 MPC5XXX, Motion-PRO: Fix PHY initialization problem.
42409
42410 After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
42411 networking does not function. This commit switches PHY to TX mode by clearing
42412 the FX_SEL bit of Mode Control Register. It also reverses commit
42413 008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
42414
42415 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
42416 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
42417
42418commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
42419Author: Bartlomiej Sieka <tur@semihalf.com>
42420Date: Sun May 27 16:57:15 2007 +0200
42421
42422 Motion-PRO: Add support for the temperature sensor.
42423
42424 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
42425 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
42426
42427commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
42428Author: Bartlomiej Sieka <tur@semihalf.com>
42429Date: Sun May 27 16:55:23 2007 +0200
42430
42431 Motion-PRO: Add displaying of CPLD revision information during boot.
42432
42433 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
42434 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
42435
42436commit c99512d6bd3973f01ca2fc4896d829b46e68f150
42437Author: Bartlomiej Sieka <tur@semihalf.com>
42438Date: Sun May 27 16:53:43 2007 +0200
42439
42440 MPC5xxx: Change names of defines related to IPB and PCI clocks.
42441
42442 Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
42443 them does not cause PCI or IPB clocks to run at the specified speed.
42444 Instead, they configure divisors used to calculate said clocks. This
42445 patch renames the defines according to their real function.
42446
42447 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
42448 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
42449
42450commit a11c0b85dc3664bb3c1e781137118730c8f619ab
42451Author: Bartlomiej Sieka <tur@semihalf.com>
42452Date: Sun May 27 16:51:48 2007 +0200
42453
42454 Motion-PRO: Add LED support.
42455
42456 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
42457 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
42458 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
42459
Wolfgang Denka5a38f42007-08-16 11:51:04 +020042460commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
42461Author: Ulf Samuelsson <ulf@atmel.com>
42462Date: Thu May 24 12:12:47 2007 +0200
42463
42464 [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
42465
42466 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
42467 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
42468 Signed-off-by: Stefan Roese <sr@denx.de>
42469
Wolfgang Denk725671c2007-06-06 16:26:56 +020042470commit d756894722c888d09a9fa1df8323753772d3dcce
42471Author: Stefan Roese <sr@denx.de>
42472Date: Thu May 24 09:49:00 2007 +0200
42473
42474 ppc4xx: Fix small 405EZ OCM initilization bug in start.S
42475
42476 As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
42477 fixes a small bug in the 405EZ OCM initialization. Thanks for
42478 spotting.
42479
42480 Signed-off-by: Stefan Roese <sr@denx.de>
42481
42482commit 5d4a179013d59a76446462e1eb0a969fba63eb81
42483Author: Stefan Roese <sr@denx.de>
42484Date: Thu May 24 08:22:09 2007 +0200
42485
42486 ppc4xx: Update AMCC Acadia support for board revision 1.1
42487
42488 This patch updates the Acadia (405EZ) support for the new 1.1 board
42489 revision. It also adds support for NAND FLASH via the 4xx NDFC.
42490
42491 Please note that the jumper J7 must be in position 2-3 for this
42492 NAND support. Position 1-2 is for NAND booting only. NAND booting
42493 support will follow later.
42494
42495 Signed-off-by: Stefan Roese <sr@denx.de>
42496
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020042497commit 822d55365bb557e084d0e33625a6dedcc866110b
42498Author: Jon Loeliger <jdl@freescale.com>
42499Date: Wed May 23 14:09:46 2007 -0500
42500
42501 Add LIST_86xx MAKEALL target for PowerPC builds.
42502
42503 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42504
Wolfgang Denk725671c2007-06-06 16:26:56 +020042505commit 9f0077abd69f7a7c756a915b961037302be3e6f2
42506Author: Stefan Roese <sr@denx.de>
42507Date: Tue May 22 12:48:09 2007 +0200
42508
42509 ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
42510
42511 Signed-off-by: Stefan Roese <sr@denx.de>
42512
42513commit 6f3dfc139a838b0841c151efe00ad47db2366e79
42514Author: Stefan Roese <sr@denx.de>
42515Date: Tue May 22 12:46:10 2007 +0200
42516
42517 ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
42518
42519 This patch adds support for 405 PPC's to the 4xx NAND driver
42520 ndfc.c. This is in preparation for the new AMCC 405EZ.
42521
42522 Signed-off-by: Stefan Roese <sr@denx.de>
42523
42524commit 10603d76767426be803dadd4fb688b97eb69481c
42525Author: Stefan Roese <sr@denx.de>
42526Date: Mon May 21 07:41:22 2007 +0200
42527
42528 ppc4xx: Fix problem in 405EZ OCM initialization
42529
42530 As spotted by Bruce Adler this patch fixes an initialization problem
42531 for the 405EZ OCM.
42532
42533 Signed-off-by: Stefan Roese <sr@denx.de>
42534
42535commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
42536Author: Peter Pearse <peter.pearse@arm.com>
42537Date: Fri May 18 16:47:03 2007 +0100
42538
42539 Reduce line lengths to 80 characters max.
42540
42541commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
42542Author: Peter Pearse <peter.pearse@arm.com>
42543Date: Fri May 18 14:34:07 2007 +0100
42544
42545 Makefile permissions
42546
42547commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
42548Author: Peter Pearse <peter.pearse@arm.com>
42549Date: Fri May 18 14:33:11 2007 +0100
42550
42551 Makefile permissions
42552
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020042553commit 255a3577c848706441daee0174543efe205a77f8
42554Author: Kim Phillips <kim.phillips@freescale.com>
42555Date: Wed May 16 16:52:19 2007 -0500
42556
42557 Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
42558
42559 For all practical u-boot purposes, TSECs don't differ throughout the
42560 mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
42561
42562 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42563
Wolfgang Denk725671c2007-06-06 16:26:56 +020042564commit 70124c2602ae2d4c5d3dba05b482d91548242de8
42565Author: Stefano Babic <sbabic@denx.de>
42566Date: Wed May 16 14:49:12 2007 +0200
42567
42568 Fix compile problem cause my Microblaze merge
42569
42570 Signed-off-by: Stefano Babic <sbabic@denx.de>
42571
42572commit ada4697d0230d6da552867777f98a67ec3ba2579
42573Author: Jeffrey Mann <mannj@embeddedplanet.com>
42574Date: Wed May 16 13:23:10 2007 +0200
42575
42576 [PATCH] Run new sequoia boards with an EBC speed of 83MHz
42577
42578 Because the Sequoia board does not boot with an EBC faster than 66MHz,
42579 the clock divider are changed after the initial boot process.
42580
42581 This allows for maximum clocking speeds to be achieved on newer boards.
42582 Sequoia boards with 666.66 MHz processors require that the EBC divider
42583 be set to 3 in order to start the initial boot process at a slower EBC
42584 speed. After the initial boot process, the divider can be set back to 2,
42585 which will cause the boards to run at 83.333MHz. This is backward
42586 compatible with boards with 533.33 MHz processors, as these boards will
42587 already be set with an EBC divider of 2.
42588
42589 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
42590
42591commit a7676ea7732f3c596805079fed7e5c9fac652cfc
42592Author: Wolfgang Denk <wd@denx.de>
42593Date: Wed May 16 01:16:53 2007 +0200
42594
42595 Minor Coding Style cleanup, update CHANGELOG.
42596
42597 Signed-off-by: Wolfgang Denk <wd@denx.de>
42598
Wolfgang Denka7676ea2007-05-16 01:16:53 +020042599commit d62f64cc23a940eafe712c776b3249e4160753d1
42600Author: Wolfgang Denk <wd@denx.de>
42601Date: Wed May 16 00:13:33 2007 +0200
42602
42603 Coding Style Cleanup, new CHANGELOG
42604
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020042605commit 3162eb836903c8b247fdc7470dd39bfa6996f495
42606Author: Wolfgang Denk <wd@denx.de>
42607Date: Tue May 15 23:38:05 2007 +0200
42608
42609 Minor coding style cleanup.
42610
42611commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
42612Author: mushtaq khan <mushtaq_k@procsys.com>
42613Date: Fri Apr 20 14:23:02 2007 +0530
42614
42615 Add driver for S-ATA-controller on Intel processors with South
42616 Bridge, ICH-5, ICH-6 and ICH-7.
42617
42618 Implementation:
42619
42620 1. Code is divided in to two files. All functions, which are
42621 controller specific are kept in "drivers/ata_piix.c" file and
42622 functions, which are not controller specific, are kept in
42623 "common/cmd_sata.c" file.
42624
42625 2. Reading and Writing from the S-ATA drive is done using PIO method.
42626
42627 3. Driver can be configured for 48-bit addressing by defining macro
42628 CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
42629 addressing.
42630
42631 4. S-ATA read function is hooked to the File system, commands like
42632 ext2ls and ext2load file can be used. This has been tested.
42633
42634 5. U-Boot command "SATA_init" is added, which initializes the S-ATA
42635 controller and identifies the S-ATA drives connected to it.
42636
42637 6. U-Boot command "sata" is added, which is used to read/write, print
42638 partition table and get info about the drives present. This I have
42639 implemented in same way as "ide" command is implemented in U-Boot.
42640
42641 7. This driver is for S-ATA in native mode.
42642
42643 8. This driver does not support the Native command queuing and
42644 Hot-plugging.
42645
42646 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
42647
42648commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
42649Author: mushtaq khan <mushtaq_k@procsys.com>
42650Date: Mon Apr 30 15:57:22 2007 +0530
42651
42652 Fixes bug clearing the bss section for i386
42653
42654 Hi,
42655 There is a bug in the code of clearing the bss section for processor
42656 i386.(File: cpu/i386/start.S)
42657 In the code, bss_start addr (starting addr of bss section) is put into
42658 the register %eax, but the code which clears the bss section refers to
42659 the addr pointed by %edi.
42660
42661 This patch fixes this bug by putting bss_start into %edi register.
42662
42663 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
42664
42665commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
42666Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
42667Date: Mon Apr 30 16:47:28 2007 -0500
42668
42669 Add support for BCM5464 Quad Phy
42670
42671 Added support for Broadcom's BCM5464 Quad Phy
42672
42673 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
42674
42675commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
42676Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
42677Date: Wed May 9 08:10:57 2007 +0800
42678
42679 Search the exception table with linear algorithm
42680
42681 Search the exception table with linear algorithm instead of
42682 bisecting algorithm.
42683 Because the exception table might be unsorted.
42684
42685 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
42686
42687commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
42688Author: Aubrey.Li <aubrey.adi@gmail.com>
42689Date: Mon May 14 11:47:35 2007 +0800
42690
42691 Fix compilation issues on MACOSX
42692
42693 Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
42694 Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
42695
42696commit 56fd7162985c412317bbf763a225fba23c64fd31
42697Author: Stephen Williams <steve@icarus.com>
42698Date: Tue May 15 07:55:42 2007 -0700
42699
42700 Fix for compile of JSE target
42701
42702 The attached patch fixes the compile of the JSE board in the
42703 denx git as of 14 may 2007. It is an extremely simple patch,
42704 it just adds the missing define of CFG_SYSTEMACE_WIDTH.
42705
42706 Fix to compile JSE against 20070514 git of u-boot
42707
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010042708commit 69df3c4da0c93017cceb25a366e794570bd0ed98
42709Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
42710Date: Sun May 13 21:01:03 2007 +0900
42711
42712 sh: MS7750SE support.
42713
42714 This adds support for the Hitachi MS7750SE.
42715
42716 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42717
42718commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
42719Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
42720Date: Sun May 13 20:58:00 2007 +0900
42721
42722 sh: First support code of SuperH.
42723
42724 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42725
Wolfgang Denk725671c2007-06-06 16:26:56 +020042726commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
42727Author: Stefan Roese <sr@denx.de>
42728Date: Fri May 11 12:01:49 2007 +0200
42729
42730 ppc4xx: Add mtcpr/mfcpr access macros
42731
42732 Signed-off-by: Stefan Roese <sr@denx.de>
42733
42734commit 343c48bd84606c4025c8a7c7263fda465d6e284c
42735Author: Stefan Roese <sr@denx.de>
42736Date: Fri May 11 12:01:06 2007 +0200
42737
42738 ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
42739
42740 Signed-off-by: Stefan Roese <sr@denx.de>
42741
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020042742commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
42743Author: Piotr Kruszynski <ppk@semihalf.com>
42744Date: Thu May 10 16:55:52 2007 +0200
42745
42746 [Motion-PRO] Add MTD and JFFS2 support, also add default partition
42747 definition.
42748
Wolfgang Denk725671c2007-06-06 16:26:56 +020042749commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
42750Author: Peter Pearse <peter.pearse@arm.com>
42751Date: Wed May 9 11:42:44 2007 +0100
42752
42753 Add the board directory for SMN42
42754
42755commit 160131bf965785419626df6c388729fe0b597992
42756Author: Peter Pearse <peter.pearse@arm.com>
42757Date: Wed May 9 11:41:58 2007 +0100
42758
42759 Add the files for the SMN42 board
42760
42761commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
42762Author: Peter Pearse <peter.pearse@arm.com>
42763Date: Wed May 9 11:40:34 2007 +0100
42764
42765 Remove the deleted files for the SMN42 patch
42766
42767commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
42768Author: Peter Pearse <peter.pearse@arm.com>
42769Date: Wed May 9 11:37:56 2007 +0100
42770
42771 New board SMN42 branch
42772
42773commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
42774Author: Peter Pearse <peter.pearse@arm.com>
42775Date: Wed May 9 10:24:38 2007 +0100
42776
42777 Makefile permissions
42778
42779commit b84289b595731e8851df46e893845cc1322c9b9b
42780Author: Ed Swarthout <Ed.Swarthout@freescale.com>
42781Date: Tue May 8 14:17:07 2007 -0500
42782
42783 8641hpcn: Fix Makefile after moving pixis to board/freescale.
42784
42785 The OBJTREE != SRCTREE build scenario was broken.
42786 This fixes it.
42787
42788 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
42789 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42790
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020042791commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
42792Author: Michal Simek <monstr@monstr.eu>
42793Date: Tue May 8 15:57:43 2007 +0200
42794
42795 add: reading special purpose registers
42796
42797commit 1a50f164beb065f360fbddb76029607d6b099698
42798Author: Michal Simek <monstr@monstr.eu>
42799Date: Tue May 8 14:52:52 2007 +0200
42800
42801 add: Microblaze V5 exception handling
42802
42803commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
42804Author: Michal Simek <monstr@monstr.eu>
42805Date: Tue May 8 14:39:11 2007 +0200
42806
42807 add: FSL control read and write
42808
42809commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
42810Author: Piotr Kruszynski <ppk@semihalf.com>
42811Date: Tue May 8 13:05:44 2007 +0200
42812
42813 [Motion-PRO] Add support for I2C, EEPROM and RTC.
42814
42815commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
42816Author: Bartlomiej Sieka <tur@semihalf.com>
42817Date: Tue May 8 10:23:56 2007 +0200
42818
42819 [Motion-PRO] Add ATA support. Add CF-booting commands to the default
42820 environment.
42821
42822commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
42823Author: Bartlomiej Sieka <tur@semihalf.com>
42824Date: Tue May 8 09:39:12 2007 +0200
42825
42826 [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
42827 eliminates networking problems in Linux (timeouts).
42828
42829commit 1f1369c34b629be94702684d41d3fddf0f6193e7
42830Author: Bartlomiej Sieka <tur@semihalf.com>
42831Date: Tue May 8 09:21:57 2007 +0200
42832
42833 [Motion-PRO] Enable Flat Device Tree support and modify default environment
42834 to allow booting of FDT-expecting kernels.
42835
42836commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
42837Author: Michal Simek <monstr@monstr.eu>
42838Date: Mon May 7 23:58:31 2007 +0200
42839
42840 new: USE_MSR_INTR support
42841
42842commit 008861a2f3ef2c062744d733787c7e530a1b8761
42843Author: Bartlomiej Sieka <tur@semihalf.com>
42844Date: Mon May 7 22:36:15 2007 +0200
42845
42846 [MPC5xxx] There are networking problems on the Motion-PRO board with
42847 current PHY initalization code (tftp timeouts all the time). This commit
42848 temporarily disables PHY initalization sequence to make the networking
42849 operational, until a fix is found.
42850
42851commit abca901869c3760b6c5fecb825db6c1d91a78a93
42852Author: Wolfgang Denk <wd@denx.de>
42853Date: Mon May 7 22:10:36 2007 +0200
42854
42855 Get rid of duplicated file (see include/configs/sbc8560.h instead)
42856
42857 Signed-off-by: Wolfgang Denk <wd@denx.de>
42858
42859commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
42860Author: Wolfgang Denk <wd@denx.de>
42861Date: Mon May 7 22:07:08 2007 +0200
42862
42863 Get rid of duplicated file (see doc/README.SBC8560 instead)
42864
42865 Signed-off-by: Wolfgang Denk <wd@denx.de>
42866
42867commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
42868Author: Michal Simek <monstr@monstr.eu>
42869Date: Mon May 7 19:43:10 2007 +0200
42870
42871 fix: read and write MSR - repair number of parameters
42872
Wolfgang Denk725671c2007-06-06 16:26:56 +020042873commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
42874Author: Jeffrey Mann <mannj@embeddedplanet.com>
42875Date: Mon May 7 19:42:49 2007 +0200
42876
42877 [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
42878
42879 A '3' got cut off in the formatting of the last patch to automatically
42880 change the clock speed of the system clock on sequoia board.
42881
42882 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
42883 Signed-off-by: Stefan Roese <sr@denx.de>
42884
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020042885commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
42886Author: Michal Simek <monstr@monstr.eu>
42887Date: Mon May 7 19:33:51 2007 +0200
42888
42889 new: fsl interrupt support
42890 FSL_Has_data is connected to INTC.
42891
42892commit 792032baa7d625e34c981ab6df521911bd8dc861
42893Author: Michal Simek <monstr@monstr.eu>
42894Date: Mon May 7 19:30:12 2007 +0200
42895
42896 fix: interrupt handler
42897 remove asm code
42898
42899commit f3f001a341ef185d0f13841be5b5dc3395aacc31
42900Author: Michal Simek <monstr@monstr.eu>
42901Date: Mon May 7 19:25:08 2007 +0200
42902
42903 fix: remove asm code
42904
42905commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
42906Author: Michal Simek <monstr@monstr.eu>
42907Date: Mon May 7 19:12:43 2007 +0200
42908
42909 fix: clean interrupt
42910
42911commit 42efed6130c8fcf7da881385b5427065d2801757
42912Author: Michal Simek <monstr@monstr.eu>
42913Date: Mon May 7 17:22:25 2007 +0200
42914
42915 fix: interrupt handler for multiple sources
42916
42917commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
42918Author: Michal Simek <monstr@monstr.eu>
42919Date: Mon May 7 17:11:09 2007 +0200
42920
42921 new: add writing to msr register
42922
Wolfgang Denk9986bc32007-08-12 21:34:50 +020042923commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
42924Author: Markus Klotzbuecher <mk@denx.de>
42925Date: Mon May 7 16:43:56 2007 +0200
42926
42927 Fix an ancient CHANGELOG conflict
42928
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020042929commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
42930Author: Timur Tabi <timur@freescale.com>
42931Date: Sat May 5 08:12:30 2007 +0200
42932
42933 5xxx: write MAC address to mac-address and local-mac-address
42934
42935 Some device trees have a mac-address property, some have local-mac-address,
42936 and some have both. To support all of these device trees, ftp_cpu_setup()
42937 should write the MAC address to mac-address and local-mac-address, if they
42938 exist.
42939
42940 Signed-off-by: Timur Tabi <timur@freescale.com>
42941 Acked-by: Grant Likely <grant.likely@secretlab.ca>
42942
42943commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
42944Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
42945Date: Sun Apr 29 14:01:54 2007 +0200
42946
42947 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
42948
42949 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
42950 message. Use PVR to distinguish between the two variants, and print proper CPU
42951 information.
42952
42953 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
42954 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
42955 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42956
42957commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
42958Author: Ladislav Michl <ladis@linux-mips.org>
42959Date: Wed Apr 25 16:01:26 2007 +0200
42960
42961 [PATCH] simplify silent console
42962
42963 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
42964 Acked-by: Stefan Roese <sr@denx.de>
42965
42966commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
42967Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
42968Date: Mon Apr 23 15:30:39 2007 +0200
42969
42970 [PATCH] Avoid assigning PCI resources from zero address
42971
42972 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
42973 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
42974 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
42975 sentence about "0" being considered an invalid address) -- so, use a reasonable
42976 starting value of 0x1000 (that's what the most Linux archs are using).
42977
42978 Alternatively, one might have fixed the calls to pci_set_region() individually
42979 (some code even seems to have taken care of this issue) but that would have
42980 been a lot more work. :-)
42981
42982 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
42983 Acked-by: Stefan Roese <sr@denx.de>
42984
42985commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
42986Author: Jeffrey Mann <mannj@embeddedplanet.com>
42987Date: Mon Apr 23 14:00:11 2007 +0200
42988
42989 [patch] setenv(...) can delete environmentalvariables
42990
42991 update setenv() function so that entering a NULL value for the
42992 variable's value will delete the environmental variable
42993
42994 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
42995 Acked-by: Stefan Roese <sr@denx.de>
42996
42997commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
42998Author: Mike Frysinger <vapier@gentoo.org>
42999Date: Mon Apr 23 13:54:24 2007 +0200
43000
43001 [patch] use unsigned char in smc91111 driver for mac
43002
43003 the v_mac variable in the smc91111 driver is declared as a signed char ...
43004 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
43005 because when it gets printed out, you get a display like:
43006 0xFFFFFFE0 and that's no good
43007
43008 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43009
43010commit ffc50f9bb194343c6303517a517708457a5eb6b8
43011Author: Michal Simek <monstr@monstr.eu>
43012Date: Sat May 5 18:54:42 2007 +0200
43013
43014 new: FSL and MSR support #2
43015
43016commit f7e2e0eb0668136305f78bb9c21be79b48a34247
43017Author: Michal Simek <monstr@monstr.eu>
43018Date: Sat May 5 18:27:16 2007 +0200
43019
43020 new: FSL and MSR support
43021
43022commit 2f15278c2eb911c668b4fe562130b78cf554d139
43023Author: Wolfgang Denk <wd@denx.de>
43024Date: Sat May 5 18:23:11 2007 +0200
43025
43026 Coding stylke cleanup; update CHANGELOG.
43027
43028 Signed-off-by: Wolfgang Denk <wd@denx.de>
43029
Wolfgang Denk2f152782007-05-05 18:23:11 +020043030commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
43031Author: Wolfgang Denk <wd@denx.de>
43032Date: Sat May 5 18:05:02 2007 +0200
43033
43034 Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
43035
43036 Signed-off-by: Wolfgang Denk <wd@denx.de>
43037
Wolfgang Denk885ec892007-05-05 18:05:02 +020043038commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
43039Author: Wolfgang Denk <wd@denx.de>
43040Date: Sat May 5 17:15:50 2007 +0200
43041
43042 Make "file" command happy with some config.mk files; update CHANGELOG
43043
Wolfgang Denk2f152782007-05-05 18:23:11 +020043044commit e3b8c78bc2489c27ae020986ef0eaca684866cef
43045Author: Jeffrey Mann <mannj@embeddedplanet.com>
43046Date: Sat May 5 08:32:14 2007 +0200
43047
43048 ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
43049
43050 The AMCC Secquoia board has been changed in a new revision from using a
43051 33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
43052 indicates the difference. This patch reads that bit and uses the correct
43053 clock speed for the board. This code is backward compatable will all
43054 prior boards. All prior boards will be read as 33.000.
43055
43056 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
43057 Signed-off-by: Stefan Roese <sr@denx.de>
43058
43059commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
43060Author: Stefan Roese <sr@denx.de>
43061Date: Sat May 5 08:29:01 2007 +0200
43062
43063 ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
43064
43065 Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
43066 for the 4k NAND boot image so define bus_frequency to 133MHz here
43067 which is save for the refresh counter setup.
43068
43069 Signed-off-by: Stefan Roese <sr@denx.de>
43070
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020043071commit 2f550ab976405300f5b07bf2890800840d0aa05f
43072Author: Timur Tabi <timur@freescale.com>
43073Date: Sat May 5 08:12:30 2007 +0200
43074
43075 5xxx: write MAC address to mac-address and local-mac-address
43076
43077 Some device trees have a mac-address property, some have local-mac-address,
43078 and some have both. To support all of these device trees, ftp_cpu_setup()
43079 should write the MAC address to mac-address and local-mac-address, if they
43080 exist.
43081
43082 Signed-off-by: Timur Tabi <timur@freescale.com>
43083 Acked-by: Grant Likely <grant.likely@secretlab.ca>
43084
Wolfgang Denk54996452007-05-05 17:15:50 +020043085commit a79886590593ba1d667c840caa4940c61639f18f
43086Author: Thomas Knobloch <knobloch@siemens.com>
43087Date: Sat May 5 07:04:42 2007 +0200
43088
43089 NAND: Wrong calculation of page number in nand_block_bad()
43090
43091 In case that there is no memory based bad block table available the
43092 function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
43093 nand_block_bad() directly. When parameter 'getchip' is set to zero,
43094 nand_block_bad() will not right shift the offset to calculate the
43095 correct page number.
43096
43097 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
43098 Signed-off-by: Stefan Roese <sr@denx.de>
43099
43100commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
43101Author: Wolfgang Denk <wd@denx.de>
43102Date: Fri May 4 10:02:33 2007 +0200
43103
43104 Fix initrd length corruption in bootm command.
43105
43106 When using FDT Images, the length of an inital ramdisk was
43107 overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
43108
43109 Patches by Timur Tabi & Johns Daniel.
43110
43111 Signed-off-by: Wolfgang Denk <wd@denx.de>
43112
Wolfgang Denka7676ea2007-05-16 01:16:53 +020043113commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
43114Author: Kim Phillips <kim.phillips@freescale.com>
43115Date: Thu May 3 19:43:52 2007 -0500
43116
43117 mpc83xx: fix trivial error in MAKEALL
43118
43119 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43120
Wolfgang Denk54996452007-05-05 17:15:50 +020043121commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
43122Author: Wolfgang Denk <wd@denx.de>
43123Date: Thu May 3 16:34:41 2007 +0200
43124
43125 Update board configuration for STX GP3SSA board:
43126
43127 Enable hush shell, environment in flash rather in EEPROM,
43128 more user-friendly default environment, etc.
43129 The simple EEPROM environment can be selected easily in the board
43130 config file.
43131
43132 Signed-off-by: Wolfgang Denk <wd@denx.de>
43133
Wolfgang Denkc64a89d2007-05-03 16:34:41 +020043134commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
43135Author: Wolfgang Denk <wd@denx.de>
43136Date: Tue Apr 24 14:37:49 2007 +0200
43137
43138 Cleanup STX GP3SSA code; fix build and compile problems.
43139
43140commit 35171dc04e028ecacc23ad916a66295472555dbf
43141Author: Dan Malek <dan@embeddedalley.com>
43142Date: Fri Jan 5 09:15:34 2007 +0100
43143
43144 Add support for STX GP3SSA (stxssa) Board
43145
43146 Signed-off-by Dan Malek, <dan@embeddedalley.com>
43147
Wolfgang Denkbe5d72d2007-08-13 21:57:53 +020043148commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
43149Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43150Date: Wed May 2 13:31:53 2007 +0200
43151
43152 macb: Don't restart autonegotiation if we already have link
43153
43154 Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
43155 link is already up.
43156
43157 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43158
43159commit 04fcb5d38bc90779cd9a710d60702075986f0e29
43160Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43161Date: Wed May 2 13:22:38 2007 +0200
43162
43163 macb: Introduce a few barriers when dealing with DMA descriptors
43164
43165 There were a few theoretical possibilities that the compiler might
43166 optimize away DMA descriptor reads and/or writes and thus cause
43167 synchronization problems with the hardware. Insert barriers where
43168 we depend on reads/writes actually hitting memory.
43169
43170 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43171
Wolfgang Denk885ec892007-05-05 18:05:02 +020043172commit ffa621a0d12a1ccd81c936c567f8917a213787a8
43173Author: Andy Fleming <afleming@freescale.com>
43174Date: Sat Feb 24 01:08:13 2007 -0600
43175
43176 Cleaned up some 85xx PCI bugs
43177
43178 * Cleaned up the CDS PCI Config Tables and added NULL entries to
43179 the end
43180 * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
43181 * Fixed 85xx PCI code to assign powar region sizes based on the
43182 config values (rather than hard-coding them)
43183 * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
43184
43185 Signed-off-by: Andy Fleming <afleming@freescale.com>
43186
43187commit 6743105988fc44d5b0d30388c790607835aae7a6
43188Author: Andy Fleming <afleming@freescale.com>
43189Date: Mon Apr 23 02:54:25 2007 -0500
43190
43191 Add support for the 8568 MDS board
43192
43193 This included some changes to common files:
43194 * Add 8568 processor SVR to various places
43195 * Add support for setting the qe bus-frequency value in the dts
43196 * Add the 8568MDS target to the Makefile
43197
43198 Signed-off-by: Andy Fleming <afleming@freescale.com>
43199
43200commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
43201Author: David Updegraff <dave@cray.com>
43202Date: Fri Apr 20 14:34:48 2007 -0500
43203
43204 Add support for treating unknown PHYs as generic PHYs.
43205
43206 When bringing up u-boot on new boards, PHY support sometimes gets
43207 neglected. Most PHYs don't really need any special support,
43208 though. By adding a generic entry that always matches if nothing
43209 else does, we can provide support for "unsupported" PHYs for the
43210 tsec.
43211
43212 The generic PHY driver supports most PHYs, including gigabit.
43213
43214 Signed-off-by: David Updegraff <dave@cray.com>
43215 Signed-off-by: Andy Fleming <afleming@freescale.com>
43216
Wolfgang Denk54996452007-05-05 17:15:50 +020043217commit a75af9bfd8fff0499efdbb90601cec5a2afef117
43218Author: James Yang <James.Yang@freescale.com>
43219Date: Wed Feb 7 15:28:04 2007 -0600
43220
43221 Conditionalize 8641 Rev1.0 MCM workarounds
43222
43223 Signed-off-by: James Yang <James.Yang@freescale.com>
43224 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43225
Wolfgang Denka7676ea2007-05-16 01:16:53 +020043226commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
43227Author: Timur Tabi <timur@freescale.com>
43228Date: Mon Apr 30 13:59:50 2007 -0500
43229
43230 Fix memory initialization on MPC8349E-mITX
43231
43232 Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
43233 This allows ddr->sdram_clk_cntl to be properly initialized. This is necessary
43234 on some ITX boards, notably those with a revision 3.1 CPU.
43235
43236 Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
43237 ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
43238
43239 Signed-off-by: Timur Tabi <timur@freescale.com>
43240 Acked-by: Michael Benedict <MBenedict@twacs.com>
43241 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43242
43243commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
43244Author: Kim Phillips <kim.phillips@freescale.com>
43245Date: Mon Apr 30 15:26:21 2007 -0500
43246
43247 mpc83xx: replace elaborate boottime verbosity with 'clocks' command
43248
43249 and fix CPU: to align with Board: display text.
43250
43251 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43252
Wolfgang Denk54996452007-05-05 17:15:50 +020043253commit c1ab82669d9525998c34e802a12cad662723f22a
43254Author: James Yang <James.Yang@freescale.com>
43255Date: Fri Mar 16 13:02:53 2007 -0500
43256
43257 Rewrote picos_to_clk() to avoid rounding errors.
43258 Clarified that conversion is to DRAM clocks rather than platform clocks.
43259 Made function static to spd_sdram.c.
43260
43261 Signed-off-by: James Yang <James.Yang@freescale.com>
43262 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43263
Wolfgang Denk2f152782007-05-05 18:23:11 +020043264commit 8b39501d28754e72726ce7fb02310e56dbdf116a
43265Author: Stefan Roese <sr@denx.de>
43266Date: Sun Apr 29 14:13:01 2007 +0200
43267
43268 ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
43269
43270 Signed-off-by: Stefan Roese <sr@denx.de>
43271
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020043272commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
43273Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
43274Date: Sun Apr 29 14:01:54 2007 +0200
43275
43276 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
43277
43278 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
43279 message. Use PVR to distinguish between the two variants, and print proper CPU
43280 information.
43281
43282 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
43283 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43284 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43285
Wolfgang Denka7676ea2007-05-16 01:16:53 +020043286commit 5c5d3242935cf3543af01142627494434834cf98
43287Author: Kim Phillips <kim.phillips@freescale.com>
43288Date: Wed Apr 25 12:34:38 2007 -0500
43289
43290 mpc83xx: minor fixups for 8313rdb introduction
43291
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020043292commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
43293Author: Ladislav Michl <ladis@linux-mips.org>
43294Date: Wed Apr 25 16:01:26 2007 +0200
43295
43296 [PATCH] simplify silent console
43297
43298 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
43299 Acked-by: Stefan Roese <sr@denx.de>
43300
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020043301commit 144876a380f5756f57412caf74c1d6dc201dd796
43302Author: Michal Simek <monstr@monstr.eu>
43303Date: Tue Apr 24 23:01:02 2007 +0200
43304
43305 [PATCH] MTD partition support, JFFS2 support
43306
Wolfgang Denk2f152782007-05-05 18:23:11 +020043307commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
43308Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43309Date: Tue Apr 24 14:03:45 2007 +0200
43310
43311 ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
43312
43313 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43314
Wolfgang Denk885ec892007-05-05 18:05:02 +020043315commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
43316Author: Andy Fleming <afleming@freescale.com>
43317Date: Mon Apr 23 02:37:47 2007 -0500
43318
43319 Reworked 85xx speed detection code
43320
43321 Changed the code to read the registers and calculate the clock
43322 rates, rather than using a "switch" statement.
43323
43324 Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
43325
43326 Signed-off-by: Andy Fleming <afleming@freescale.com>
43327
43328commit 81f481ca708ed6a56bf9c410e3191dbad581c565
43329Author: Andy Fleming <afleming@freescale.com>
43330Date: Mon Apr 23 02:24:28 2007 -0500
43331
43332 Enable 8544 support
43333
43334 * Add support to the Makefile
43335 * Add 8544 configuration support to the tsec driver
43336 * Add 8544 SVR numbers to processor.h
43337
43338 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
43339 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43340
43341commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
43342Author: Andy Fleming <afleming@freescale.com>
43343Date: Fri Feb 23 17:12:25 2007 -0600
43344
43345 Support 1G size on 8548
43346
43347 e500v2 and newer cores support 1G page sizes.
43348
43349 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
43350 Signed-off-by: Andy Fleming <afleming@freescale.com>
43351
43352commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
43353Author: Andy Fleming <afleming@freescale.com>
43354Date: Fri Feb 23 17:11:16 2007 -0600
43355
43356 Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
43357
43358 The other pagesz constants use one letter to specify order of
43359 magnitude. Also change the one reference to it in mpc8548cds/init.S
43360
43361 Signed-off-by: Andy Fleming <afleming@freescale.com>
43362
43363commit 1f9a318cea14272edd10d63739e2d326c90f430e
43364Author: Andy Fleming <afleming@freescale.com>
43365Date: Fri Feb 23 16:28:46 2007 -0600
43366
43367 Only set ddrioovcr for 8548 rev1.
43368
43369 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
43370 Signed-off-by: Andy Fleming <afleming@freescale.com>
43371
43372commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
43373Author: Andy Fleming <afleming@freescale.com>
43374Date: Sat Feb 24 01:16:45 2007 -0600
43375
43376 Tweak DDR ECC error counter
43377
43378 Enable single-bit error counter when memory was cleared by ddr controller.
43379
43380 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
43381 Signed-off-by: Andy Fleming <afleming@freescale.com>
43382
43383commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
43384Author: Timur Tabi <timur@freescale.com>
43385Date: Mon Feb 12 13:34:55 2007 -0600
43386
43387 85xx: write MAC address to mac-address and local-mac-address
43388
43389 Some device trees have a mac-address property, some have local-mac-address,
43390 and some have both. To support all of these device trees, ftp_cpu_setup()
43391 should write the MAC address to mac-address and local-mac-address, if they
43392 exist.
43393
43394 Signed-off-by: Timur Tabi <timur@freescale.com>
43395
43396commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
43397Author: Andy Fleming <afleming@freescale.com>
43398Date: Mon Apr 23 01:44:44 2007 -0500
43399
43400 Some 85xx cpu cleanups
43401
43402 * Cleaned up the TSR[WIS] clearing
43403 * Cleaned up DMA initialization
43404
43405 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
43406 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43407 Acked-by: Andy Fleming <afleming@freescale.com>
43408
43409commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
43410Author: Andy Fleming <afleming@freescale.com>
43411Date: Mon Apr 23 01:32:22 2007 -0500
43412
43413 Add cpu support for the 8544
43414
43415 Recognize new SVR values, and add a few register definitions
43416
43417 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
43418 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43419 Acked-by: Andy Fleming <afleming@freescale.com>
43420
43421commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
43422Author: Jon Loeliger <jdl@freescale.com>
43423Date: Wed Apr 11 16:51:02 2007 -0500
43424
43425 Add MPC8544DS basic port board files.
43426
43427 Add board port under new board/freescale directory
43428 structure and reuse existing PIXIS FPGA support there.
43429
43430 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
43431 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43432
43433commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
43434Author: Jon Loeliger <jdl@freescale.com>
43435Date: Wed Apr 11 16:50:57 2007 -0500
43436
43437 Add MPC8544DS main configuration file.
43438
43439 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
43440 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43441
43442commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
43443Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
43444Date: Wed Dec 27 22:07:15 2006 +0300
43445
43446 Fix PCI I/O space mapping on Freescale MPC85x0ADS
43447
43448 The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
43449 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
43450 describing the local address window used for the PCI I/O space accesses -- fix
43451 this and carry over the necessary changes into the MPC8560ADS code since the
43452 PCI I/O space mapping was also broken for this board (by the earlier commit
43453 087454609e47295443af793a282cddcd91a5f49c). Add the comments clarifying how
43454 the PCI I/O space must be mapped to all the MPC85xx board config. headers.
43455
43456 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
43457
43458 board/mpc8540ads/init.S | 4 ++--
43459 board/mpc8560ads/init.S | 4 ++--
43460 include/configs/MPC8540ADS.h | 5 ++---
43461 include/configs/MPC8541CDS.h | 2 +-
43462 include/configs/MPC8548CDS.h | 2 +-
43463 include/configs/MPC8560ADS.h | 8 ++++----
43464 6 files changed, 12 insertions(+), 13 deletions(-)
43465
43466commit 96629cbabdb727d4a5e62542deefc01d498db6dc
43467Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
43468Date: Tue Dec 5 16:42:30 2006 +0800
43469
43470 u-boot: Fix e500 v2 core reset bug
43471
43472 The following patch fixes the e500 v2 core reset bug.
43473 For e500 v2 core, a new reset control register is added to reset the
43474 processor.
43475
43476 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
43477
43478commit 63247a5acd58032e6cf33f525bc3923b467bac88
43479Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
43480Date: Wed Dec 20 11:01:00 2006 +0800
43481
43482 u-boot: v2: Remove the fixed TLB and LAW entrynubmer
43483
43484 Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
43485 entry number to control the loop. This can reduce the potential risk
43486 for the 85xx processor increasing its TLB adn LAW entry number.
43487
43488 Signed-off-by: Swarthout Edward <swarthout@freescale.com>
43489 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
43490
43491commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
43492Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
43493Date: Mon Dec 18 17:01:04 2006 +0800
43494
43495 u-boot: Fix the 85xxcds tsec bug
43496
43497 Fix the 85xxcds tsec bug.
43498 When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
43499
43500 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
43501
43502commit 7337b237ffc4aaf1b9467024fe472a880d852598
43503Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
43504Date: Fri Dec 15 14:43:31 2006 +0800
43505
43506 u-boot: Fix CPU2 errata on MPC8548CDS board
43507
43508 This patch apply workaround of CPU2 errata on MPC8548CDS board.
43509
43510 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
43511
43512commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
43513Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
43514Date: Mon Dec 18 16:25:15 2006 +0800
43515
43516 u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
43517
43518 This patch disables MPC8548CDS 2T_TIMING for DDR by default.
43519
43520 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
43521
43522commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
43523Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
43524Date: Thu Dec 14 14:14:55 2006 +0800
43525
43526 u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
43527
43528 Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
43529 board.
43530 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
43531
Wolfgang Denka7676ea2007-05-16 01:16:53 +020043532commit 96b8a05432f346f36493535c85320b70ec9c7c1b
43533Author: Scott Wood <scottwood@freescale.com>
43534Date: Mon Apr 16 14:54:15 2007 -0500
43535
43536 mpc83xx: Add MPC8313ERDB support.
43537
43538 Signed-off-by: Scott Wood <scottwood@freescale.com>
43539
43540commit 49ea3b6eafe606285ae4d5c378026153dde53200
43541Author: Scott Wood <scottwood@freescale.com>
43542Date: Mon Apr 16 14:34:21 2007 -0500
43543
43544 mpc83xx: Add generic PCI setup code.
43545
43546 Board code can now request the generic setup code rather than having to
43547 copy-and-paste it for themselves. Boards should be converted to use this
43548 once they're tested with it.
43549
43550 Signed-off-by: Scott Wood <scottwood@freescale.com>
43551
43552commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
43553Author: Scott Wood <scottwood@freescale.com>
43554Date: Mon Apr 16 14:34:19 2007 -0500
43555
43556 mpc83xx: Add 831x support to speed.c.
43557
43558 Signed-off-by: Scott Wood <scottwood@freescale.com>
43559
43560commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
43561Author: Scott Wood <scottwood@freescale.com>
43562Date: Mon Apr 16 14:34:18 2007 -0500
43563
43564 mpc83xx: Add 831x support to global_data.h
43565
43566 Signed-off-by: Scott Wood <scottwood@freescale.com>
43567
43568commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
43569Author: Scott Wood <scottwood@freescale.com>
43570Date: Mon Apr 16 14:34:16 2007 -0500
43571
43572 mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
43573
43574 Rather than misleadingly define PVR_83xx as the specific type of 83xx
43575 being built for, the PVR of each core revision is defined. checkcpu() now
43576 prints the core that it detects, rather than aborting if it doesn't find
43577 what it thinks it wants.
43578
43579 Signed-off-by: Scott Wood <scottwood@freescale.com>
43580
43581commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
43582Author: Scott Wood <scottwood@freescale.com>
43583Date: Mon Apr 16 14:34:15 2007 -0500
43584
43585 mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
43586
43587 Signed-off-by: Scott Wood <scottwood@freescale.com>
43588
43589commit d87c57b201b4572d16f1b642998faa00c9912b16
43590Author: Scott Wood <scottwood@freescale.com>
43591Date: Mon Apr 16 14:31:55 2007 -0500
43592
43593 mpc83xx: Add register definitions for MPC831x.
43594
43595 Signed-off-by: Scott Wood <scottwood@freescale.com>
43596
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020043597commit 7fc4c71a143be8666d70803fb25ae60379c95622
43598Author: Stefan Roese <sr@denx.de>
43599Date: Mon Apr 23 15:39:59 2007 +0200
43600
43601 Fix file mode
43602
43603 Signed-off-by: Stefan Roese <sr@denx.de>
43604
43605commit 38257988abfe74d459ca2ad748b109ca04e4efe1
43606Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
43607Date: Mon Apr 23 15:30:39 2007 +0200
43608
43609 [PATCH] Avoid assigning PCI resources from zero address
43610
43611 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
43612 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
43613 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
43614 sentence about "0" being considered an invalid address) -- so, use a reasonable
43615 starting value of 0x1000 (that's what the most Linux archs are using).
43616
43617 Alternatively, one might have fixed the calls to pci_set_region() individually
43618 (some code even seems to have taken care of this issue) but that would have
43619 been a lot more work. :-)
43620
43621 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
43622 Acked-by: Stefan Roese <sr@denx.de>
43623
43624commit afb903a2eb9436baa9270ccc0c27082d86497d89
43625Author: Jeffrey Mann <mannj@embeddedplanet.com>
43626Date: Mon Apr 23 14:00:11 2007 +0200
43627
43628 [patch] setenv(...) can delete environmentalvariables
43629
43630 update setenv() function so that entering a NULL value for the
43631 variable's value will delete the environmental variable
43632
43633 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
43634 Acked-by: Stefan Roese <sr@denx.de>
43635
43636commit 36f104e5caa747d568eff26b369565af57c2ffa6
43637Author: Mike Frysinger <vapier@gentoo.org>
43638Date: Mon Apr 23 13:54:24 2007 +0200
43639
43640 [patch] use unsigned char in smc91111 driver for mac
43641
43642 the v_mac variable in the smc91111 driver is declared as a signed char ...
43643 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
43644 because when it gets printed out, you get a display like:
43645 0xFFFFFFE0 and that's no good
43646
43647 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43648
Wolfgang Denk9986bc32007-08-12 21:34:50 +020043649commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
43650Author: Rodolfo Giometti <giometti@enneenne.com>
43651Date: Mon Apr 23 13:10:52 2007 +0200
43652
43653 USB: (Another) delay for crappy USB keys.
43654
43655 Some USB keys are slow in giving back an answer when the Root HUB
43656 enables power lines.
43657
43658 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
43659
Wolfgang Denk54996452007-05-05 17:15:50 +020043660commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
43661Author: Stefan Roese <sr@denx.de>
43662Date: Mon Apr 23 12:00:22 2007 +0200
43663
43664 Remove BOARDLIBS usage completely
43665
43666 Signed-off-by: Stefan Roese <sr@denx.de>
43667
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020043668commit 32556443840f127170e4baa8bdd5b567039f6c36
43669Author: Michal Simek <monstr@monstr.eu>
43670Date: Sat Apr 21 21:07:22 2007 +0200
43671
43672 [PATCH] SystemACE support for Microblaze
43673
43674commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
43675Author: Michal Simek <monstr@monstr.eu>
43676Date: Sat Apr 21 21:02:40 2007 +0200
43677
43678 16bit read/write little endian
43679
43680commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
43681Author: Michal Simek <monstr@monstr.eu>
43682Date: Sat Apr 21 20:53:31 2007 +0200
43683
43684 Change ML401 parameters - Xilinx BSP
43685
Wolfgang Denk54996452007-05-05 17:15:50 +020043686commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
43687Author: Ed Swarthout <Ed.Swarthout@freescale.com>
43688Date: Wed Feb 28 05:37:29 2007 -0600
43689
43690 mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
43691
43692 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
43693
43694commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
43695Author: Zhang Wei <wei.zhang@freescale.com>
43696Date: Fri Jan 19 10:42:37 2007 +0800
43697
43698 Enable LAWs for MPC8641 PCI-Ex2.
43699
43700 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
43701 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43702
43703commit bd7851ce1e1f140665b520026abf1042968b1102
43704Author: Jon Loeliger <jdl@freescale.com>
43705Date: Fri Apr 20 14:12:26 2007 -0500
43706
43707 mpc86xx; Write MAC address to mac-address and local-mac-address
43708
43709 Some device trees have a mac-address property, some have local-mac-address,
43710 and some have both. To support all of these device trees, ftp_cpu_setup()
43711 should write the MAC address to mac-address and local-mac-address, if they
43712 exist.
43713
43714 Signed-off-by: Timur Tabi <timur@freescale.com>
43715 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43716
43717commit 7dbdf28b8bd855a8530dc3292e4982575a197060
43718Author: Jon Loeliger <jdl@freescale.com>
43719Date: Fri Apr 20 14:11:38 2007 -0500
43720
43721 mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
43722
43723 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43724 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43725
Wolfgang Denkc64a89d2007-05-03 16:34:41 +020043726commit 14da5f7675bbb427c469e3f45006e027b6e21db9
43727Author: Wolfgang Denk <wd@denx.de>
43728Date: Fri Apr 20 17:43:28 2007 +0200
43729
43730 Cleanup compiler warnings, update CHANGELOG
43731
43732 Signed-off-by: Wolfgang Denk <wd@denx.de>
43733
Wolfgang Denk14da5f72007-04-20 17:43:28 +020043734commit 6923565db12af34fd5e02d354ee65a8c78ac460f
43735Author: Detlev Zundel <dzu@denx.de>
43736Date: Fri Apr 20 12:01:47 2007 +0200
43737
43738 Fix breakage of NC650 board with respect to nand support.
43739
43740 Signed-off-by: Detlev Zundel <dzu@denx.de>
43741
43742commit 39f23cd90947639ac278a18ff277ec786b5ac167
43743Author: Domen Puncer <domen.puncer@telargo.com>
43744Date: Fri Apr 20 11:13:16 2007 +0200
43745
43746 [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
43747
43748 G2 core reference manual says decrementer and time base
43749 are decreasing/increasing once every 4 bus clock cycles.
43750 Lets fix it, so time in Linux won't run twice as fast
43751
43752 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
43753 Acked-by: Grant Likely <grant.likely@secretlab.ca>
43754
43755commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
43756Author: Gerald Van Baren <vanbaren@cideas.com>
43757Date: Thu Apr 19 23:14:39 2007 -0400
43758
43759 Fix serious pointer bug with bootm and reserve map.
43760
43761 What was suppose to be a stack variable was declared as a pointer,
43762 overwriting random memory.
43763 Also moved the libfdt.a requirement into the main Makefile. That is
43764 The U-Boot Way.
43765
Wolfgang Denk2f152782007-05-05 18:23:11 +020043766commit d21686263574e95cb3e9e9b0496f968b1b897fdb
43767Author: Stefan Roese <sr@denx.de>
43768Date: Thu Apr 19 09:53:52 2007 +0200
43769
43770 ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
43771
43772 Previous versions used full wait states for the chip select #1 which
43773 is connected to the Xilinix SystemACE controller on the AMCC Katmai
43774 evaluation board. This leads to really slow access and therefore low
43775 performance. This patch now sets up the chip select a lot faster
43776 resulting in much better read/write performance of the Linux driver.
43777
43778 Signed-off-by: Stefan Roese <sr@denx.de>
43779
Wolfgang Denk14da5f72007-04-20 17:43:28 +020043780commit 37837828d89084879bee2f2b8c7c68d4695940df
43781Author: Wolfgang Denk <wd@denx.de>
43782Date: Wed Apr 18 17:49:29 2007 +0200
43783
43784 Clenaup, update CHANGELOG
43785
43786 Signed-off-by: Wolfgang Denk <wd@denx.de>
43787
Wolfgang Denk37837822007-04-18 17:49:29 +020043788commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
43789Author: Wolfgang Denk <wd@denx.de>
43790Date: Wed Apr 18 17:20:58 2007 +0200
43791
43792 Update CHANGELOG
43793
43794 Signed-off-by: Wolfgang Denk <wd@denx.de>
43795
Wolfgang Denkfd094c62007-04-18 17:20:58 +020043796commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
43797Author: Wolfgang Denk <wd@denx.de>
43798Date: Wed Apr 18 17:07:26 2007 +0200
43799
43800 Cleanup, update CHANGELOG
43801
43802 Sigend-off-by: Wolfgang Denk <wd@denx.de>
43803
Wolfgang Denkb99c1e62007-04-18 16:53:52 +020043804commit 5f6c732affea9647762d27a4617a2ae64c52dceb
43805Author: Wolfgang Denk <wd@denx.de>
43806Date: Wed Apr 18 16:17:46 2007 +0200
43807
43808 Update CHANGELOG
43809
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020043810commit ad4eb555671d97f96dc56eab55103b1f86874b01
43811Author: Wolfgang Denk <wd@denx.de>
43812Date: Wed Apr 18 14:30:39 2007 +0200
43813
43814 MCC200 board: remove warning which is obsolete after PSoC firmware changes
43815
43816 Signed-off-by: Wolfgang Denk <wd@denx.de>
43817
43818commit 3747a3f010b2b1442dec3e871c69788b6017aaae
43819Author: Domen Puncer <domen.puncer@telargo.com>
43820Date: Wed Apr 18 12:11:05 2007 +0200
43821
43822 [PATCH] icecube/lite5200b: document wakeup from low-power support
43823
43824 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
43825
43826commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
43827Author: Stefan Roese <sr@denx.de>
43828Date: Wed Apr 18 12:07:47 2007 +0200
43829
43830 ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
43831
43832 Signed-off-by: Stefan Roese <sr@denx.de>
43833
43834commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
43835Author: Stefan Roese <sr@denx.de>
43836Date: Wed Apr 18 12:05:59 2007 +0200
43837
43838 ppc4xx: Add output for bootrom location to 405EZ ports
43839
43840 Now 405EZ ports also show upon bootup from which boot device
43841 they are configured to boot:
43842
43843 U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
43844
43845 CPU: AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
43846 Bootstrap Option E - Boot ROM Location EBC (32 bits)
43847 16 kB I-Cache 16 kB D-Cache
43848 Board: Acadia - AMCC PPC405EZ Evaluation Board
43849
43850 Signed-off-by: Stefan Roese <sr@denx.de>
43851
Wolfgang Denk14da5f72007-04-20 17:43:28 +020043852commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
43853Author: Peter Pearse <peter.pearse@arm.com>
43854Date: Tue Apr 17 13:30:33 2007 +0100
43855
43856 Move ppearse to ARM board list
43857 Add Konstantin Kletschke for scb9328.
43858 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
43859
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020043860commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
43861Author: Domen Puncer <domen.puncer@telargo.com>
43862Date: Mon Apr 16 14:00:13 2007 +0200
43863
43864 [PATCH] icecube/lite5200b: wakeup from low-power support
43865
43866 U-Boot part of Lite5200b low power mode support.
43867 Puts SDRAM out of self-refresh and transfers control to
43868 address saved at physical 0x0.
43869
43870 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
43871 Acked-by: Grant Likely <grant.likely@secretlab.ca>
43872
Wolfgang Denk37837822007-04-18 17:49:29 +020043873commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
43874Author: Gerald Van Baren <vanbaren@cideas.com>
43875Date: Sun Apr 15 13:54:26 2007 -0400
43876
43877 Fix the ft_cpu_setup() property settings.
43878
43879 Use "setter" functions instead of flags, cleaner and more flexible.
43880 It also fixes the problem noted by Timur Tabi that the ethernet MAC
43881 addresses were all being set incorrectly to the same MAC address.
43882
43883commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
43884Author: Gerald Van Baren <vanbaren@cideas.com>
43885Date: Sat Apr 14 22:51:24 2007 -0400
43886
43887 Improve the bootm command for CONFIG_OF_LIBFDT
43888
43889 In bootm, create the "/chosen" node only if it doesn't already exist
43890 (better matches the previous behavior).
43891 Update for proper reserved memory map handling for initrd.
43892
43893commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
43894Author: Gerald Van Baren <vanbaren@cideas.com>
43895Date: Sat Apr 14 22:46:41 2007 -0400
43896
43897 Add some utilities to manipulate the reserved memory map.
43898
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020043899commit 8048cdd56f04a756eeea4951f402bf5cc33785db
43900Author: Wolfgang Denk <wd@denx.de>
43901Date: Sat Apr 14 21:16:54 2007 +0200
43902
43903 Update CHANGELOG
43904
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020043905commit 8e6875183cdca91c134408d119d4abcd48ef6856
43906Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43907Date: Sun Dec 17 18:56:46 2006 +0100
43908
43909 AVR32: Enable MMC support
43910
43911 Set up the portmux for the MMC interface and enable the MMC driver
43912 along with support for DOS partitions, ext2 and FAT filesystems.
43913
43914 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43915
43916commit fc26c97bb6df41b4a95662c34054fe912387bf38
43917Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43918Date: Fri Jan 20 10:03:53 2006 +0100
43919
43920 Atmel MCI driver
43921
43922 Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
43923
43924 The AT91 ARM-based CPUs use basically the same hardware, so it should
43925 be possible to share this driver, but no effort has been made so far.
43926
43927 Hardware documentation can be found in the AT32AP7000 data sheet,
43928 which can be downloaded from
43929
43930 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
43931
43932 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43933
43934commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
43935Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43936Date: Sun Dec 17 18:55:37 2006 +0100
43937
43938 AVR32: Add clk and gpio infrastructure for mmci
43939
43940 Implement functions for configuring the mmci pins, as well as
43941 functions for getting the clock rate of the mmci controller.
43942
43943 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43944
43945commit 7fac3f69e9f05c5e5326681976c35d129324c4de
43946Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43947Date: Sun Dec 17 18:53:56 2006 +0100
43948
43949 Enable partition support with MMC
43950
43951 Include implementations of init_part() and get_partition_info() when
43952 CONFIG_MMC is set.
43953
43954 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43955
43956commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
43957Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43958Date: Sun Dec 17 17:14:30 2006 +0100
43959
43960 AVR32: Enable networking
43961
43962 Implement MACB initialization for AVR32 and ATSTK1000, and turn
43963 everything on, including the MACB driver.
43964
43965 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43966
43967commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
43968Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43969Date: Fri Jan 20 10:03:34 2006 +0100
43970
43971 Atmel MACB ethernet driver
43972
43973 Driver for the Atmel MACB on-chip ethernet controller.
43974
43975 This driver has been tested on the ATSTK1000 board with a AT32AP7000
43976 CPU. It should probably work on AT91SAM926x as well with some minor
43977 modifications.
43978
43979 Hardware documentation can be found in the AT32AP7000 data sheet,
43980 which can be downloaded from
43981
43982 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
43983
43984 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43985
43986commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
43987Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43988Date: Sun Dec 17 16:56:14 2006 +0100
43989
43990 AVR32: Add clk and gpio infrastructure for macb0 and macb1
43991
43992 Implement functions for configuring the macb0 and macb1 pins, as
43993 well as functions for getting the clock rate of the various
43994 busses the macb ethernet controllers are connected to.
43995
43996 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43997
43998commit d5acb95b16a0a74c643524342c3437e765426d05
43999Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44000Date: Sun Dec 17 15:39:15 2006 +0100
44001
44002 AVR32: Implement simple DMA memory allocator
44003
44004 Implement dma_alloc_coherent() which returns cache-aligned
44005 uncacheable memory.
44006
44007 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44008
44009commit 91975b0fea773c9e681fea8cf3349669f27685ee
44010Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44011Date: Sun Dec 17 15:46:02 2006 +0100
44012
44013 Import <linux/mii.h> from the Linux kernel
44014
44015 Instead of creating yet another set of MII register definitions
44016 in the macb driver, here's a complete set of definitions for everyone
44017 to use.
44018
44019 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44020
44021commit 1b804b229556a4d862da93c0ec94e79419364b2c
44022Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44023Date: Wed Mar 21 19:47:36 2007 +0100
44024
44025 AVR32: Include more commands for ATSTK1000
44026
44027 Include the imi, imls and jffs commands sets by default on ATSTK1000.
44028 Also define CONFIG_BOOTARGS to something more useful, define
44029 CONFIG_BOOTCOMMAND and enable autoboot by default.
44030
44031 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44032
44033commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
44034Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44035Date: Wed Mar 21 19:44:48 2007 +0100
44036
44037 AVR32: Provide a definition of struct stat
44038
44039 Copy the definition of struct stat from the Linux kernel.
44040
44041 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44042
44043commit 12f099c08167a7a51aeee623bc16dafd0841271c
44044Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44045Date: Sun Dec 17 14:46:06 2006 +0100
44046
44047 AVR32: Use initdram() instead of board_init_memories()
44048
44049 Conform to the "standard" interface and use initdram() instead of
44050 board_init_memories() on AVR32. This enables us to get rid of the
44051 sdram_size member of the global_data struct as well.
44052
44053 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44054
44055commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
44056Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44057Date: Mon Nov 20 15:53:10 2006 +0100
44058
44059 AVR32: Relocate u-boot to SDRAM
44060
44061 Relocate the u-boot image into SDRAM like everyone else does. This
44062 means that we can handle much larger .data and .bss than we used to.
44063
44064 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44065
44066commit df548d3c3e2bbc40258713167859ffc2ce99a900
44067Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44068Date: Sun Nov 19 18:06:53 2006 +0100
44069
44070 AVR32: Resource management rewrite
44071
44072 Rewrite the resource management code (i.e. I/O memory, clock gating,
44073 gpio) so it doesn't depend on any global state. This is necessary
44074 because this code is heavily used before relocation to RAM, so we
44075 can't write to any global variables.
44076
44077 As an added bonus, this makes u-boot's memory footprint a bit smaller,
44078 although some functionality has been left out; all clocks are enabled
44079 all the time, and there's no checking for gpio line conflicts.
44080
44081 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44082
44083commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
44084Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44085Date: Sat Nov 18 18:01:13 2006 +0100
44086
44087 AVR32: Clean up memory-map.h for at32ap7000
44088
44089 Convert spaces to tabs (must have missed this one last time around),
44090 sort the entries by address and group them together by bus
44091 connectivity.
44092
44093 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44094
44095commit 28c699ef69f4b6cdf252e4747b7b590028a88981
44096Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44097Date: Sat Nov 18 17:32:31 2006 +0100
44098
44099 AVR32: Build position-independent u-boot
44100
44101 Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
44102 position independent. This will make relocation a lot easier.
44103
44104 -mno-init-got means that gcc shouldn't emit code to load the GOT
44105 address into r6 in every function prologue. We do it once and for
44106 all in the early startup assembly code, so enabling this option
44107 makes u-boot a bit faster and smaller.
44108
44109 The assembly parts have always been position-independent, so no code
44110 changes should be necessary.
44111
44112 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44113
44114commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
44115Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44116Date: Sat Nov 18 17:24:31 2006 +0100
44117
44118 AVR32: Use avr32-linux- cross-compilation prefix by default
44119
44120 It doesn't really matter which toolchain you use to compile u-boot,
44121 but the avr32-linux one is probably what most people have installed.
44122
44123 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44124
44125commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
44126Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44127Date: Sat Nov 18 17:15:30 2006 +0100
44128
44129 AVR32: Split start_u_boot into board_init_f and board_init_r
44130
44131 Split the avr32 initialization code into a function to run before
44132 relocation, board_init_f and a function to run after relocation,
44133 board_init_r. For now, board_init_f simply calls board_init_r
44134 at the end.
44135
44136 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44137
Wolfgang Denk8048cdd2007-04-14 21:16:54 +020044138commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
44139Author: Heiko Schocher <hs@pollux.denx.de>
44140Date: Sat Apr 14 05:26:48 2007 +0200
44141
44142 [Fix] Set the LED status register on the UC101 for the LXT971 PHY.
44143 clear the Display after reset.
44144
44145 Signed-off-by: Heiko Schocher <hs@denx.de>
44146
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020044147commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
44148Author: Denis Peter <d.peter@mpl.ch>
44149Date: Fri Apr 13 09:13:33 2007 +0200
44150
44151 [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
44152
44153 Fix bug introduced by "Fix get_partition_info() parameter error in all
44154 other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
44155 to use diskboot or scsiboot form another device than 0.
44156
44157 Signed-off-by: Denis Peter <d.peter@mpl.ch>
44158
44159commit 0b94504d22e70f537c17a0d38c87edb6e370977d
44160Author: Greg Lopp <lopp@pobox.com>
44161Date: Fri Apr 13 08:02:24 2007 +0200
44162
44163 [PATCH] Fix use of "void *" for block dev read/write buffer pointers
44164
44165 Signed-of-by: Greg Lopp <lopp@pobox.com>
44166 Acked-by: Grant Likely <grant.likely@secretlab.ca>
44167
Wolfgang Denka7676ea2007-05-16 01:16:53 +020044168commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
44169Author: Xie Xiaobo <r63061@freescale.com>
44170Date: Fri Mar 9 19:08:25 2007 +0800
44171
44172 Fix two bugs for MPC83xx DDR2 controller SPD Init
44173
44174 There are a few bugs in the cpu/mpc83xx/spd_sdram.c
44175 the first bug is that the picos_to_clk routine introduces a huge
44176 rounding error in 83xx.
44177 the second bug is that the mode register write recovery field is
44178 tWR-1, not tWR >> 1.
44179
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020044180commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
44181Author: Jeffrey Mann <mannj@embeddedplanet.com>
44182Date: Thu Apr 12 14:15:59 2007 +0200
44183
44184 ppc4xx: Fix i2c divisor calcularion for PPC4xx
44185
44186 This patch fixes changes the i2c_init(...) function to use the function
44187 get_OPB_freq() rather than calculating the OPB speed by
44188 sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
44189 specific per processor. The prior method was not and so was calculating
44190 the wrong speed for some PPC4xx processors.
44191
44192 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
44193 Signed-off-by: Stefan Roese <sr@denx.de>
44194
Wolfgang Denk8048cdd2007-04-14 21:16:54 +020044195commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
44196Author: Wolfgang Denk <wd@denx.de>
44197Date: Wed Apr 11 17:25:01 2007 +0200
44198
44199 Update CHANGELOG
44200
44201 Signed-off-by: Wolfgang Denk <wd@denx.de>
44202
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020044203commit 51056dd9863e6a1bc363afbbe1775c58cd967418
44204Author: Wolfgang Denk <wd@denx.de>
44205Date: Wed Apr 11 17:22:55 2007 +0200
44206
44207 Update for SC3 board
44208
44209 * Make IDE timeout configurable through ide_reset_timeout variable.
44210 * Use Newline as "password" string
44211 * Use just a single partition in NAND flash
44212
Wolfgang Denkfd094c62007-04-18 17:20:58 +020044213commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
44214Author: Haiying Wang <haiying.wang@freescale.com>
44215Date: Mon Jan 22 12:37:30 2007 -0600
44216
44217 Add PIXIS FPGA support for MPC8641HPCN board.
44218
44219 Move the 8641HPCN's PIXIS code to the new directory
44220 board/freescale/common/ as it will be shared by
44221 future boards not in the same processor family.
44222
44223 Write a "pixis_reset" command that utilizes the FPGA
44224 reset sequencer to support alternate soft-reset options
44225 such as using the "alternate" flash bank, enabling
44226 the watch dog, or choosing different CPU frequencies.
44227
44228 Add documentation for the pixis_reset to README.mpc8641hpcn.
44229
44230 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
44231 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44232
Wolfgang Denk37837822007-04-18 17:49:29 +020044233commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
44234Author: Gerald Van Baren <vanbaren@cideas.com>
44235Date: Fri Apr 6 14:19:43 2007 -0400
44236
44237 Moved fdt command support code to fdt_support.c
44238
44239 ...in preparation for improving the bootm command's handling of fdt blobs.
44240 Also cleaned up some coding sloppiness.
44241
44242commit 6679f9299534e488a171a9bb8f9bb891de247aab
44243Author: Gerald Van Baren <vanbaren@cideas.com>
44244Date: Fri Apr 6 14:17:14 2007 -0400
44245
44246 libfdt: Make fdt_check_header() public
44247
44248 Changed _fdt_check_header() to fdt_check_header() and made it part of
44249 the interface - it is a useful routine.
44250
44251 Also did some asthetics cleanup to the include files (headers).
44252
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020044253commit c0707ce65677650b5ceab0500ee50ae5168afef2
44254Author: Aubrey Li <aubrey.adi@gmail.com>
44255Date: Thu Apr 5 18:34:06 2007 +0800
44256
44257 [Blackfin][PATCH] Kill off a bunch of common local prototypes
44258
44259commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
44260Author: Aubrey Li <aubrey.adi@gmail.com>
44261Date: Thu Apr 5 18:33:04 2007 +0800
44262
44263 [Blackfin][PATCH] Fix dynamic CPLB generation issue
44264
44265commit 0445e3a264251d75b1be45ef713c70726a2952f0
44266Author: Aubrey Li <aubrey.adi@gmail.com>
44267Date: Thu Apr 5 18:31:47 2007 +0800
44268
44269 [Blackfin][PATCH] minior cleanup
44270
44271commit 155fd766573981090e638b493d5857562151862e
44272Author: Aubrey Li <aubrey.adi@gmail.com>
44273Date: Thu Apr 5 18:31:18 2007 +0800
44274
44275 [Blackfin][PATCH] Fix copyright and update license
44276
44277commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
44278Author: Aubrey Li <aubrey.adi@gmail.com>
44279Date: Thu Apr 5 18:30:25 2007 +0800
44280
44281 [Blackfin][PATCH] Add BF537 EMAC driver initialization
44282
44283commit 889256e8604e0c68db1d866d720894dffede9df6
44284Author: Aubrey Li <aubrey.adi@gmail.com>
44285Date: Thu Apr 5 18:29:55 2007 +0800
44286
44287 [Blackfin][PATCH] call real the system synchronize instruction
44288
44289commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
44290Author: Aubrey Li <aubrey.adi@gmail.com>
44291Date: Thu Apr 5 18:29:17 2007 +0800
44292
44293 [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
44294
44295commit dfeeab2cd680df047e68e723b246adf6f33bb556
44296Author: Aubrey Li <aubrey.adi@gmail.com>
44297Date: Thu Apr 5 18:28:34 2007 +0800
44298
44299 [Blackfin][PATCH]: fix flash unaligned copy issue
44300
Wolfgang Denkfd094c62007-04-18 17:20:58 +020044301commit 443feb740584e406efa203af909fe2926608e8d5
44302Author: Igor Marnat <marny@rambler.ru>
44303Date: Wed Mar 21 09:55:01 2007 +0300
44304
44305 Update usage of 'nc' in README.NetConsole
44306
44307 Added information about usage of NetConsole on systems where the -l and -p
44308 switches are mutually exclusive.
44309
44310 Signed-off-by: Igor Marnat <marny@rambler.ru>
44311 Signed-off-by: Ben Warren <bwarren@qstreams.com>
44312
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020044313commit 31c98a88228021b314c89ebb8104fb6473da4471
44314Author: Wolfgang Denk <wd@denx.de>
44315Date: Wed Apr 4 02:09:30 2007 +0200
44316
44317 Minor coding style cleanup.
44318
Wolfgang Denk31c98a82007-04-04 02:09:30 +020044319commit 94abd7c0583ebe01e799b25f451201deeaab550d
44320Author: Wolfgang Denk <wd@denx.de>
44321Date: Wed Apr 4 01:49:15 2007 +0200
44322
44323 Minor cleanup.
44324
Wolfgang Denk9986bc32007-08-12 21:34:50 +020044325commit 822af351ad2babc7d99033361a5fcacd30f6bc78
44326Author: Rodolfo Giometti <giometti@enneenne.com>
44327Date: Tue Apr 3 14:27:18 2007 +0200
44328
44329 Support for the Philips ISP116x HCD (Host Controller Driver)
44330
44331 Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
44332
44333commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
44334Author: Markus Klotzbuecher <mk@denx.de>
44335Date: Tue Apr 3 14:27:08 2007 +0200
44336
44337 USB: cleanup monahans usb support. Remove dead code.
44338
44339 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
44340
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020044341commit a65c5768e5537530bd1780af3d3fddc3113a163c
44342Author: Stefan Roese <sr@denx.de>
44343Date: Mon Apr 2 10:09:30 2007 +0200
44344
44345 ppc4xx: Change SysACE address on Katmai
44346
44347 With this new base address of the Xilinx SystemACE controller
44348 the Linux driver will be easier to adapt, since it can now be
44349 mapped via the "normal" ioremap() call.
44350
44351 Signed-off-by: Stefan Roese <sr@denx.de>
44352
Wolfgang Denk94abd7c2007-04-04 01:49:15 +020044353commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
44354Author: Gerald Van Baren <vanbaren@cideas.com>
44355Date: Sat Mar 31 14:30:53 2007 -0400
44356
44357 Fix some minor whitespace violations.
44358
44359commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
44360Author: Gerald Van Baren <vanbaren@cideas.com>
44361Date: Sat Mar 31 12:23:51 2007 -0400
44362
44363 Add a flattened device tree (fdt) command (2 of 2)
44364
44365 Modifications to the existing code to support the new fdt command.
44366
44367commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
44368Author: Gerald Van Baren <vanbaren@cideas.com>
44369Date: Sat Mar 31 12:22:10 2007 -0400
44370
44371 Add a flattened device tree (fdt) command (1 of 2)
44372
44373 The fdt command uses David Gibson's libfdt library to manipulate as well
44374 as print the flattened device tree. This patch is the new command,
44375 the second part is the modifications to the existing code.
44376
44377commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
44378Author: Gerald Van Baren <vanbaren@cideas.com>
44379Date: Sat Mar 31 12:13:43 2007 -0400
44380
44381 libfdt: Enhanced and published fdt_next_tag()
44382
44383 Enhanced the formerly private function _fdt_next_tag() to allow stepping
44384 through the tree, used to produce a human-readable dump, and made
44385 it part of the published interface.
44386 Also added some comments.
44387
44388commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
44389Author: Gerald Van Baren <vanbaren@cideas.com>
44390Date: Sat Mar 31 12:05:39 2007 -0400
44391
44392 libfdt: Customizations for use by u-boot.
44393
44394 Changes to David Gibson's original source to fit into u-boot's
44395 environment. No functionality changes.
44396
44397commit 35748177c64a4a83a00057e93bb33e40278a2a96
44398Author: Gerald Van Baren <vanbaren@cideas.com>
44399Date: Sat Mar 31 12:00:56 2007 -0400
44400
44401 libfdt: Import libfdt source (2 of 2)
44402
44403 This adds the applicable libfdt source files (unmodified) and a README
44404 to explain where the source came from.
44405
44406commit 7cd5da0fe877e7171a4cdd44880bce783132871a
44407Author: Gerald Van Baren <vanbaren@cideas.com>
44408Date: Sat Mar 31 11:59:59 2007 -0400
44409
44410 libfdt: Import libfdt source (1 of 2)
44411
44412 This adds the applicable libfdt source files (unmodified) and a README
44413 to explain where the source came from.
44414
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020044415commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
44416Author: Stefan Roese <sr@denx.de>
44417Date: Sat Mar 31 13:16:23 2007 +0200
44418
44419 ppc4xx: Update Katmai bootstrap command
44420
44421 Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
44422 is selected.
44423
44424 Signed-off-by: Stefan Roese <sr@denx.de>
44425
44426commit cabee756a6532986729477c3cc1ea16ef8517ad2
44427Author: Stefan Roese <sr@denx.de>
44428Date: Sat Mar 31 13:15:06 2007 +0200
44429
44430 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
44431
44432 Additional RAM information is now printed upon powerup, like
44433 DDR2 frequency and CAS latency.
44434
44435 Signed-off-by: Stefan Roese <sr@denx.de>
44436
44437commit 60723803431ac75cad085690789e433d5ab9174e
44438Author: Stefan Roese <sr@denx.de>
44439Date: Sat Mar 31 08:48:36 2007 +0200
44440
44441 ppc4xx: Change Yucca config file to support ECC
44442
44443 With the updated 44x DDR2 driver the Yucca board now supports
44444 ECC generation and checking.
44445
44446 Signed-off-by: Stefan Roese <sr@denx.de>
44447
44448commit 490e5730c674b20d708b783a2c5ffd7208f83873
44449Author: Stefan Roese <sr@denx.de>
44450Date: Sat Mar 31 08:47:34 2007 +0200
44451
44452 ppc4xx: Fix "bootstrap" command for Katmai board
44453
44454 The board specific "bootstrap" command is now fixed and can
44455 be used for the AMCC Katmai board to configure different
44456 CPU/PLB/OPB frequencies.
44457
44458 Signed-off-by: Stefan Roese <sr@denx.de>
44459
44460commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
44461Author: Stefan Roese <sr@denx.de>
44462Date: Sat Mar 31 08:46:08 2007 +0200
44463
44464 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
44465
44466 Fix a bug in the auto calibration routine. This driver now runs
44467 more reliable with the tested modules. It's also tested with
44468 167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
44469
44470 Signed-off-by: Stefan Roese <sr@denx.de>
44471
Wolfgang Denk31c98a82007-04-04 02:09:30 +020044472commit 342cd097be1e7affe82f42ab3da220959a699e64
44473Author: Michal Simek <monstr@monstr.eu>
44474Date: Fri Mar 30 22:52:09 2007 +0200
44475
44476 [PATCH] Clean include dependence
44477
44478commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
44479Author: Michal Simek <monstr@monstr.eu>
44480Date: Fri Mar 30 22:42:45 2007 +0200
44481
44482 [CLEAN] Remove inefficient Suzaku code
44483
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020044484commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
44485Author: Stefan Roese <sr@denx.de>
44486Date: Wed Mar 28 15:03:16 2007 +0200
44487
44488 Merge some AMCC make targets to keep the top-level Makefile smaller
44489
44490 Signed-off-by: Stefan Roese <sr@denx.de>
44491
44492commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
44493Author: Stefan Roese <sr@denx.de>
44494Date: Wed Mar 28 14:52:12 2007 +0200
44495
44496 i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
44497
44498 The "old" i2c commands (iprobe, imd...) are now compiled in again,
44499 even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
44500 config option.
44501
44502 Signed-off-by: Stefan Roese <sr@denx.de>
44503
Wolfgang Denk31c98a82007-04-04 02:09:30 +020044504commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
44505Author: Michal Simek <monstr@monstr.eu>
44506Date: Tue Mar 27 00:32:16 2007 +0200
44507
44508 PATCH: Resolve GPL license problem
44509
Wolfgang Denk9986bc32007-08-12 21:34:50 +020044510commit ae00bb4b2944dc64a485ed72a19754b11af7c223
44511Author: Rodolfo Giometti <giometti@enneenne.com>
44512Date: Mon Mar 26 12:03:36 2007 +0200
44513
44514 PXA: pxa27x USB OHCI support
44515
44516 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
44517
44518commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
44519Author: Markus Klotzbuecher <mk@denx.de>
44520Date: Mon Mar 26 11:21:05 2007 +0200
44521
44522 USB: remove the S3C24X0_merge #define, which was introduced while
44523 merging OHCI drivers.
44524
44525 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
44526
Wolfgang Denk31c98a82007-04-04 02:09:30 +020044527commit 1798049522f594013aea29457d46794298c6ae15
44528Author: Michal Simek <root@monstr.eu>
44529Date: Mon Mar 26 01:39:07 2007 +0200
44530
44531 Support for XUPV2P board
44532 Reset support
44533 BSP autoconfig support
44534
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020044535commit 0d974d5297349504a2ddfa09314be573b5df320a
44536Author: Stefan Roese <sr@denx.de>
44537Date: Sat Mar 24 15:57:09 2007 +0100
44538
44539 [PATCH] Add 4xx GPIO functions
44540
44541 This patch adds some 4xx GPIO functions. It also moves some of the
44542 common code and defines into a common 4xx GPIO header file.
44543
44544 Signed-off-by: Stefan Roese <sr@denx.de>
44545
44546commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
44547Author: Stefan Roese <sr@denx.de>
44548Date: Sat Mar 24 15:55:58 2007 +0100
44549
44550 [PATCH] Small Sequoia cleanup
44551
44552 Signed-off-by: Stefan Roese <sr@denx.de>
44553
44554commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
44555Author: Stefan Roese <sr@denx.de>
44556Date: Sat Mar 24 15:45:34 2007 +0100
44557
44558 [PATCH] Clean up 40EZ/Acadia support
44559
44560 This patch cleans up all the open issue of the preliminary
44561 Acadia support.
44562
44563 Signed-off-by: Stefan Roese <sr@denx.de>
44564
Wolfgang Denk94abd7c2007-04-04 01:49:15 +020044565commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
44566Author: Jon Loeliger <jdl@freescale.com>
44567Date: Tue Dec 12 11:02:20 2006 -0600
44568
44569 Fix 8641HPCN problem with ld version 2.16
44570
44571 (Dot outside sections problem).
44572
44573 This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
44574
44575 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44576
44577commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
44578Author: Haiying Wang <haiying.wang@freescale.com>
44579Date: Thu Dec 7 10:35:55 2006 -0600
44580
44581 Set Rev 2.x 86xx PIC in mixed mode.
44582
44583 Prevent false interrupt from hanging Linux as MSR[EE] is set
44584 to enable interrupts by changing the PIC out of the default
44585 pass through mode into mixed mode.
44586
44587 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
44588 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44589
44590commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
44591Author: Jason Jin <jason.jin@freescale.com>
44592Date: Thu Dec 7 10:32:35 2006 -0600
44593
44594 Add flash cmd function to 8641HPCN ramboot
44595
44596 Also fixes some commmand for 8641 HPCN ramboot case.
44597
44598 Signed-off-by: Jason Jin <jason.jin@freescale.com>
44599 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44600
44601commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
44602Author: Ed Swarthout <ed.swarthout@freescale.com>
44603Date: Thu Dec 7 10:34:14 2006 -0600
44604
44605 Add support for 8641 Rev 2 silicon.
44606
44607 Without this patch, I am unable to get to the prompt on rev 2 silicon.
44608 Only set ddrioovcr for rev1.
44609
44610 Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
44611 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44612
44613commit 44ba464b99001f8bd1c456a1e9d59726252f707a
44614Author: Wolfgang Denk <wd@denx.de>
44615Date: Thu Mar 22 00:13:12 2007 +0100
44616
44617 Code cleanup / re-insert previous Copyright entries.
44618
44619 Signed-off-by: Wolfgang Denk <wd@denx.de>
44620
Wolfgang Denk44ba4642007-03-22 00:13:12 +010044621commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
44622Author: Wolfgang Denk <wd@denx.de>
44623Date: Wed Mar 21 23:26:15 2007 +0100
44624
44625 Code cleanup. Update CHANGELOG
44626
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010044627commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
44628Author: Stefan Roese <sr@denx.de>
44629Date: Wed Mar 21 14:54:29 2007 +0100
44630
44631 ppc4xx: Fix file mode of include/configs/acadia.h
44632
44633 Signed-off-by: Stefan Roese <sr@denx.de>
44634
44635commit d5f4614c9350d9333e575100fb250aab774d0258
44636Author: Markus Klotzbuecher <mk@denx.de>
44637Date: Wed Mar 21 14:41:46 2007 +0100
44638
44639 SPC1920: fix small clock routing bug
44640
44641 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
44642
44643commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
44644Author: Stefan Roese <sr@denx.de>
44645Date: Wed Mar 21 13:39:57 2007 +0100
44646
44647 [PATCH] Add AMCC Acadia (405EZ) eval board support
44648
44649 This patch adds support for the new AMCC Acadia eval board.
44650
44651 Please note that this Acadia/405EZ support is still in a beta stage.
44652 Still lot's of cleanup needed but we need a preliminary release now.
44653
44654 Signed-off-by: Stefan Roese <sr@denx.de>
44655
44656commit e01bd218b00af73499331a1a701625a852cd286f
44657Author: Stefan Roese <sr@denx.de>
44658Date: Wed Mar 21 13:38:59 2007 +0100
44659
44660 [PATCH] Add AMCC PPC405EZ support
44661
44662 This patch adds support for the new AMCC 405EZ PPC. It is in
44663 preparation for the AMCC Acadia board support.
44664
44665 Please note that this Acadia/405EZ support is still in a beta stage.
44666 Still lot's of cleanup needed but we need a preliminary release now.
44667
44668 Signed-off-by: Stefan Roese <sr@denx.de>
44669
44670commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
44671Author: Heiko Schocher <hs@pollux.denx.de>
44672Date: Wed Mar 21 08:45:17 2007 +0100
44673
44674 [PATCH] TQM8272: dont change the bits given from the HRCW
44675 for the SIUMCR and BCR Register.
44676 Fix the calculation for the EEprom Size
44677
44678 Signed-off-by: Heiko Schocher <hs@denx.de>
44679
Wolfgang Denk44ba4642007-03-22 00:13:12 +010044680commit 654589873dbafcf104dff133ce0d03a4506e9cc3
44681Author: Aubrey Li <aubrey.adi@gmail.com>
44682Date: Tue Mar 20 18:16:24 2007 +0800
44683
44684 [Blackfin][PATCH] Add BF561 EZKIT board support
44685
44686commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
44687Author: Aubrey Li <aubrey.adi@gmail.com>
44688Date: Mon Mar 19 22:55:58 2007 +0800
44689
44690 [Blackfin][PATCH] minor cleanup
44691
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010044692commit 389b6bb50f745bf5038ce030300d8a8512e96f79
44693Author: Wolfgang Denk <wd@denx.de>
44694Date: Mon Mar 19 13:10:08 2007 +0100
44695
44696 Remove obsoleted POST files.
44697
44698 Signed-off-by: Wolfgang Denk <wd@denx.de>
44699
Wolfgang Denk44ba4642007-03-22 00:13:12 +010044700commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
44701Author: Aubrey Li <aubrey.adi@gmail.com>
44702Date: Mon Mar 19 01:26:11 2007 +0800
44703
44704 [PATCH] Add flash chip M29W320ET/B support
44705
44706commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
44707Author: Aubrey Li <aubrey.adi@gmail.com>
44708Date: Mon Mar 19 01:24:52 2007 +0800
44709
44710 [Blackfin][PATCH] Add BF537 stamp board support
44711
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010044712commit 8423e5e31a7235d05a482627315fb11d49c17bd7
44713Author: Stefan Roese <sr@denx.de>
44714Date: Fri Mar 16 21:11:42 2007 +0100
44715
44716 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
44717
44718 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
44719 DDR memory are dynamically programmed matching the total size
44720 of the equipped memory (DIMM modules).
44721
44722 Signed-off-by: Stefan Roese <sr@denx.de>
44723
44724commit 76d1466f918b881cda2d259254761e73885093c2
44725Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44726Date: Tue Mar 13 13:38:05 2007 +0100
44727
44728 [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
44729 boards in terms of unification.
44730
44731 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44732
44733commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
44734Author: Wolfgang Denk <wd@denx.de>
44735Date: Tue Mar 13 16:05:55 2007 +0100
44736
44737 Make SC3 board build with 'make O='; use 'addcons' consistently
44738 (SC3 and Jupiter used to use 'addcon' instead).
44739
44740 Signed-off-by: Wolfgang Denk wd@denx.de
44741
44742commit 8502e30a28e492c756ea2d7df0ace026388fce4b
44743Author: Heiko Schocher <hs@pollux.denx.de>
44744Date: Tue Mar 13 09:40:59 2007 +0100
44745
44746 [PATCH] update board config for jupiter Board:
44747 added Hush Shell,
44748 CONFIG_CMDLINE_EDITING,
44749 CFG_ENV_ADDR_REDUND activated
44750
44751 Signed-off-by: Heiko Schocher <hs@denx.de>
44752
Wolfgang Denk44ba4642007-03-22 00:13:12 +010044753commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
44754Author: Aubrey Li <aubrey.adi@gmail.com>
44755Date: Mon Mar 12 12:11:55 2007 +0800
44756
44757 [Blackfin][PATCH] minor cleanup
44758
44759commit bfa5754a58477ac917d21527cd0f079d87cf188e
44760Author: Aubrey Li <aubrey.adi@gmail.com>
44761Date: Mon Mar 12 01:42:06 2007 +0800
44762
44763 [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
44764
44765commit 8440bb14581a294375c34b91b42512f9753d1130
44766Author: Aubrey Li <aubrey.adi@gmail.com>
44767Date: Mon Mar 12 00:25:14 2007 +0800
44768
44769 [Blackfin][PATCH] code cleanup
44770
Wolfgang Denk31c98a82007-04-04 02:09:30 +020044771commit cfc67116a706fd18b8f6a9c11a16753c5626d689
44772Author: Michal Simek <monstr@monstr.eu>
44773Date: Sun Mar 11 13:48:24 2007 +0100
44774
44775 [Microblaze][PATCH] part 2
44776 timer support
44777 interrupt controller support
44778 flash support
44779 ethernet support
44780 cache support
44781 board information support
44782 env support
44783 booting image support
44784
44785 adding support for Xilinx ML401
44786
44787commit 76316a318de91f6184e7c22a10e02d275ade2441
44788Author: Michal Simek <monstr@monstr.eu>
44789Date: Sun Mar 11 13:42:58 2007 +0100
44790
44791 [Microblaze][PATCH]
44792 timer support
44793 interrupt controller support
44794 flash support
44795 ethernet support
44796 cache support
44797 board information support
44798 env support
44799 booting image support
44800
44801 adding support for Xilinx ML401
44802
Wolfgang Denk44ba4642007-03-22 00:13:12 +010044803commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
44804Author: Aubrey Li <aubrey.adi@gmail.com>
44805Date: Sat Mar 10 23:49:29 2007 +0800
44806
44807 [Blackfin][PATCH] code cleanup
44808
44809commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
44810Author: Aubrey.Li <aubrey.adi@gmail.com>
44811Date: Fri Mar 9 13:40:56 2007 +0800
44812
44813 [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
44814
44815commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
44816Author: Aubrey.Li <aubrey.adi@gmail.com>
44817Date: Fri Mar 9 13:38:44 2007 +0800
44818
44819 [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
44820
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010044821commit 992423ab43c2bcf6b704853bd00af77450915e20
44822Author: Stefan Roese <sr@denx.de>
44823Date: Thu Mar 8 23:00:08 2007 +0100
44824
44825 ppc4xx: Fix file mode of sequoia.c
44826
44827 Signed-off-by: Stefan Roese <sr@denx.de>
44828
44829commit eb92f613556800f7483666db09d9a237ad911d4a
44830Author: Wolfgang Denk <wd@pollux.denx.de>
44831Date: Thu Mar 8 22:52:51 2007 +0100
44832
44833 Minor cleanup.
44834
44835commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
44836Author: John Otken john@softadvances.com <john@softadvances.com>
44837Date: Thu Mar 8 09:39:48 2007 -0600
44838
44839 ppc4xx: Clear Sequoia/Rainier security engine reset bits
44840
44841 Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
44842
44843commit 650a330dd2539130c8c324791e2f9f75aed79d4e
44844Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44845Date: Thu Mar 8 16:26:52 2007 +0100
44846
44847 [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
44848
44849 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44850
44851commit d9fc703246840c4b268debf48c334ba55c597dc0
44852Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44853Date: Thu Mar 8 16:25:47 2007 +0100
44854
44855 [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
44856
44857 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44858
44859commit ced5b9029043397348cdc88e0cfcd6b1f629250b
44860Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44861Date: Thu Mar 8 16:23:11 2007 +0100
44862
44863 [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
44864
44865 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44866
44867commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
44868Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44869Date: Thu Mar 8 16:20:32 2007 +0100
44870
44871 [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
44872
44873 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44874
44875commit f9fc6a5852a6335840882fa2111925010eea1abe
44876Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44877Date: Wed Mar 7 15:32:01 2007 +0100
44878
44879 fixed ethernet phy configuration for plu405 board
44880
44881 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44882
44883commit 769104c9356594deb2092e204a39c05b33202d6c
44884Author: Wolfgang Denk <wd@pollux.denx.de>
44885Date: Thu Mar 8 21:49:27 2007 +0100
44886
44887 Minor cleanup
44888
Wolfgang Denk769104c2007-03-08 21:49:27 +010044889commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
44890Author: Stefan Roese <sr@denx.de>
44891Date: Thu Mar 8 10:13:16 2007 +0100
44892
44893 [PATCH] Update AMCC Luan 440SP eval board support
44894
44895 The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
44896 inititializition. This includes DDR auto calibration and support
44897 for different DIMM modules, instead of the fixed setup used in
44898 the earlier version.
44899
44900 This patch also enables the cache in FLASH for the startup
44901 phase of U-Boot (while running from FLASH). After relocating to
44902 SDRAM the cache is disabled again. This will speed up the boot
44903 process, especially the SDRAM setup, since there are some loops
44904 for memory testing (auto calibration).
44905
44906 Signed-off-by: Stefan Roese <sr@denx.de>
44907
44908commit 2f5df47351910a2936c7741cf111855829200943
44909Author: Stefan Roese <sr@denx.de>
44910Date: Thu Mar 8 10:10:18 2007 +0100
44911
44912 [PATCH] Update AMCC Yucca 440SPe eval board support
44913
44914 The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
44915 inititializition. This includes DDR auto calibration and support
44916 for different DIMM modules, instead of the fixed setup used in
44917 the earlier version.
44918
44919 Signed-off-by: Stefan Roese <sr@denx.de>
44920
44921commit 2721a68a9ea91f1e494649ce68b2577261f578e2
44922Author: Stefan Roese <sr@denx.de>
44923Date: Thu Mar 8 10:07:18 2007 +0100
44924
44925 ppc4xx: Small AMCC Katmai 440SPe update
44926
44927 Signed-off-by: Stefan Roese <sr@denx.de>
44928
44929commit df294497479b1dca6dd86318b2a912f72fede0df
44930Author: Stefan Roese <sr@denx.de>
44931Date: Thu Mar 8 10:06:09 2007 +0100
44932
44933 ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
44934
44935 Signed-off-by: Stefan Roese <sr@denx.de>
44936
Wolfgang Denkfd094c62007-04-18 17:20:58 +020044937commit 83853178bd36bca6f0f8f1331476620c84a587fc
44938Author: Ed Swarthout <Ed.Swarthout@freescale.com>
44939Date: Wed Mar 7 12:14:50 2007 -0600
44940
44941 net - Support ping reply when processing net-loop
44942
44943 Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
44944
44945 This permits the ping command to test the phy interface when the phy
44946 is put in loopback mode (typically by setting register 0 bit 14).
44947
44948 It also allows the port to respond to an external ping when u-boot is
44949 processing some other net command (such as tftp). This is useful when
44950 tftp appears to hang.
44951
44952 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
44953 Signed-off-by: Ben Warren <bwarren@qstreams.com>
44954
Wolfgang Denk769104c2007-03-08 21:49:27 +010044955commit fa1aef15bcd47736687be1af544506e90fba545d
44956Author: Stefan Roese <sr@denx.de>
44957Date: Wed Mar 7 16:43:00 2007 +0100
44958
44959 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
44960
44961 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
44962 DDR memory are dynamically programmed matching the total size
44963 of the equipped memory (DIMM modules).
44964
44965 Signed-off-by: Stefan Roese <sr@denx.de>
44966
44967commit e2ebe696818939e2b974628be9c921ea3fe9de13
44968Author: Stefan Roese <sr@denx.de>
44969Date: Wed Mar 7 16:39:36 2007 +0100
44970
44971 [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
44972
44973 This patch fixes a problem that occurs when 2 DIMM's are
44974 used. This problem was first spotted and fixed by Gerald Jackson
44975 <gerald.jackson@reaonixsecurity.com> but this patch fixes the
44976 problem in a little more clever way.
44977
44978 This patch also adds the nice functionality to dynamically
44979 create the TLB entries for the SDRAM (tlb.c). So we should
44980 never run into such problems with wrong (too short) TLB
44981 initialization again on these platforms.
44982
44983 As this feature is new to the "old" 44x SPD DDR driver, it
44984 has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
44985
44986 Signed-off-by: Stefan Roese <sr@denx.de>
44987
44988commit 39218433983417b9df087976a79e3f80dd5e83d6
44989Author: Wolfgang Denk <wd@denx.de>
44990Date: Wed Mar 7 16:33:44 2007 +0100
44991
44992 UC101: fix compiler warnings
44993
44994commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
44995Author: Wolfgang Denk <wd@pollux.denx.de>
44996Date: Wed Mar 7 16:19:46 2007 +0100
44997
44998 HMI1001: fix build error, cleanup compiler warnings.
44999
45000commit ad5bb451ade552c44bef9119d907929ebc2c126f
45001Author: Wolfgang Denk <wd@pollux.denx.de>
45002Date: Tue Mar 6 18:08:43 2007 +0100
45003
45004 Restructure POST directory to support of other CPUs, boards, etc.
45005
45006commit a5284efd125967675b2e9c6ef7b95832268ad360
45007Author: Wolfgang Denk <wd@pollux.denx.de>
45008Date: Tue Mar 6 18:01:47 2007 +0100
45009
45010 Fix HOSTARCH handling.
45011 Patch by Mike Frysinger, Mar 05 2007
45012
45013commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
45014Author: Stefan Roese <sr@denx.de>
45015Date: Tue Mar 6 07:47:04 2007 +0100
45016
45017 [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
45018
45019 As provided by the AMCC applications team, this patch optimizes the
45020 DDR2 setup for 166MHz bus speed. The values provided are also save
45021 to use on a "normal" 133MHz PLB bus system. Only the refresh counter
45022 setup has to be adjusted as done in this patch.
45023
45024 For this the NAND booting version had to include the "speed.c" file
45025 from the cpu/ppc4xx directory. With this addition the NAND SPL image
45026 will just fit into the 4kbytes of program space. gcc version 4.x as
45027 provided with ELDK 4.x is needed to generate this optimized code.
45028
45029 Signed-off-by: Stefan Roese <sr@denx.de>
45030
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020045031commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
45032Author: Wolfgang Denk <wd@pollux.denx.de>
45033Date: Sun Mar 4 01:36:05 2007 +0100
45034
45035 Some code cleanup.
45036
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010045037commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
45038Author: Kim Phillips <kim.phillips@freescale.com>
45039Date: Wed Feb 28 00:02:04 2007 -0600
45040
45041 mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
45042
45043 (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
45044
45045commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
45046Author: Kumar Gala <galak@kernel.crashing.org>
45047Date: Tue Feb 27 23:51:42 2007 -0600
45048
45049 mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
45050
45051 The config value for:
45052 * CFG_ACR_PIPE_DEP
45053 * CFG_ACR_RPTCNT
45054 * CFG_SPCR_TSEC1EP
45055 * CFG_SPCR_TSEC2EP
45056 * CFG_SCCR_TSEC1CM
45057 * CFG_SCCR_TSEC2CM
45058
45059 Were not being used when setting the appropriate register
45060
45061 Added:
45062 * CFG_SCCR_USBMPHCM
45063 * CFG_SCCR_USBDRCM
45064 * CFG_SCCR_PCICM
45065 * CFG_SCCR_ENCCM
45066
45067 To allow full config of the SCCR.
45068
45069 Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
45070 that were just bogus.
45071
45072 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45073
45074commit d51b3cf371cd441030460ef19d36b2924c361b1a
45075Author: Kim Phillips <kim.phillips@freescale.com>
45076Date: Thu Feb 22 20:06:57 2007 -0600
45077
45078 mpc83xx: update [local-]mac-address properties on UEC based devices
45079
45080 8360 and 832x weren't updating their [local-]mac-address
45081 properties. This patch fixes that.
45082
45083 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
45084
45085commit 61f4f912acbe60776c5e00df1ec94094ce672957
45086Author: Timur Tabi <timur@freescale.com>
45087Date: Tue Feb 13 10:41:42 2007 -0600
45088
45089 mpc83xx: write MAC address to mac-address and local-mac-address
45090
45091 Some device trees have a mac-address property, some have local-mac-address,
45092 and some have both. To support all of these device trees, this patch
45093 updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
45094 This function already updates local-mac-address.
45095
45096 Signed-off-by: Timur Tabi <timur@freescale.com>
45097
45098commit 22d71a71f57fd5d38b27ac3848e50d790360a598
45099Author: Kim Phillips <kim.phillips@freescale.com>
45100Date: Tue Feb 27 18:41:08 2007 -0600
45101
45102 mpc83xx: add command line editing by default
45103
45104commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
45105Author: Kim Phillips <kim.phillips@freescale.com>
45106Date: Wed Feb 14 19:50:53 2007 -0600
45107
45108 mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
45109
45110 Disable G1TXCLK, G2TXCLK h/w buffers. This patch
45111 fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
45112
45113 Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
45114
45115 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
45116 Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
45117
45118commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
45119Author: Xie Xiaobo <r63061@freescale.com>
45120Date: Wed Feb 14 18:27:17 2007 +0800
45121
45122 mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
45123
45124 The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
45125 it pass DDR/DDR2 compliance tests.
45126
45127 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
45128
45129commit b110f40bd180c6b560276589beedf753e97c46ce
45130Author: Xie Xiaobo <r63061@freescale.com>
45131Date: Wed Feb 14 18:27:06 2007 +0800
45132
45133 mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
45134
45135 MPC8360E rev2.0 have new spridr,and PVR value,
45136 The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
45137
45138 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
45139
45140commit 8d172c0f0d85998a256a95b7459a5403a30380ed
45141Author: Xie Xiaobo <r63061@freescale.com>
45142Date: Wed Feb 14 18:26:44 2007 +0800
45143
45144 mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
45145
45146 MPC8349E rev3.1 have new spridr,and PVR value,
45147 The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
45148
45149 Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
45150
45151commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
45152Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
45153Date: Wed Jan 31 11:04:19 2007 +0100
45154
45155 mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
45156
45157 Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
45158 which is used to se if an slave will ACK after receiving its address.
45159
45160 Correct i2c probing to use this method as the old method could upset
45161 a slave as it wrote a data byte to it.
45162
45163 Add a small delay in i2c_init() to let the controller
45164 shutdown any ongoing I2C activity.
45165
45166 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
45167
45168commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
45169Author: Timur Tabi <timur@freescale.com>
45170Date: Wed Jan 31 15:54:29 2007 -0600
45171
45172 mpc83xx: Add support for the MPC8349E-mITX-GP
45173
45174 Add support for the MPC8349E-mITX-GP, a stripped-down version of the
45175 MPC8349E-mITX. Bonus features include support for low-boot (BMS bit in
45176 HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
45177
45178 Signed-off-by: Timur Tabi <timur@freescale.com>
45179
45180commit fab16807adad350f618024350c6950165c247c72
45181Author: Timur Tabi <timur@freescale.com>
45182Date: Wed Jan 31 15:54:20 2007 -0600
45183
45184 mpc83xx: Delete sdram_init() for MPC8349E-mITX
45185
45186 There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
45187 never does anything. This patch deletes it.
45188
45189 Signed-off-by: Timur Tabi <timur@freescale.com>
45190
45191commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
45192Author: Dave Liu <daveliu@freescale.com>
45193Date: Fri Jan 19 10:43:26 2007 +0800
45194
45195 mpc83xx: Fix the LAW1/3 bug
45196
45197 The patch solves the alignment problem of the local bus access windows to
45198 render accessible the memory bank and PHY registers of UPC 1 (starting at
45199 0xf801 0000). What we actually did was to adjust the sizes of the bus
45200 access windows so that the base address alignment requirement would be met.
45201
45202 Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
45203 Signed-off-by: Gridish Shlomi <gridish@freescale.com>
45204 Signed-off-by: Dave Liu <daveliu@freescale.com>
45205
45206commit 97c4b397dce236a7318b304667bf89e59d08b17c
45207Author: Kim Phillips <kim.phillips@freescale.com>
45208Date: Tue Jan 30 16:15:31 2007 -0600
45209
45210 mpc83xx: don't hang if watchdog configured on 8360, 832x
45211
45212 don't hang if watchdog configured on 8360, 832x
45213
45214 The watchdog programming model is the same across all 83xx devices;
45215 make the code reflect that.
45216
45217commit b70047478570e371ce7223be342ce98afea0f7d6
45218Author: Kim Phillips <kim.phillips@freescale.com>
45219Date: Tue Jan 30 16:15:21 2007 -0600
45220
45221 mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
45222
45223 protect memcpy to bad address if a local-mac-address is missing from dt
45224
45225commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
45226Author: Kim Phillips <kim.phillips@freescale.com>
45227Date: Tue Jan 30 16:15:04 2007 -0600
45228
45229 mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
45230
45231 make 8360 default environment fdt be 8360 (not 8349)
45232
45233commit a28899c910024a0226331df07207b1038c300c93
45234Author: Emilian Medve <Emilian.Medve@freescale.com>
45235Date: Tue Jan 30 16:14:50 2007 -0600
45236
45237 mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
45238
45239 The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
45240 be used for busy-waiting since it strips the 'volatile' property from
45241 the bd variable. gcc3 was working by pure luck.
45242
45243 This is a follow on patch to "Fix the UEC driver bug of QE"
45244
45245commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
45246Author: Kumar Gala <galak@kernel.crashing.org>
45247Date: Tue Jan 30 14:08:30 2007 -0600
45248
45249 mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
45250
45251 The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
45252 MPC834X class processors. Change the protections from CONFIG_MPC8349 to
45253 CONFIG_MPC834X so they are more generic.
45254
45255 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45256
45257commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
45258Author: Kim Phillips <kim.phillips@freescale.com>
45259Date: Thu Jan 25 13:40:55 2007 -0600
45260
45261 mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
45262
45263commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
45264Author: Kim Phillips <kim.phillips@freescale.com>
45265Date: Wed Jan 24 17:18:37 2007 -0600
45266
45267 mpc83xx: sort Makefile targets
45268
45269 reordered targets alphabetically
45270
45271commit 91e25769771c1164ed63ffca0add49f934ae3343
45272Author: Paul Gortmaker <paul.gortmaker@windriver.com>
45273Date: Tue Jan 16 11:38:14 2007 -0500
45274
45275 mpc83xx: U-Boot support for Wind River SBC8349
45276
45277 I've redone the SBC8349 support to match git-current, which
45278 incorporates all the MPC834x updates from Freescale since the 1.1.6
45279 release, including the DDR changes.
45280
45281 I've kept all the SBC8349 files as parallel as possible to the
45282 MPC8349EMDS ones for ease of maintenance and to allow for easy
45283 inspection of what was changed to support this board. Hence the SBC8349
45284 U-Boot has FDT support and everything else that the MPC8349EMDS has.
45285
45286 Fortunately the Freescale updates added support for boards using CS0,
45287 but I had to change spd_sdram.c to allow for board specific settings for
45288 the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
45289 default if the board doesn't specify a value.)
45290
45291 Hopefully this should be mergeable as-is and require no whitespace
45292 cleanups or similar, but if something doesn't measure up then let me
45293 know and I'll fix it.
45294
45295 Thanks,
45296 Paul.
45297
45298commit 05031db456ab227f3e3752f37b9b812b65bb83ad
45299Author: Sam Song <samsongshu@yahoo.com.cn>
45300Date: Thu Dec 14 19:03:21 2006 +0800
45301
45302 mpc83xx: Remove a redundant semicolon in mpc8349itx.c
45303
45304 A redundant semicolon existed in mpc8349itx.c
45305 should be removed.
45306
45307 Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
45308
45309commit f35f358241c549be3f75cfe2eaa642914275b7ba
45310Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
45311Date: Wed Dec 6 21:23:55 2006 -0500
45312
45313 mpc83xx: Put the version (and magic) after the HRCW.
45314
45315 Put the version (and magic) after the HRCW. This puts it in a fixed
45316 location in flash, not at the start of flash but as close as we can get.
45317
45318 Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
45319
45320commit 48aecd969171a6e99a55fae04933857787f9a5bd
45321Author: Dave Liu <r63238@freescale.com>
45322Date: Thu Dec 7 21:14:51 2006 +0800
45323
45324 mpc83xx: Add the MPC832XEMDS board readme
45325
45326 Add the MPC832XEMDS board readme
45327
45328 Signed-off-by: Dave Liu <daveliu@freescale.com>
45329
45330commit 24c3aca3f1358b113d3215adb5433b156e99f72b
45331Author: Dave Liu <r63238@freescale.com>
45332Date: Thu Dec 7 21:13:15 2006 +0800
45333
45334 mpc83xx: Add support for the MPC832XEMDS board
45335
45336 This patch supports DUART, ETH3/4 and PCI etc.
45337
45338 Signed-off-by: Dave Liu <daveliu@freescale.com>
45339
45340commit e080313c32322e15ab5a18eb896a252858c57284
45341Author: Dave Liu <r63238@freescale.com>
45342Date: Thu Dec 7 21:11:58 2006 +0800
45343
45344 mpc83xx: streamline the 83xx immr head file
45345
45346 For better format and style, I streamlined the 83xx head files,
45347 including immap_83xx.h and mpc83xx.h. In the old head files, 1)
45348 duplicated macro definition appear in the both files; 2) the structure
45349 of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
45350 macro definition put inside the each structure. So, I cleaned up the
45351 structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
45352 moved the macro definition to mpc83xx.h, Just like MPC8260.
45353
45354 CHANGELOG
45355
45356 *streamline the 83xx immr head file
45357
45358 Signed-off-by: Dave Liu <daveliu@freescale.com>
45359
45360commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
45361Author: Dave Liu <r63238@freescale.com>
45362Date: Wed Dec 6 11:38:17 2006 +0800
45363
45364 mpc83xx: Fix the UEC driver bug of QE
45365
45366 The patch prevents the GCC tool chain from striping useful code for
45367 optimization. It will make UEC ethernet driver workable, Otherwise the
45368 UEC will fail in tx when you are using gcc4.x. but the driver can work
45369 when using gcc3.4.3.
45370
45371 CHANGELOG
45372
45373 *Prevent the GCC from striping code for optimization, Otherwise the UEC
45374 will tx failed when you are using gcc4.x.
45375
45376 Signed-off-by: Dave Liu <daveliu@freescale.com>
45377
Wolfgang Denk769104c2007-03-08 21:49:27 +010045378commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
45379Author: Stefan Roese <sr@denx.de>
45380Date: Thu Mar 1 21:11:36 2007 +0100
45381
45382 [PATCH] Update AMCC Katmai 440SPe eval board support
45383
45384 This patch updates the recently added Katmai board support. The biggest
45385 change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
45386 driver.
45387
45388 Please note, that still some problems are left with some memory
45389 configurations. See the driver for more details.
45390
45391 Signed-off-by: Stefan Roese <sr@denx.de>
45392
45393commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
45394Author: Stefan Roese <sr@denx.de>
45395Date: Thu Mar 1 07:03:25 2007 +0100
45396
45397 [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
45398
45399 Signed-off-by: Stefan Roese <sr@denx.de>
45400
45401commit ccbc7036648e465697ca298ba51e0e76dda352a0
45402Author: Wolfgang Denk <wd@pollux.denx.de>
45403Date: Wed Feb 28 01:28:53 2007 +0100
45404
45405 SC3: fix typo in default environment
45406
45407commit e344568b1b46af85ec32d815586f91bc115d6223
45408Author: Sergei Poselenov <sposelenov@emcraft.com>
45409Date: Tue Feb 27 20:15:30 2007 +0300
45410
45411 MCC200: Fixes for update procedure
45412
45413 - fix logic error in image type handling
45414 - make sure file system images (cramfs etc.) get stored in flash
45415 with image header stripped so they can be mounted through MTD
45416
45417commit 743571145b37182757d4e688a77860b36ee77573
45418Author: Wolfgang Denk <wd@pollux.denx.de>
45419Date: Tue Feb 27 14:26:04 2007 +0100
45420
45421 Minor code cleanup.
45422
Wolfgang Denk74357112007-02-27 14:26:04 +010045423commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
45424Author: Sergei Poselenov <sposelenov@emcraft.com>
45425Date: Tue Feb 27 12:40:16 2007 +0300
45426
45427 MCC200 update - add LCD Progress Indicator
45428
45429commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
45430Author: Stefan Roese <sr@denx.de>
45431Date: Thu Feb 22 07:43:34 2007 +0100
45432
45433 [PATCH] get_dev() now unconditionally uses manual relocation
45434
45435 Since the relocation fix is not included yet and we're not sure how
45436 it will be added, this patch removes code that required relocation
45437 to be fixed for now.
45438
45439 Signed-off-by: Stefan Roese <sr@denx.de>
45440
45441commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
45442Author: Stefan Roese <sr@denx.de>
45443Date: Thu Feb 22 07:40:23 2007 +0100
45444
45445 [PATCH] Change systemace driver to select 8 & 16bit mode
45446
45447 As suggested by Grant Likely this patch enables the Xilinx SystemACE
45448 driver to select 8 or 16bit mode upon startup.
45449
45450 Signed-off-by: Stefan Roese <sr@denx.de>
45451
45452commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
45453Author: Haiying Wang <Haiying.Wang@freescale.com>
45454Date: Wed Feb 21 16:52:31 2007 +0100
45455
45456 [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
45457
45458 Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
45459 is fully finished. The sync() is defined in each CPU's io.h file. For
45460 those CPUs which do not need sync for now, a dummy sync() is defined in
45461 their io.h as well.
45462
45463 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
45464
45465commit da04995c7dc6772013a9a0dc5c767f190c402478
45466Author: Stefan Roese <sr@denx.de>
45467Date: Wed Feb 21 13:44:34 2007 +0100
45468
45469 [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
45470
45471 Signed-off-by: Stefan Roese <sr@denx.de>
45472
45473commit 751bb57107d78978ae08e697c3deba816f5be091
45474Author: Stefan Roese <sr@denx.de>
45475Date: Tue Feb 20 13:21:57 2007 +0100
45476
45477 [PATCH] Fix relocation problem with "new" get_dev() function
45478
45479 This patch enables the "new" get_dev() function for block devices
45480 introduced by Grant Likely to be used on systems that still suffer
45481 from the relocation problems (manual relocation neede because of
45482 problems with linker script).
45483
45484 Hopefully we can resolve this relocation issue soon for all platform
45485 so we don't need this additional code anymore.
45486
45487 Signed-off-by: Stefan Roese <sr@denx.de>
45488
45489commit d93e2212f962668b3dce091ff5edc33f2347fe37
45490Author: Stefan Roese <sr@denx.de>
45491Date: Tue Feb 20 13:17:42 2007 +0100
45492
45493 [PATCH] Update SystemACE driver for 16bit access
45494
45495 This patch removes some problems when the Xilinx SystemACE driver
45496 is used with 16bit access on an big endian platform (like the
45497 AMCC Katmai).
45498
45499 Signed-off-by: Stefan Roese <sr@denx.de>
45500
45501commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
45502Author: Stefan Roese <sr@denx.de>
45503Date: Tue Feb 20 13:15:40 2007 +0100
45504
45505 [PATCH] Clean up Katmai (440SPe) linker script
45506
45507 Signed-off-by: Stefan Roese <sr@denx.de>
45508
45509commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
45510Author: Stefan Roese <sr@denx.de>
45511Date: Tue Feb 20 10:57:08 2007 +0100
45512
45513 [PATCH] Add support for the AMCC Katmai (440SPe) eval board
45514
45515 Signed-off-by: Stefan Roese <sr@denx.de>
45516
45517commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
45518Author: Stefan Roese <sr@denx.de>
45519Date: Tue Feb 20 10:51:26 2007 +0100
45520
45521 [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
45522
45523 This patch switches to the desired I2C bus when the date/dtt
45524 commands are called. This can be configured using the
45525 CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
45526
45527 Signed-off-by: Stefan Roese <sr@denx.de>
45528
45529commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
45530Author: Stefan Roese <sr@denx.de>
45531Date: Tue Feb 20 10:43:34 2007 +0100
45532
45533 [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
45534
45535 This patch adds support for the DDR2 controller used on the
45536 440SP and 440SPe. It is tested on the Katmai (440SPe) eval
45537 board and works fine with the following DIMM modules:
45538
45539 - Corsair CM2X512-5400C4 (512MByte per DIMM)
45540 - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
45541 - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
45542
45543 This patch also adds the nice functionality to dynamically
45544 create the TLB entries for the SDRAM (tlb.c). So we should
45545 never run into such problems with wrong (too short) TLB
45546 initialization again on these platforms.
45547
45548 Signed-off-by: Stefan Roese <sr@denx.de>
45549
45550commit 36d830c9830379045f5daa9f542ac1c990c70068
45551Author: Stefan Roese <sr@denx.de>
45552Date: Tue Feb 20 10:35:42 2007 +0100
45553
45554 [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
45555
45556 Since the existing 4xx SPD SDRAM initialization routines for the
45557 405 SDRAM controller and the 440 DDR controller don't have much in
45558 common this patch splits both drivers into different files.
45559
45560 This is in preparation for the 440 DDR2 controller support (440SP/e).
45561
45562 Signed-off-by: Stefan Roese <sr@denx.de>
45563
45564commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
45565Author: Stefan Roese <sr@denx.de>
45566Date: Tue Feb 20 10:27:08 2007 +0100
45567
45568 [PATCH] PPC4xx: Add support for multiple I2C busses
45569
45570 This patch adds support for multiple I2C busses on the PPC4xx
45571 platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
45572 to make use of this feature.
45573
45574 It also merges the 405 and 440 i2c header files into one common
45575 file 4xx_i2c.h.
45576
45577 Also the 4xx i2c reset procedure is reworked since I experienced
45578 some problems with the first access on the 440SPe Katmai board.
45579
45580 Signed-off-by: Stefan Roese <sr@denx.de>
45581
45582commit eb867a76238fb38e952c37871b16d0d7fd61c95f
45583Author: Grant Likely <grant.likely@secretlab.ca>
45584Date: Tue Feb 20 09:05:45 2007 +0100
45585
45586 [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
45587
45588 Block device read/write is anonymous data; there is no need to use a
45589 typed pointer. void * is fine. Also add a hook for block_read functions
45590
45591 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45592
45593commit 53758fa20e935cc87eeb0519ed365df753a6f289
45594Author: Grant Likely <grant.likely@secretlab.ca>
45595Date: Tue Feb 20 09:05:38 2007 +0100
45596
45597 [PATCH 8_9] Add block_write hook to block_dev_desc_t
45598
45599 Preparation for future patches which support block device writing
45600
45601 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45602
45603commit f4852ebe6ca946a509667eb68be42026f837be76
45604Author: Grant Likely <grant.likely@secretlab.ca>
45605Date: Tue Feb 20 09:05:31 2007 +0100
45606
45607 [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
45608
45609 Register read/write does not need to be wrapped in a full function. The
45610 patch replaces them with macros.
45611
45612 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45613
45614commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
45615Author: Grant Likely <grant.likely@secretlab.ca>
45616Date: Tue Feb 20 09:05:23 2007 +0100
45617
45618 [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
45619
45620 The code in this file is not a command; it is a device driver. Put it in
45621 the correct place. There are zero functional changes in this patch, it
45622 only moves the file.
45623
45624 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45625
45626commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
45627Author: Grant Likely <grant.likely@secretlab.ca>
45628Date: Tue Feb 20 09:05:16 2007 +0100
45629
45630 [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
45631
45632 This patch is in preparation of additional changes to the sysace driver.
45633 May as well take this opportunity to fixup the inconsistent whitespace since
45634 this file is about to undergo major changes anyway.
45635
45636 There are zero functional changes in this patch. It only cleans up the
45637 the whitespace.
45638
45639 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45640
45641commit 80ba981d940471fe7e539e64fa3d2bd80002beda
45642Author: Grant Likely <grant.likely@secretlab.ca>
45643Date: Tue Feb 20 09:05:07 2007 +0100
45644
45645 [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
45646
45647 isprint is already defined in ctype.c
45648
45649 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45650
45651commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
45652Author: Grant Likely <grant.likely@secretlab.ca>
45653Date: Tue Feb 20 09:05:00 2007 +0100
45654
45655 [PATCH 3_9] Move buffer print code from md command to common function
45656
45657 Printing a buffer is a darn useful thing. Move the buffer print code
45658 into print_buffer() in lib_generic/
45659
45660 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45661
45662commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
45663Author: Grant Likely <grant.likely@secretlab.ca>
45664Date: Tue Feb 20 09:04:52 2007 +0100
45665
45666 [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
45667
45668 Change the xilinx device drivers and board code to include config.h
45669 instead of xparameters.h directly. config.h always includes the
45670 correct xparameters file. This change reduces the posibility of
45671 including the wrong file when adding a new xilinx board port
45672
45673 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45674
45675commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
45676Author: Grant Likely <grant.likely@secretlab.ca>
45677Date: Tue Feb 20 09:04:34 2007 +0100
45678
45679 [PATCH 1_4] Merge common get_dev() routines for block devices
45680
45681 Each of the filesystem drivers duplicate the get_dev routine. This change
45682 merges them into a single function in part.c
45683
45684 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45685
45686commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
45687Author: Wolfgang Denk <wd@pollux.denx.de>
45688Date: Mon Feb 19 23:09:51 2007 +0100
45689
45690 MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
45691 as root file system images.
45692
45693commit 489c696ae7211218961d159e43e722d74c36fcbc
45694Author: Sergei Poselenov <sposelenov@emcraft.com>
45695Date: Wed Feb 14 14:30:28 2007 +0300
45696
45697 MCC200: Extensions to Software Update Mechanism
45698
45699 Update / extend Software Update Mechanism for MCC200 board:
45700
45701 - Add support for rootfs image added. The environment variables
45702 "rootfs_st" and "rootfs_nd" can be used to override the default
45703 values of the image start and end.
45704 - Remove excessive key check code.
45705 - Code cleanup.
45706
45707commit 4be23a12f23f1372634edc3215137b09768b7949
45708Author: Stefan Roese <sr@denx.de>
45709Date: Mon Feb 19 08:23:15 2007 +0100
45710
45711 [PATCH] Update Sequoia EBC configuration (NOR FLASH)
45712
45713 As spotted by Matthias Fuchs, the READY input should not be
45714 enabled for the NOR FLASH on the Sequoia board.
45715
45716 Signed-off-by: Stefan Roese <sr@denx.de>
45717
Wolfgang Denk769104c2007-03-08 21:49:27 +010045718commit 2605e90bf676d48123afe5719a846d2b52b24aac
45719Author: Heiko Schocher <hs@pollux.denx.de>
45720Date: Fri Feb 16 07:57:42 2007 +0100
45721
45722 [PATCH] Added support for the jupiter board.
45723
45724 Signed-off-by: Heiko Schocher <hs@denx.de>
45725
Wolfgang Denk74357112007-02-27 14:26:04 +010045726commit 497d012e5be0194e1084073d0081eb1a844796b2
45727Author: Gary Jennejohn <garyj@pollux.denx.de>
45728Date: Mon Feb 12 13:11:50 2007 +0100
45729
45730 LPC2292: patch from Siemens.
45731
45732commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
45733Author: Stefan Roese <sr@denx.de>
45734Date: Sat Feb 10 08:49:31 2007 +0100
45735
45736 [PATCH] Add missing p3mx.h file to repository (ups)
45737
45738 Signed-off-by: Stefan Roese <sr@denx.de>
45739
45740commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
45741Author: Bartlomiej Sieka <tur@semihalf.com>
45742Date: Fri Feb 9 10:45:42 2007 +0100
45743
45744 [Motion-PRO] Preliminary support for the Motion-PRO board.
45745
45746commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
45747Author: Stefan Roese <sr@denx.de>
45748Date: Wed Feb 7 16:51:08 2007 +0100
45749
45750 [PATCH] Update some AMCC 4xx board config files (set initrd_high)
45751
45752 Some boards that can have more than 768MBytes of SDRAM need to
45753 set "initrd_high", so that the initrd can be accessed by the
45754 Linux kernel.
45755
45756 Signed-off-by: Stefan Roese <sr@denx.de>
45757
45758commit 7372ca68227930d03cffa548310524cad5b96733
45759Author: Stefan Roese <sr@denx.de>
45760Date: Fri Feb 2 12:44:22 2007 +0100
45761
45762 [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
45763
45764 Previously the strapping DCR/SDR was read to determine if the internal PCI
45765 arbiter is enabled or not. This strapping bit can be overridden, so now
45766 the current status is read from the correct DCR/SDR register.
45767
45768 Signed-off-by: Stefan Roese <sr@denx.de>
45769
45770commit 2aa54f651a42d198673318f07a20c89a43e4d197
45771Author: Stefan Roese <sr@denx.de>
45772Date: Fri Feb 2 12:42:08 2007 +0100
45773
45774 [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
45775
45776 Signed-off-by: Stefan Roese <sr@denx.de>
45777
45778commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
45779Author: Stefan Roese <sr@denx.de>
45780Date: Thu Feb 1 13:22:41 2007 +0100
45781
45782 [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
45783
45784 When PCI PNP is enabled the pci pnp configuration routine is called
45785 which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
45786 problems with some PCI cards. For now disable the PCI PNP configuration.
45787
45788 Signed-off-by: Stefan Roese <sr@denx.de>
45789
45790commit 2902fadade3be7659467e8d074048c6b7068f5c0
45791Author: Stefan Roese <sr@denx.de>
45792Date: Wed Jan 31 16:56:10 2007 +0100
45793
45794 [PATCH] Update 440EPx/440GRx cpu detection
45795
45796 Signed-off-by: Stefan Roese <sr@denx.de>
45797
45798commit d5ea287b02a6945c3977410e364a879dd1a555c8
45799Author: Stefan Roese <sr@denx.de>
45800Date: Wed Jan 31 16:38:04 2007 +0100
45801
45802 [PATCH] Update esd cpci5200 files
45803
45804 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
45805
45806commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
45807Author: Stefan Roese <sr@denx.de>
45808Date: Wed Jan 31 16:37:34 2007 +0100
45809
45810 [PATCH] Add support for esd mecp5200 board
45811
45812 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
45813
45814commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
45815Author: Stefan Roese <sr@denx.de>
45816Date: Wed Jan 31 12:38:50 2007 +0100
45817
45818 [PATCH] Remove unneccessary yellowstone board config file
45819
45820 Signed-off-by: Stefan Roese <sr@denx.de>
45821
45822commit e802594b6fa1b166308820c276b96dc0d7cc731c
45823Author: Stefan Roese <sr@denx.de>
45824Date: Tue Jan 30 17:06:10 2007 +0100
45825
45826 [PATCH] Update Sequoia (440EPx) config file
45827
45828 The config file now handles the 2nd target, the Rainier (440GRx)
45829 evaluation board better. Additionally the PPC input clock was
45830 adjusted to match the correct value of 33.0 MHz.
45831
45832 Signed-off-by: Stefan Roese <sr@denx.de>
45833
45834commit 700200c67e73b83751418abe7815840dca8fd6cb
45835Author: Stefan Roese <sr@denx.de>
45836Date: Tue Jan 30 17:04:19 2007 +0100
45837
45838 [PATCH] Merge Yosemite & Yellowstone board ports
45839
45840 Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
45841 share one config file and all board specific files. This way we
45842 don't have to maintain two different sets of files for nearly
45843 identical boards.
45844
45845 Signed-off-by: Stefan Roese <sr@denx.de>
45846
45847commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
45848Author: Stefan Roese <sr@denx.de>
45849Date: Tue Jan 30 15:01:49 2007 +0100
45850
45851 [PATCH] Update Prodrive SCPU (PDNB3 variant) board
45852
45853 SCPU doesn't use redundant environment in flash.
45854
45855 Signed-off-by: Stefan Roese <sr@denx.de>
45856
45857commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
45858Author: Stefan Roese <sr@denx.de>
45859Date: Tue Jan 30 12:51:07 2007 +0100
45860
45861 [PATCH] alpr: Update alpr board config file
45862
45863 Signed-off-by: Stefan Roese <sr@denx.de>
45864
45865commit f8db84f132b1e335f20f96138a1f09ed97b08664
45866Author: Wolfgang Denk <wd@pollux.denx.de>
45867Date: Tue Jan 30 00:50:40 2007 +0100
45868
45869 LPC2292 SODIMM port coding style cleanup.
45870
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010045871commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
45872Author: Gary Jennejohn <garyj@pollux.denx.de>
45873Date: Wed Jan 24 12:16:56 2007 +0100
45874
45875 Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
45876
45877commit 2daf046ba627f85f44195815778140039636244e
45878Author: Bartlomiej Sieka <tur@semihalf.com>
45879Date: Tue Jan 23 17:22:06 2007 +0100
45880
45881 [iDMR] Add MTD and JFFS2 support, also add default partition definition.
45882
45883commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
45884Author: Bartlomiej Sieka <tur@semihalf.com>
45885Date: Tue Jan 23 14:21:14 2007 +0100
45886
45887 [iDMR] Flash driver on initialisation write-protects some sectors,
45888 currently sectors 0-3. Sector 3 does not need to be protected, though
45889 (U-boot occupies sectors 0-1 and the environment sector 2). This commit
45890 fixes this, i.e., only sectors 0-2 are protected.
45891
45892commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
45893Author: Bartlomiej Sieka <tur@semihalf.com>
45894Date: Tue Jan 23 14:11:22 2007 +0100
45895
45896 [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
45897 "mii device" results in "Unexpected exception"). Fixing this properly
45898 requires some clean-up in the FEC drivers infrastructure for ColdFire, so
45899 this commit disables MII commads for now.
45900
45901commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
45902Author: Bartlomiej Sieka <tur@semihalf.com>
45903Date: Tue Jan 23 13:25:22 2007 +0100
45904
45905 [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
45906 Identification Register (CIR).
45907
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020045908commit fdef388758506765d4d6a7155c8f1584c63ff581
45909Author: roy zang <tie-fei.zang@freescale.com>
45910Date: Mon Jan 22 13:19:21 2007 +0800
45911
45912 use CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
45913 The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
45914 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
45915 mpc7448hpc2 board.
45916
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010045917commit a4012396645533aef218354eeba754dff0deace8
45918Author: Wolfgang Denk <wd@pollux.denx.de>
45919Date: Fri Jan 19 23:08:39 2007 +0100
45920
45921 Minor code cleanup.
45922
Wolfgang Denka4012392007-01-19 23:08:39 +010045923commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
45924Author: Heiko Schocher <hs@pollux.denx.de>
45925Date: Fri Jan 19 19:57:10 2007 +0100
45926
45927 [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
45928
45929 Signed-off-by: Heiko Schocher <hs@denx.de>
45930
45931commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
45932Author: Heiko Schocher <hs@pollux.denx.de>
45933Date: Fri Jan 19 18:05:26 2007 +0100
45934
45935 [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
45936 if you must swap the bytes between reading/writing.
45937 (Needed for the SC3 board)
45938
45939 Signed-off-by: Heiko Schocher <hs@denx.de>
45940
45941commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
45942Author: Stefan Roese <sr@denx.de>
45943Date: Thu Jan 18 16:05:47 2007 +0100
45944
45945 [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
45946
45947 Signed-off-by: Stefan Roese <sr@denx.de>
45948
45949commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
45950Author: Stefan Roese <sr@denx.de>
45951Date: Thu Jan 18 11:54:52 2007 +0100
45952
45953 [PATCH] Update Prodrive P3Mx support
45954
45955 Signed-off-by: Stefan Roese <sr@denx.de>
45956
45957commit 34167a36c29ee946b727465db5c014746a08e978
45958Author: Stefan Roese <sr@denx.de>
45959Date: Thu Jan 18 11:48:10 2007 +0100
45960
45961 [PATCH] Add missing Taishan config file
45962
45963 Signed-off-by: Stefan Roese <sr@denx.de>
45964
45965commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
45966Author: Heiko Schocher <hs@pollux.denx.de>
45967Date: Thu Jan 18 11:28:51 2007 +0100
45968
45969 [PATCH] Fix: Compilerwarnings for SC3 board.
45970 The EBC Configuration Register is now by CFG_EBC_CFG definable
45971 Added JFFS2 support for the SC3 board.
45972
45973 Signed-off-by: Heiko Schocher <hs@denx.de>
45974
45975commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
45976Author: Stefan Roese <sr@denx.de>
45977Date: Thu Jan 18 10:25:34 2007 +0100
45978
45979 [PATCH] Add support for AMCC Taishan PPC440GX eval board
45980
45981 Signed-off-by: Stefan Roese <sr@denx.de>
45982
45983commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
45984Author: Wolfgang Denk <wd@pollux.denx.de>
45985Date: Tue Jan 16 18:30:50 2007 +0100
45986
45987 Raname solidcard3 into sc3; add redundant env for sc3
45988
Wolfgang Denk6d3e0102007-01-16 18:30:50 +010045989commit 1bbbbdd20fcec9933697000dcf55ff7972622596
45990Author: Wolfgang Denk <wd@pollux.denx.de>
45991Date: Tue Jan 16 12:46:35 2007 +0100
45992
45993 Update default environment for Solidcard3
45994
Wolfgang Denkf11033e2007-01-15 13:41:04 +010045995commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
45996Author: Stefan Roese <sr@denx.de>
45997Date: Mon Jan 15 09:46:29 2007 +0100
45998
45999 [PATCH] Fix 440SPe rev B detection from previous patch
46000
46001 Signed-off-by: Stefan Roese <sr@denx.de>
46002
46003commit a443d31410c571ee8f970da819a44d698fdd6b1f
46004Author: Heiko Schocher <hs@pollux.denx.de>
46005Date: Sun Jan 14 13:35:31 2007 +0100
46006
46007 [FIX] correct I2C Writes for the LM81 Sensor.
46008
46009 Signed-off-by: Heiko Schocher <hs@denx.de>
46010
46011commit 0bba5452835f19a61204edcda3a58112fd8e2208
46012Author: Wolfgang Denk <wd@pollux.denx.de>
46013Date: Sat Jan 13 11:17:10 2007 +0100
46014
46015 Undo commit 3033ebb2: reset command does not take any arguments
46016
46017 Haiying Wang's modification to the reset command was broken, undo it.
46018
46019 Signed-off-by: Wolfgang Denk <wd@denx.de>
46020
46021commit 95981778cff0038fd9941044d6a3eda810e33258
46022Author: Stefan Roese <sr@denx.de>
46023Date: Sat Jan 13 08:01:03 2007 +0100
46024
46025 [PATCH] Update 440SP(e) cpu revisions
46026
46027 Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
46028
46029 Signed-off-by: Stefan Roese <sr@denx.de>
46030
46031commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
46032Author: Stefan Roese <sr@denx.de>
46033Date: Sat Jan 13 07:59:56 2007 +0100
46034
46035 [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
46036
46037 Now the board revision and the current PCI bus speed are printed after
46038 the board message.
46039
46040 Also the EBC initialising is now done via defines in the board config
46041 file.
46042
46043 Signed-off-by: Stefan Roese <sr@denx.de>
46044
46045commit 36adff362c2c0141ff8a810d42a7e478f779130f
46046Author: Stefan Roese <sr@denx.de>
46047Date: Sat Jan 13 07:59:19 2007 +0100
46048
46049 [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
46050
46051 Now the board revision and the current PCI bus speed are printed after
46052 the board message.
46053
46054 Also the EBC initialising is now done via defines in the board config
46055 file.
46056
46057 Signed-off-by: Stefan Roese <sr@denx.de>
46058
46059commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
46060Author: Stefan Roese <sr@denx.de>
46061Date: Sat Jan 13 07:57:51 2007 +0100
46062
46063 [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
46064
46065 Now the board revision and the current PCI bus speed are printed after
46066 the board message.
46067
46068 Signed-off-by: Stefan Roese <sr@denx.de>
46069
Wolfgang Denk6d3e0102007-01-16 18:30:50 +010046070commit ca43ba18e910206ef8063e4b22d282630bff3fd2
46071Author: Heiko Schocher <hs@pollux.denx.de>
46072Date: Thu Jan 11 15:44:44 2007 +0100
46073
46074 Added support for the SOLIDCARD III board from Eurodesign
46075
46076 Signed-off-by: Heiko Schocher <hs@denx.de>
46077
Wolfgang Denkf11033e2007-01-15 13:41:04 +010046078commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
46079Author: Reinhard Thies <Reinhard.Thies@web.de>
46080Date: Wed Jan 10 14:41:14 2007 +0100
46081
46082 Adjusted default environment for cam5200 board.
46083
46084commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
46085Author: Wolfgang Denk <wd@pollux.denx.de>
46086Date: Wed Jan 10 15:35:52 2007 +0100
46087
46088 Update CHANGELOG
46089
Wolfgang Denkbab5a902007-01-10 15:35:52 +010046090commit 787fa15860a57833e50bd30555079a9cd4e519b8
46091Author: Wolfgang Denk <wd@pollux.denx.de>
46092Date: Wed Jan 10 01:28:39 2007 +0100
46093
46094 Fix auto_update for MCC200 board.
46095
46096 The invocation of do_auto_update() is moved to the end of the
46097 misc_init_r() function, after the flash mappings have been
46098 initialized. Please find attached a patch that implements that
46099 change.
46100
46101 Also correct the decoding of the keypad status. With this update, the
46102 key that will trigger the update is Column 2, Row 2.
46103
Wolfgang Denkf11033e2007-01-15 13:41:04 +010046104commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
46105Author: Marian Balakowicz <m8@semihalf.com>
46106Date: Wed Jan 10 00:26:15 2007 +0100
46107
46108 CAM5200 flash driver modifications:
46109 - use CFI driver (replaces custom flash driver) for main 'cam5200' target
46110 - add second build target 'cam5200_niosflash' which still uses custom driver
46111
Wolfgang Denkbab5a902007-01-10 15:35:52 +010046112commit 67fea022fa957f59653b5238c7496f80a6b70432
46113Author: Markus Klotzbuecher <mk@denx.de>
46114Date: Tue Jan 9 16:02:48 2007 +0100
46115
46116 SPC1920: cleanup memory contoller setup
46117
46118commit 8fc2102faa23593c80381437c09f7745a14deb40
46119Author: Markus Klotzbuecher <mk@denx.de>
46120Date: Tue Jan 9 14:57:14 2007 +0100
46121
46122 Fix the cpu speed setup to work with all boards.
46123
46124commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
46125Author: Markus Klotzbuecher <mk@denx.de>
46126Date: Tue Jan 9 14:57:13 2007 +0100
46127
46128 SPC1920: add support for the FM18L08 Ramtron FRAM
46129
46130commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
46131Author: Markus Klotzbuecher <mk@denx.de>
46132Date: Tue Jan 9 14:57:13 2007 +0100
46133
46134 SPC1920: update the HPI register addresses to work with the second
46135 generation of hardware
46136
46137commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
46138Author: Markus Klotzbuecher <mk@creamnet.de>
46139Date: Tue Jan 9 14:57:13 2007 +0100
46140
46141 Miscellanious spc1920 related cleanups
46142
46143commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
46144Author: Markus Klotzbuecher <mk@denx.de>
46145Date: Tue Jan 9 14:57:12 2007 +0100
46146
46147 SPC1920 GO/NOGO led should be set to color red in U-Boot
46148
46149commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
46150Author: Markus Klotzbuecher <mk@creamnet.de>
46151Date: Tue Jan 9 14:57:12 2007 +0100
46152
46153 Add support for the DS3231 RTC
46154
46155commit 8139567b60d678584b05f0718a681f2047c5e14f
46156Author: Markus Klotzbuecher <mk@creamnet.de>
46157Date: Tue Jan 9 14:57:11 2007 +0100
46158
46159 SMC1 uses external CLK4 instead of BRG on spc1920
46160
46161commit d8d9de1a02fbd880b613d607143d1f57342affc7
46162Author: Markus Klotzbuecher <mk@creamnet.de>
46163Date: Tue Jan 9 14:57:10 2007 +0100
46164
46165 Update the SPC1920 CMB PLD driver
46166
46167commit 3f34f869162750e5e999fd140f884f5de952bcfe
46168Author: Markus Klotzbuecher <mk@creamnet.de>
46169Date: Tue Jan 9 14:57:10 2007 +0100
46170
46171 Add / enable I2C support on the spc1920 board
46172
46173commit d28707dbce1e9ac2017ad051da4133bf22b4204f
46174Author: Markus Klotzbuecher <mk@creamnet.de>
46175Date: Tue Jan 9 14:57:10 2007 +0100
46176
46177 Add support for the tms320671x host port interface (HPI)
46178
46179commit f4eb54529bb3664c3a562e488b460fe075f79d67
46180Author: Wolfgang Denk <wd@pollux.denx.de>
46181Date: Sun Jan 7 00:13:11 2007 +0100
46182
46183 Prepare for release 1.2.0
46184
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010046185commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
46186Author: Stefan Roese <sr@denx.de>
46187Date: Sat Jan 6 15:58:09 2007 +0100
46188
46189 [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
46190
46191 This patch fixes a problem with an incorrect setup for the refresh
46192 timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
46193
46194 Signed-off-by: Stefan Roese <sr@denx.de>
46195
46196commit f16c1da9577f06c5fc08651a4065537407de4635
46197Author: Stefan Roese <sr@denx.de>
46198Date: Sat Jan 6 15:56:13 2007 +0100
46199
46200 [PATCH] Update ALPR board files
46201
46202 This update brings the ALPR board support to the newest version.
46203 It also fixes a problem with the NAND driver.
46204
46205 Signed-off-by: Stefan Roese <sr@denx.de>
46206
46207commit cd1d937f90250a32988c37b2b4af8364d25de8ed
46208Author: Stefan Roese <sr@denx.de>
46209Date: Fri Jan 5 11:46:05 2007 +0100
46210
46211 [PATCH] nand: Fix problem with oobsize calculation
46212
46213 Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
46214
46215 The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
46216 returns a 0x15. In the code fragment below bits [1:0] determine the
46217 page size, it is ANDed via "(extid & 0x3)" then shifted out. The
46218 next field is also ANDed with 0x3. However this is a one bit field
46219 as defined in the Hynix and Samsung parts in the 4th ID byte that
46220 determins the oobsize, not a two bit field. It works on Samsung as
46221 bits[3:2] are 01. However for the Hynix there is a 11 in these two
46222 bits, so the oob size gets messed up.
46223
46224 I checked the correct linux code and the suggested fix from Brian is
46225 also available in the linux nand mtd driver.
46226
46227 Signed-off-by: Stefan Roese <sr@denx.de>
46228
46229commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
46230Author: Stefan Roese <sr@denx.de>
46231Date: Fri Jan 5 10:40:36 2007 +0100
46232
46233 [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
46234
46235 This fix will make the MAL burst disabling patch for the Linux
46236 EMAC driver obsolete.
46237
46238 Signed-off-by: Stefan Roese <sr@denx.de>
46239
46240commit 023889838282b6237b401664f22dd22dfba2c066
46241Author: Stefan Roese <sr@denx.de>
46242Date: Fri Jan 5 10:38:05 2007 +0100
46243
46244 [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
46245
46246 This code will optimize the DDR2 controller setup on a board specific
46247 basis.
46248
46249 Note: This code doesn't work right now on the NAND booting image for the
46250 Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
46251
46252 Signed-off-by: Stefan Roese <sr@denx.de>
46253
46254commit cce4acbb68398634b8d011ed7bb0d12269c84230
46255Author: Bartlomiej Sieka <tur@semihalf.com>
46256Date: Thu Dec 28 19:08:21 2006 +0100
46257
46258 Few V38B changes:
46259 - fix a typo in V38B config file
46260 - move watchdog initialisation earlier in the boot process
46261 - add "wdt=off" to default kernel command line (disables kernel watchdog)
46262
46263commit 92eb729bad876725aeea908d2addba0800620840
46264Author: Wolfgang Denk <wd@pollux.denx.de>
46265Date: Wed Dec 27 01:26:13 2006 +0100
46266
46267 Fix bug in adaption of Stefano Babic's CFI driver patch.
46268
46269commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
46270Author: Wolfgang Denk <wd@pollux.denx.de>
46271Date: Sun Dec 24 01:42:57 2006 +0100
46272
46273 Minor code cleanup.
46274
46275commit d784fdb05900ada3686d5778783e1fb328e9fb66
46276Author: Stefano Babic <sbabic@denx.de>
46277Date: Tue Dec 12 00:22:42 2006 +0100
46278
46279 Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
46280
46281commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
46282Author: Stefan Roese <sr@denx.de>
46283Date: Fri Dec 22 14:29:40 2006 +0100
46284
46285 [PATCH] Fix sequoia flash autodetection (finally correct)
46286
46287 Now 32MByte and 64MByte FLASH is know to work and other
46288 configurations should work too.
46289
46290 Signed-off-by: Stefan Roese <sr@denx.de>
46291
46292commit 82e5236a8b719543643fd26d5827938ab2b94818
46293Author: Wolfgang Denk <wd@pollux.denx.de>
46294Date: Fri Dec 22 10:30:26 2006 +0100
46295
46296 Minor code cleanup; update CHANGELOG.
46297
46298commit fa23044564091f05d9695beb7b5b9a931e7f41a4
46299Author: Heiko Schocher <hs@pollux.denx.de>
46300Date: Thu Dec 21 17:17:02 2006 +0100
46301
46302 Added support for the TQM8272 board from TQ
46303
46304 Signed-off-by: Heiko Schocher <hs@denx.de>
46305
Wolfgang Denkf11033e2007-01-15 13:41:04 +010046306commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
46307Author: Heiko Schocher <hs@pollux.denx.de>
46308Date: Thu Dec 21 16:14:48 2006 +0100
46309
46310 [PATCH] Add support for the UC101 board from MAN.
46311
46312 Signed-off-by: Heiko Schocher <hs@denx.de>
46313
Wolfgang Denk82e52362006-12-22 10:30:26 +010046314commit c84bad0ef60e7055ab0bd49b93069509cecc382a
46315Author: Bartlomiej Sieka <tur@semihalf.com>
46316Date: Wed Dec 20 00:29:43 2006 +0100
46317
46318 Fix to make the baudrate changes immediate for the MCF52x2 family.
46319
46320commit daa6e418bcc0c717752e8de939c213c790286096
46321Author: Bartlomiej Sieka <tur@semihalf.com>
46322Date: Wed Dec 20 00:27:32 2006 +0100
46323
46324 Preliminary support for the iDMR board (ColdFire).
46325
46326commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
46327Author: Andrei Safronov <safronov@pollux.denx.de>
46328Date: Fri Dec 8 16:23:08 2006 +0100
46329
46330 automatic update mechanism
46331
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020046332commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
46333Author: roy zang <tie-fei.zang@freescale.com>
46334Date: Mon Dec 4 17:56:59 2006 +0800
46335
46336 Slight code clean up.
46337 Add comments, delete duplicate define and remove spaces.
46338 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
46339
46340commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
46341Author: roy zang <tie-fei.zang@freescale.com>
46342Date: Mon Dec 4 17:54:21 2006 +0800
46343
46344 Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
46345 multiplier table can not refect the real PLL clock behavior of these
46346 processors. Please refer to the hardware specification for detailed
46347 information of the corresponding processors.
46348 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
46349
46350commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
46351Author: roy zang <tie-fei.zang@freescale.com>
46352Date: Mon Dec 4 14:46:23 2006 +0800
46353
46354 Remove the static MAC address, ip address, server ip, netmask and
46355 gateway ip for network setting.
46356 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
46357
46358commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
46359Author: roy zang <tie-fei.zang@freescale.com>
46360Date: Mon Dec 4 14:33:08 2006 +0800
46361
46362 Remove the duplicate memory test code for mpc744ihpc2 board.
46363 If a memory test is needed, please use the functions in
46364 post/memory.c or memtest command.
46365 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
46366
46367commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
46368Author: roy zang <tie-fei.zang@freescale.com>
46369Date: Fri Dec 1 19:01:25 2006 +0800
46370
46371 Fix the exception occuring in RAM table search issue.
46372 The original search_one_table() function code can only processes the search
46373 for the exception occurring in FLASH/ROM, because the exception and fixup
46374 table usually locate in FLASH. If the exception address is also in
46375 FLASH, it will be OK.
46376 If the exception occurs in RAM, after the u-boot relocation, a
46377 relocation offset should be added.
46378
46379 clean up the code in cpu/74xx_7xx/cpu.c
46380
46381 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
46382
46383commit ee311214e0d216f904feea269599d0934bf71f23
46384Author: roy zang <tie-fei.zang@freescale.com>
46385Date: Fri Dec 1 11:47:36 2006 +0800
46386
46387 Clean up the code according to codestyle:
46388 (1) remove some C++ comments.
46389 (2) remove trailing white space.
46390 (3) remove trailing empty line.
46391 (4) Indentation by table.
46392 (5) remove {} in one line condition.
46393 (6) add space before '(' in function call.
46394 Remove some weird printf () output.
46395 Add necessary comments.
46396 Modified Makefile to support building in a separate directory.
46397
Wolfgang Denk82e52362006-12-22 10:30:26 +010046398commit dd520bf314c7add4183c5191692180f576f96b60
46399Author: Wolfgang Denk <wd@pollux.denx.de>
46400Date: Thu Nov 30 18:02:20 2006 +0100
46401
46402 Code cleanup.
46403
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010046404commit 8d9a8610b8256331132227e9e6585c6bd5742787
46405Author: Wolfgang Denk <wd@pollux.denx.de>
46406Date: Thu Nov 30 01:54:07 2006 +0100
46407
46408 Code cleanup. Update CHANGELOG.
46409
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010046410commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
46411Author: Grant Likely <grant.likely@secretlab.ca>
46412Date: Wed Nov 29 16:23:42 2006 +0100
46413
46414 [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
46415
46416 The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
46417 not the XLB frequency.
46418
46419 This patch depends on the previous patches for MPC52xx device tree support
46420
46421 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
46422 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
46423
46424commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
46425Author: Stefan Roese <sr@denx.de>
46426Date: Wed Nov 29 15:42:37 2006 +0100
46427
46428 [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
46429
46430 This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
46431 and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
46432 quite similar and share the same board directory "prodrive/p3mx"
46433 and the same config file "p3mx.h".
46434
46435 Signed-off-by: Stefan Roese <sr@denx.de>
46436
46437commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
46438Author: Stefan Roese <sr@denx.de>
46439Date: Wed Nov 29 12:53:15 2006 +0100
46440
46441 [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
46442
46443 In the bootvx command the load address was only read from the env
46444 variable "loadaddr" and not optionally passed as paramter as described
46445 in the help. This is fixed with this patch. The behaviour is now the
46446 same as in the bootelf command.
46447
46448 Signed-off-by: Stefan Roese <sr@denx.de>
46449
46450commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
46451Author: Stefan Roese <sr@denx.de>
46452Date: Wed Nov 29 12:03:57 2006 +0100
46453
46454 [PATCH] include/ppc440.h minor error affecting interrupts
46455
46456 Fixed include/ppc440.c for UIC address Bug
46457
46458 Corrects bug affecting the addresses for the universal interrupt
46459 controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
46460
46461 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
46462 Signed-off-by: Stefan Roese <sr@denx.de>
46463
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010046464commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
46465Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
46466Date: Tue Nov 28 16:17:27 2006 -0600
46467
46468 Make fsl-i2c not conflict with SOFT I2C
46469
46470 Signed-off-by: Timur Tabi <timur@freescale.com>
46471
46472commit 14198bf768fdc958e3c1afd2404e5262208e98d7
46473Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
46474Date: Tue Nov 28 16:17:18 2006 -0600
46475
46476 Fix I2C master address initialization.
46477
46478 Signed-off-by: Timur Tabi <timur@freescale.com>
46479
46480commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
46481Author: Kim Phillips <kim.phillips@freescale.com>
46482Date: Tue Nov 28 23:31:19 2006 -0600
46483
46484 Assign maintainers for mpc8349emds and mpc8360emds
46485
46486 Dave for mpc8360emds, and me for mpc8349emds.
46487
46488commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
46489Author: Kim Phillips <kim.phillips@freescale.com>
46490Date: Tue Nov 28 23:28:33 2006 -0600
46491
46492 Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
46493
46494 give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
46495 since they are passed by reference to ucc_get_cmxucr_reg and assigned.
46496
46497commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
46498Author: Timur Tabi <timur@freescale.com>
46499Date: Tue Nov 28 12:09:35 2006 -0600
46500
46501 mpc83xx: Miscellaneous code style fixes
46502
46503 Implement various code style fixes and similar changes.
46504
46505 Signed-off-by: Timur Tabi <timur@freescale.com>
46506
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010046507commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
46508Author: Stefan Roese <sr@denx.de>
46509Date: Tue Nov 28 17:55:49 2006 +0100
46510
46511 [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
46512
46513 This patch adds the code and configuration necessary to boot with an
46514 arch/powerpc Linux kernel.
46515
46516 Signed-off-by: Grant Likely <grant.likely@gmail.com>
46517 Acked-by: Jon Loeliger <jdl@freescale.com>
46518
46519commit e732faec95a83cb468b4850ae807c8301dde8f6a
46520Author: Stefan Roese <sr@denx.de>
46521Date: Tue Nov 28 16:09:24 2006 +0100
46522
46523 [PATCH] PPC4xx: 440SP Rev. C detection added
46524
46525 Signed-off-by: Stefan Roese <sr@denx.de>
46526
46527commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
46528Author: Stefan Roese <sr@denx.de>
46529Date: Tue Nov 28 11:04:45 2006 +0100
46530
46531 [PATCH] nand: Fix patch merge problem
46532
46533 Signed-off-by: Stefan Roese <sr@denx.de>
46534
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010046535commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
46536Author: Stefan Roese <sr@denx.de>
46537Date: Tue Nov 28 11:04:45 2006 +0100
46538
46539 [PATCH] nand: Fix patch merge problem
46540
46541 Signed-off-by: Stefan Roese <sr@denx.de>
46542
Wolfgang Denkd2c83f52006-11-27 23:11:18 +010046543commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
46544Author: Wolfgang Denk <wd@pollux.denx.de>
46545Date: Mon Nov 27 22:53:53 2006 +0100
46546
46547 Update CHANGELOG
46548
Wolfgang Denk4f4b6022006-11-27 22:53:53 +010046549commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
46550Author: Stefan Roese <sr@denx.de>
46551Date: Mon Nov 27 17:43:25 2006 +0100
46552
46553 [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
46554
46555 Patch below corrects the setting of the zmiifer register, it was
46556 overwritting the register rather than ORing the settings.
46557
46558 Signed-off-by: Neil Wilson <NWilson@airspan.com>
46559 Signed-off-by: Stefan Roese <sr@denx.de>
46560
46561commit d1a72545296800b7e219f93104ad5836f0003d66
46562Author: Stefan Roese <sr@denx.de>
46563Date: Mon Nov 27 17:34:10 2006 +0100
46564
46565 [PATCH] Select NAND embedded environment from board configuration
46566
46567 The current NAND Bootloader setup forces the environment
46568 variables to be in line with the bootloader. This change
46569 enables the configuration to be made in the board include
46570 file instead so that it can be individually enabled.
46571
46572 Signed-off-by: Nick Spence <nick.spence@freescale.com>
46573 Signed-off-by: Stefan Roese <sr@denx.de>
46574
46575commit 15784862857c3c2214498defcfed84ff137fb81e
46576Author: Stefan Roese <sr@denx.de>
46577Date: Mon Nov 27 17:22:19 2006 +0100
46578
46579 [PATCH] nand_wait() timeout fixes
46580
46581 Two fixes for the nand_wait() function in
46582 drivers/nand/nand_base.c:
46583
46584 1. Use correct timeouts. The original timeouts in Linux
46585 source are 400ms and 20ms not 40s and 20s
46586
46587 2. Return correct error value in case of timeout. 0 is
46588 interpreted as OK.
46589
46590 Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
46591 Signed-off-by: Stefan Roese <sr@denx.de>
46592
46593commit da5553b095bf04f4f109ad7e565dae3aba47b230
46594Author: Stefan Roese <sr@denx.de>
46595Date: Mon Nov 27 17:04:06 2006 +0100
46596
46597 [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
46598
46599 This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010046600 arguments to bootm. It removes the getenv("disable_of") test that used
Wolfgang Denk4f4b6022006-11-27 22:53:53 +010046601 to be used for this purpose.
46602
46603 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
46604 Acked-by: Jon Loeliger <jdl@freescale.com>
46605
46606commit a9398e018593782c5fa7d0741955fc1256b34c1e
46607Author: Wolfgang Denk <wd@pollux.denx.de>
46608Date: Mon Nov 27 15:32:42 2006 +0100
46609
46610 Minor code cleanup. Update CHANGELOG.
46611
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010046612commit 1729b92cde575476684bffe819d0b7791b57bff2
46613Author: Stefan Roese <sr@denx.de>
46614Date: Mon Nov 27 14:52:04 2006 +0100
46615
46616 [PATCH] 4xx: Fix problem with board specific reset code (now for real)
46617
46618 Signed-off-by: Stefan Roese <sr@denx.de>
46619
46620commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
46621Author: Stefan Roese <sr@denx.de>
46622Date: Mon Nov 27 14:49:51 2006 +0100
46623
46624 [PATCH] alpr: remove unused board specific flash driver
46625
46626 Signed-off-by: Stefan Roese <sr@denx.de>
46627
46628commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
46629Author: Stefan Roese <sr@denx.de>
46630Date: Mon Nov 27 14:48:41 2006 +0100
46631
46632 [PATCH] 4xx: Fix problem with board specific reset code
46633
46634 Signed-off-by: Stefan Roese <sr@denx.de>
46635
46636commit ec0c2ec725aec9524a177a77ce75559e644a931a
46637Author: Stefan Roese <sr@denx.de>
46638Date: Mon Nov 27 14:46:06 2006 +0100
46639
46640 [PATCH] Remove testing 4xx enet PHY setup
46641
46642 Signed-off-by: Stefan Roese <sr@denx.de>
46643
46644commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
46645Author: Stefan Roese <sr@denx.de>
46646Date: Mon Nov 27 14:12:17 2006 +0100
46647
46648 [PATCH] Update Prodrive ALPR board support (440GX)
46649
46650 Signed-off-by: Stefan Roese <sr@denx.de>
46651
Wolfgang Denk9986bc32007-08-12 21:34:50 +020046652commit 58b485776698c3d71ec5a215e392123b4c15afa3
46653Author: Markus Klotzbuecher <mk@denx.de>
46654Date: Mon Nov 27 11:51:21 2006 +0100
46655
46656 Add a small README with information on the generic ohci driver.
46657
46658commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
46659Author: Markus Klotzbuecher <mk@denx.de>
46660Date: Mon Nov 27 11:46:46 2006 +0100
46661
46662 Fix some endianness issues related to the generic ohci driver
46663
46664commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
46665Author: Markus Klotzbuecher <mk@denx.de>
46666Date: Mon Nov 27 11:44:58 2006 +0100
46667
46668 Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
46669 to choose between the old and the generic OHCI drivers.
46670
46671commit 53e336e9ffc51035bdc4e5867631b3378761b4df
46672Author: Markus Klotzbuecher <mk@denx.de>
46673Date: Mon Nov 27 11:43:09 2006 +0100
46674
46675 Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
46676 and adapted board configs TQM5200 and yosemite accordingly. This commit
46677 also makes the maximum number of root hub ports configurable
46678 (CFG_USB_OHCI_MAX_ROOT_PORTS).
46679
Wolfgang Denka9398e02006-11-27 15:32:42 +010046680commit 78d620ebb5871d252270dedfad60c6568993b780
46681Author: Wolfgang Denk <wd@atlas.denx.de>
46682Date: Thu Nov 23 22:58:58 2006 +0100
46683
46684 Updates for TQM5200 modules:
46685 - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
46686 - simplify "udate" definitions
46687
46688commit 2053283304eeddf250d109e6791eb6fa4cad14f7
46689Author: Stefan Roese <sr@denx.de>
46690Date: Wed Nov 22 13:20:50 2006 +0100
46691
46692 [PATCH] PPC4xx start.S: Fix for processor errata
46693
46694 Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
46695 errata 1.12: 440_33 by moving patch up in code.
46696
46697 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
46698 Signed-off-by: Stefan Roese <sr@denx.de>
46699
46700commit 4ef6251403f637841000e0fef9e832aa01339822
46701Author: Stefan Roese <sr@denx.de>
46702Date: Mon Nov 20 20:39:52 2006 +0100
46703
46704 [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
46705
46706 Signed-off-by: Stefan Roese <sr@denx.de>
46707
46708commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
46709Author: Wolfgang Denk <wd@pollux.denx.de>
46710Date: Mon Nov 20 10:28:30 2006 +0100
46711
46712 Update CHANGELOG
46713
Wolfgang Denke4bbd8d2006-11-20 10:28:30 +010046714commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
46715Author: Stefan Roese <sr@denx.de>
46716Date: Mon Nov 13 13:55:24 2006 +0100
46717
46718 [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
46719
46720 * Adds support for AMD command set Top Boot flash geometry reversal
46721 * Adds support for reading JEDEC Manufacturer ID and Device ID
46722 * Adds support for displaying command set, manufacturer id and
46723 device ids (flinfo)
46724 * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
46725 * Removes outdated change history (refer to git log instead)
46726
46727 Signed-off-by: Tolunay Orkun <listmember@orkun.us>
46728 Signed-off-by: Stefan Roese <sr@denx.de>
46729
46730commit b21b511d4c50408f4853f46f06b601272196223f
46731Author: Wolfgang Denk <wd@pollux.denx.de>
46732Date: Sun Nov 12 21:13:23 2006 +0100
46733
46734 Update CHANGELOG
46735
Wolfgang Denkb21b5112006-11-12 21:13:23 +010046736commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
46737Author: Bartlomiej Sieka <tur@semihalf.com>
46738Date: Sat Nov 11 22:48:22 2006 +0100
46739
46740 Disable the watchdog in the default config for the V38B board.
46741
46742commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
46743Author: Bartlomiej Sieka <tur@semihalf.com>
46744Date: Sat Nov 11 22:43:00 2006 +0100
46745
46746 Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
46747 group is enabled for USB earlier (in cpu_init_f() instead of
46748 usb_lowlevel_init()).
46749
46750commit 91650b3e4de688038d4f71279c44858e3e2c6870
46751Author: Wolfgang Denk <wd@pollux.denx.de>
46752Date: Mon Nov 6 17:06:36 2006 +0100
46753
46754 Sequential accesses to non-existent memory must be synchronized,
46755 at least on G2 cores.
46756
46757 This fixes get_ram_size() problems on MPC5200 Rev. B boards.
46758
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010046759commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
46760Author: Timur Tabi <timur@freescale.com>
46761Date: Fri Nov 3 19:15:00 2006 -0600
46762
46763 mpc83xx: Update 83xx to use fsl_i2c.c
46764
46765 Update the 83xx tree to use I2C support in drivers/fsl_i2c.c. Delete
46766 cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
46767 Added multiple I2C bus support to fsl_i2c.c.
46768
46769 Signed-off-by: Timur Tabi <timur@freescale.com>
46770
46771commit d239d74b1c937984bc519083a8e7de373a390f06
46772Author: Timur Tabi <timur@freescale.com>
46773Date: Fri Nov 3 12:00:28 2006 -0600
46774
46775 mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
46776
46777 Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
46778 tree matches the other 8xxx trees.
46779
46780 Signed-off-by: Timur Tabi <timur@freescale.com>
46781
46782commit f7fb2e703ec9688541416962724adff70a7322cb
46783Author: Kim Phillips <kim.phillips@freescale.com>
46784Date: Thu Nov 2 19:47:11 2006 -0600
46785
46786 mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
46787
46788commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
46789Author: Dave Liu <daveliu@freescale.com>
46790Date: Thu Nov 2 18:05:50 2006 -0600
46791
46792 mpc83xx: Fix the incorrect dcbz operation
46793
46794 The 834x rev1.x silicon has one CPU5 errata.
46795
46796 The issue is when the data cache locked with
46797 HID0[DLOCK], the dcbz instruction looks like no-op inst.
46798
46799 The right behavior of the data cache is when the data cache
46800 Locked with HID0[DLOCK], the dcbz instruction allocates
46801 new tags in cache.
46802
46803 The 834x rev3.0 and later and 8360 have not this bug inside.
46804
46805 So, when 834x rev3.0/8360 are working with ECC, the dcbz
46806 instruction will corrupt the stack in cache, the processor will
46807 checkstop reset.
46808
46809 However, the 834x rev1.x can work with ECC with these code,
46810 because the sillicon has this cache bug. The dcbz will not
46811 corrupt the stack in cache.
46812 Really, it is the fault code running on fault sillicon.
46813
46814 This patch fix the incorrect dcbz operation. Instead of
46815 CPU FP writing to initialise the ECC.
46816
46817 CHANGELOG:
46818 * Fix the incorrect dcbz operation instead of CPU FP
46819 writing to initialise the ECC memory. Otherwise, it
46820 will corrupt the stack in cache, The processor will checkstop
46821 reset.
46822
46823 Signed-off-by: Dave Liu <daveliu@freescale.com>
46824
46825commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
46826Author: Kim Phillips <kim.phillips@freescale.com>
46827Date: Wed Nov 1 00:10:40 2006 -0600
46828
46829 mpc83xx: add OF_FLAT_TREE bits to 83xx boards
46830
46831 add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
46832 STDOUT_PATH configuration bits to mpc8349emds,
46833 mpc8349itx, and mpc8360emds board code.
46834
46835 redo environment to use bootm with the fdtaddr
46836 for booting ARCH=powerpc kernels by default,
46837 and provide default fdtaddr values.
46838
46839commit 48041365b3420589ad464ebc7752e0053538b729
46840Author: Kim Phillips <kim.phillips@freescale.com>
46841Date: Wed Nov 1 00:07:25 2006 -0600
46842
46843 mpc83xx: change ft code to modify local-mac-address property
46844
46845 Update 83xx OF code to update local-mac-address properties
46846 for ethernet instead of the obsolete 'address' property.
46847
46848commit 9ca880a250870a7d55754291b5591d2b5fe89b54
46849Author: Timur Tabi <timur@freescale.com>
46850Date: Tue Oct 31 21:23:16 2006 -0600
46851
46852 mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
46853
46854 This patch also adds an improved I2C set_speed(), which handles all clock
46855 frequencies.
46856
46857 Signed-off-by: Timur Tabi <timur@freescale.com>
46858
46859commit ac4b5622ce050b5ee1e154b98df630d778661632
46860Author: Dave Liu <daveliu@freescale.com>
46861Date: Tue Oct 31 19:54:59 2006 -0600
46862
46863 mpc83xx: add the README.mpc8360emds
46864
46865 add doc/README.mpc8360emds to accompany the new board support
46866
46867commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
46868Author: Dave Liu <daveliu@freescale.com>
46869Date: Fri Nov 3 12:11:15 2006 -0600
46870
46871 mpc83xx: add QE ethernet support
46872
46873 this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
46874
46875commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
46876Author: Dave Liu <daveliu@freescale.com>
46877Date: Fri Nov 3 19:33:44 2006 -0600
46878
46879 mpc83xx: Add MPC8360EMDS basic board support
46880
46881 Add support for the Freescale MPC8360EMDS board.
46882 Includes DDR, DUART, Local Bus, PCI.
46883
46884commit 23892e49352de74f7fac36ff90bb1be143d195e3
46885Author: Dave Liu <daveliu@freescale.com>
46886Date: Tue Oct 31 19:30:40 2006 -0600
46887
46888 mpc83xx: add the QUICC Engine (QE) immap file
46889
46890 common QE immap file. Also required for 8360.
46891
46892commit b701652a4992bdcc62fb1a6038a85beef9e55da4
46893Author: Dave Liu <daveliu@freescale.com>
46894Date: Tue Oct 31 19:25:38 2006 -0600
46895
46896 mpc83xx: Add 8360 specifics to 83xx immap
46897
46898 Mainly add QE device dependencies, with appropriate 8360 protection.
46899 Lindent also run.
46900
46901commit 988833324a7fda482c8ac3ca23eb539f8232e404
46902Author: Timur Tabi <timur@freescale.com>
46903Date: Tue Oct 31 19:14:41 2006 -0600
46904
46905 mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
46906
46907 PREREQUISITE PATCHES:
46908
46909 * This patch can only be applied after the following patches have been applied:
46910
46911 1) DNX#2006092142000015 "Add support for the MPC8349E-mITX 1/2"
46912 2) DNX#2006092142000024 "Add support for the MPC8349E-mITX 2/2"
46913
46914 CHANGELOG:
46915
46916 * For the 8349E-mITX, fix some size values in pci_init_board(), enable
46917 the clock for the 2nd USB board (Linux kernel will hang otherwise),
46918 and fix the CONFIG_BOOTARGS macro.
46919
46920 Signed-off-by: Timur Tabi <timur@freescale.com>
46921
46922commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
46923Author: Timur Tabi <timur@freescale.com>
46924Date: Tue Oct 31 18:44:42 2006 -0600
46925
46926 mpc83xx: Add support for the MPC8349E-mITX
46927
46928 PREREQUISITE PATCHES:
46929
46930 * This patch can only be applied after the following patches have been applied:
46931
46932 1) DNX#2006090742000024 "Add support for multiple I2C buses"
46933 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
46934 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
46935 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
46936 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
46937
46938 CHANGELOG:
46939
46940 * Add support for the Freescale MPC8349E-mITX reference design platform.
46941 The second TSEC (Vitesse 7385 switch) is not supported at this time.
46942
46943 Signed-off-by: Timur Tabi <timur@freescale.com>
46944
46945commit 183da6d9b446cc12123455844ad1187e2375626f
46946Author: Ben Warren <bwarren@qstreams.com>
46947Date: Tue Sep 12 10:15:53 2006 -0400
46948
46949 Additional MPC8349 support for multibus i2c
46950
46951 Hello,
46952
46953 Here is a patch for a file that was accidentally left out of a previous
46954 attempt.
46955
46956 It accompanies the patch with ticket DNX#2006090742000024
46957
46958 CHANGELOG:
46959 Change PCI initialization to use new multi-bus I2C API.
46960
46961 regards,
46962 Ben
46963
46964commit b24f119d672b709d153ff2ac091d4aa63ec6877d
46965Author: Ben Warren <bwarren@qstreams.com>
46966Date: Thu Sep 7 16:51:04 2006 -0400
46967
46968 Multi-bus I2C implementation of MPC834x
46969
46970 Hello,
46971
46972 Attached is a patch implementing multiple I2C buses on the MPC834x CPU
46973 family and the MPC8349EMDS board in particular.
46974 This patch requires Patch 1 (Add support for multiple I2C buses).
46975 Testing was performed on a 533MHz board.
46976
46977 /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
46978
46979 Signed-off-by: Ben Warren <bwarren@qstreams.com>
46980
46981 CHANGELOG:
46982 Implemented driver-level code to support two I2C buses on the
46983 MPC834x CPU family and the MPC8349EMDS board. Available I2C bus speeds
46984 are 50kHz, 100kHz and 400kHz on each bus.
46985
46986 regards,
46987 Ben
46988
46989commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
46990Author: Ben Warren <bwarren@qstreams.com>
46991Date: Thu Sep 7 16:50:54 2006 -0400
46992
46993 Add support for multiple I2C buses
46994
46995 Hello,
46996
46997 Attached is a patch providing support for multiple I2C buses at the
46998 command level. The second part of the patch includes an implementation
46999 for the MPC834x CPU and MPC8349EMDS board.
47000
47001 /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
47002
47003 Signed-off-by: Ben Warren <bwarren@qstreams.com>
47004
47005 Overview:
47006
47007 1. Include new 'i2c' command (based on USB implementation) using
47008 CONFIG_I2C_CMD_TREE.
47009
47010 2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS. Note that
47011 the commands to change bus number and speed are only available under the
47012 new 'i2c' command mentioned in the first bullet.
47013
47014 3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
47015 systems. When CONFIG_I2C_MULTI_BUS is used, this option takes the form
47016 of an array of bus-device pairs. Otherwise, it is an array of uchar.
47017
47018 CHANGELOG:
47019 Added new 'i2c' master command for all I2C interaction. This is
47020 conditionally compiled with CONFIG_I2C_CMD_TREE. New commands added for
47021 setting I2C bus speed as well as changing the active bus if the board
47022 has more than one (conditionally compiled with
47023 CONFIG_I2C_MULTI_BUS). Updated NOPROBE logic to handle multiple buses.
47024 Updated README.
47025
47026 regards,
47027 Ben
47028
47029commit bed85caf872714ebf53013967a695c9d63acfc68
47030Author: Timur Tabi <timur@freescale.com>
47031Date: Tue Oct 31 18:13:36 2006 -0600
47032
47033 mpc83xx: Add support for Errata DDR6 on MPC 834x systems
47034
47035 CHANGELOG:
47036
47037 * Errata DDR6, which affects all current MPC 834x processors, lists changes
47038 required to maintain compatibility with various types of DDR memory. This
47039 patch implements those changes.
47040
47041 Signed-off-by: Timur Tabi <timur@freescale.com>
47042
47043commit afd6e470f639883002c7c59d562690a5cb0f4865
47044Author: Timur Tabi <timur@freescale.com>
47045Date: Wed Oct 25 18:45:23 2006 -0500
47046
47047 mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
47048
47049commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
47050Author: Timur Tabi <timur@freescale.com>
47051Date: Tue Aug 22 17:07:00 2006 -0500
47052
47053 mpc83xx: Add support for variable flash memory sizes on 83xx systems
47054
47055 CHANGELOG:
47056
47057 * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
47058 window registers, instead of using a hard-coded value of 8MB.
47059
47060 Signed-off-by: Timur Tabi <timur@freescale.com>
47061
47062commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
47063Author: Tanya Jiang <tanya.jiang@freescale.com>
47064Date: Thu Aug 3 18:38:13 2006 +0800
47065
47066 mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
47067
47068 Unified TQM834x variable names with 83xx and consolidated macro
47069 in preparation for the 8360 and other upcoming 83xx devices.
47070
47071 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
47072
47073commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
47074Author: Dave Liu <daveliu@freescale.com>
47075Date: Wed Oct 25 14:41:21 2006 -0500
47076
47077 mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
47078
47079 Incorporated the common unified variable names and the changes in preparation
47080 for releasing mpc8360 patches.
47081
47082 Signed-off-by: Dave Liu <daveliu@freescale.com>
47083
47084commit 3894c46c27c64891f93ac04edde86a9fa9758d92
47085Author: Tanya Jiang <tanya.jiang@freescale.com>
47086Date: Thu Aug 3 18:36:02 2006 +0800
47087
47088 mpc83xx: Fix missing build for mpc8349emds pci.c
47089
47090 Make pci build for mpc8349emds
47091
47092 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
47093
47094commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
47095Author: Tanya Jiang <tanya.jiang@freescale.com>
47096Date: Thu Aug 3 18:39:49 2006 +0800
47097
47098 mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
47099
47100 Removed unused file resetvec.S for mpc83xx cpu
47101
47102 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
47103
47104commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
47105Author: Nick Spence <Nick.Spence@freescale.com>
47106Date: Sat Sep 30 00:32:59 2006 -0700
47107
47108 NAND Flash verify across block boundaries
47109
47110 This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
47111 defined
47112 and the write crosses a block boundary. The pointer to the verification
47113 buffer (bufstart) is not being updated to reflect the starting of the
47114 new
47115 block so the verification of the second block fails.
47116
47117 CHANGELOG:
47118
47119 * Fix NAND FLASH page verification across block boundaries
47120
47121commit f484dc791a3932537213c43c654cc1295c64b84c
47122Author: Nick Spence <nick.spence@freescale.com>
47123Date: Thu Sep 7 07:39:46 2006 -0700
47124
47125 Added RGMII support to the TSECs and Marvell 881111 Phy
47126
47127 Added a phy initialization to adjust the RGMII RX and TX timing
47128 Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
47129
47130 Signed-off-by: Nick Spence <nick.spence@freescale.com>
47131
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020047132commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
47133Author: roy zang <tie-fei.zang@freescale.com>
47134Date: Fri Nov 3 13:10:00 2006 +0800
47135
47136 Remove some unused CFG define.
47137 undef CFG_DRAM_TEST
47138
47139commit 99c09c4dec34f77c243bf51bea532e3f339410ad
47140Author: roy zang <tie-fei.zang@freescale.com>
47141Date: Fri Nov 3 13:07:36 2006 +0800
47142
47143 Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
47144 Both work. 0xFF000000 seems more reasonable.
47145
Wolfgang Denkb21b5112006-11-12 21:13:23 +010047146commit c59200443072353044aa4bf737a5a60f9a9af231
47147Author: Wolfgang Denk <wd@pollux.denx.de>
47148Date: Thu Nov 2 15:15:01 2006 +0100
47149
47150 Release U-Boot 1.1.6
47151
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020047152commit c1fbe4103a0d6c8957f912af902d705ba67836f2
47153Author: roy zang <tie-fei.zang@freescale.com>
47154Date: Thu Nov 2 19:14:48 2006 +0800
47155
47156 This patch comes from Yuli's posted patch on 8/8/2006
47157 titled "CFI Driver Little-Endian write Issue".
47158
47159 http://sourceforge.net/mailarchive/message.php?msg_id=36311999
47160
47161 If that patch applied, please discard this one.
47162 Until now , I do not see his patch is applied. So please apply this one.
47163
47164 Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
47165 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47166
47167commit b825f158e449e1e9cf74c08e572955e122394c96
47168Author: roy zang <tie-fei.zang@freescale.com>
47169Date: Thu Nov 2 19:12:31 2006 +0800
47170
47171 Tsi108 on chip i2c support.
47172
47173 The i2c Interface provides a master-only, serial interface that can be
47174 used for initializing Tsi108/Tsi109 registers from an EEPROM after a
47175 device reset.
47176
47177 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
47178 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47179
47180commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
47181Author: roy zang <tie-fei.zang@freescale.com>
47182Date: Thu Nov 2 19:11:06 2006 +0800
47183
47184 Tsi108 on chip pci controller support.
47185
47186 If there is no pci card, the tsi108/109 pci configure read will
47187 cause a machine check exception to the processor. PCI error should
47188 also be cleared after the read.
47189
47190 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
47191 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47192
47193commit d1927cee977126e547ceeba23e4f978f377cfb8f
47194Author: roy zang <tie-fei.zang@freescale.com>
47195Date: Thu Nov 2 19:08:55 2006 +0800
47196
47197 Tundra tsi108 on chip Ethernet controller support.
47198
47199 The following is a brief description of the Ethernet controller:
47200 The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
47201 Gigabit Ethernet ports,E0 and E1. It uses a single Management interface
47202 to manage the two physical connection devices (PHYs). Each Ethernet port
47203 has its own statistics monitor that tracks and reports key interface
47204 statistics. Each port supports a 256-entry hash table for address
47205 filtering. In addition, each port is bridged to the Switch Fabric
47206 through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
47207
47208 Each Ethernet port also has a pair of internal Ethernet DMA channels to
47209 support the transmit and receive data flows. The Ethernet DMA channels
47210 use descriptors set up in memory, the memory map of the device, and
47211 access via the Switch Fabric. The Ethernet Controller?s DMA arbiter
47212 handles arbitration for the Switch Fabric. The Controller also
47213 has a register businterface for register accesses and status monitor
47214 control.
47215
47216 The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
47217 modes. The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
47218 The GMII and TBI modes are used to connect with Gigabit PMDs. Internal
47219 data flows to and from the Ethernet Controller through the Switch Fabric.
47220
47221 Each Ethernet port uses its transmit and receive DMA channels to manage
47222 data flows through buffer descriptors that are predefined by the
47223 system (the descriptors can exist anywhere in the system memory map).
47224 These descriptors are data structures that point to buffers filled
47225 with data ready to transmit over Ethernet, or they point to empty
47226 buffers ready to receive data from Ethernet.
47227
47228 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
47229 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47230
47231commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
47232Author: roy zang <tie-fei.zang@freescale.com>
47233Date: Thu Nov 2 19:01:33 2006 +0800
47234
47235 Tundra tsi108 header file.
47236
47237 The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
47238 PowerPC processors that offers numerous system interconnect options for
47239 embedded application designers. The Tsi108 can interconnect 60x or
47240 MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
47241 and Flash. Provided the macro define for tsi108 chip.
47242
47243 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
47244 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47245
47246commit 87c4db09699c6b89176b31004afcb83eb1585d47
47247Author: roy zang <tie-fei.zang@freescale.com>
47248Date: Thu Nov 2 18:59:15 2006 +0800
47249
47250 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
47251 mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
47252
47253 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
47254 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47255
47256commit 27801b8ab11c61b577e45742a515bb3b23b80241
47257Author: roy zang <tie-fei.zang@freescale.com>
47258Date: Thu Nov 2 18:57:21 2006 +0800
47259
47260 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
47261 Make ,config.mk and link file for the mpc7448hpc2 board.
47262
47263 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
47264 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47265
47266commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
47267Author: roy zang <tie-fei.zang@freescale.com>
47268Date: Thu Nov 2 18:55:04 2006 +0800
47269
47270 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
47271 The mpc7448hpc2 board support header file.
47272
47273 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
47274 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47275
47276commit 625bb5ddb50b243f931262ca8c46956409471917
47277Author: roy zang <tie-fei.zang@freescale.com>
47278Date: Thu Nov 2 18:52:21 2006 +0800
47279
47280 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
47281 The mpc7448hpc2 board support low level assemble language init code.
47282
47283 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
47284 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47285
47286commit 4c52783b3d024e153c4972b97332e314bc3bdc46
47287Author: roy zang <tie-fei.zang@freescale.com>
47288Date: Thu Nov 2 18:49:51 2006 +0800
47289
47290 General code modification for mpc7448hpc2 board support.
47291 1. Add 7447A and 7448 processor support.
47292 2. Add the following flags.
47293
47294 CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
47295 (such as by switch on board), this flag should be set.
47296
47297 CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
47298 relocates to RAM, this flag should be set.
47299
47300 CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
47301 system hang in exception, this flag should be set.
47302
47303 There is a design issue for tsi108/109 pci configure read. When pci scan
47304 the slots, if there is no pci card, the tsi108/9 will cause a machine
47305 check exception for mpc7448 processor.
47306
47307 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
47308 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47309
47310commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
47311Author: roy zang <tie-fei.zang@freescale.com>
47312Date: Thu Nov 2 18:34:47 2006 +0800
47313
47314 Add README file for mpc7448hpc2 board.
47315 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
47316
Wolfgang Denkb21b5112006-11-12 21:13:23 +010047317commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
47318Author: Bartlomiej Sieka <tur@semihalf.com>
47319Date: Wed Nov 1 02:04:38 2006 +0100
47320
47321 Finish up support for MarelV38B board
47322 - add watchdog support
47323 - enable GPIO_WKUP_7 pin for input
47324 - code cleanup
47325
47326commit ffa150bc90c943ca265170bd1be3f293674dd5c7
47327Author: Bartlomiej Sieka <tur@semihalf.com>
47328Date: Wed Nov 1 01:45:46 2006 +0100
47329
47330 - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
47331 * remove warnings when compiling ethaddr.c
47332 * adjust linker script (fixes a crash resulting from incorrect
47333 definition of __u_boot_cmd_start)
47334 - Some MarelV38B code cleanup.
47335
47336commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
47337Author: Bartlomiej Sieka <tur@semihalf.com>
47338Date: Wed Nov 1 01:38:16 2006 +0100
47339
47340 - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
47341 MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
47342 Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
47343 MPC5XXX_WU_GPIO_DATA_O for affected boards.
47344
47345 - Add defintions for some MPC5XXX GPIO pins.
47346
47347commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
47348Author: Bartlomiej Sieka <tur@semihalf.com>
47349Date: Wed Nov 1 01:34:29 2006 +0100
47350
47351 Changed MarelV38B board make target to lowercase. Config file cleanup.
47352
Wolfgang Denkc5920042006-11-02 15:15:01 +010047353commit 1954be6e9c9421b45d0a9d05b10356acc7563150
47354Author: Wolfgang Denk <wd@pollux.denx.de>
47355Date: Sun Oct 29 01:03:51 2006 +0200
47356
47357 Automatically adjust ARFLAGS so "make -s" is really silent.
47358
47359commit fae684e89844856383bdf101440889557df3e6b1
47360Author: Stefan Roese <sr@denx.de>
47361Date: Sat Oct 28 16:45:00 2006 +0200
47362
47363 [PATCH] omap925.c: Remove unused functions
47364
47365 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
47366 Signed-off-by: Stefan Roese <sr@denx.de>
47367
47368commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
47369Author: Stefan Roese <sr@denx.de>
47370Date: Sat Oct 28 17:12:58 2006 +0200
47371
47372 [PATCH] Add some missing machtypes for netstar & voiceblue boards
47373
47374 Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
47375 numbers in code.
47376
47377 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
47378 Signed-off-by: Stefan Roese <sr@denx.de>
47379
47380commit 856f054410cef52d868feb330168b2a4c4091328
47381Author: Stefan Roese <sr@denx.de>
47382Date: Sat Oct 28 15:55:52 2006 +0200
47383
47384 [PATCH] NAND: Partition name support added to NAND subsystem
47385
47386 chpart, nboot and NAND subsystem related commands now accept also partition
47387 name to specify offset.
47388
47389 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
47390 Signed-off-by: Stefan Roese <sr@denx.de>
47391
47392commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
47393Author: Wolfgang Denk <wd@pollux.denx.de>
47394Date: Sat Oct 28 02:29:44 2006 +0200
47395
47396 Update CHANGELOG.
47397
Wolfgang Denk07a69a12006-10-28 02:29:44 +020047398commit 2751a95abd1b96911081c357e96a12fa97b40dee
47399Author: Wolfgang Denk <wd@pollux.denx.de>
47400Date: Sat Oct 28 02:29:14 2006 +0200
47401
47402 Enable commandline editing and hush shell on all TQM boards.
47403
47404commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
47405Author: Wolfgang Denk <wd@pollux.denx.de>
47406Date: Sat Oct 28 02:28:02 2006 +0200
47407
47408 README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
47409
47410commit 471a7be7a042e95e440f5de969c9765214ae8d6e
47411Author: Wolfgang Denk <wd@denx.de>
47412Date: Sat Oct 28 01:14:32 2006 +0200
47413
47414 Check for illegal character '=' in environment variable names.
47415
47416 Make sure the string passed as variable name does not contain a '='
47417 character. This not only prevents the common error or typing
47418 "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
47419 also closes a backdoor which allowed to delete write-protected
47420 environment variables, for example by using "setenv ethaddr=".
47421
47422commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
47423Author: Wolfgang Denk <wd@pollux.denx.de>
47424Date: Sat Oct 28 00:38:39 2006 +0200
47425
47426 Minor code cleanup.
47427
47428commit e11887a77d81077416a2d1c5e0354916fee8c034
47429Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
47430Date: Thu Oct 26 17:55:31 2006 +0200
47431
47432 Don't pass any debug options directly to the assembler
47433
47434 When passing the -g option to gcc, gcc automatically selects a
47435 suitable --g<format> option to pass on to the assembler.
47436 Thus, there's no point in forcing a specific debug option on the
47437 assembler using the -Wa mechanism.
47438
47439 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47440
47441commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
47442Author: Jon Loeliger <jdl@freescale.com>
47443Date: Fri Oct 27 07:47:22 2006 -0500
47444
47445 MPC86xx: Cleaned up unused and conditionally used local variables.
47446
47447 Signed-off-by: Jon Loeliger <jdl@freescale.com>
47448
47449commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
47450Author: Wolfgang Denk <wd@pollux.denx.de>
47451Date: Fri Oct 27 11:55:21 2006 +0200
47452
47453 Fix "ar" flags in some Makefiles to allow for silent "make -s"
47454
47455commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
47456Author: Ben Warren <bwarren@qstreams.com>
47457Date: Thu Oct 26 14:38:25 2006 -0400
47458
47459 Fix TSEC driver (now for real): avoid crashes if PHY is not attached
47460 to a TSEC (e.g. a switch is connected via RMII) or
47461 if the PHY is defective/incorrectly configured.
47462
47463 Signed-off-by: Ben Warren <bwarren@qstreams.com>
47464
47465commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
47466Author: Ben Warren <bwarren@qstreams.com>
47467Date: Thu Oct 26 14:38:25 2006 -0400
47468
47469 Fix TSEC driver: avoid crashes if PHY is not attached
47470 to a TSEC (e.g. a switch is connected via RMII) or
47471 if the PHY is defective/incorrectly configured.
47472
47473 Signed-off-by: Ben Warren <bwarren@qstreams.com>
47474
Ben Warrenb985b5d2006-10-26 14:38:25 -040047475commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
47476Author: Wolfgang Denk <wd@pollux.denx.de>
47477Date: Thu Oct 26 16:24:31 2006 +0200
47478
47479 Code cleanup.
47480
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047481commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
47482Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
47483Date: Wed Oct 25 15:48:59 2006 +0200
47484
47485 Finish up support for the ATSTK1000/ATSTK1002 boards
Ben Warrenb985b5d2006-10-26 14:38:25 -040047486
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047487 Add atstk1002_config target to Makefile and move the AVR32 section
47488 down below Blackfin so that it doesn't end up in the middle of
47489 MIPS.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047490
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047491 Drop the autogenerated linker script thing for now. Will have to
47492 revisit how to handle chips with different flash and RAM layout
47493 later.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047494
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047495 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47496
47497commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
47498Author: Kumar Gala <galak@kernel.crashing.org>
47499Date: Tue Oct 24 23:47:37 2006 -0500
47500
47501 Added support for Multi-Image files that contain a device tree
Ben Warrenb985b5d2006-10-26 14:38:25 -040047502
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047503 If a Multi-Image file contains a third image we try to use it as a
47504 device tree. The device tree image is assumed to be uncompressed in the
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010047505 image file. We automatically allocate space for the device tree in memory
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047506 and provide an 8k pad to allow more than a reasonable amount of growth.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047507
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047508 Additionally, a device tree that was contained in flash will now automatically
47509 get copied to system memory as part of boot. Previously an error was
47510 reported if one tried to boot a device tree that was in flash.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047511
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047512 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47513
Wolfgang Denk4e53a252006-10-25 00:43:17 +020047514commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
47515Author: Wolfgang Denk <wd@denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047516Date: Tue Oct 24 21:35:55 2006 +0200
Wolfgang Denkcf48eb92006-04-16 10:51:58 +020047517
Wolfgang Denk4e53a252006-10-25 00:43:17 +020047518 Switch to automatically generated CHANGELOG file.
47519 (use "make CHANGELOG" to update it from time to time)
Stefan Roeseaf9e1f52006-10-17 06:14:31 +020047520
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047521commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
47522Author: Stefan Roese <sr@denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047523Date: Tue Oct 24 18:06:48 2006 +0200
Wolfgang Denkcf48eb92006-04-16 10:51:58 +020047524
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047525 Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
47526 Patch by Stefan Roese, 24 Oct 2006
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020047527
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047528commit 8ae3b713b2286e0c3213b7802062e4c1599010de
47529Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047530Date: Tue Oct 24 17:24:55 2006 +0200
Stefan Roese7ade0c62006-10-24 18:06:48 +020047531
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047532 Merge with /home/wd/git/u-boot/master
Wolfgang Denkba999c52006-10-20 17:54:33 +020047533
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047534commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
47535Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047536Date: Tue Oct 24 15:32:57 2006 +0200
Wolfgang Denkf836e412006-10-20 16:12:14 +020047537
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047538 Code cleanup
Wolfgang Denkf6414712006-10-20 15:51:21 +020047539
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047540commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
47541Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047542Date: Tue Oct 24 14:51:36 2006 +0200
Stefan Roese6a0766e2006-10-20 15:18:51 +020047543
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047544 Move atstk1000 files into vendor specific directory.
47545 Patch by Haavard Skinnemoen, 12 Sep 2006
Stefan Roeseedf0b542006-10-18 15:59:35 +020047546
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047547commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
47548Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047549Date: Tue Oct 24 14:42:37 2006 +0200
Wolfgang Denk3231ea62006-10-18 22:31:08 +020047550
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047551 Add ATSTK1000 and ATSTK1002 board support
47552 Patch by Haavard Skinnemoen, 06 Sep 2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040047553
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047554 This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
47555 daughterboard.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047556
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047557 ATSTK1000 is a full-featured development board for AT32AP CPUs. It
47558 has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
47559 and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
47560 CompactFlash cards. For more information, please see this page:
Ben Warrenb985b5d2006-10-26 14:38:25 -040047561
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047562 http://www.atmel.com/dyn/products/tools.asp?family_id=682
Ben Warrenb985b5d2006-10-26 14:38:25 -040047563
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047564 The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
47565 AT32AP7000 chip.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047566
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047567 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Stefan Roesed7762332006-10-12 19:50:17 +020047568
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047569commit f93ae788c3640fcde5db383471d45548ff4060d0
47570Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047571Date: Tue Oct 24 14:31:24 2006 +0200
Stefan Roesee0a46552006-10-12 19:43:29 +020047572
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047573 Add common serial driver for Atmel AT32 and AT91 chips
47574 Patch by Haavard Skinnemoen, 06 Sep 2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040047575
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047576 This is a first attempt at creating a common serial driver for Atmel
47577 chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
47578 be possible to support AT91RM9200 and other ARM-based chips with some
47579 minor modifications.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047580
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047581 There's nothing fundamentally AVR32-specific in this driver, but it
47582 does use some features which are currently only defined for the
47583 AT32AP CPU port:
47584 * pm_get_clock_freq: Obtain the clock frequency of a given domain
47585 * gd->console_uart: A "struct device" containing information about
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047586 register mappings, gpio resources and clocks associated with the
47587 UART device.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047588
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047589 For more information about these features, please see the "AT32AP
47590 CPU" patch.
Wolfgang Denk87621bc2006-10-12 11:43:47 +020047591
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047592commit 72a087e04705c26cad982879ebd06b5281bf825a
47593Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047594Date: Tue Oct 24 14:27:35 2006 +0200
Stefan Roese5c34eee2006-10-12 07:04:24 +020047595
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047596 Add AT32AP CPU and AT32AP7000 SoC support
47597 Patch by Haavard Skinnemoen, 06 Sep 2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040047598
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047599 This patch adds support for the AT32AP CPU family and the AT32AP7000
47600 chip, which is the first chip implementing the AVR32 architecture.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047601
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047602 The AT32AP CPU core is a high-performance implementation featuring a
47603 7-stage pipeline, separate instruction- and data caches, and a MMU.
47604 For more information, please see the "AVR32 AP Technical Reference":
Ben Warrenb985b5d2006-10-26 14:38:25 -040047605
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047606 http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
Ben Warrenb985b5d2006-10-26 14:38:25 -040047607
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047608 In addition to this, the AT32AP7000 chip comes with a large set of
47609 integrated peripherals, many of which are shared with the AT91 series
47610 of ARM-based microcontrollers from Atmel. Full data sheet is
47611 available here:
Ben Warrenb985b5d2006-10-26 14:38:25 -040047612
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047613 http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
Ben Warrenb985b5d2006-10-26 14:38:25 -040047614
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047615 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Stefan Roese752d6832006-10-11 16:57:01 +020047616
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047617commit 7b64fef33c66be648826c0ff9758298ef13d0604
47618Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047619Date: Tue Oct 24 14:21:16 2006 +0200
Stefan Roese2255b2d2006-10-10 12:36:02 +020047620
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047621 Add AVR32 architecture support
47622 Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
Ben Warrenb985b5d2006-10-26 14:38:25 -040047623
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047624 This patch adds common infrastructure code for the Atmel AVR32
47625 architecture. See doc/README.AVR32 for details.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047626
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047627 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Stefan Roese1a1b7372006-10-09 12:55:38 +020047628
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047629commit 2da2d9a4766063b9848f3a35ad6025499cf87265
47630Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047631Date: Tue Oct 24 13:57:33 2006 +0200
Wolfgang Denkd262a922006-10-09 12:50:41 +020047632
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047633 Use -g instead of -gstabs in AFLAGS_DEBUG
47634 Patch by Haavard Skinnemoen, 30 Aug 2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040047635
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047636 In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
47637 matter what the target's preferred debugging format is. This patch
47638 simply replaces -gstabs with -g, so that the default debugging format
47639 for the architecture is used.
Wolfgang Denkd82718f2006-10-09 01:26:14 +020047640
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047641commit 965829872169c2996023840d98e1d85ad148d629
47642Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047643Date: Tue Oct 24 13:55:18 2006 +0200
Wolfgang Denk1d92b2e2006-10-09 01:07:53 +020047644
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047645 Fix/workaround broken dependency handling with make 3.81
47646 Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
Wolfgang Denk2b208f52006-10-09 01:02:05 +020047647
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047648commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
47649Author: Marian Balakowicz <m8@semihalf.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047650Date: Mon Oct 23 22:17:05 2006 +0200
Wolfgang Denk511d0c72006-10-09 00:42:01 +020047651
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047652 Fix sequoia separate object direcory building problems.
Wolfgang Denk8d4ac792006-10-09 00:35:30 +020047653
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047654commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
47655Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047656Date: Fri Oct 20 17:16:35 2006 -0500
Wolfgang Denkac611702006-09-20 23:47:49 +020047657
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047658 Use generic I2C register block on 85xx and 86xx.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047659
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047660 Replace private IMMAP I2C structures with generic reg block
47661 and allow 86xx to have multiple I2C device busses.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047662
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047663 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Marian Balakowicz72997122006-10-03 20:28:38 +020047664
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047665commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
47666Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047667Date: Fri Oct 20 15:54:34 2006 -0500
Stefan Roese56fb6ba2006-10-04 07:12:49 +020047668
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047669 Fix compilation warnings on a few 85xx boards.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047670
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047671 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roesed3733252006-10-04 07:12:27 +020047672
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047673commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
47674Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047675Date: Fri Oct 20 15:50:15 2006 -0500
Wolfgang Denkaeec7822006-09-13 10:47:05 +020047676
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047677 Converted all 85xx boards to use a common FSL I2C driver.
47678 Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
47679 And removed hard i2c path from a few u-boot.lds scipts too.
47680 Minor whitespace cleanups along the way.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047681
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047682 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkd214fbb2006-09-13 10:29:32 +020047683
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047684commit 4d45f69e362b05892c9e92a7907e5820995612aa
47685Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047686Date: Thu Oct 19 12:02:24 2006 -0500
Stefan Roese854bc8d2006-09-13 13:51:58 +020047687
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047688 Rewrite a series of goto statements as a sequences of
47689 conditional expressions instead.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047690
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047691 Use consistent return code 0/-1 for good/bad indicators.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047692
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047693 Include one fewer file if the driver isn't used at all.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047694
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047695 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roesed12ae802006-09-12 20:19:10 +020047696
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047697commit 7237c033b02fe295880435f1eb80819a0c987532
47698Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047699Date: Thu Oct 19 11:02:16 2006 -0500
Stefan Roesea73c8db2006-09-12 08:49:07 +020047700
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047701 Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
Ben Warrenb985b5d2006-10-26 14:38:25 -040047702
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047703 in an effort to begin to unify the umpteen FSL I2C drivers that
47704 are all otherwise very similar.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047705
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047706 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denka87d46f2006-09-13 10:23:06 +020047707
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047708commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
47709Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047710Date: Thu Oct 19 11:33:52 2006 -0500
Marian Balakowiczbaf31242006-09-07 17:25:40 +020047711
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047712 * Fix a bunch of compiler warnings for gcc 4.0
Ben Warrenb985b5d2006-10-26 14:38:25 -040047713
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047714 Signed-off-by: Matthew McClintock <msm@freescale.com>
Marian Balakowicz5e090542006-09-07 12:12:20 +020047715
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047716commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
47717Author: Stefan Roese <sr@denx.de>
47718Date: Tue Oct 17 06:14:31 2006 +0200
47719
47720 Add monitor functions for indirect access to PPC440 DCR's
47721 Patch by Leonid Baryudin, 12 Oct 2006
47722
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047723commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
47724Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047725Date: Fri Oct 13 16:47:53 2006 -0500
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020047726
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047727 Fixed leading whitespace issues.
47728 Removed spurious LAWAR thing.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047729
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047730 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese2d658962006-09-07 13:09:53 +020047731
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047732commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
47733Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047734Date: Thu Oct 12 10:42:36 2006 -0500
Stefan Roeseefa20582006-09-07 12:48:49 +020047735
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047736 Remove unneeded include files and local variable.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047737
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047738 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese8cacfb82006-09-07 12:23:02 +020047739
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047740commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
47741Author: Grant Likely <grant.likely@secretlab.ca>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047742Date: Tue Oct 10 00:23:32 2006 -0600
Stefan Roese887e2ec2006-09-07 11:51:23 +020047743
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047744 Fix possible uninitialized variable compiler warning.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047745
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047746 When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
47747 do_bootm_linux() may be uninitialized. There is no possibility in the
47748 current code that len will get used uninitialized, but this fix follows
47749 the existing convention of setting both len and data to zero at the same
47750 time.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047751
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047752 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Wolfgang Denk0dab03b2006-09-06 23:29:15 +020047753
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047754commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
47755Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047756Date: Wed Oct 11 15:13:01 2006 -0500
Wolfgang Denkf60ba0d2006-09-04 02:01:27 +020047757
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047758 * Fix a bunch of compiler warnings for gcc 4.0
Ben Warrenb985b5d2006-10-26 14:38:25 -040047759
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047760 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denk6741ae92006-09-04 01:03:57 +020047761
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047762commit bf651baa365e5447246aad6a633ccd667cf24a39
47763Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047764Date: Wed Oct 11 10:10:43 2006 -0500
Marian Balakowiczf9328632006-09-01 19:49:50 +020047765
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047766 Move "ar" flags to config.mk to allow for silent "make -s"
Marian Balakowicz24d3d372006-09-01 19:47:42 +020047767
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047768commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
47769Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047770Date: Tue Oct 10 17:19:03 2006 -0500
Marian Balakowicz66080432006-09-01 19:46:22 +020047771
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047772 Coding style changes to remove local varible blocks
47773 and reformat a bit nicer.
Marian Balakowicz4c15ef52006-09-01 19:44:05 +020047774
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047775commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
47776Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047777Date: Tue Oct 10 17:16:04 2006 -0500
Wolfgang Denk360b4102006-09-03 18:17:46 +020047778
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047779 Fix whitespace issues.
Detlev Zundel2c051652006-09-01 15:39:02 +020047780
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047781commit 7b382b7125f2397cce63253df62f183e3dfa2770
47782Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047783Date: Tue Oct 10 17:14:45 2006 -0500
Detlev Zundel2c051652006-09-01 15:39:02 +020047784
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047785 Fix whitespace issues.
Detlev Zundel2c051652006-09-01 15:39:02 +020047786
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047787commit e10390ddd736b0dad1528eec4b0fe35c0827139a
47788Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047789Date: Tue Oct 10 17:06:53 2006 -0500
Detlev Zundel2c051652006-09-01 15:39:02 +020047790
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047791 Fix whitespace issues.
Wolfgang Denk7d0432c2006-08-31 16:46:53 +020047792
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047793commit 89875e96ba3f023157bf50d5f8e33bf254964a76
47794Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047795Date: Tue Oct 10 17:03:43 2006 -0500
Wolfgang Denke8143e72006-08-30 23:09:00 +020047796
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047797 Ran lindent and cleaned up whitespace issues.
47798 Format for 80-columns too.
Wolfgang Denk0fd30252006-08-30 23:02:10 +020047799
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047800commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
47801Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047802Date: Tue Oct 10 17:02:22 2006 -0500
Stefan Roese2b393b02006-08-29 08:05:15 +020047803
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047804 Fix whitespace and 80-col issues.
Stefan Roesef5577aa2006-08-29 08:04:32 +020047805
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010047806commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
47807Author: Stefan Roese <sr@denx.de>
47808Date: Sat Oct 7 11:36:51 2006 +0200
47809
47810 CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
47811 Patch by Stefan Roese, 07 Oct 2006
47812
47813commit 5bc528fa4da751d472397b308137238a6465afd2
47814Author: Stefan Roese <sr@denx.de>
47815Date: Sat Oct 7 11:35:25 2006 +0200
47816
47817 Update ALPR code (NAND support working now)
47818 Patch by Stefan Roese, 07 Oct 2006
47819
47820commit 77d5034847d328753b80c46b83f960a14a26f40e
47821Author: Stefan Roese <sr@denx.de>
47822Date: Sat Oct 7 11:33:03 2006 +0200
47823
47824 Remove compile warnings in fpga code
47825 Patch by Stefan Roese, 07 Oct 2006
47826
47827commit f3443867e90d2979a7dd1c65b0d537777e1f9850
47828Author: Stefan Roese <sr@denx.de>
47829Date: Sat Oct 7 11:30:52 2006 +0200
47830
47831 Add CONFIG_BOARD_RESET to configure board specific reset function
47832 Patch by Stefan Roese, 07 Oct 2006
47833
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047834commit f55df18187e7a45cb73fec4370d12135e6691ae1
47835Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047836Date: Fri Sep 29 08:23:12 2006 +0100
Wolfgang Denk21a9cc02006-08-29 10:49:11 +020047837
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047838 Fix missing tCycle/modfreq calculation.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047839
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047840 Signed-off-by: John Traill <john.traill@freescale.com>
Wolfgang Denk16850912006-08-27 18:10:01 +020047841
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047842commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
47843Author: Andy Fleming <afleming@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047844Date: Wed Sep 13 10:33:35 2006 -0500
Wolfgang Denk113f64e2006-08-25 01:38:04 +020047845
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047846 Updated config headers to add default FDT-based booting
Bartlomiej Siekaddde6b72006-08-22 10:38:18 +020047847
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047848commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
47849Author: Andy Fleming <afleming@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047850Date: Wed Sep 13 10:34:18 2006 -0500
Wolfgang Denked1cf842006-08-24 00:26:42 +020047851
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047852 Add support for eTSEC 3 & 4 on 8548 CDS
Ben Warrenb985b5d2006-10-26 14:38:25 -040047853
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047854 * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
47855 This will only work on rev 1.3 boards (but doesn't break older boards)
47856 * Cleaned up some comments to reflect the expanded role of tsec
47857 in other systems
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +020047858
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047859commit 084d648b109c8984f83674043c1a7fa3885ef801
47860Author: Andy Fleming <afleming@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047861Date: Wed Sep 13 10:33:56 2006 -0500
Rafal Jaworowski6fe16a82006-08-18 10:39:11 +020047862
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047863 Added code to support 2.6.18 PCI changes in u-boot
Ben Warrenb985b5d2006-10-26 14:38:25 -040047864
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047865 * Added code to swizzle the IRQ map for the PCI
Wolfgang Denk94568b62006-08-14 23:23:06 +020047866
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047867commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
47868Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047869Date: Tue Sep 19 09:34:10 2006 -0500
Wolfgang Denk2f6fa462006-08-14 23:17:47 +020047870
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047871 Modified makefile for new build mechanism.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047872
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047873 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkddd5d9d2006-08-14 22:43:13 +020047874
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047875commit d14ba6a798beb753e7a864500414fcc2d198b8bc
47876Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047877Date: Thu Sep 14 08:40:36 2006 -0500
Wolfgang Denk80f0c0f2006-08-14 22:05:26 +020047878
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047879 Handle 86xx SVR values according to the new Reference Manual.
47880 Both 8641 and 8641D have SVR == 0x8090, and are distinguished
47881 by the byte in bits 16-23 instead.
47882 Thanks to Jason Jin for noticing.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047883
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047884 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkd689e342006-08-14 21:18:21 +020047885
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047886commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
47887Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047888Date: Mon Aug 28 14:25:31 2006 +0800
Wolfgang Denk0a0f3a42006-08-17 10:48:36 +020047889
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047890 Fixed an OF-tree off-by-one bug when adding a new property name.
47891 This bug will cause the kernel booting to pause a long time.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047892
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047893 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
47894 (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
Wolfgang Denk6183bb92006-08-17 00:50:26 +020047895
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047896commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
47897Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047898Date: Tue Aug 29 11:05:09 2006 -0500
Wolfgang Denk463764c2006-08-17 00:36:51 +020047899
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047900 Remove trailing empty lines.
Stefan Roesed8f961b2006-08-07 15:08:44 +020047901
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047902commit cd6d73d5b895a5935ac4fde0a356288142a584e0
47903Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047904Date: Tue Aug 29 09:48:49 2006 -0500
Stefan Roese4f92ed52006-08-07 14:33:32 +020047905
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047906 Remove bogus msync and use volatile asm.
Stefan Roese9ede3cc2006-08-07 14:31:21 +020047907
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047908commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
47909Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047910Date: Tue Aug 29 08:17:14 2006 -0500
Stefan Roesee335496a2006-08-07 14:29:04 +020047911
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047912 Add myself as maintainer for MPC8641HPCN.
Rafal Jaworowski36b904a2006-08-11 12:35:52 +020047913
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047914commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
47915Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047916Date: Mon Aug 28 14:25:31 2006 +0800
Wolfgang Denkd8519dc2006-08-11 17:33:42 +020047917
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047918 Fixed an OF-tree off-by-one bug when adding a new property name.
47919 This bug will cause the kernel booting to pause a long time.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047920
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047921 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk015c2002006-08-11 17:29:38 +020047922
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047923commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
47924Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047925Date: Fri Aug 25 14:38:34 2006 -0400
Rafal Jaworowski692519b2006-08-10 12:43:17 +020047926
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047927 Change ramdiskaddr and dtbaddr
47928 Remove PEX fluff commands.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047929
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047930 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
47931 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denka3d91812006-08-10 01:58:22 +020047932
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047933commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
47934Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047935Date: Wed Aug 23 13:32:45 2006 -0500
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020047936
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047937 * Another small fix for booting with disable_of
Ben Warrenb985b5d2006-10-26 14:38:25 -040047938
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047939 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denk6587f7e2006-08-07 20:28:05 +020047940
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047941commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
47942Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047943Date: Wed Aug 23 11:04:43 2006 -0500
Stefan Roesea2c95a72006-07-28 18:34:58 +020047944
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047945 Cleanup and lindent new AHCI driver.
Stefan Roese193dd952006-07-27 16:14:05 +020047946
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047947commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
47948Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047949Date: Wed Aug 23 19:15:12 2006 +0800
Stefan Roese3ca91222006-07-27 16:11:19 +020047950
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047951 Add AHCI define and sata support for MPC8641HPCN board.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047952
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047953 Signed-off-by:Jason Jin<jason.jin@freescale.com>
Wolfgang Denk4c4aca82006-07-26 10:33:37 +020047954
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047955commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
47956Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047957Date: Wed Aug 23 19:10:44 2006 +0800
Wolfgang Denk4819fad2006-07-23 22:40:51 +020047958
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047959 Add AHCI support to u-boot
Ben Warrenb985b5d2006-10-26 14:38:25 -040047960
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047961 Add AHCI support in u-boot, enable the sata disk controllers which
47962 following the AHCI protocol.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047963
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047964 Signed-off-by:Jason Jin<jason.jin@freescale.com>
Wolfgang Denkfd279962006-07-22 21:45:49 +020047965
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047966commit d8ea2acf5f137cae99417df4f573d036ee384668
47967Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047968Date: Wed Aug 23 17:54:32 2006 +0800
Wolfgang Denk135ae002006-07-22 01:20:03 +020047969
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047970 Add dtb boot-up parameter to default boot commands.
Ben Warrenb985b5d2006-10-26 14:38:25 -040047971
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047972 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk966083e2006-07-21 15:24:56 +020047973
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047974commit b93775c2036b99baa390ea425c4771895bbc63c4
47975Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047976Date: Tue Aug 22 18:26:08 2006 -0500
Wolfgang Denk144f7792006-07-21 15:21:40 +020047977
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047978 Cleanup even more poorly introduced whitespace.
Wolfgang Denkb9365a22006-07-21 11:56:05 +020047979
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047980commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
47981Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047982Date: Tue Aug 22 18:07:00 2006 -0500
Wolfgang Denk87a5c732006-07-21 11:38:33 +020047983
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047984 Cleanup more poorly introduced whitespace.
Wolfgang Denk029b6dc2006-07-21 11:37:40 +020047985
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047986commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
47987Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047988Date: Tue Aug 22 17:54:05 2006 -0500
Wolfgang Denkb9365a22006-07-21 11:56:05 +020047989
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047990 Cleanup poorly introduced whitespace.
Wolfgang Denkb9365a22006-07-21 11:56:05 +020047991
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047992commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
47993Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020047994Date: Tue Aug 22 12:25:27 2006 -0500
Wolfgang Denkb9365a22006-07-21 11:56:05 +020047995
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047996 General indent and whitespace cleanups.
Wolfgang Denke6446702006-07-21 11:30:18 +020047997
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020047998commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
47999Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048000Date: Tue Aug 22 12:06:18 2006 -0500
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +020048001
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048002 General indent and whitespace cleanups.
Wolfgang Denk0352f172006-07-21 11:24:47 +020048003
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048004commit 41a0e8b304d3ff55fe27a230507aac79684016ac
48005Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048006Date: Tue Aug 22 10:42:21 2006 -0500
Wolfgang Denk311d8022006-07-21 11:20:46 +020048007
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048008 Cleanup compiler warnings.
Wolfgang Denk5078cce2006-07-21 11:16:34 +020048009
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048010commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
48011Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048012Date: Tue Aug 22 09:31:59 2006 -0500
Wolfgang Denk5078cce2006-07-21 11:16:34 +020048013
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048014 Fix disable_of booting
Ben Warrenb985b5d2006-10-26 14:38:25 -040048015
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048016 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denk978b1092006-07-19 18:01:38 +020048017
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048018commit 87a449c8ac396420cb24260f717ea9e6faa82047
48019Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048020Date: Tue Aug 22 09:23:55 2006 -0500
Wolfgang Denk45a212c2006-07-19 17:52:30 +020048021
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048022 Support for FDT in uImage format, error when using FDT from flash
Ben Warrenb985b5d2006-10-26 14:38:25 -040048023
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048024 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denkbd3143f2006-07-19 14:49:35 +020048025
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048026commit 75c299c38369d01addd5e054b8a16217b70f4a86
48027Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048028Date: Tue Aug 15 15:12:55 2006 -0400
Wolfgang Denkedd0b502006-07-19 14:44:03 +020048029
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048030 Unlock cache before kernel starts up for MPC86xx
Wolfgang Denkc786f422006-07-19 14:40:43 +020048031
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048032commit 67256678f00c09b0a7f19e862e5c1847553d31bc
48033Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048034Date: Tue Aug 15 15:13:15 2006 -0400
Wolfgang Denkd053ce62006-07-19 14:23:12 +020048035
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048036 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
Wolfgang Denk89366012006-07-19 14:16:38 +020048037
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048038commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
48039Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048040Date: Tue Aug 15 15:12:55 2006 -0400
Wolfgang Denk5a3dfef2006-07-19 14:13:02 +020048041
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048042 Unlock cache before kernel starts up for MPC86xx
Wolfgang Denk0de7fa52006-07-19 14:07:21 +020048043
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048044commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
48045Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048046Date: Tue Aug 15 15:13:15 2006 -0400
Wolfgang Denkb87dfd22006-07-19 13:50:38 +020048047
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048048 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
Wolfgang Denkf3e06df2006-07-18 17:44:19 +020048049
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048050commit 86c8e17f25e972a7e272950a0735fad84e082b88
48051Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048052Date: Wed Aug 16 13:59:47 2006 -0500
Bartlomiej Siekaf88a0ae2006-07-13 15:32:16 +020048053
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048054 * Fix disable_of booting
Ben Warrenb985b5d2006-10-26 14:38:25 -040048055
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048056 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denkdbba3992006-07-13 22:32:45 +020048057
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048058commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
48059Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048060Date: Wed Aug 16 10:54:09 2006 -0500
Wolfgang Denkdbba3992006-07-13 22:32:45 +020048061
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048062 * Support for FDT in uImage format, error when using FDT from flash
Ben Warrenb985b5d2006-10-26 14:38:25 -040048063
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048064 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denkb87dfd22006-07-19 13:50:38 +020048065
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010048066commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
48067Author: Stefan Roese <sr@denx.de>
48068Date: Tue Aug 15 14:22:35 2006 +0200
48069
48070 Add initial support for the ALPR board from Prodrive
48071 NAND needs some additional testing
48072 Patch by Heiko Schocher, 15 Aug 2006
48073
48074commit f0ff4692ff3372dec55074a8eb444943ab095abb
48075Author: Stefan Roese <sr@denx.de>
48076Date: Tue Aug 15 14:15:51 2006 +0200
48077
48078 Add FPGA Altera Cyclone 2 support
48079 Patch by Heiko Schocher, 15 Aug 2006
48080
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048081commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
48082Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048083Date: Mon Aug 14 15:33:38 2006 -0500
Wolfgang Denk87791f32006-07-11 00:23:54 +020048084
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048085 Fix BAT0 to actually be cacheable, non-guarded as documented.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048086
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048087 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk985b9502006-07-10 23:22:43 +020048088
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048089commit 40bc83559db5745681909fd7382ae509567e116d
48090Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048091Date: Wed Aug 9 15:32:16 2006 -0500
Wolfgang Denk9d407992006-07-10 23:07:28 +020048092
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048093 Removed MPC8641HPCN DTS source file from build.
48094 It is no longer linked into U-Boot; its sources are
48095 now located in the kernel tree.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048096
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048097 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Marian Balakowiczedd6cf22006-07-06 21:17:24 +020048098
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048099commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
48100Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048101Date: Wed Jun 28 10:47:03 2006 -0500
Wolfgang Denkcaaeaf92006-07-05 10:42:14 +020048102
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048103 * Switched default PCI speed for 8540 ADS back to 33MHz
Ben Warrenb985b5d2006-10-26 14:38:25 -040048104
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048105 * Added comments and a printf to warn that PCI-X won't
48106 work at 33MHz
48107 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048108
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048109 Signed-off-by: Andy Fleming <afleming@freescale.com>
Marian Balakowiczce05de22006-07-04 08:47:23 +020048110
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048111commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
48112Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048113Date: Wed Jun 28 10:46:35 2006 -0500
Marian Balakowiczd19206b2006-07-04 01:27:46 +020048114
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048115 * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048116
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048117 Signed-off-by: Andy Fleming <afleming@freescale.com>
Marian Balakowiczfbb0b552006-07-04 00:55:47 +020048118
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048119commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
48120Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048121Date: Wed Jun 28 10:46:13 2006 -0500
Marian Balakowiczfe84b482006-07-03 23:42:36 +020048122
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048123 * Added VIA configuration table
Ben Warrenb985b5d2006-10-26 14:38:25 -040048124
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048125 * Added support for PCI2 on CDS
48126 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048127
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048128 Signed-off-by: Andy Fleming <afleming@freescale.com>
Marian Balakowiczbba68372006-06-30 18:35:04 +020048129
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048130commit c88f9fe66b64247e5b6a38410ba315ca25596d16
48131Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048132Date: Wed Jun 28 10:45:41 2006 -0500
Marian Balakowicz971a5dd2006-06-30 18:23:06 +020048133
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048134 * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048135
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048136 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denk3f7a63e2006-06-30 20:16:37 +020048137
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048138commit 97074ed9655309b64231bc2cee69fe85399f8055
48139Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048140Date: Wed Jun 28 10:45:17 2006 -0500
Wolfgang Denk3f7a63e2006-06-30 20:16:37 +020048141
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048142 * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048143
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048144 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denka63c31c2006-06-26 10:54:52 +020048145
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048146commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
48147Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048148Date: Wed Jun 28 10:44:49 2006 -0500
Heiko Schochercb0fdf32006-05-03 08:34:03 +020048149
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048150 * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048151
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048152 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denkf73e73b2006-06-20 00:12:59 +020048153
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048154commit a4e11558b810ef2cddffdf7b9d86bc1130441960
48155Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048156Date: Wed Jun 28 10:44:23 2006 -0500
Wolfgang Denkb87dfd22006-07-19 13:50:38 +020048157
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048158 * 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
Ben Warrenb985b5d2006-10-26 14:38:25 -040048159
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048160 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denk0c32d962006-06-16 17:32:31 +020048161
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048162commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
48163Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048164Date: Wed Jun 28 10:43:36 2006 -0500
Wolfgang Denkc12cffc2006-06-16 17:04:45 +020048165
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048166 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048167
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048168 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkc12cffc2006-06-16 17:04:45 +020048169
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048170commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
48171Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048172Date: Wed Jun 28 10:43:00 2006 -0500
Wolfgang Denkb87dfd22006-07-19 13:50:38 +020048173
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048174 * 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
Wolfgang Denk10af6d52006-06-16 16:53:06 +020048175
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048176commit 5498d90312aad9f6bdbf047986027c35b03cd163
48177Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048178Date: Wed Jun 28 10:42:24 2006 -0500
Wolfgang Denk14d9ab32006-06-16 16:50:42 +020048179
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048180 * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
Wolfgang Denk1ac7e172006-06-16 16:43:33 +020048181
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048182commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
48183Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048184Date: Wed Jun 28 10:41:37 2006 -0500
Wolfgang Denkbc8bb6d2006-06-16 16:40:54 +020048185
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048186 * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
Wolfgang Denkbc8bb6d2006-06-16 16:40:54 +020048187
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048188commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
48189Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048190Date: Wed Aug 9 14:33:50 2006 +0100
Wolfgang Denkcebd1fc2006-06-16 16:14:28 +020048191
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048192 Add Rapidio support for the MPC8641HPCN
Ben Warrenb985b5d2006-10-26 14:38:25 -040048193
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048194 Signed-off-by: John Traill <john.traill@freescale.com>
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +020048195
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048196commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
48197Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048198Date: Tue Aug 8 11:32:43 2006 +0100
Wolfgang Denk4bdb53c2006-06-16 15:56:12 +020048199
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048200 Fix caslat calculation
Ben Warrenb985b5d2006-10-26 14:38:25 -040048201
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048202 Signed-off-by: John Traill <john.traill@freescale.com>
Wolfgang Denkb9fff8e2006-06-16 15:52:58 +020048203
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048204commit 709d3073e74153278e7904a70819bbef7df50e1a
48205Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048206Date: Thu Aug 3 16:17:56 2006 -0500
Wolfgang Denk3e9a2992006-06-16 15:47:05 +020048207
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048208 Convert to mac-address in ethernet nodes.
Wolfgang Denke00f41e2006-06-16 15:45:03 +020048209
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048210commit 71748af833ca1017edf1415be376366ff2937d17
48211Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048212Date: Fri Jul 28 12:41:35 2006 -0400
Wolfgang Denk33322402006-06-16 15:40:48 +020048213
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048214 Correct the irq value of DUART2
Wolfgang Denk9e18a4b2006-06-14 16:48:18 +020048215
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048216commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
48217Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048218Date: Fri Jul 28 12:41:41 2006 -0400
Stefan Roesedf02bd12006-06-14 10:18:39 +020048219
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048220 Change the space size of PEX IO in README
Stefan Roeseed4633c2006-06-13 18:55:07 +020048221
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048222commit 239db37c94f7a92941c4465feceb867c609241c5
48223Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048224Date: Fri Jul 28 12:41:18 2006 -0400
Heiko Schocher9acb6262006-04-20 08:42:42 +020048225
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048226 Move get_board_sys_clk to board directory
Scott McNutt9cc83372006-06-08 13:37:39 -040048227
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048228commit 492900b985439fbce1a118afde1e35def870db03
48229Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048230Date: Fri Jul 28 09:03:54 2006 +0100
Scott McNutt1f6ce8f2006-06-08 12:08:12 -040048231
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048232 Fix 8641HPCN pollution
Scott McNutt3d22d0b2006-06-08 12:03:21 -040048233
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048234commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
48235Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048236Date: Fri Jul 28 08:16:06 2006 +0100
Scott McNuttc2ced002006-06-08 11:59:57 -040048237
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048238 Fix 8641HPCN timebase
Wolfgang Denk5d7022b2006-06-09 21:19:21 +020048239
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048240commit c86360b830f1eecd7a72208575dde4f57879faea
48241Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048242Date: Fri Jul 28 00:01:34 2006 +0800
Wolfgang Denke461a242006-06-07 11:36:02 +020048243
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048244 Fixed OF device tree of mpc86xxhpcn board.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048245
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048246 The changes works in with kernel irq mapping rework.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048247
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048248 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
Stefan Roese4526c872006-06-06 10:59:12 +020048249
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048250commit bea3f28d285942bf3f7ab339ce85178ded544225
48251Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048252Date: Wed Jul 12 10:48:05 2006 -0400
Wolfgang Denk2fd9eb52006-06-02 17:04:21 +020048253
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048254 Add support for reading and writing mac addresses to or from ID EEPROM.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048255
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048256 Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
48257 With attached patch, we can use command "mac/mac read/mac save/"
48258 to read and write EEPROM under u-boot prompt.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048259
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048260 U-boot will calculate the checksum of EEPROM while bootup,
48261 if it is right, then u-boot will check whether the mac address
48262 of eTSEC0/1/2/3 is availalbe (non-zero).
Ben Warrenb985b5d2006-10-26 14:38:25 -040048263
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048264 If there is mac address availabe in EEPROM, u-boot will use it,
48265 otherewise, u-boot will use the mac address defined in
48266 MPC8641HPCN.h. This matches the requirement to set unique mac address
48267 for each TSEC port.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048268
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048269 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
48270 Signed-off-by: York Sun <yorksun@freescale.com>
Wolfgang Denk2fd9eb52006-06-02 17:04:21 +020048271
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048272commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
48273Author: Jin Zhengxiong <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048274Date: Thu Jul 13 10:35:10 2006 -0500
Wolfgang Denk62b8f542006-06-02 11:46:20 +020048275
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048276 Fixed initrd issue by define big RAM
Ben Warrenb985b5d2006-10-26 14:38:25 -040048277
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048278 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
Wolfgang Denk392c2522006-05-30 23:32:44 +020048279
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048280commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
48281Author: Jason Jin <Jason.jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048282Date: Fri Jul 7 10:01:45 2006 -0500
Wolfgang Denkb9b24802006-05-30 17:45:30 +020048283
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048284 We made a u-boot patch to fix the hang up issue
48285 when booting filesystem from ramdisk.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048286
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048287 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
Wolfgang Denkba94a1b2006-05-30 15:56:48 +020048288
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048289commit 38433ccc5850ee70549af0b2bc5b920355ef5388
48290Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048291Date: Wed Jun 28 10:47:03 2006 -0500
Stefan Roese5770a1e2006-05-18 19:21:53 +020048292
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048293 * Switched default PCI speed for 8540 ADS back to 33MHz
48294 * Added comments and a printf to warn that PCI-X won't
48295 work at 33MHz
48296 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048297
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048298 Signed-off-by: Andy Fleming <afleming@freescale.com>
Marian Balakowiczb62fa912006-05-17 12:18:48 +020048299
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048300commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
48301Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048302Date: Wed Jun 28 10:46:35 2006 -0500
Marian Balakowicz27333f82006-05-17 12:16:26 +020048303
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048304 * Fixed a bug where 8555 PCI code used the old variable and
48305 function names
48306 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048307
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048308 Signed-off-by: Andy Fleming <afleming@freescale.com>
Stefan Roese56ced702006-05-15 15:11:20 +020048309
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048310commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
48311Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048312Date: Wed Jun 28 10:46:13 2006 -0500
Wolfgang Denk65165252006-05-15 13:52:51 +020048313
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048314 * Added VIA configuration table
48315 * Added support for PCI2 on CDS
48316 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048317
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048318 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denk8cba0902006-05-12 16:15:46 +020048319
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048320commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
48321Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048322Date: Wed Jun 28 10:45:41 2006 -0500
Wolfgang Denk977b50f2006-05-10 17:43:20 +020048323
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048324 * Fixed PCI memory definitions
48325 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048326
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048327 Signed-off-by: Andy Fleming <afleming@freescale.com>
Stefan Roese278bc4b2006-05-10 15:06:58 +020048328
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048329commit 087454609e47295443af793a282cddcd91a5f49c
48330Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048331Date: Wed Jun 28 10:45:17 2006 -0500
Stefan Roesef90a3922006-05-10 15:01:40 +020048332
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048333 * Added support for initializing second PCI bus on 85xx
48334 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048335
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048336 Signed-off-by: Andy Fleming <afleming@freescale.com>
Stefan Roese512f8d52006-05-10 14:10:41 +020048337
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048338commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
48339Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048340Date: Wed Jun 28 10:44:49 2006 -0500
Stefan Roesed1dd22f2006-05-10 11:49:37 +020048341
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048342 * Added PCI-X #defines for PCI-X initialization
48343 Patch by Andy Fleming on 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048344
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048345 Signed-off-by: Andy Fleming <afleming@freescale.com>
Stefan Roese77f63342006-05-10 11:28:48 +020048346
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048347commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
48348Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048349Date: Wed Jun 28 10:44:23 2006 -0500
Stefan Roese6080a0e2006-05-10 10:55:16 +020048350
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048351 * Made sure the code which disables prefetch for PCI devices
48352 sets the size of the prefetch region to 0
48353 Patch by Andy Fleming on 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048354
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048355 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denk4af099b2006-05-09 13:49:12 +020048356
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048357commit 40d5fa35d02df22580593bf0039ab173367e8ef0
48358Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048359Date: Wed Jun 28 10:43:36 2006 -0500
Marian Balakowicz78b123c2006-05-09 11:54:44 +020048360
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048361 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
48362 Patch by Jon Loeliger 17-Jan-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040048363
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048364 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Marian Balakowicz6f5155a2006-05-09 11:51:51 +020048365
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048366commit be7e8b0cb5a0c49dc180075b96df296a893bf146
48367Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048368Date: Wed Jun 28 10:43:00 2006 -0500
Marian Balakowiczb75ef852006-05-09 11:45:31 +020048369
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048370 * Removed the oftree.dts for stxxtx in light of the changes
48371 to the flat device tree handling code
48372 Patch by Matthew McClintock 26-June-2006
Marian Balakowiczb4853b72006-05-09 11:43:59 +020048373
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048374commit 1b380ec225665e73959677f3893dc658c5925e05
48375Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048376Date: Wed Jun 28 10:42:24 2006 -0500
Marian Balakowicz0c056f02006-05-09 11:37:13 +020048377
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048378 * Patch to modify ft_build.c to update flat device trees in place
48379 Patch by Matthew McClintock 26-June-2006
Marian Balakowicz483a0cf2006-05-09 11:28:36 +020048380
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048381commit 98a9c4d468a942a09ebe8979bec508017f3e4462
48382Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048383Date: Wed Jun 28 10:41:37 2006 -0500
Wolfgang Denkf149d862006-05-05 00:59:28 +020048384
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048385 * Modify bootm command to support booting with flat device trees
48386 Patch by Matthew McClintock 26-June-2006
Kumar Gala8fe9bf62006-04-20 13:45:32 -050048387
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048388commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
48389Author: Jin Zhengxiong <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048390Date: Wed Jun 28 08:43:56 2006 -0500
Wolfgang Denk610cf362006-05-03 01:24:04 +020048391
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048392 Change Id to symbolic name for RTL8139
Ben Warrenb985b5d2006-10-26 14:38:25 -040048393
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048394 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Wolfgang Denkda4849f2006-05-03 01:04:58 +020048395
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048396commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
48397Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048398Date: Tue Jun 27 18:12:10 2006 +0800
Wolfgang Denk983bebb2006-05-03 01:00:39 +020048399
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048400 Fix RTL8139 in big endian
Ben Warrenb985b5d2006-10-26 14:38:25 -040048401
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048402 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
48403 signed-off-by: Wei Zhang <wei.zhang@freescale.com>
Wolfgang Denk983bebb2006-05-03 01:00:39 +020048404
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048405commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
48406Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048407Date: Tue Jun 27 18:12:23 2006 +0800
Wolfgang Denk8546e232006-05-02 00:11:25 +020048408
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048409 Fix Tsec bug when no link
Ben Warrenb985b5d2006-10-26 14:38:25 -040048410
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048411 When tftp a non-exist file from the tftp server, u-boot will check
48412 the link of all eth port. The original file will return wrong link
48413 state on the no link ports.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048414
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048415 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
Wolfgang Denk3577d3a2006-04-28 21:24:32 +020048416
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048417commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
48418Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048419Date: Tue Jun 27 18:12:02 2006 +0800
dzu@denx.de6ca24c62006-04-21 18:30:47 +020048420
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048421 Fix bug for io_bar size during pci scan
Ben Warrenb985b5d2006-10-26 14:38:25 -040048422
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048423 During the pci scan process, Some devices return bar_reponse with the
48424 highest bytes 0, such as the pci bridge in uli1575 return bar_response
48425 with 0xffffff, So the bar_size should be manually set under 64K.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048426
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048427 Signed-off-by: Jason Jin <jason.jin@freescale.com>
dzu@denx.dea367d422006-04-19 11:52:46 +020048428
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048429commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
48430Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048431Date: Tue Jun 27 18:11:54 2006 +0800
Wolfgang Denk8419c012006-04-18 11:05:03 +020048432
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048433 Enable PCIE1 for MPC8641HPCN board
Ben Warrenb985b5d2006-10-26 14:38:25 -040048434
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048435 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Wolfgang Denkcf48eb92006-04-16 10:51:58 +020048436
Wolfgang Denk9986bc32007-08-12 21:34:50 +020048437commit 99d70e3a47affb9bae041a2caece7cd516e213b3
48438Author: Wolfgang Denk <wd@pollux.denx.de>
48439Date: Mon Jun 26 11:06:00 2006 +0200
48440
48441 More code cleanup
48442
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048443commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
48444Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048445Date: Thu Jun 22 08:51:46 2006 -0500
Wolfgang Denk27e166b2005-12-19 13:02:45 +010048446
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048447 Fix bug in 8641hpcn reset command with no args.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048448
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048449 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
48450 Acked-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk27e166b2005-12-19 13:02:45 +010048451
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048452commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
48453Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048454Date: Tue Jun 20 17:47:15 2006 +0800
Wolfgang Denkb81a4632006-04-13 16:35:22 +020048455
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048456 Reworked IRQ mapping in OF-tree.
Wolfgang Denkb28a31c2006-04-12 12:26:32 +020048457
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048458commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
48459Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048460Date: Thu Jun 15 21:33:37 2006 -0500
Wolfgang Denkb28a31c2006-04-12 12:26:32 +020048461
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048462 Do not enable address translation on secondary CPUs.
48463 Do not set up BATs on secondary CPUs. Let Linux do the nasty.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048464
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048465 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkb28a31c2006-04-12 12:26:32 +020048466
Wolfgang Denk9986bc32007-08-12 21:34:50 +020048467commit 386eda022473394ad8f36b86f2bdc9b4cb816291
48468Author: Wolfgang Denk <wd@pollux.denx.de>
48469Date: Wed Jun 14 18:14:56 2006 +0200
48470
48471 Code cleanup
48472
48473commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
48474Author: Wolfgang Denk <wd@pollux.denx.de>
48475Date: Wed Jun 14 17:45:53 2006 +0200
48476
48477 Various USB related patches
48478 - Add support for mpc8xx USB device.
48479 - Add support for Common Device Class - Abstract Control Model USB console.
48480 - Add support for flow control in USB slave devices.
48481 - Add support for switching between gserial and cdc_acm using environment.
48482 - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
48483 - Update usbcore slightly to ease host enumeration.
48484 - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
48485 - Add AdderUSB_config as a defconfig to enable usage of the USB console
48486 by default with the Adder87x U-Boot port.
48487 Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
48488
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048489commit 8ecc971618f56029ad99d3516f8b297a6ed58971
48490Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048491Date: Wed Jun 7 10:53:55 2006 -0500
Wolfgang Denk5fbb2cd2006-04-06 11:35:18 +020048492
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048493 Fix a get_board_sys_clk() use-before-def warning.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048494
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048495 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Stefan Roese2662b402006-04-01 13:41:03 +020048496
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048497commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
48498Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048499Date: Wed Jun 7 10:52:49 2006 -0500
Stefan Roese2662b402006-04-01 13:41:03 +020048500
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048501 Allow DTC path to be passed in.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048502
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048503 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Stefan Roese2662b402006-04-01 13:41:03 +020048504
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048505commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
48506Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048507Date: Tue Jun 6 16:54:29 2006 -0400
Stefan Roese2662b402006-04-01 13:41:03 +020048508
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048509 Modify the IRQ of DUART2
Stefan Roese2662b402006-04-01 13:41:03 +020048510
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048511commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
48512Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048513Date: Wed May 31 13:55:35 2006 -0500
Stefan Roese2662b402006-04-01 13:41:03 +020048514
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048515 Review cleanups.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048516
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048517 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese2662b402006-04-01 13:41:03 +020048518
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048519commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
48520Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048521Date: Wed May 31 12:44:44 2006 -0500
Stefan Roese2662b402006-04-01 13:41:03 +020048522
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048523 White space cleanup.
48524 Some 80-column cleanups.
48525 Convert printf() to puts() where possible.
48526 Use #include "spd_sdram.h" as needed.
48527 Enhanced reset command usage message a bit.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048528
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048529 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese35118532006-03-31 15:18:37 +020048530
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048531commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
48532Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048533Date: Wed May 31 11:39:34 2006 -0500
Stefan Roese35118532006-03-31 15:18:37 +020048534
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048535 Removed unneeded local_bus_init() from 8641HPCN board.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048536
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048537 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese35118532006-03-31 15:18:37 +020048538
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048539commit 4d3d729c16c392d2982d3266b659d333c927697d
48540Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048541Date: Wed May 31 11:24:28 2006 -0500
Stefan Roese35118532006-03-31 15:18:37 +020048542
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048543 Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048544
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048545 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese35118532006-03-31 15:18:37 +020048546
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048547commit b2a941de060350ad15878d8219825f4950e9bb8e
48548Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048549Date: Wed May 31 10:07:28 2006 -0500
Wolfgang Denkdb28ddb2006-04-03 15:46:10 +020048550
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048551 Remove dead debug code.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048552
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048553 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk534ff672006-04-01 15:52:46 +020048554
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048555commit 126aa70f10ba3d20e0a6f4d32328250513b77770
48556Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048557Date: Tue May 30 17:47:00 2006 -0500
Wolfgang Denk534ff672006-04-01 15:52:46 +020048558
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048559 Move mpc86xx PIXIS code to board directory
Ben Warrenb985b5d2006-10-26 14:38:25 -040048560
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048561 First cut at moving the PIXIS platform code out of
48562 the 86xx cpu directory and into board/mpc8641hpcn
48563 where it belongs.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048564
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048565 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkd87080b2006-03-31 18:32:53 +020048566
Wolfgang Denk9986bc32007-08-12 21:34:50 +020048567commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
48568Author: Markus Klotzbuecher <mk@denx.de>
48569Date: Tue May 30 16:56:14 2006 +0200
48570
48571 Support generic OHCI support for the s3c24x0 cpu.
48572
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048573commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
48574Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048575Date: Tue May 30 09:10:32 2006 -0500
Wolfgang Denkf6dbbe92006-03-25 18:42:54 +010048576
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048577 Improve "reset" command's interaction with watchdog.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048578
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048579 "reset altbank" will reset another bank WITHOUT watch dog timer enabled
48580 "reset altbank wd" will reset another bank WITH watch dog enabled
48581 "diswd" will disable watch dog after u-boot boots up successfully
Ben Warrenb985b5d2006-10-26 14:38:25 -040048582
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048583 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk05d8dce2006-03-23 17:10:30 +010048584
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048585commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
48586Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048587Date: Tue May 30 08:51:19 2006 -0500
Wolfgang Denk5725f942006-03-21 01:58:07 +010048588
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048589 Fix two SDRAM setup bugs.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048590
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048591 Fix ECC setup bug.
48592 Enable 1T/2T based on number of DIMMs present.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048593
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048594 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk0b6ba542006-03-19 01:01:51 +010048595
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048596commit d11fec5015334deb2010e36ce00bb118cc5429a5
48597Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048598Date: Fri May 26 10:24:48 2006 -0500
Marian Balakowiczd326f4a2006-03-16 15:19:35 +010048599
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048600 Add first draft of the MPC8641HPCN doc/README.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048601
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048602 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Marian Balakowicz97f98002006-03-16 14:35:32 +010048603
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048604commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
48605Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048606Date: Fri May 26 10:13:04 2006 -0500
Marian Balakowicz991425f2006-03-14 16:24:38 +010048607
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048608 Added pci@8000 block.
48609 Updated ethernet interrupt mappings (moved up 48).
48610 Cleaned up a few comments.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048611
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048612 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +010048613
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048614commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
48615Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048616Date: Fri May 26 10:01:16 2006 -0500
Marian Balakowicz61f25152006-03-14 16:14:48 +010048617
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048618 Allow args on reset command.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048619
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048620 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Marian Balakowicz6d8ae5a2006-03-14 16:12:48 +010048621
Wolfgang Denk9986bc32007-08-12 21:34:50 +020048622commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
48623Author: Markus Klotzbuecher <mk@denx.de>
48624Date: Tue May 23 13:38:35 2006 +0200
48625
48626 Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
48627 fixes to the latter.
48628
48629commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
48630Author: Markus Klotzbuecher <mk@denx.de>
48631Date: Tue May 23 10:33:11 2006 +0200
48632
48633 More cleanup for the delta board and the generic usb_ohci driver. Added
48634 CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
48635 initialization and cleanup hooks respectively.
48636
48637commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
48638Author: Markus Klotzbuecher <mk@denx.de>
48639Date: Mon May 22 16:33:54 2006 +0200
48640
48641 This patch adds USB storage support for the delta board. This is the first
48642 board to make use of a generic OHCI driver, that calls hooks for board
48643 dependant initialization.
48644
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048645commit 14e37081ff3cac7ebe6e93836523429853b6b292
48646Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048647Date: Fri May 19 13:28:39 2006 -0500
Marian Balakowicze24e0f02006-03-14 16:03:46 +010048648
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048649 Change arbitration to round-robin for SMP linux.
Marian Balakowiczcd94ba32006-03-14 16:02:31 +010048650
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048651commit 9a655876e5995be80f49054e2509500e871e4d3a
48652Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048653Date: Fri May 19 13:26:34 2006 -0500
Marian Balakowicza7c66ad2006-03-14 16:01:25 +010048654
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048655 Enable dual DDR controllers and interleaving.
Marian Balakowicz6e53e272006-03-14 15:59:25 +010048656
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048657commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
48658Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048659Date: Fri May 19 13:22:44 2006 -0500
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +010048660
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048661 Update 86xx address map and LAWBARs.
Wolfgang Denkff7fefe2006-03-13 12:37:35 +010048662
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048663commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
48664Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048665Date: Fri May 19 13:14:15 2006 -0500
Stefan Roese15940c92006-03-13 11:16:36 +010048666
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048667 Remove L2 Cache invalidate polling.
Stefan Roese15940c92006-03-13 11:16:36 +010048668
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048669commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
48670Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048671Date: Fri May 19 12:33:09 2006 -0500
Stefan Roese15940c92006-03-13 11:16:36 +010048672
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048673 Enable 2nd CPU and I2C.
Stefan Roesef3fecfe2006-03-13 09:43:01 +010048674
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048675commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
48676Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048677Date: Mon May 15 07:26:56 2006 -0500
Stefan Roese9a7b4082006-03-13 09:42:28 +010048678
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048679 Update interrupt mapping.
Wolfgang Denk95515302006-03-13 01:00:22 +010048680
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048681commit 6cfea33477b04b63ed47386ed1629529484c33ba
48682Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048683Date: Wed May 10 09:38:06 2006 -0500
Wolfgang Denkc15f80e2006-03-13 00:50:48 +010048684
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048685 Remove unneeded INIT_RAM_LOCK cache twiddling.
48686 Correctly tracks r29 as global data pointer now.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048687
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048688 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denkb38dbd42006-03-13 00:46:05 +010048689
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048690commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
48691Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048692Date: Wed May 10 09:33:07 2006 -0500
Wolfgang Denkf07217c2006-03-12 23:27:46 +010048693
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048694 Remove unnecessary flash.c file.
Wolfgang Denk84c960c2006-03-12 23:17:31 +010048695
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048696commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
48697Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048698Date: Tue May 9 08:23:49 2006 -0500
Wolfgang Denk763b5f32006-03-12 23:13:27 +010048699
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048700 Get MPC8641HPCN flash images working.
Ben Warrenb985b5d2006-10-26 14:38:25 -040048701
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048702 Enable the CFI driver.
48703 Remove bogus LAWBAR7 cruft.
48704 Use correct TEXT_BASE, Fixup load script.
48705 Enable SPD EEPROM during DDR setup.
48706 Use generic RFC 1918 IP addresses by default.
Wolfgang Denkbe5048f2006-03-12 22:50:55 +010048707
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048708commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
48709Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048710Date: Thu Apr 27 10:15:16 2006 -0500
Wolfgang Denkca273812006-03-12 22:45:47 +010048711
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048712 Cleanup whitespaces and style issues.
48713 Removed //-style comments.
48714 Use 80-column lines.
48715 Remove trailing whitespace.
48716 Remove dead code and debug cruft.
Wolfgang Denk8123eee2006-03-12 22:41:33 +010048717
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048718commit a2320a6bf8113a09544c42d160d10ac69d049a03
48719Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048720Date: Thu Apr 27 08:22:39 2006 -0500
Wolfgang Denk7c609082006-03-12 22:14:20 +010048721
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048722 Revert bad PCI prefetch limit change.
Kumar Gala86902b82006-01-12 19:51:38 -060048723
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048724commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
48725Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020048726Date: Wed Apr 26 17:58:56 2006 -0500
Kumar Gala2688e2f2006-02-10 15:40:06 -060048727
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020048728 Initial support for MPC8641 HPCN board.