]> git.ipfire.org Git - people/ms/u-boot.git/blob - CHANGELOG
Merge branch 'master' of /home/wd/git/u-boot/master/
[people/ms/u-boot.git] / CHANGELOG
1 commit 374b9038293d01d8744a46af9b7854a6fd99b228
2 Author: Heiko Schocher <hs@denx.de>
3 Date: Wed Oct 15 09:51:19 2008 +0200
4
5 Fix compiler warning in lib_ppc/board.c
6
7 Fix compiler warning introduced by commit 0f8cbc18
8
9 Signed-off-by: Heiko Schocher <hs@denx.de>
10 Signed-off-by: Wolfgang Denk <wd@denx.de>
11
12 commit 9724555755a6f1066636481b41f7094e0ce93a69
13 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
14 Date: Thu Oct 9 10:29:14 2008 +0530
15
16 mpc83xx: wait till UPM completes the write to array
17
18 Reference manual states that MxMR[MAD] increment is the indication
19 of write to UPM array is complete. Honour that. Also, make the dummy
20 write explicit.
21
22 also fix the comment.
23
24 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
25 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26
27 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
28 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
29 Date: Wed Oct 8 18:12:20 2008 -0500
30
31 Remove unwanted ';' at end of define.
32
33 Currently this is not creating any problem. But it will result
34 in compilation error when used as below.
35
36 printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
37
38 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
39
40 continuation of the theme based on git grep "^#define CFG_.*;$" include/
41
42 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43
44 commit b2934a56650e9a6c54432f9ce6dc36757967385e
45 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
46 Date: Mon Oct 6 10:53:59 2008 -0400
47
48 ARM DaVinci: Add maintainer information for SFFSDR board.
49
50 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
51
52 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
53 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54 Date: Sat Oct 4 19:26:16 2008 +0200
55
56 api: fix type mismatch
57
58 This patch fixes a type mismatch and thus removes a compiler
59 warning when compiling with CONFIG_API on powerpc.
60
61 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62
63 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
64 Author: Peter Tyser <ptyser@xes-inc.com>
65 Date: Wed Oct 1 12:25:04 2008 -0500
66
67 cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
68
69 Original code displayed:
70 => help i2c
71 i2c i2c speed [speed] - show or set I2C bus speed
72 i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
73 ...
74
75 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
76
77 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
78 Author: Wolfgang Denk <wd@denx.de>
79 Date: Tue Oct 14 22:13:41 2008 +0200
80
81 Update CHANGELOG
82
83 Signed-off-by: Wolfgang Denk <wd@denx.de>
84
85 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
86 Author: Jason Jin <Jason.jin@freescale.com>
87 Date: Fri Oct 10 11:41:01 2008 +0800
88
89 Do not init SATA when disabled on 8536DS.
90
91 SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
92 driver still try to access the SATA registers, the cpu will hangup.
93 This patch try to fix this by reading the serdes status before the SATA
94 initialize.
95
96 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
97 Acked-by: Andy Fleming <afleming@freescale.com>
98
99 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
100 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
101 Date: Fri Oct 3 00:03:55 2008 +0400
102
103 fsl_diu: fix alignment error that caused malloc corruption
104
105 When aligning malloc()ed screen_base, invalid offset was added.
106 This not only caused misaligned result (which did not cause hardware
107 misbehaviour), but - worse - caused screen_base + smem_len to
108 be out of malloc()ed space, which in turn caused breakage of
109 futher malloc()/free() operation.
110
111 This patch fixes screen_base alignment.
112
113 Also this patch makes memset() that cleans framebuffer to be executed
114 on first initialization of diu, not only on re-initialization. It looks
115 correct to clean the framebuffer instead of displaying random garbage;
116 I believe that was disabled only because that memset caused breakage
117 of malloc/free described above - which no longer happens with the fix
118 described above.
119
120 Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
121
122 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
123 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
124 Date: Wed Sep 24 10:29:37 2008 +0200
125
126 api: Fix building with CONFIG_API
127
128 This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
129
130 USB_MAX_STOR_DEV is defined in include/usb.h, but
131 needed in api/api_storage.c.
132
133 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
134
135 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
136 Author: Peter Tyser <ptyser@xes-inc.com>
137 Date: Tue Sep 23 12:39:40 2008 -0500
138
139 Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
140
141 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
142
143 commit 81e612014c40c922ec35488d17c504d4e9286f06
144 Author: Peter Tyser <ptyser@xes-inc.com>
145 Date: Tue Sep 23 12:38:42 2008 -0500
146
147 Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
148
149 The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
150 CFG_EEPROM_PAGE_WRITE_BITS in various temperature
151 sensor drivers are not necessary
152
153 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
154
155 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
156 Author: Mike Frysinger <vapier@gentoo.org>
157 Date: Tue Oct 14 07:04:38 2008 -0400
158
159 cmd_spi: remove broken signed casting for display
160
161 Since we're working with unsigned data, you can't apply a signed pointer
162 cast and then attempt to print the result. Otherwise you get wrong output
163 when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
164
165 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
166
167 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
168 Author: Mike Frysinger <vapier@gentoo.org>
169 Date: Tue Oct 14 07:05:24 2008 -0400
170
171 strings cmd: drop old CONFIG_CFG_STRINGS define
172
173 We don't need CONFIG_CFG_STRINGS anymore now that we have the define
174 CONFIG_CMD_STRINGS and Makefile control.
175
176 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
177
178 commit fecb5ade3b37f62981f2b05b621005850173aaa9
179 Author: Jason Jin <Jason.jin@freescale.com>
180 Date: Fri Sep 19 17:32:49 2008 +0800
181
182 Fix the NAND size overflow issue.
183
184 When the total size of all NAND devices exceeds 4 GiB, the size will
185 overflow. This patch tries to fix this.
186
187 Note that we still have a problem when a single NAND device is bigger
188 than 4 GiB: then the overflow would actually happen earlier, i. e.
189 when storing the size in nand_info[].size, as nand_info[].size is an
190 "u_int32_t".
191
192 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
193 Signed-off-by: Wolfgang Denk <wd@denx.de>
194
195 commit 30f574717277238b9014b8136c90eea77196490f
196 Author: Louis Su <louis@asix.com.tw>
197 Date: Wed Jul 9 11:01:37 2008 +0800
198
199 AX88180: new gigabit network driver
200
201 Signed-off-by: Louis Su <louis@asix.com.tw>
202 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
203
204 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
205 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
206 Date: Tue Aug 19 16:07:03 2008 +0200
207
208 enable 10/100M at VSC8601 at tsec driver
209
210 Currently VSC8601 doesn't link with 10/100M partners if the
211 EEPROM/Strapping is not set up.
212 Setting the auto-neg register fixes this.
213
214 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
215 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
216
217 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
218 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
219 Date: Tue Sep 30 15:02:53 2008 +0900
220
221 net: ne2000: Divided a function of NE2000 driver
222
223 get_prom function was used __attriute__ , but it is not enable.
224 ax88796.o does not do link besides ne2000.o. When ld is carried
225 out, get_prom function of ax88796.c is ignored.
226 This problem is a thing by specifications of ld.
227 I checked and test this patch on SuperH and MIPS.
228
229 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
230 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
231
232 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
233 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
234 Date: Tue Oct 14 11:10:59 2008 +0900
235
236 sh: rsk7203: Add smc911x driver support to board config file
237
238 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
239 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
240
241 commit cae6f909baf86357b3c0bd01acfc414348c4d175
242 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
243 Date: Thu Oct 9 13:54:33 2008 +0900
244
245 sh: Fix cannot execute a stand-alone application
246
247 Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
248
249 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
250 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
251
252 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
253 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
254 Date: Wed Oct 8 23:38:00 2008 -0500
255
256 fsl_pci_init do not scan bus when configured as an end-point
257
258 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
259 Acked-by: Andy Fleming <afleming@freescale.com>
260
261 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
262 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
263 Date: Tue Sep 16 17:07:53 2008 -0400
264
265 ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
266
267 This is no longer necessary now that the GD_FLG_RELOC flag is set for
268 all ARM boards.
269
270 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
271
272 commit d977a57356657ba241256231efca32828a5822f9
273 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
274 Date: Sat Sep 13 10:04:32 2008 +0200
275
276 Fix lzma uncompress call (image_start wrongly used instead image_len)
277
278 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
279
280 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
281 Author: Nick Spence <nick.spence@freescale.com>
282 Date: Thu Aug 28 14:09:15 2008 -0700
283
284 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
285
286 This is needed in unlock_ram_in_cache() because it is called from C and
287 will corrupt the small data area anchor that is kept in R2.
288
289 lock_ram_in_cache() is modified similarly as good coding practice, but
290 is not called from C.
291
292 Signed-off-by: Nick Spence <nick.spence@freescale.com>
293
294 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
295 Author: Kumar Gala <galak@kernel.crashing.org>
296 Date: Tue Aug 19 15:05:34 2008 -0500
297
298 86xx: remove redudant code with lib_ppc/interrupts.c
299
300 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
301 Not know how that happened, but there is no good reason for it.
302
303 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
304 they exist.
305
306 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
307
308 commit 0d01f66d235118515b5086b88f82498bc0695d6a
309 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
310 Date: Thu Oct 9 01:26:36 2008 -0500
311
312 CFI: cfi_flash write fix for AMD legacy
313
314 The flash_unlock_seq requires a sector for AMD_LEGACY.
315 Fix a retcode check typeo.
316
317 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
318 Signed-off-by: Stefan Roese <sr@denx.de>
319
320 commit 542b385a620a1783454a00424930e51895f45073
321 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
322 Date: Tue Oct 7 13:13:10 2008 +0200
323
324 ppc4xx: Fix USB 2.0 phy reset sequence
325
326 This patch fixes USB 2.0 communication issues on some DU440 boards.
327
328 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
329 Signed-off-by: Stefan Roese <sr@denx.de>
330
331 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
332 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
333 Date: Tue Oct 7 13:13:09 2008 +0200
334
335 ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
336
337 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
338 Signed-off-by: Stefan Roese <sr@denx.de>
339
340 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
341 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
342 Date: Tue Oct 7 13:13:08 2008 +0200
343
344 ppc4xx: Fix DU440 GPIO configuration
345
346 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
347 Signed-off-by: Stefan Roese <sr@denx.de>
348
349 commit 35dd025c70fcc4389317db2f2a9d14795172137d
350 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
351 Date: Tue Oct 7 13:13:07 2008 +0200
352
353 ppc4xx: Update DU440 config
354
355 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
356 Signed-off-by: Stefan Roese <sr@denx.de>
357
358 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
359 Author: Kumar Gala <galak@kernel.crashing.org>
360 Date: Wed Oct 8 15:36:39 2008 -0500
361
362 MPC8572DS: Fix compile warnings
363
364 Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
365 compile warnings:
366
367 cmd_i2c.c:112: warning: missing braces around initializer
368 cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
369
370 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
371
372 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
373 Author: Wolfgang Grandegger <wg@grandegger.com>
374 Date: Tue Sep 30 10:55:57 2008 +0200
375
376 85xx: Using proper I2C source clock divider for MPC8544
377
378 Measurements with our MPC8544 board showed that the I2C bus frequency
379 is wrong by a factor of 1.5. Obviously, the interpretation of the
380 MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
381 correct. There seems to be an error in the 8544 RM.
382
383 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
384
385 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
386 Author: Rafal Czubak <rcz@semihalf.com>
387 Date: Wed Oct 8 13:41:30 2008 +0200
388
389 FSL: Fix get_cpu_board_revision() return value.
390
391 get_cpu_board_revision() returned board revision based on information stored
392 in global static struct eeprom. It should instead use one from local struct
393 board_eeprom, to which the data is actually read from EEPROM. The bug led to
394 system hang after printing L1 cache information on U-Boot startup. The problem
395 was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
396 boards using CFG_I2C_EEPROM_CCID.
397
398 The change has been successfully tested on MPC8555CDS system.
399
400 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
401
402 commit 747f316cca484ed627a97dd3391febabce384186
403 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
404 Date: Tue Sep 30 20:08:49 2008 +0200
405
406 update uImage FIT multi documentation
407
408 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
409
410 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
411 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
412 Date: Tue Sep 30 20:08:36 2008 +0200
413
414 move README.imx31 to doc/ and merge with README.mx31
415
416 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
417
418 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
419 Author: Guennadi Liakhovetski <lg@denx.de>
420 Date: Thu Sep 25 20:54:37 2008 +0200
421
422 i.MX31: switch to CFG_HZ=1000
423
424 Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
425 cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
426 provides 2% or 0.4% precision depending on the
427 CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
428 boot-delay.
429
430 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
431
432 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
433 Author: gnusercn <gnusercn@gmail.com>
434 Date: Wed Oct 8 18:58:58 2008 +0200
435
436 Fix bug: in arch-arm, env_get_char dose not work fine
437
438 due to the arm implementation which supposed that U-Boot is in RAM
439 when we jump to start_armboot
440
441 Signed-off-by: gnusercn <gnusercn@gmail.com>
442 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
443
444 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
445 Author: Adam Graham <agraham@amcc.com>
446 Date: Mon Oct 6 10:16:13 2008 -0700
447
448 ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
449
450 After changing SDRAM_CLKTR phase value rerun the memory preload
451 initialization sequence (INITPLR) to reset and relock the memory
452 DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
453 adjustment effects the phase relationship of the internal, to the
454 PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
455
456 Signed-off-by: Adam Graham <agraham@amcc.com>
457 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
458 Signed-off-by: Stefan Roese <sr@denx.de>
459
460 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
461 Author: Haiying Wang <Haiying.Wang@freescale.com>
462 Date: Fri Oct 3 11:48:03 2008 -0400
463
464 Remove redundant #define for MPC8536DS
465
466 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
467
468 commit 445a7b38308eb05b41de74165b20855db58c7ee5
469 Author: Haiying Wang <Haiying.Wang@freescale.com>
470 Date: Fri Oct 3 11:47:30 2008 -0400
471
472 Add ID EEPROM support for MPC8572DS
473
474 The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
475 system information like mac addresses etc. This patch enables it.
476
477 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
478
479 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
480 Author: Haiying Wang <Haiying.Wang@freescale.com>
481 Date: Fri Oct 3 11:46:59 2008 -0400
482
483 Minor fixes for I2C address on MPC8572DS
484
485 MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
486 according to the board spec, and adds the 2nd i2c bus offset.
487
488 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
489
490 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
491 Author: Jason Jin <Jason.jin@freescale.com>
492 Date: Sat Sep 27 14:40:57 2008 +0800
493
494 Fix the incorrect DDR clk freq reporting on 8536DS
495
496 On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
497 The display is still sync mode DDR freq. This patch try to fix
498 this. The display DDR freq is now the actual freq in both
499 sync and async mode.
500
501 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
502
503 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
504 Author: Kumar Gala <galak@kernel.crashing.org>
505 Date: Tue Oct 7 10:28:46 2008 -0500
506
507 85xx: Remove setting of *cache-line-size in device trees
508
509 ePAPR says if the *cache-block-size is the same as *cache-line-size
510 than we don't need the *cache-line-size property.
511
512 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
513
514 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
515 Author: Gerald Van Baren <vanbaren@cideas.com>
516 Date: Sat Oct 4 07:56:06 2008 -0400
517
518 libfdt: Fix error in documentation for fdt_get_alias_namelen()
519
520 Oops, screwed up the function name in the documenting comment for this
521 function. Trivial correction in this patch.
522
523 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
524 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
525
526 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
527 Author: David Gibson <david@gibson.dropbear.id.au>
528 Date: Wed Aug 20 16:55:14 2008 +1000
529
530 libfdt: Add function to explicitly expand aliases
531
532 Kumar has already added alias expansion to fdt_path_offset().
533 However, in some circumstances it may be convenient for the user of
534 libfdt to explicitly get the string expansion of an alias. This patch
535 adds a function to do this, fdt_get_alias(), and uses it to implement
536 fdt_path_offset().
537
538 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
539
540 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
541 Author: Mike Frysinger <vapier@gentoo.org>
542 Date: Thu Oct 2 01:55:38 2008 -0400
543
544 cfi_flash: do not reset flash when probe fails
545
546 The CFI flash driver starts at flash_init() which calls down into
547 flash_get_size(). This starts by calling flash_detect_cfi(). If said
548 function fails, flash_get_size() finishes by attempting to reset the
549 flash. Unfortunately, it does this with an info->portwidth set to 0x10
550 which filters down into flash_make_cmd() and that happily smashes the
551 stack by sticking info->portwidth bytes into a cfiword_t variable that
552 lives on the stack. On a 64bit system you probably won't notice, but
553 killing the last 8 bytes on a 32bit system usually leads to a corrupt
554 return address. Which is what happens on a Blackfin system.
555
556 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
557 Signed-off-by: Stefan Roese <sr@denx.de>
558
559 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
560 Author: Stefan Roese <sr@denx.de>
561 Date: Fri Sep 26 17:03:26 2008 +0200
562
563 fdt: Overwrite /chosen node in bootm if it already exists in the dtb
564
565 Set force parameter in fdt_chosen() call in do_bootm_linux() call.
566 Without this, the chosen node is not overwritten if it already
567 exists.
568
569 Signed-off-by: Stefan Roese <sr@denx.de>
570
571 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
572 Author: Jon Loeliger <jdl@freescale.com>
573 Date: Thu Sep 25 11:02:17 2008 -0500
574
575 Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
576
577 Using Gcc 4.3 detected this problem:
578
579 ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
580 ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
581 occur when assuming that (X + c) < X is always false
582
583 To fix the problem, treat the offset as an unsigned int.
584
585 The problem report and proposed fix were provided
586 by Steve Papacharalambous <stevep@freescale.com>.
587
588 Signed-off-by: Jon Loeliger <jdl@freescale.com>
589
590 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
591 Author: David Gibson <david@gibson.dropbear.id.au>
592 Date: Fri Aug 29 14:19:13 2008 +1000
593
594 libfdt: Fix bugs in fdt_get_path()
595
596 The current implementation of fdt_get_path() has a couple of bugs,
597 fixed by this patch.
598
599 First, contrary to its documentation, on success it returns the length
600 of the node's path, rather than 0. The testcase is correspondingly
601 wrong, and the patch fixes this as well.
602
603 Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
604 instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
605 Specifically this happens when there is insufficient space even to
606 hold the path's second last component. This behaviour is corrected,
607 and the testcase updated to check it.
608
609 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
610
611 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
612 Author: Wolfgang Denk <wd@denx.de>
613 Date: Wed Oct 1 12:34:58 2008 +0200
614
615 TQM5200: enable support for ATAPI devices
616
617 Signed-off-by: Wolfgang Denk <wd@denx.de>
618
619 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
620 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
621 Date: Mon Sep 15 05:48:25 2008 +0200
622
623 Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
624
625 we need this due to the arm implementation which supposed that U-Boot
626 is in RAM when we jump to start_armboot
627
628 This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
629 in order to do it for all arm board
630
631 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
632
633 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
634 Author: Kim Phillips <kim.phillips@freescale.com>
635 Date: Wed Sep 24 08:46:25 2008 -0500
636
637 mpc83xx: don't disable autoboot
638
639 bootdelay set to -1 'permanently' disables autobooting, even if
640 bootcmd is specified. Change to a positive value to allow
641 autobooting when a bootcmd is set.
642
643 Reported-by: Coray Tate <Coray.Tate@freescale.com>
644 Cc: Scott Wood <scottwood@freescale.com>
645 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
646
647 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
648 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
649 Date: Wed Sep 24 10:42:15 2008 +0900
650
651 mpc83xx: Fix typo in include/mpc83xx.h
652
653 Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
654
655 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
656 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
657
658 commit 162c41c03179727a1d14262f703c9a8bc40231fa
659 Author: Kim Phillips <kim.phillips@freescale.com>
660 Date: Tue Sep 23 09:38:49 2008 -0500
661
662 mpc83xx: add h/w flash protection to board configs
663
664 the operating system may leave flash in a h/w locked state after writing.
665 This allows u-boot to continue to write flash by enabling h/w unlocking
666 by default.
667
668 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
669
670 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
671 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
672 Date: Thu Sep 11 21:35:36 2008 +0400
673
674 mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
675
676 The spd_dram code shifts the base address, then masks 20 bits, but
677 forgets to shift the base address back. Fix this by just masking the
678 base address correctly.
679
680 Found this bug while trying to relocate a DDR memory at the base != 0.
681
682 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
683 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
684
685 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
686 Author: Stefan Roese <sr@denx.de>
687 Date: Mon Sep 22 16:10:43 2008 +0200
688
689 ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
690
691 Depending on the configuration jumper "SATA SELECT", U-Boot disabled
692 either one PCIe node or the SATA node in the device tree blob. This
693 patch removes the unnecessary and even confusing warning, when the node
694 is not found at all.
695
696 Signed-off-by: Stefan Roese <sr@denx.de>
697
698 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
699 Author: Remy Bohmer <linux@bohmer.net>
700 Date: Fri Sep 19 13:30:06 2008 +0200
701
702 Add missing device types to dev_print() in part.c
703
704 Signed-off-by: Remy Bohmer <linux@bohmer.net>
705
706 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
707 Author: Wolfgang Denk <wd@denx.de>
708 Date: Mon Sep 22 22:23:06 2008 +0200
709
710 Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
711 eventually leads to a machine check. This change assures that DPRAM
712 is allocated only once in that case.
713
714 Signed-off-by: Gary Jennejohn <garyj@denx.de>
715 Signed-off-by: Wolfgang Denk <wd@denx.de>
716
717 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
718 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
719 Date: Wed Sep 17 17:57:34 2008 +0200
720
721 Fix Spartan-3 definitions.
722
723 A few Spartan-3 definitions erroneously use Spartan-3E size
724 constants. This patch fixes them.
725
726 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
727
728 commit 28113e1f0da4146b823ffce37680d31d5685a60b
729 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
730 Date: Wed Sep 17 17:41:58 2008 +0200
731
732 Remove duplicate Spartan-3E definition.
733
734 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
735 Signed-off-by: Wolfgang Denk <wd@denx.de>
736
737 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
738 Author: Anatolij Gustschin <agust@denx.de>
739 Date: Wed Sep 17 13:46:17 2008 +0200
740
741 socrates: change default mtest address range
742
743 Running mtest command on socrates without specifying
744 an address range crashes the board. This patch changes
745 default mtest address range to prevent this behavior.
746
747 Signed-off-by: Anatolij Gustschin <agust@denx.de>
748
749 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
750 Author: Anatolij Gustschin <agust@denx.de>
751 Date: Wed Sep 17 12:34:45 2008 +0200
752
753 socrates: fix crash after relocation
754
755 Currently U-Boot crashes after relocation to RAM.
756 Changing the CPO value of the DDR SDRAM TIMING_CFG_2
757 register to READ_LAT + 1 (to the value it was before
758 conversion of socrates to new DDR code) fixes the
759 problem.
760
761 Signed-off-by: Anatolij Gustschin <agust@denx.de>
762
763 commit 562788b0a303f3528b920d81f547f5ca77ba528e
764 Author: Anatolij Gustschin <agust@denx.de>
765 Date: Wed Sep 17 11:45:51 2008 +0200
766
767 socrates: fix SPD EEPROM address
768
769 Commit be0bd8234b9777ecd63c4c686f72af070d886517
770 changed SPD EEPROM address to 0x51 and DDR SDRAM
771 detection stopped working. Change this address
772 back to 0x50.
773
774 Signed-off-by: Anatolij Gustschin <agust@denx.de>
775
776 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
777 Author: Stefan Roese <sr@denx.de>
778 Date: Mon Sep 22 11:06:50 2008 +0200
779
780 Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
781
782 This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
783
784 Signed-off-by: Stefan Roese <sr@denx.de>
785
786 commit b5d10a13525c07ec6374adf840d7c87553b5f189
787 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
788 Date: Thu Sep 18 19:34:36 2008 +0900
789
790 sh: Fix compile warning
791
792 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
793
794 commit 4a065abf926f128beb36d93449defa0d690e7fef
795 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
796 Date: Thu Sep 18 19:04:26 2008 +0900
797
798 sh: Add support watchdog for SH4A core
799
800 Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
801 And fix some compile warning.
802
803 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
804
805 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
806 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
807 Date: Wed Sep 17 11:45:26 2008 +0900
808
809 sh: Fix typo in SH serial driver
810
811 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
812 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
813
814 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
815 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
816 Date: Wed Sep 17 11:08:36 2008 +0900
817
818 sh: Add support any page size and empty_zero_page to SH Linux uImage
819
820 Old U-Boot supported 4KB page size only. If this version, Linux
821 kernel can not get command line from U-Boot.
822 SH Linux kernel can change page size and empty_zero_page.
823 This patch support this function and fix promlem.
824
825 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
826 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
827
828 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
829 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
830 Date: Thu Aug 28 13:40:52 2008 +0900
831
832 sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
833
834 Add function of smc911x, pkt_data_pull and pkt_data_push.
835
836 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
837 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
838
839 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
840 Author: Wolfgang Denk <wd@denx.de>
841 Date: Thu Sep 18 13:57:32 2008 +0200
842
843 ADS5121: fix typo in "rootpath" default setting
844
845 Signed-off-by: Wolfgang Denk <wd@denx.de>
846
847 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
848 Author: Wolfgang Denk <wd@denx.de>
849 Date: Wed Sep 17 10:17:55 2008 +0200
850
851 Coding style cleanup; update CHANEGLOG
852
853 Signed-off-by: Wolfgang Denk <wd@denx.de>
854
855 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
856 Author: Victor Gallardo <vgallardo@amcc.com>
857 Date: Tue Sep 16 06:59:13 2008 -0700
858
859 ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
860
861 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
862 Signed-off-by: Adam Graham <agraham@amcc.com>
863 Signed-off-by: Stefan Roese <sr@denx.de>
864
865 commit ce47eb402c5e29a025399dc282246414fc492940
866 Author: Peter Tyser <ptyser@xes-inc.com>
867 Date: Tue Sep 16 10:04:47 2008 -0500
868
869 Support for multiple SGMII/TBI interfaces for TSEC ethernet
870
871 Fix TBI PHY accesses to use the proper offset in CPU register space. The
872 previous code would incorrectly access the TBI PHY by reading/writing to CPU
873 register space at the same location as would be used to access external PHYs.
874
875 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
876 Acked-by: Andy Fleming <afleming@freescale.com>
877
878 commit 7c803be2eb3cae245dedda438776e08fb122250f
879 Author: Wolfgang Denk <wd@denx.de>
880 Date: Tue Sep 16 18:02:19 2008 +0200
881
882 TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
883
884 After switching to using the CFI flash driver, the correct remapping
885 of the flash banks was forgotten.
886
887 Also, some boards were not adapted, and the old legacy flash driver
888 was not removed yet.
889
890 Signed-off-by: Wolfgang Denk <wd@denx.de>
891
892 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
893 Author: Wolfgang Denk <wd@denx.de>
894 Date: Sun Sep 14 00:59:35 2008 +0200
895
896 Prepare v2008.10-rc2
897
898 Signed-off-by: Wolfgang Denk <wd@denx.de>
899
900 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
901 Author: Wolfgang Denk <wd@denx.de>
902 Date: Sat Sep 13 02:23:05 2008 +0200
903
904 Coding style cleanup, update CHANGELOG
905
906 Signed-off-by: Wolfgang Denk <wd@denx.de>
907
908 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
909 Author: Peter Tyser <ptyser@xes-inc.com>
910 Date: Wed Sep 10 09:18:34 2008 -0500
911
912 Update mailing list email and archive addresses
913
914 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
915
916 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
917 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
918 Date: Thu Sep 11 15:40:01 2008 +0200
919
920 85xx: socrates: autoprobe Lime chip
921
922 This patch is an attempt to implement autoprobing for the Lime
923 presence on the bus.
924 Configure GPCM for Lime CS2 and try to access chip ID registers.
925 Second read atempt delivers register values if the chip is present.
926
927 Signed-off-by: Anatolij Gustschin <agust@denx.de>
928
929 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
930 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
931 Date: Thu Sep 11 15:40:01 2008 +0200
932
933 85xx: socrates: Add support for new image format.
934
935 Signed-off-by: Detlev Zundel <dzu@denx.de>
936
937 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
938 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
939 Date: Thu Sep 11 17:28:18 2008 +0900
940
941 sh: Fix compile error for r2dplus
942
943 netdev.h was not include by r2dplus.
944
945 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
946
947 commit 56844a22b76c719e600047e23b80465a44d76abd
948 Author: Heiko Schocher <hs@denx.de>
949 Date: Thu Sep 11 08:11:23 2008 +0200
950
951 powerpc: Fix bootm to boot up again with a Ramdisk
952
953 Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
954 and this stopped Linux from booting with a Ramdisk. This patch fixes
955 this, by deleting the useless dummy mem reservation.
956
957 When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
958 added to of_size, so we dont need anymore a dummy mem reservation.
959
960 I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
961 system (=0x44 bytes) and rounded it up to 0x80).
962
963 Signed-off-by: Heiko Schocher <hs@denx.de>
964 Acked-by: Kumar Gala <galak@kernel.crashing.org>
965
966 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
967 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
968 Date: Mon Sep 8 02:46:13 2008 +0200
969
970 Add support for LZMA uncompression algorithm.
971
972 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
973 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
974
975 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
976 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
977 Date: Fri Jun 27 23:04:20 2008 +0400
978
979 fsl_elbc_nand: ecclayout cleanups
980
981 This patch deletes oobavail assignments, they're calculated by the nand
982 core code in nand_scan_tail, plus current oobavail values are wrong for
983 the LP NANDs.
984
985 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
986 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
987 Signed-off-by: Scott Wood <scottwood@freescale.com>
988
989 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
990 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
991 Date: Fri Jun 27 23:04:13 2008 +0400
992
993 fsl_elbc_nand: implement support for flash-based BBT
994
995 This patch implements support for flash-based BBT for chips working
996 through ELBC NAND controller, so that NAND core will not have to re-scan
997 for bad blocks on every boot.
998
999 Because ELBC controller may provide HW-generated ECCs we should adjust
1000 bbt pattern and bbt version positions in the OOB free area.
1001
1002 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1003 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
1004 Signed-off-by: Scott Wood <scottwood@freescale.com>
1005
1006 commit 97ae023648e764f794ffb9c52da109d6caf09c47
1007 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1008 Date: Fri Jun 27 23:04:04 2008 +0400
1009
1010 fsl_elbc_nand: fix OOB workability for large page NAND chips
1011
1012 For large page chips, nand_bbt is looking into OOB area, and checking
1013 for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
1014 reserved for bbt means.
1015
1016 But ELBC driver is specifying ecclayout so that oobfree area starts at
1017 offset 1, so only one byte left for the bbt purposes.
1018
1019 This causes problems with any OOB users, namely JFFS2: after first mount
1020 JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
1021
1022 OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
1023 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
1024 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
1025 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
1026
1027 And on the next boot, NAND core will rescan for bad blocks, then will
1028 see "0xff 0x19" pattern, and will mark all blocks as bad ones.
1029
1030 To fix the issue we should implement our own bad block pattern: just one
1031 byte at OOB start. Though, this will work only for x8 chips. For x16
1032 chips two bytes must be checked. Since ELBC driver does not support x16
1033 NANDs (yet), we're safe for now.
1034
1035 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1036 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
1037 Signed-off-by: Scott Wood <scottwood@freescale.com>
1038
1039 commit 7238ada313057a85409485b8ee21515dc10c07a5
1040 Author: Wolfgang Denk <wd@denx.de>
1041 Date: Fri Sep 12 13:52:21 2008 +0200
1042
1043 MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
1044
1045 Signed-off-by: Wolfgang Denk <wd@denx.de>
1046
1047 commit b18410e508a12ba0a177dfc2a386857c806fa96d
1048 Author: Stefan Roese <sr@denx.de>
1049 Date: Thu Sep 11 13:05:56 2008 +0200
1050
1051 ppc4xx: Enable device tree (FDT) support in zeus board port
1052
1053 Signed-off-by: Stefan Roese <sr@denx.de>
1054
1055 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
1056 Author: Stefan Roese <sr@denx.de>
1057 Date: Wed Sep 10 16:53:47 2008 +0200
1058
1059 ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
1060
1061 This patch fixes a problem introdiced with patch
1062 bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
1063 initdram()].
1064
1065 The boards affected are:
1066 - PCI405
1067 - PPChameleonEVB
1068 - quad100hd
1069 - taihu
1070 - zeus
1071
1072 Signed-off-by: Stefan Roese <sr@denx.de>
1073
1074 commit 61737c59a3285f6fadf96a5836879898c04ec28d
1075 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1076 Date: Thu Sep 11 19:41:26 2008 -0400
1077
1078 ppc4xx: Add .gitignore file to xilinx-ppc440 boards
1079
1080 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1081 Signed-off-by: Stefan Roese <sr@denx.de>
1082
1083 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
1084 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1085 Date: Thu Sep 11 19:41:25 2008 -0400
1086
1087 ppc4xx: Fix compilation of v5fx30teval_flash
1088
1089 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1090 Signed-off-by: Stefan Roese <sr@denx.de>
1091
1092 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
1093 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1094 Date: Wed Sep 10 17:44:30 2008 -0400
1095
1096 ppc4xx: Fix in-tree build for ppc440-generic boards
1097
1098 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1099 Signed-off-by: Stefan Roese <sr@denx.de>
1100
1101 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
1102 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1103 Date: Fri Sep 12 02:20:47 2008 +0200
1104
1105 ARM: synchronize mach-types.h with linux 2.6.27-rc6
1106
1107 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1108
1109 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
1110 Author: Jens Scharsig <esw@bus-elektronik.de>
1111 Date: Fri Sep 12 02:20:47 2008 +0200
1112
1113 at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
1114
1115 This patch prevents linker error on AT91RM9200 boards, if
1116 CONFIG_CMD_I2_TREE is set.
1117 It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
1118
1119 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
1120
1121 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
1122 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
1123 Date: Fri Sep 12 02:20:47 2008 +0200
1124
1125 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
1126
1127 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
1128
1129 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
1130
1131 commit 03db53335c8eba656a7c44d1555b1a4514383e33
1132 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
1133 Date: Fri Sep 12 02:20:46 2008 +0200
1134
1135 make: Remove redundant __ARM__ addition when cross-compiling on *BSD
1136
1137 __ARM__ is given by arm_config.mk automatically.
1138
1139 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
1140
1141 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
1142 Author: Claudio Scordino <claudio@evidence.eu.com>
1143 Date: Fri Sep 12 02:20:46 2008 +0200
1144
1145 Fix MACH_TYPE for the AT91RM9200DK board.
1146
1147 Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
1148
1149 commit 274737e5eb25b2bcd3af3a96da923effd543284f
1150 Author: Andrew Dyer <adyer@righthandtech.com>
1151 Date: Fri Sep 12 02:20:46 2008 +0200
1152
1153 i.mx change get_timer(base) to return time since base
1154
1155 This patch changes get_timer() for i.MX to return the time since
1156 'base' instead of the time since the counter was at zero.
1157
1158 Symptom seen is flash timeout errors when erasing or programming a
1159 sector using the common cfi flash code.
1160
1161 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
1162
1163 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
1164 Author: Andrew Dyer <adyer@righthandtech.com>
1165 Date: Fri Sep 12 02:20:46 2008 +0200
1166
1167 i.MX use u-boot baud rate and don't assume UART master clock
1168
1169 1) Change the i.MX serial driver to use the baud rate set in the
1170 u-boot environment
1171
1172 2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
1173
1174 3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
1175 one to clear" like other status bits in the reg.)
1176
1177 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
1178
1179 commit 6e1551a870d360805b9d172dc56d935064abe71d
1180 Author: Andrew Dyer <adyer@righthandtech.com>
1181 Date: Fri Sep 12 02:20:46 2008 +0200
1182
1183 arm920t fix constant error in start.S
1184
1185 Code in cpu/arm920t/start.S will die with a compilation error if
1186 CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
1187 the ARM sub instruction. Change the code so that each is subtracted
1188 independently to avoid the error.
1189
1190 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
1191
1192 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
1193 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
1194 Date: Fri Sep 12 02:20:40 2008 +0200
1195
1196 ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
1197
1198 - Correct Invalid #define of MPUTIM_PTV_MASK for
1199 omap1510 & omap730 register definition
1200
1201 MPUTIM_PTV_MASK is defined as
1202 #define MPUTIM_PTV_MASK (0x7<<PTV_BIT)
1203
1204 while it should have been
1205 #define MPUTIM_PTV_MASK (0x7<<MPUTIM_PTV_BIT)
1206
1207 - Below Patch corrects the same
1208
1209 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
1210
1211 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
1212 Author: Adrian Filipi <adrian.filipi@eurotech.com>
1213 Date: Fri Jul 18 11:52:02 2008 -0400
1214
1215 Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
1216
1217 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
1218
1219 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
1220 Author: Guennadi Liakhovetski <lg@denx.de>
1221 Date: Thu Aug 28 12:25:11 2008 +0200
1222
1223 i.MX31: document timer precision option
1224
1225 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
1226
1227 commit 1a6337b01351b82a45b0defa76f08744511c580b
1228 Author: Magnus Lilja <lilja.magnus@gmail.com>
1229 Date: Fri Aug 29 10:36:18 2008 +0200
1230
1231 i.MX31: Make the SPI bus and chip select configurable for MC13783
1232
1233 The i.MX31 has three SPI buses and each bus has several chip selects
1234 and the MC13783 chip can be connected to any of these. The current
1235 RTC driver for MC13783 is hardcoded for CSPI2/SS2.
1236
1237 This patch makes make MC13783 SPI bus and chip select configurable
1238 via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
1239
1240 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
1241
1242 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
1243 Author: Magnus Lilja <lilja.magnus@gmail.com>
1244 Date: Fri Aug 29 10:36:17 2008 +0200
1245
1246 i.MX31: Add reset_timer() and modify get_timer_masked().
1247
1248 This patch adds the reset_timer() function (needed by nand_base.c) and
1249 modifies the get_timer_masked() to work in the same way as the omap24xx
1250 function.
1251
1252 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
1253
1254 commit deeec4991a55de243787002ede24d2331d234fc8
1255 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1256 Date: Wed Sep 10 22:48:09 2008 +0200
1257
1258 ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
1259
1260 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1261
1262 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
1263 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1264 Date: Wed Sep 10 22:48:09 2008 +0200
1265
1266 bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
1267
1268 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1269
1270 commit 0e8d158664a913392cb01fb11a948d83f72e105e
1271 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1272 Date: Wed Sep 10 22:48:06 2008 +0200
1273
1274 rename CFG_ENV macros to CONFIG_ENV
1275
1276 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1277
1278 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
1279 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1280 Date: Wed Sep 10 22:48:05 2008 +0200
1281
1282 nvedit: rename error comment to CONFIG_ENV_IS_IN_
1283
1284 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1285
1286 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
1287 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1288 Date: Wed Sep 10 22:48:05 2008 +0200
1289
1290 cmd_mem: Move conditional compilation to Makefile
1291
1292 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1293
1294 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
1295 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1296 Date: Wed Sep 10 22:48:05 2008 +0200
1297
1298 move cmd_get_data_size to command.c
1299
1300 add CMD_DATA_SIZE macro to enable it
1301
1302 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1303
1304 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
1305 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1306 Date: Wed Sep 10 22:48:04 2008 +0200
1307
1308 env_flash: Move conditional compilation to Makefile
1309
1310 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1311
1312 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
1313 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1314 Date: Wed Sep 10 22:48:04 2008 +0200
1315
1316 rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
1317
1318 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1319
1320 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
1321 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1322 Date: Wed Sep 10 22:48:03 2008 +0200
1323
1324 cleanup use of CFG_ENV_IS_IN_FLASH
1325
1326 - #if CFG_ENV_IS_IN_FLASH
1327 - #if (CFG_ENV_IS_IN_FLASH == 1)
1328 - #define CFG_ENV_IS_IN_FLASH 0
1329
1330 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1331
1332 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
1333 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1334 Date: Wed Sep 10 22:48:01 2008 +0200
1335
1336 rename environment.c in env_embedded.c to reflect is functionality
1337
1338 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1339
1340 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
1341 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1342 Date: Wed Sep 10 22:48:01 2008 +0200
1343
1344 env_nowhere: Move conditional compilation to Makefile
1345
1346 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1347
1348 commit 93f6d72544da4510a146bc4c93d609b0116cde37
1349 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1350 Date: Wed Sep 10 22:48:00 2008 +0200
1351
1352 rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
1353
1354 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1355
1356 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
1357 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1358 Date: Wed Sep 10 22:48:00 2008 +0200
1359
1360 env_sf: Move conditional compilation to Makefile
1361
1362 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1363
1364 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
1365 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1366 Date: Wed Sep 10 22:48:00 2008 +0200
1367
1368 rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
1369
1370 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1371
1372 commit 55c5f49910ec8225347aa1d211352a84de6649b4
1373 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1374 Date: Wed Sep 10 22:48:00 2008 +0200
1375
1376 env_onenand: Move conditional compilation to Makefile
1377
1378 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1379
1380 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
1381 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1382 Date: Wed Sep 10 22:47:59 2008 +0200
1383
1384 rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
1385
1386 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1387
1388 commit 957a0e69575683efd70ace147746bbb3d8e7c501
1389 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1390 Date: Wed Sep 10 22:47:59 2008 +0200
1391
1392 env_nvram: Move conditional compilation to Makefile
1393
1394 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1395
1396 commit 9314cee6917444ab88bd4e758da7a30975120187
1397 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1398 Date: Wed Sep 10 22:47:59 2008 +0200
1399
1400 rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
1401
1402 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1403
1404 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
1405 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1406 Date: Wed Sep 10 22:47:59 2008 +0200
1407
1408 env_nand: Move conditional compilation to Makefile
1409
1410 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1411
1412 commit 51bfee192099206a4397f15f3b93516e01f58ab0
1413 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1414 Date: Wed Sep 10 22:47:58 2008 +0200
1415
1416 rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
1417
1418 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1419
1420 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
1421 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1422 Date: Wed Sep 10 22:47:58 2008 +0200
1423
1424 env_dataflash: Move conditional compilation to Makefile
1425
1426 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1427
1428 commit 057c849c45b9ee19df8ff3acdeee66be52819962
1429 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1430 Date: Wed Sep 10 22:47:58 2008 +0200
1431
1432 rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
1433
1434 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1435
1436 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
1437 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1438 Date: Wed Sep 10 22:47:52 2008 +0200
1439
1440 cmd_eeprom: Move conditional compilation to Makefile
1441
1442 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1443
1444 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
1445 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1446 Date: Fri Sep 5 09:19:54 2008 +0200
1447
1448 env_eeprom: Move conditional compilation to Makefile
1449
1450 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1451
1452 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
1453 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1454 Date: Fri Sep 5 09:19:30 2008 +0200
1455
1456 rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
1457
1458 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1459
1460 commit 32628c5008105a732212003d83b75f05e5243bb2
1461 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1462 Date: Sat Aug 30 23:54:58 2008 +0200
1463
1464 cmd_mac: Move conditional compilation to Makefile
1465
1466 finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
1467 start in commit ad8f8687b78c3e917b173f038926695383c55555
1468
1469 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1470
1471 commit e5648acab153f0f429bfc714902c5aaa7879f71b
1472 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1473 Date: Sat Aug 30 23:47:41 2008 +0200
1474
1475 cmd_fdc: Move conditional compilation to Makefile
1476
1477 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1478
1479 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
1480 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1481 Date: Sat Aug 30 23:47:38 2008 +0200
1482
1483 common/Makefile: add core command section
1484
1485 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1486
1487 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
1488 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1489 Date: Sat Aug 30 23:29:57 2008 +0200
1490
1491 cmd_vfd: Move conditional compilation to Makefile
1492
1493 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1494
1495 commit 6644641d072aee3087da129d8443187196a4d8a9
1496 Author: Scott Wood <scottwood@freescale.com>
1497 Date: Wed Sep 10 11:48:49 2008 -0500
1498
1499 delta, zylonite: Update nand_oobinfo to nand_ecclayout.
1500
1501 This is part of the switch to newer upstream MTD code.
1502
1503 Signed-off-by: Scott Wood <scottwood@freescale.com>
1504
1505 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
1506 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
1507 Date: Sat Aug 30 17:06:55 2008 -0400
1508
1509 ARM DaVinci: Fix broken HW ECC for large page NAND.
1510
1511 Based on original patch by Bernard Blackham <bernard@largestprime.net>
1512
1513 U-boot's HW ECC support for large page NAND on Davinci is completely
1514 broken. Some kernels, such as the 2.6.10 one supported by
1515 MontaVista for DaVinci, rely upon this broken behaviour as they
1516 share the same code for ECCs. In the existing scheme, error
1517 detection *might* work on large page, but error correction
1518 definitely does not. Small page ECC correction works, but the
1519 format is not compatible with the mainline git kernel.
1520
1521 This patch adds ECC code that matches what is currently in the
1522 Davinci git repository (since NAND support was added in 2.6.24).
1523 This makes the ECC and OOB layout written by u-boot compatible with
1524 Linux for both small page and large page devices and fixes ECC
1525 correction for large page devices.
1526
1527 The old behaviour can be restored by defining the macro
1528 CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
1529
1530 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
1531 Acked-by: Sergey Kubushyn <ksi@koi8.net>
1532 Signed-off-by: Scott Wood <scottwood@freescale.com>
1533
1534 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
1535 Author: Heiko Schocher <hs@denx.de>
1536 Date: Wed Sep 10 11:15:28 2008 +0200
1537
1538 muas3001: update BR4 settings
1539
1540 Also set up the port pins for using I2C.
1541
1542 Signed-off-by: Heiko Schocher <hs@denx.de>
1543
1544 commit 3591293509e0c0bcf244b0f974775bff2e25697e
1545 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
1546 Date: Wed Sep 10 09:43:49 2008 +0300
1547
1548 autoscr: Fix one-character lines and non-newline terminated scripts
1549
1550 When not using hush, the autoscr command now executes lines that are
1551 only one character long. It also runs the last line of scripts even if
1552 it does not end in a newline.
1553
1554 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
1555
1556 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
1557 Author: Victor Gallardo <vgallardo@amcc.com>
1558 Date: Tue Sep 9 15:13:29 2008 -0700
1559
1560 ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
1561
1562 On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
1563 and glacier.
1564
1565 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
1566
1567 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
1568 Author: Heiko Schocher <hs@denx.de>
1569 Date: Mon Sep 8 10:21:11 2008 +0200
1570
1571 muas3001: added support for the LM75 sensor.
1572
1573 Signed-off-by: Heiko Schocher <hs@denx.de>
1574
1575 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
1576 Author: Heiko Schocher <hs@denx.de>
1577 Date: Mon Sep 8 10:20:19 2008 +0200
1578
1579 muas3001: activate WDT for the muas3001 board.
1580
1581 Signed-off-by: Heiko Schocher <hs@denx.de>
1582
1583 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
1584 Author: Heiko Schocher <hs@denx.de>
1585 Date: Mon Sep 8 10:19:36 2008 +0200
1586
1587 muas3001: added 64MB SDRAM autodetection.
1588
1589 Signed-off-by: Heiko Schocher <hs@denx.de>
1590
1591 commit 5251469943895de4bb9a04d5053352cc22acb7d5
1592 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
1593 Date: Thu Aug 21 07:12:26 2008 -0700
1594
1595 Fix printf errors under -DDEBUG
1596
1597 Fix printf format-string/arg mismatches under -DDEBUG.
1598
1599 These warnings occur with DEBUG defined for a platform using
1600 cpu/mpc85xx. Users of other architectures can unearth similar
1601 problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
1602 after "CFLAGS += $(call cc-option,-fno-stack-protector)".
1603
1604 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
1605 Signed-off-by: Andy Fleming <afleming@freescale.com>
1606
1607 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
1608 Author: Wolfgang Denk <wd@denx.de>
1609 Date: Tue Sep 9 23:55:18 2008 +0200
1610
1611 Update CHANGELOG, prepare 2008-10-rc1 release
1612
1613 Signed-off-by: Wolfgang Denk <wd@denx.de>
1614
1615 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
1616 Author: Kumar Gala <galak@kernel.crashing.org>
1617 Date: Mon Sep 8 08:51:29 2008 -0500
1618
1619 85xx: Ensure timebase is zero on secondary cores
1620
1621 The e500um says the timebase is volatile out of reset. To ensure
1622 TB sync works we need to make sure its zero.
1623
1624 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1625
1626 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
1627 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1628 Date: Tue Sep 9 22:18:24 2008 +0200
1629
1630 bootm_load_os: fix load_end debug message
1631
1632 print load_end value not pointer
1633
1634 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1635
1636 commit 1d9af0be764960e6cc1c093e97176c3542796820
1637 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1638 Date: Tue Sep 9 22:18:23 2008 +0200
1639
1640 bootm: enable fdt support only on ppc, m68k and sparc
1641
1642 ...as done in image.c
1643
1644 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1645
1646 commit 748b5274e76f81df85cfcffaffedc323678d0623
1647 Author: Markus Heidelberg <markus.heidelberg@web.de>
1648 Date: Tue Sep 9 18:51:05 2008 +0200
1649
1650 common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
1651
1652 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
1653
1654 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
1655 Author: Markus Heidelberg <markus.heidelberg@web.de>
1656 Date: Tue Sep 9 17:31:46 2008 +0200
1657
1658 gitignore: add tags files and Vim swap file
1659
1660 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
1661
1662 commit 1d9b67b23fca6a25154333733204339802510720
1663 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
1664 Date: Tue Sep 9 17:52:47 2008 +0900
1665
1666 add board_eth_init() for sh7785lcr board
1667
1668 Fix the problem that cannot work RTL8169 on sh7785lcr board.
1669
1670 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
1671
1672 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
1673 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
1674 Date: Wed Aug 6 16:08:41 2008 -0500
1675
1676 mtd: SPI Flash: Support the STMicro Flash
1677
1678 Add MTD SPI Flash support for M25P16, M25P20, M25P32,
1679 M25P40, M25P64, M25P80, M25P128.
1680
1681 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
1682 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
1683
1684 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
1685 Author: Wolfgang Denk <wd@denx.de>
1686 Date: Tue Sep 9 17:55:31 2008 +0200
1687
1688 trab: fix build problem after change to use do_div()
1689
1690 We must link with libgeneric now.
1691
1692 Signed-off-by: Wolfgang Denk <wd@denx.de>
1693
1694 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
1695 Author: Ryan CHEN <ryan.chen@st.com>
1696 Date: Wed Aug 20 13:00:17 2008 -0400
1697
1698 Correct drv_usb_kbd_init function
1699
1700 The patch is that check if usb_get_dev_index() function return valid
1701 pointer. If valid, continue. Otherwise return -1.
1702
1703 Signed-off-by: Ryan Chen <ryan.chen@st.com>
1704 Acked-by: Markus Klotzbuecher <mk@denx.de>
1705
1706 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
1707 Author: Remy Bohmer <linux@bohmer.net>
1708 Date: Wed Aug 20 11:22:02 2008 +0200
1709
1710 Make usb-stop() safe to call multiple times in a row.
1711
1712 A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
1713 enabled the usb_stop() command in common/cmd_bootm.c which was
1714 not enabled for some time, because no board did actually set the
1715 CFG_CMD_USB flag. So, now the usb_stop() is executed before
1716 loading the linux kernel.
1717
1718 However, the usb_ohci driver hangs up (at least on AT91SAM) if the
1719 driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
1720 If some other piece of code calls usb_stop() before the bootm command,
1721 this command will hangup the system during boot.
1722 (usb start and stop is typically used while booting from usb memory stick)
1723
1724 But, stopping the usb stack twice is useless anyway, and a flag already
1725 existed that kept track on the usb_init()/usb_stop() calls.
1726 So, we now check if the usb stack is really started before we stop it.
1727
1728 This problem is now fixed in both the upper as low-level layer.
1729
1730 Signed-off-by: Remy Bohmer <linux@bohmer.net>
1731 Acked-by: Markus Klotzbuecher <mk@denx.de>
1732
1733 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
1734 Author: Wolfgang Denk <wd@denx.de>
1735 Date: Tue Sep 9 16:55:47 2008 +0200
1736
1737 Makefile: fix bug introduced by commit 47ffd6c2
1738
1739 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
1740 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1741 Date: Tue Sep 9 10:00:33 2008 -0400
1742
1743 ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
1744
1745 This patch solves the problems compiling ml507, v5fx30teval and
1746 ppc440-generic out of tree.
1747
1748 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1749
1750 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
1751 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
1752 Date: Thu Sep 4 15:35:46 2008 -0300
1753
1754 Fix dev_print when called from usb_stor_info (usb storage command)
1755
1756 Fix output of the usb storage command. It was printing "Device 0: not
1757 available" because IF_TYPE_USB was not included into the switch
1758 statement.
1759
1760 Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
1761
1762 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
1763 Author: Bartlomiej Sieka <tur@semihalf.com>
1764 Date: Tue Sep 9 12:58:16 2008 +0200
1765
1766 FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
1767
1768 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
1769
1770 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
1771 Author: Bartlomiej Sieka <tur@semihalf.com>
1772 Date: Tue Sep 9 12:58:15 2008 +0200
1773
1774 FIT: add ability to check hashes of all images in FIT, improve output
1775
1776 - add function fit_all_image_check_hashes() that verifies if all
1777 hashes of all images in the FIT are valid
1778 - improve output of fit_image_check_hashes() when the hash check fails
1779
1780 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
1781
1782 commit 1de1fa408967cef6804bb046b904114519bb36f0
1783 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1784 Date: Mon Sep 8 20:54:39 2008 +0200
1785
1786 qemu_mips: Update linux bootm to support dynamic cmdline
1787
1788 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1789
1790 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
1791 Author: Peter Tyser <ptyser@xes-inc.com>
1792 Date: Mon Sep 8 14:56:49 2008 -0500
1793
1794 Add support for booting of INTEGRITY operating system uImages
1795
1796 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1797
1798 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
1799 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1800 Date: Mon Sep 8 21:01:29 2008 +0200
1801
1802 mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
1803
1804 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1805
1806 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
1807 Author: Kumar Gala <galak@kernel.crashing.org>
1808 Date: Mon Sep 8 13:57:12 2008 -0500
1809
1810 Remove support for booting ARTOS images
1811
1812 Pantelis Antoniou stated:
1813 AFAIK, it is still used but the products using PPC are long gone.
1814 Nuke it plz (from orbit).
1815
1816 So remove it since it cleans up a usage of env_get_char outside of
1817 the environment code.
1818
1819 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1820
1821 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
1822 Author: Wolfgang Denk <wd@denx.de>
1823 Date: Tue Sep 9 15:45:18 2008 +0200
1824
1825 Makefile: compile and link each module just once
1826
1827 Several source files need to be compiled and linked when one or more
1828 config options are selected. To allow for easy selection in the
1829 Makefiles yet to avoild multiple compilation (which costs build time)
1830 and especially multiple linking (which causes errors), we use
1831 "COBJS = $(sort COBJS-y)" which eliminates duplicates.
1832
1833 By courtesy of Detlev Zundel who suggested this approach.
1834
1835 Signed-off-by: Wolfgang Denk <wd@denx.de>
1836
1837 commit 48d0192fe869948fef14b460b5f0c85bca933693
1838 Author: Andreas Engel <andreas.engel@ericsson.com>
1839 Date: Mon Sep 8 14:30:53 2008 +0200
1840
1841 Moved conditional compile into Makefile
1842
1843 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
1844
1845 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
1846 Author: Andreas Engel <andreas.engel@ericsson.com>
1847 Date: Mon Sep 8 10:17:31 2008 +0200
1848
1849 Merged serial_pl010.c and serial_pl011.c.
1850
1851 They only differ in the init function.
1852 This also adds the missing watchdog support for the PL011.
1853
1854 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
1855
1856 commit 0817d688f307ee2c0598e79175c94a40ce90337b
1857 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1858 Date: Sun Sep 7 17:10:27 2008 -0400
1859
1860 Remove gap fill in srec object v2
1861
1862 SREC files do not need gap fill: The load address is specified in the
1863 file. On the other hand, it can't be avoided in a .bin object. It has
1864 no information about memory location.
1865
1866 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1867
1868 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
1869 Author: Markus Heidelberg <markus.heidelberg@web.de>
1870 Date: Sun Sep 7 20:18:27 2008 +0200
1871
1872 README: fix missing subdirectory in the documentation
1873
1874 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
1875
1876 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
1877 Author: Graeme Russ <graeme.russ@gmail.com>
1878 Date: Sun Sep 7 07:08:42 2008 +1000
1879
1880 Update i386 code (sc520_cdp)
1881
1882 Attempt to bring i386 / sc520 inline with master
1883
1884 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
1885
1886 commit 5608692104efa8d56df803dc79ea41ac3607eee5
1887 Author: Guennadi Liakhovetski <lg@denx.de>
1888 Date: Thu Sep 4 13:01:49 2008 +0200
1889
1890 fw_env: add NAND support
1891
1892 Add support for environment in NAND with automatic NOR / NAND recognition,
1893 including unaligned environment, bad-block skipping, redundant environment
1894 copy.
1895
1896 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
1897
1898 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
1899 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1900 Date: Tue Sep 9 09:50:24 2008 +0200
1901
1902 ppc4xx: Fix out-of-tree building of CPCI405 variants
1903
1904 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1905 Acked-by: Stefan Roese <sr@denx.de>
1906
1907 commit 59f630588e3fdbd698a0a2798e52a8924e899563
1908 Author: Sergei Poselenov <sposelenov@emcraft.com>
1909 Date: Fri Aug 15 15:42:11 2008 +0200
1910
1911 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
1912
1913 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
1914
1915 commit e64987a892353f3d49eb242d997820ef8f538912
1916 Author: Anatolij Gustschin <agust@denx.de>
1917 Date: Fri Aug 15 15:42:13 2008 +0200
1918
1919 85xx: socrates: Enable Lime support.
1920
1921 This patch adds Lime GDC support together with support for the PWM
1922 backlight control through the w83782d chip. The reset pin of the
1923 latter is attached to GPIO, so we need to reset it in
1924 early_board_init_r.
1925
1926 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1927
1928 commit 3e79b588b5199f35016f178fc0d5d1266382097f
1929 Author: Detlev Zundel <dzu@denx.de>
1930 Date: Fri Aug 15 15:42:12 2008 +0200
1931
1932 85xx: Socrates: Major code update.
1933
1934 - Update the local bus ranges in the FDT for Linux for the various
1935 devices connected to the local bus via chip-select.
1936
1937 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
1938 lower than 66 MHz and uses I/O accessor functions consequently.
1939
1940 - UPM data update.
1941
1942 - Update of default environment and configuration. Use I2C multibus
1943 as we do have two I2C buses. Also enable sdram and ext2 commands.
1944
1945 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
1946 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
1947 Signed-off-by: Detlev Zundel <dzu@denx.de>
1948
1949 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
1950 Author: Timur Tabi <timur@freescale.com>
1951 Date: Fri Jul 18 16:52:23 2008 +0200
1952
1953 Update Freescale 85xx boards to sys_eeprom.c
1954
1955 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
1956 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
1957 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
1958 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
1959
1960 Signed-off-by: Timur Tabi <timur@freescale.com>
1961
1962 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
1963 Author: Wolfgang Denk <wd@denx.de>
1964 Date: Tue Sep 9 10:08:02 2008 +0200
1965
1966 lib_ppc/interrupts.c: make board_show_activity() a weak function
1967
1968 This allows to use show_activity() without having to
1969 define an empty board_show_activity() function.
1970
1971 Signed-off-by: Wolfgang Denk <wd@denx.de>
1972
1973 commit fe876787f8743883ce58fed61525eaa2f34da4c5
1974 Author: Wolfgang Denk <wd@denx.de>
1975 Date: Tue Sep 9 10:06:44 2008 +0200
1976
1977 stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
1978
1979 Signed-off-by: Wolfgang Denk <wd@denx.de>
1980
1981 commit 965de106ba8900372c8b16dc60d5acab7f925e38
1982 Author: Wolfgang Denk <wd@denx.de>
1983 Date: Tue Sep 9 10:03:47 2008 +0200
1984
1985 NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
1986
1987 Signed-off-by: Wolfgang Denk <wd@denx.de>
1988
1989 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
1990 Author: Sergei Poselenov <sposelenov@emcraft.com>
1991 Date: Fri Aug 15 15:42:11 2008 +0200
1992
1993 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
1994
1995 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
1996
1997 commit 36241ca29d4804a1006fb3f26069effda5202581
1998 Author: Anatolij Gustschin <agust@denx.de>
1999 Date: Fri Aug 15 15:42:13 2008 +0200
2000
2001 85xx: socrates: Enable Lime support.
2002
2003 This patch adds Lime GDC support together with support for the PWM
2004 backlight control through the w83782d chip. The reset pin of the
2005 latter is attached to GPIO, so we need to reset it in
2006 early_board_init_r.
2007
2008 Signed-off-by: Anatolij Gustschin <agust@denx.de>
2009
2010 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
2011 Author: Detlev Zundel <dzu@denx.de>
2012 Date: Fri Aug 15 15:42:12 2008 +0200
2013
2014 85xx: Socrates: Major code update.
2015
2016 - Update the local bus ranges in the FDT for Linux for the various
2017 devices connected to the local bus via chip-select.
2018
2019 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
2020 lower than 66 MHz and uses I/O accessor functions consequently.
2021
2022 - UPM data update.
2023
2024 - Update of default environment and configuration. Use I2C multibus
2025 as we do have two I2C buses. Also enable sdram and ext2 commands.
2026
2027 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
2028 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
2029 Signed-off-by: Detlev Zundel <dzu@denx.de>
2030
2031 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
2032 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2033 Date: Tue Sep 9 01:22:39 2008 +0200
2034
2035 disk-on-chip: remove duplicate doc_probe declaration
2036
2037 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2038
2039 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
2040 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2041 Date: Tue Sep 9 00:59:40 2008 +0200
2042
2043 onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
2044
2045 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2046
2047 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
2048 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2049 Date: Tue Sep 9 00:59:39 2008 +0200
2050
2051 rs5c372: fix rtc_set prototype
2052
2053 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2054
2055 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
2056 Author: Sergei Poselenov <sposelenov@emcraft.com>
2057 Date: Thu Aug 14 14:08:28 2008 +0200
2058
2059 ARM: fix warning: target CPU does not support interworking
2060
2061 This patch fixes warnings like this:
2062
2063 start.S:0: warning: target CPU does not support interworking
2064
2065 which come from some ARM cross compilers and are caused by hard-coded
2066 (with "--with-cpu=arm9" configuration option) ARM targets (which
2067 support ARM Thumb instructions), while the ARM target selected from
2068 the command line (with "-march=armv4") doesn't support Thumb
2069 instructions.
2070
2071 This warning is issued by the compiler regardless of the real use of
2072 the Thumb instructions in code.
2073
2074 To fix this problem, we use options according to compiler version
2075 being used.
2076
2077 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
2078 Signed-off-by: Wolfgang Denk <wd@denx.de>
2079
2080 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
2081 Author: Sergei Poselenov <sposelenov@emcraft.com>
2082 Date: Thu Aug 14 14:08:28 2008 +0200
2083
2084 ARM: Use do_div() instead of division for "long long".
2085
2086 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
2087 Signed-off-by: Wolfgang Denk <wd@denx.de>
2088
2089 commit 8febd13c69cb68652577d1a9fcbde954bf784155
2090 Author: Timur Tabi <timur@freescale.com>
2091 Date: Fri Jul 18 16:52:23 2008 +0200
2092
2093 Update Freescale 85xx boards to sys_eeprom.c
2094
2095 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
2096 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
2097 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
2098 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
2099
2100 Signed-off-by: Timur Tabi <timur@freescale.com>
2101
2102 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
2103 Author: Wolfgang Denk <wd@denx.de>
2104 Date: Mon Sep 8 23:26:22 2008 +0200
2105
2106 lib_arm/bootm.c: fix compile warnings
2107
2108 bootm.c:128: warning: label 'error' defined but not used
2109 bootm.c:65: warning: unused variable 'ret'
2110
2111 Signed-off-by: Wolfgang Denk <wd@denx.de>
2112
2113 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
2114 Author: Wolfgang Denk <wd@denx.de>
2115 Date: Mon Sep 8 22:46:42 2008 +0200
2116
2117 ml507: fix out of tree build problem
2118
2119 Signed-off-by: Wolfgang Denk <wd@denx.de>
2120
2121 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
2122 Author: Wolfgang Denk <wd@denx.de>
2123 Date: Mon Sep 8 22:10:28 2008 +0200
2124
2125 common/cmd_bootm.c: fix printf() format warnings
2126
2127 Signed-off-by: Wolfgang Denk <wd@denx.de>
2128
2129 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
2130 Author: Wolfgang Denk <wd@denx.de>
2131 Date: Mon Sep 8 22:37:45 2008 +0200
2132
2133 BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
2134
2135 missing doc_probe() prototype.
2136
2137 Signed-off-by: Wolfgang Denk <wd@denx.de>
2138
2139 commit 2c5e3cc4994897d364b148942ff23e47783198f6
2140 Author: Wolfgang Denk <wd@denx.de>
2141 Date: Mon Sep 8 21:28:14 2008 +0200
2142
2143 mk48t59: fix compile problem introduced by commit d1e23194
2144
2145 Signed-off-by: Wolfgang Denk <wd@denx.de>
2146
2147 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
2148 Author: Stefan Roese <sr@denx.de>
2149 Date: Mon Sep 8 14:11:12 2008 +0200
2150
2151 ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
2152
2153 This patch moves some 4xx specific prototypes out of include common.h
2154 to a ppc4xx specific header.
2155
2156 Signed-off-by: Stefan Roese <sr@denx.de>
2157
2158 commit ac53ee8318678190bf3c68da477a84a657d86fb0
2159 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2160 Date: Fri Sep 5 15:34:04 2008 +0200
2161
2162 ppc4xx: Update CPCI405(AB) configuration
2163
2164 This patch add FDT support and command line editing capabilities
2165 for CPCI405 and CPCI405AB boards.
2166
2167 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2168 Signed-off-by: Stefan Roese <sr@denx.de>
2169
2170 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
2171 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2172 Date: Fri Sep 5 15:34:03 2008 +0200
2173
2174 ppc4xx: Cleanup CPCI405 linker script
2175
2176 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2177 Signed-off-by: Stefan Roese <sr@denx.de>
2178
2179 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
2180 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2181 Date: Fri Sep 5 15:34:02 2008 +0200
2182
2183 ppc4xx: Update CPCI405 variants handling
2184
2185 This patch replaces the BOARD_REVISION variable in include/config.mk
2186 by a using a temporary include file in the platform directory.
2187
2188 The former way does not work anymore and the latter is also used by
2189 some other boards.
2190
2191 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2192 Signed-off-by: Stefan Roese <sr@denx.de>
2193
2194 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
2195 Author: Stefan Roese <sr@denx.de>
2196 Date: Mon Sep 8 10:01:48 2008 +0200
2197
2198 ppc4xx: Remove CONFIG_CS8952_PHY define
2199
2200 Since this define is only used on one board that was never really in
2201 production, removing this compile time option doesn't hurt and makes
2202 the code more readable.
2203
2204 Signed-off-by: Stefan Roese <sr@denx.de>
2205
2206 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
2207 Author: Stefan Roese <sr@denx.de>
2208 Date: Fri Sep 5 14:11:40 2008 +0200
2209
2210 ppc4xx: Fix compilation warning for PIP405
2211
2212 This patch fixes a compilation warning for the PIP405 board. It moves the
2213 #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
2214 occur anymore. I am a little unsure if this #ifdef is at the correct
2215 place now or if it could be removed completely. This needs to get
2216 tested on the PIP405 board.
2217
2218 Signed-off-by: Stefan Roese <sr@denx.de>
2219
2220 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
2221 Author: Stefan Roese <sr@denx.de>
2222 Date: Fri Sep 5 14:09:09 2008 +0200
2223
2224 ppc4xx: Fix compilation warning for canyonlands & glacier
2225
2226 Signed-off-by: Stefan Roese <sr@denx.de>
2227
2228 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
2229 Author: Kumar Gala <galak@kernel.crashing.org>
2230 Date: Fri Sep 5 14:40:29 2008 -0500
2231
2232 Fix compiler warning in mpc8xxx ddr code
2233
2234 ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
2235 ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
2236 ctrl_regs.c:523: note: 'caslat' was declared here
2237
2238 Add a warning in DDR1 case if cas_latency isn't a value we know about.
2239
2240 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2241 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2242
2243 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
2244 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2245 Date: Mon Sep 1 23:06:23 2008 +0200
2246
2247 rtc: allow rtc_set to return an error and use it in cmd_date
2248
2249 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2250
2251 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
2252 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2253 Date: Mon Sep 1 01:16:33 2008 +0200
2254
2255 ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
2256
2257 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2258
2259 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
2260 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2261 Date: Sun Aug 31 05:37:04 2008 +0900
2262
2263 config.mk: Move arch-specific condition to $(ARCH)_config.mk
2264
2265 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2266
2267 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
2268 Author: Kumar Gala <galak@kernel.crashing.org>
2269 Date: Fri Aug 29 19:08:29 2008 -0500
2270
2271 Prevent crash if random/invalid ramdisks are passed to bootm
2272
2273 Adds returning an error from the ramdisk detection code if
2274 its not a real ramdisk (invalid). There is no reason we can't
2275 just return back to the console if we detect an invalid
2276 ramdisk or CRC error.
2277
2278 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2279
2280 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
2281 Author: Anatolij Gustschin <agust@denx.de>
2282 Date: Fri Aug 29 21:04:45 2008 +0200
2283
2284 Prevent crash if random DTB address is passed to bootm
2285
2286 This patch adds bootm_start() return value check. If
2287 error status is returned, we do not proceed further to
2288 prevent board reset or crash as we still can recover
2289 at this point.
2290
2291 Signed-off-by: Anatolij Gustschin <agust@denx.de>
2292
2293 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
2294 Author: Andrew Dyer <adyer@righthandtech.com>
2295 Date: Fri Aug 29 12:30:39 2008 -0500
2296
2297 clean up some #if !defined() in drivers/video/cfb_console.c
2298
2299 rearrange some #if !defined() / #else / #endif statements to remove
2300 the negative logic.
2301
2302 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
2303
2304 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
2305 Author: Kyungmin Park <kmpark@infradead.org>
2306 Date: Fri Aug 29 09:02:20 2008 +0900
2307
2308 apollon: use the last memory area for u-boot
2309
2310 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2311
2312 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
2313 Author: Heiko Schocher <hs@denx.de>
2314 Date: Thu Aug 28 13:50:42 2008 +0200
2315
2316 TQM8272: move NAND part in seperate File
2317
2318 I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
2319 because I have no longer access to the hardware.
2320
2321 Signed-off-by: Heiko Schocher <hs@denx.de>
2322
2323 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
2324 Author: Heiko Schocher <hs@denx.de>
2325 Date: Thu Aug 28 13:48:36 2008 +0200
2326
2327 TQM8272: Fix compiling error for the TQM8272 board.
2328
2329 Fix compile problems caused by
2330 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
2331
2332 Signed-off-by: Heiko Schocher <hs@denx.de>
2333
2334 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
2335 Author: Kyungmin Park <kmpark@infradead.org>
2336 Date: Wed Aug 27 14:45:20 2008 +0900
2337
2338 Add JFFS2 command support on OneNAND
2339
2340 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2341
2342 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
2343 Author: Mark Jackson <mpfj@mimc.co.uk>
2344 Date: Mon Aug 25 19:21:30 2008 +0100
2345
2346 Allow console input to be disabled
2347
2348 Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
2349
2350 When CONFIG_DISABLE_CONSOLE is defined, setting
2351 GD_FLG_DISABLE_CONSOLE disables all console input and output.
2352
2353 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
2354
2355 commit 2b22d608f370565c87f55928b524207031419c11
2356 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
2357 Date: Wed Jul 30 12:39:29 2008 +0200
2358
2359 loads: allow negative offsets
2360
2361 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
2362
2363 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
2364 Author: Yuri Tikhonov <yur@emcraft.com>
2365 Date: Thu Sep 4 11:19:05 2008 +0200
2366
2367 USB EHCI: reset root hub
2368
2369 Some of multi-function USB controllers (e.g. ISP1562) allow root hub
2370 resetting only via EHCI registers. So, this patch adds the
2371 corresponding kind of reset to OHCI's hc_reset() if the newly
2372 introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
2373 board).
2374
2375 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
2376 Acked-by: Markus Klotzbuecher <mk@denx.de>
2377
2378 commit 5875d358f025c1b042d8a0f08384b756de7256c9
2379 Author: Yuri Tikhonov <yur@emcraft.com>
2380 Date: Fri Aug 15 15:42:09 2008 +0200
2381
2382 RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
2383
2384 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
2385
2386 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
2387 Author: Stefan Roese <sr@denx.de>
2388 Date: Fri Sep 5 10:47:46 2008 +0200
2389
2390 devices: Use list_add_tail() instead of list_add() to register a device
2391
2392 This patch fixes a problem spotted on Glacier/Canyonlands (and most
2393 likely lots of other board ports), that no serial output was seen
2394 after console initialization in console_init_r(). This is because the
2395 last added console device was used instead of the first added.
2396
2397 This patch fixes this problem by using list_add_tail() instead of
2398 list_add() to register a device. This way the first added console
2399 is used again.
2400
2401 Signed-off-by: Stefan Roese <sr@denx.de>
2402
2403 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
2404 Author: Victor Gallardo <vgallardo@amcc.com>
2405 Date: Thu Sep 4 23:49:36 2008 -0700
2406
2407 ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
2408
2409 This patch adds GPCS, SGMII and M88E1112 PHY support
2410 for the AMCC PPC460GT/EX processors.
2411
2412 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
2413 Signed-off-by: Stefan Roese <sr@denx.de>
2414
2415 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
2416 Author: Adam Graham <agraham@amcc.com>
2417 Date: Wed Sep 3 12:26:59 2008 -0700
2418
2419 ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
2420
2421 Signed-off-by: Adam Graham <agraham@amcc.com>
2422 Signed-off-by: Stefan Roese <sr@denx.de>
2423
2424 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
2425 Author: Adam Graham <agraham@amcc.com>
2426 Date: Wed Sep 3 12:26:28 2008 -0700
2427
2428 ppc4xx: IBM Memory Controller DDR autocalibration routines
2429
2430 Alternate SDRAM DDR autocalibration routine that can be generically used
2431 for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
2432 support of more DIMM/memory chip vendors and gets the DDR autocalibration
2433 values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
2434
2435 Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
2436 "Method_A" and "Method_B". DDR autocalibration Method_A scans the full range
2437 of possible PPC4xx SDRAM Controller DDR autocalibration values and takes a
2438 lot longer to run than Method_B. Method_B executes in the same amount of time
2439 as the currently existing DDR autocalibration routine, i.e. 1 second or so.
2440 Normally Method_B is used and it is set as the default method.
2441
2442 The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
2443 Controller registers.[bit-field]:
2444 1) SDRAM0_RQDC.[RQFD]
2445 2) SDRAM0_RFDC.[RFFD]
2446
2447 This alternate PPC4xx DDR autocalibration code calibrates the following
2448 IBM SDRAM Controller registers.[bit-field]:
2449
2450 1) SDRAM0_WRDTR.[WDTR]
2451 2) SDRAM0_CLKTR.[CKTR]
2452 3) SDRAM0_RQDC.[RQFD]
2453 4) SDRAM0_RFDC.[RFFD]
2454
2455 and will also use the calibrated settings of the above four registers that
2456 produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
2457 register.[bit-field].
2458
2459 Signed-off-by: Adam Graham <agraham@amcc.com>
2460 Signed-off-by: Stefan Roese <sr@denx.de>
2461
2462 commit e07f4a8033b6270b8103049adb6456f660ff4a89
2463 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
2464 Date: Mon Sep 1 13:09:39 2008 -0400
2465
2466 ppc44x: Unification of virtex5 pp440 boards
2467
2468 This patch provides an unificated way of handling xilinx v5 ppc440 boards.
2469
2470 It unificates 3 different things:
2471
2472 1) Source code
2473 A new board called ppc440-generic has been created. This board includes
2474 a generic tlb initialization (Maps the whole memory into virtual) and
2475 defines board_pre_init, checkboard, initdram and get_sys_info weakly,
2476 so, they can be replaced by specific functions.
2477
2478 If a new board needs to redefine any of the previous functions
2479 (specific initialization) it can create a new directory with the
2480 specific initializations needed. (see the example ml507 board).
2481
2482 2) Configuration file
2483 Common configurations are located under configs/xilinx-ppc440.h, this
2484 header file interpretes the xparameters file generated by EDK and
2485 configurates u-boot in correspondence. Example: if there is a Temac,
2486 allows CMD_CONFIG_NET
2487 Specific configuration are located under specific configuration file.
2488 (see the example ml507 board)
2489
2490 3) Makefile
2491 Some work has been done in order to not duplicate work in the Main
2492 Makefile. Please see the attached code.
2493
2494 In order to support new boards they can be implemented in the next way:
2495
2496 a) Simple Generic Board (90% of the time)
2497 Using EDK generates a new xparameters.h file, replace
2498 ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
2499 && make
2500
2501 b) Simple Boards with special u-boot parameters (9 % of the time)
2502 Create a new file under configs for it (use ml507.h as example) and
2503 change your paramaters. Create a new Makefile paragraph and compile
2504
2505 c) Complex boards (1% of the time)
2506 Create a new folder for the board, like the ml507
2507
2508 Finally, it adds support for the Avnet FX30T Evaluation board, following
2509 the new generic structure:
2510
2511 Cheap board by Avnet for evaluating the Virtex5 FX technology.
2512
2513 This patch adds support for:
2514 - UartLite
2515 - 16MB Flash
2516 - 64MB RAM
2517
2518 Prior using U-boot in this board, read carefully the ERRATA by Avnet
2519 to solve some memory initialization issues.
2520
2521 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
2522 Signed-off-by: Stefan Roese <sr@denx.de>
2523
2524 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
2525 Author: Nick Spence <nick.spence@freescale.com>
2526 Date: Tue Sep 2 15:21:16 2008 -0500
2527
2528 mpc83xx: fix mpc8313 in-tree building with NAND
2529
2530 and add mpc8313 NAND build to MAKEALL
2531
2532 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2533 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2534
2535 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
2536 Author: Nick Spence <nick.spence@freescale.com>
2537 Date: Thu Aug 28 14:09:25 2008 -0700
2538
2539 mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
2540
2541 Cleans up some latent issues with the data cache control so that
2542 dcache_enable() and dcache_disable() will work reliably (after
2543 unlock_ram_in_cache() has been called)
2544
2545 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2546 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2547
2548 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
2549 Author: Nick Spence <nick.spence@freescale.com>
2550 Date: Thu Aug 28 14:09:19 2008 -0700
2551
2552 mpc83xx: Store and display Arbiter Event Register values
2553
2554 Record the Arbiter Event Register values and optionally display them.
2555
2556 The Arbiter Event Register can record the type and effective address of
2557 an arbiter error, even through an HRESET. This patch stores the values in
2558 the global data structure.
2559
2560 Display of the Arbiter Event registers immediately after the RSR value
2561 can be enabled with defines. The Arbiter values will only be displayed
2562 if an arbiter event has occured since the last Power On Reset, and either
2563 of the following defines exist:
2564 #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
2565 and type register values
2566 #define CONFIG_DISPLAY_AER_FULL - display and interpret the arbiter
2567 event register values
2568
2569 Address Only transactions are one of the trapped events that can register
2570 as an arbiter event. They occur with some cache manipulation instructions
2571 if the HID0_ABE (Address Broadcast Enable) is set and the memory region
2572 has the MEMORY_COHERENCE WIMG bit set. Setting:
2573 #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
2574 only events, so that it can still capture
2575 other real problems.
2576
2577 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2578 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2579
2580 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
2581 Author: Nick Spence <nick.spence@freescale.com>
2582 Date: Thu Aug 28 14:09:11 2008 -0700
2583
2584 mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
2585
2586 This is needed in unlock_ram_in_cache() because it is called from C and
2587 will corrupt the small data area anchor that is kept in R2.
2588
2589 lock_ram_in_cache() is modified similarly as good coding practice, but
2590 is not called from C.
2591
2592 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2593 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2594
2595 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
2596 Author: Nick Spence <nick.spence@freescale.com>
2597 Date: Fri Aug 22 23:52:50 2008 -0700
2598
2599 MPC83XX: Fix GPIO configuration - set gpio level before direction
2600
2601 Set DAT value before DIR values to avoid creating glitches on the
2602 GPIO signals.
2603
2604 Set gpio level register before direction register to inhibit
2605 glitches on high level output pins.
2606
2607 Dir and data gets cleared at powerup, so high level output lines see
2608 a short low pulse between setting the direction and level registers.
2609
2610 Issue was seen on a new board with the nReset line of the NOR flash
2611 connected to a GPIO. Setting the direction register puts the NOR flash
2612 in reset so the next instruction to set the level cannot get executed.
2613
2614 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2615 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2616 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2617
2618 commit 7007c5975ee900ad70983b0681d3251e221f8321
2619 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2620 Date: Tue Sep 2 02:58:32 2008 +0200
2621
2622 doc/qemu_mips: add doc howto debug u-boot with gdb
2623
2624 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2625
2626 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
2627 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2628 Date: Wed Sep 3 17:15:45 2008 +0200
2629
2630 ppx4xx: Fix broken DASA_SIM board
2631
2632 This patch adds initdram() to DASA_SIM boards that has been
2633 removed accidentally by a previous commit.
2634
2635 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2636 Signed-off-by: Stefan Roese <sr@denx.de>
2637
2638 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
2639 Author: Stefan Roese <sr@denx.de>
2640 Date: Mon Sep 1 08:35:37 2008 +0200
2641
2642 ppc4xx: Remove reference to common/lists.o from some esd linker scripts
2643
2644 This patch removes some direct references to common/lists.o from some
2645 esd linker scripts. This is necessary because the lists source was moved
2646 and is not in the "common" directory anymore.
2647
2648 Signed-off-by: Stefan Roese <sr@denx.de>
2649
2650 commit 97b0734d65f8a0b03df0a335a2addc759da56107
2651 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2652 Date: Tue Sep 2 16:33:05 2008 +0200
2653
2654 ppc4xx: Remove obsolete or unused functions from some esd boards
2655
2656 This patch removes initdram() and testdram() from most esd 405 platforms.
2657 Some boards also have an empty dummy implementation of
2658 misc_init_f(). This is also removed.
2659
2660 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2661 Signed-off-by: Stefan Roese <sr@denx.de>
2662
2663 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
2664 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2665 Date: Tue Sep 2 15:07:54 2008 +0200
2666
2667 ppc4xx: Update VOM405 board configuration
2668
2669 - remove PCI code
2670 - add command line editing
2671 - minor cleanup
2672
2673 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2674 Signed-off-by: Stefan Roese <sr@denx.de>
2675
2676 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
2677 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2678 Date: Tue Sep 2 15:07:53 2008 +0200
2679
2680 ppc4xx: Remove obsolete initdram() function from VOM405 board
2681
2682 This patch removed the obsolete initdram() function from
2683 VOM405 platform file.
2684
2685 Some minor cleanup.
2686
2687 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2688 Signed-off-by: Stefan Roese <sr@denx.de>
2689
2690 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
2691 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2692 Date: Tue Sep 2 15:07:52 2008 +0200
2693
2694 ppc4xx: Cleanup VOM405 linker script
2695
2696 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2697 Signed-off-by: Stefan Roese <sr@denx.de>
2698
2699 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
2700 Author: Matthias Fuchs <mf@esd.eu>
2701 Date: Tue Sep 2 15:07:51 2008 +0200
2702
2703 ppc4xx: Add fdt support for VOM405 boards
2704
2705 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2706 Signed-off-by: Stefan Roese <sr@denx.de>
2707
2708 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
2709 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2710 Date: Tue Sep 2 11:36:14 2008 +0200
2711
2712 ppc4xx: Coding style cleanup
2713
2714 Wrap long lines etc.
2715
2716 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2717 Signed-off-by: Stefan Roese <sr@denx.de>
2718
2719 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
2720 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2721 Date: Tue Sep 2 11:35:56 2008 +0200
2722
2723 ppc4xx: Enable USB on PLU405 boards
2724
2725 This patch enables the PCI-OHCI controller on PLU405 board.
2726
2727 Also the default CPU frequency is updated to 266 MHz and
2728 command line editing is enabled.
2729
2730 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2731 Signed-off-by: Stefan Roese <sr@denx.de>
2732
2733 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
2734 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2735 Date: Tue Sep 2 11:35:35 2008 +0200
2736
2737 ppc4xx: Cleanup PLU405 platform file
2738
2739 This patch
2740 - wraps some long lines
2741 - removes unused/obsolete functions: misc_init_f() and initdram()
2742
2743 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2744 Signed-off-by: Stefan Roese <sr@denx.de>
2745
2746 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
2747 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2748 Date: Tue Sep 2 11:35:04 2008 +0200
2749
2750 ppc4xx: Cleanup PLU405 linker script
2751
2752 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2753 Signed-off-by: Stefan Roese <sr@denx.de>
2754
2755 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
2756 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2757 Date: Tue Sep 2 11:34:36 2008 +0200
2758
2759 ppc4xx: Add fdt support for PLU405 boards
2760
2761 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2762 Signed-off-by: Stefan Roese <sr@denx.de>
2763
2764 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
2765 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2766 Date: Tue Sep 2 11:34:08 2008 +0200
2767
2768 ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
2769
2770 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2771 Signed-off-by: Stefan Roese <sr@denx.de>
2772
2773 commit be1b0d2777e179191a57b138b660547a17e55aad
2774 Author: Jochen Friedrich <jochen@scram.de>
2775 Date: Tue Sep 2 11:24:59 2008 +0200
2776
2777 Don't tftp to unknown flash
2778
2779 If a board has a variable number of flash banks, there are empty entries
2780 in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
2781 "Outside available Flash". This patch skips flash banks with unknown
2782 flash ids.
2783
2784 Signed-off-by: Jochen Friedrich <jochen@scram.de>
2785 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2786
2787 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
2788 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2789 Date: Thu Aug 28 13:40:44 2008 +0900
2790
2791 net: smc911x: Add pkt_data_pull and pkt_data_push function
2792
2793 The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
2794 Byte-swapping is necessary, and so poor performance is inevitable.
2795 This problem cannot evade by the swap function of CHIP, this can
2796 evade by software Byte-swapping.
2797 And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
2798 functions necessary to solve this problem.
2799
2800 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2801 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2802
2803 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
2804 Author: Ben Warren <biggerbadderben@gmail.com>
2805 Date: Sun Aug 31 20:37:00 2008 -0700
2806
2807 Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
2808
2809 Affected boards:
2810 db64360
2811 db64460
2812 katmai
2813 taihu
2814 taishan
2815 yucca
2816 cpc45
2817 cpu87
2818 eXalion
2819 elppc
2820 debris
2821 kvme080
2822 mpc8315erdb
2823 integratorap
2824 ixdp425
2825 oxc
2826 pm826
2827 pm828
2828 pm854
2829 pm856
2830 ppmc7xx
2831 sc3
2832 sc520_spunk
2833 sorcery
2834 tqm8272
2835 tqm85xx
2836 utx8245
2837
2838 Removed initialization of the driver from net/eth.c
2839 Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
2840
2841 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2842
2843 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
2844 Author: Ben Warren <biggerbadderben@gmail.com>
2845 Date: Sun Aug 31 10:45:44 2008 -0700
2846
2847 Moved initialization of TULIP Ethernet controller to board_eth_init()
2848
2849 Affected boards:
2850 cu824
2851 bab7xx
2852 adciop
2853 dasa_sim
2854 mousse
2855 mpc8540eval
2856 musenki
2857 mvblue
2858 pcippc2/pcippc6
2859 sbc8240
2860 stxssa
2861
2862 Removed initialization of the driver from net/eth.c
2863
2864 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2865
2866 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
2867 Author: Ben Warren <biggerbadderben@gmail.com>
2868 Date: Sun Aug 31 10:44:19 2008 -0700
2869
2870 Moved initialization of E1000 Ethernet controller to board_eth_init()
2871
2872 Affected boards:
2873 ap1000
2874 mvbc_p
2875 PM854
2876
2877 Removed initialization of the driver from net/eth.c
2878
2879 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2880
2881 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
2882 Author: Ben Warren <biggerbadderben@gmail.com>
2883 Date: Sun Aug 31 10:40:51 2008 -0700
2884
2885 Moved initialization of plb2800 Ethernet driver to board_eth_init
2886
2887 Affected boards:
2888 purple
2889
2890 Removed initialization of controller from net/eth.c
2891
2892 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2893
2894 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
2895 Author: Ben Warren <biggerbadderben@gmail.com>
2896 Date: Sun Aug 31 10:39:12 2008 -0700
2897
2898 Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
2899
2900 Modified board_eth_init() functions of boards that have this FEC in addition
2901 to other Ethernet controllers.
2902
2903 Affected boards:
2904 bc3450
2905 icecube
2906 mvbc_p
2907 o2dnt
2908 pm520
2909 total5200
2910 tq5200
2911
2912 Removed initialization of controller from net/eth.c
2913
2914 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2915
2916 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
2917 Author: Ben Warren <biggerbadderben@gmail.com>
2918 Date: Sun Aug 31 10:36:38 2008 -0700
2919
2920 Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
2921
2922 Added a cpu_eth_init() function to MPC512x CPU directory and
2923 removed code from net/eth.c
2924
2925 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2926
2927 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
2928 Author: Ben Warren <biggerbadderben@gmail.com>
2929 Date: Sun Aug 31 10:16:59 2008 -0700
2930
2931 Moved initialization of IncaIP Ethernet controller to board_eth_init
2932
2933 Affected boards:
2934 IncaIP
2935
2936 Removed initialization of the driver from net/eth.c
2937
2938 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2939
2940 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
2941 Author: Ben Warren <biggerbadderben@gmail.com>
2942 Date: Sun Aug 31 10:15:26 2008 -0700
2943
2944 Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
2945
2946 Affected boards:
2947 AmigaOneG3SE
2948
2949 Removed initialization of the driver from net/eth.c
2950
2951 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2952
2953 commit 6aca145e067efe75398e9fac97822bd3700de0b2
2954 Author: Ben Warren <biggerbadderben@gmail.com>
2955 Date: Sun Aug 31 10:13:34 2008 -0700
2956
2957 Moved initialization of GT6426x Ethernet controller to board_eth_init()
2958
2959 Affected boards:
2960 EVB64260
2961 P3G4
2962 ZUMA
2963
2964 Removed initialization of the driver from net/eth.c
2965
2966 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2967
2968 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
2969 Author: Ben Warren <biggerbadderben@gmail.com>
2970 Date: Sun Aug 31 10:08:43 2008 -0700
2971
2972 Moved initialization of PCNET Ethernet controller to board_eth_init()
2973
2974 Affected boards:
2975 PN62
2976 sc520_cdp
2977
2978 Removed initialization of the driver from net/eth.c
2979
2980 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2981
2982 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
2983 Author: Ben Warren <biggerbadderben@gmail.com>
2984 Date: Sun Aug 31 10:07:16 2008 -0700
2985
2986 Moved initialization of NATSEMI Ethernet controller to board_eth_init()
2987
2988 Affected boards:
2989 a3000
2990
2991 Removed initialization of the driver from net/eth.c
2992
2993 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2994
2995 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
2996 Author: Ben Warren <biggerbadderben@gmail.com>
2997 Date: Sun Aug 31 10:03:22 2008 -0700
2998
2999 Moved initialization of NS8382X Ethernet controller to board_eth_init()
3000
3001 Affected boards:
3002 bc3450
3003 cpci5200
3004 mecp5200
3005 pf2000
3006 icecube
3007 o2dnt
3008 pm520
3009 sandpoint8245
3010 total5200
3011 tqm5200
3012
3013 Removed initialization of the driver from net/eth.c
3014
3015 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3016
3017 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
3018 Author: Ben Warren <biggerbadderben@gmail.com>
3019 Date: Sun Aug 31 09:59:33 2008 -0700
3020
3021 Moved initialization of TSI108 Ethernet controller to board_eth_init()
3022
3023 Affected boards:
3024 mpc7448hpc2
3025
3026 Removed initialization of the driver from net/eth.c
3027
3028 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3029
3030 commit 0b252f50ae218ae15bfb63af44227972686ebc56
3031 Author: Ben Warren <biggerbadderben@gmail.com>
3032 Date: Sun Aug 31 21:41:08 2008 -0700
3033
3034 Moved initialization of RTL8139 Ethernet controller to board_eth_init()
3035
3036 Affected boards:
3037 hidden_dragon
3038 MPC8544DS
3039 MPC8610HPCN
3040 R2DPLUS
3041 TB0229
3042
3043 Removed initialization of the driver from net/eth.c
3044
3045 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3046
3047 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
3048 Author: Ben Warren <biggerbadderben@gmail.com>
3049 Date: Sun Aug 31 09:49:42 2008 -0700
3050
3051 Moved initialization of RTL8169 Ethernet controller to board_eth_init()
3052
3053 Affected boards:
3054 linkstation
3055 r7780mp
3056
3057 Removed initialization of the driver from net/eth.c
3058
3059 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3060
3061 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
3062 Author: Ben Warren <biggerbadderben@gmail.com>
3063 Date: Tue Aug 12 22:11:53 2008 -0700
3064
3065 Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
3066
3067 Removed at91sam9_eth_initialize() from net/eth.c
3068
3069 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3070
3071 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
3072 Author: Ben Warren <biggerbadderben@gmail.com>
3073 Date: Sun Aug 31 22:22:04 2008 -0700
3074
3075 Introduce netdev.h header file and remove externs
3076
3077 This addresses all drivers whose initializers have already
3078 been moved to board_eth_init()/cpu_eth_init().
3079
3080 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3081
3082 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
3083 Author: Andy Fleming <afleming@freescale.com>
3084 Date: Sun Aug 31 16:33:30 2008 -0500
3085
3086 Add pixis_set_sgmii command
3087
3088 The 8544DS and 8572DS platforms support an optional SGMII riser card to
3089 expose ethernet over an SGMII interface. Once the card is in, it is also
3090 necessary to configure the board such that it uses the card, rather than
3091 the on-board ethernet ports. This can either be done by flipping dip switches
3092 on the motherboard, or by modifying registers in the pixis. Either way
3093 requires a reboot.
3094
3095 This adds a command to allow users to choose which ports are routed through
3096 the SGMII card, and which through the onboard ports. It also allows users
3097 to revert to the current switch settings.
3098
3099 This code does not work on the 8572, as the PIXIS is different.
3100
3101 Signed-off-by: Andy Fleming <afleming@freescale.com>
3102 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3103
3104 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
3105 Author: Andy Fleming <afleming@freescale.com>
3106 Date: Sun Aug 31 16:33:29 2008 -0500
3107
3108 Add SGMII support for the 8544 DS
3109
3110 The 8544 DS has an optional SGMII Riser card, which uses different PHY
3111 addresses. Check if we are in SGMII mode, and invoke the SGMII Riser
3112 setup code if so.
3113
3114 Signed-off-by: Andy Fleming <afleming@freescale.com>
3115 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3116
3117 commit 652f7c2eef76a1340928bd660845441e932d86a2
3118 Author: Andy Fleming <afleming@freescale.com>
3119 Date: Sun Aug 31 16:33:28 2008 -0500
3120
3121 Add support for Freescale SGMII Riser Card
3122
3123 The 8544DS and 8572DS systems have an optional SGMII riser card which
3124 exposes new ethernet ports which are connected to the eTSECs via an
3125 SGMII interface. The SGMII PHYs for this board are offset from the standard
3126 PHY addresses, so this code modifies the passed in tsec_info structure to
3127 use the SGMII PHYs on the card, instead.
3128
3129 Signed-off-by: Andy Fleming <afleming@freescale.com>
3130 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3131
3132 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
3133 Author: Andy Fleming <afleming@freescale.com>
3134 Date: Sun Aug 31 16:33:27 2008 -0500
3135
3136 Add SGMII support to the tsec
3137
3138 Adds support for configuring the TBI to talk properly with the SerDes.
3139
3140 Signed-off-by: Andy Fleming <afleming@freescale.com>
3141 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3142
3143 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
3144 Author: Andy Fleming <afleming@freescale.com>
3145 Date: Sun Aug 31 16:33:26 2008 -0500
3146
3147 Pass in tsec_info struct through tsec_initialize
3148
3149 The tsec driver contains a hard-coded array of configuration information
3150 for the tsec ethernet controllers. We create a default function that works
3151 for most tsecs, and allow that to be overridden by board code. It creates
3152 an array of tsec_info structures, which are then parsed by the corresponding
3153 driver instance to determine configuration. Also, add regs, miiregs, and
3154 devname fields to the tsec_info structure, so that we don't need the kludgy
3155 "index" parameter.
3156
3157 Signed-off-by: Andy Fleming <afleming@freescale.com>
3158 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3159
3160 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
3161 Author: Andy Fleming <afleming@freescale.com>
3162 Date: Sun Aug 31 16:33:25 2008 -0500
3163
3164 tsec: Move tsec.h to include/
3165
3166 This is to prepare the way for board code passing in the tsec_info structure
3167
3168 Signed-off-by: Andy Fleming <afleming@freescale.com>
3169 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3170
3171 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
3172 Author: Sergei Poselenov <sposelenov@emcraft.com>
3173 Date: Fri Jun 6 15:52:44 2008 +0200
3174
3175 PHY: Add support for the M88E1121R Marvell chip.
3176
3177 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
3178 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
3179 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3180
3181 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
3182 Author: Wolfgang Denk <wd@denx.de>
3183 Date: Tue Sep 2 21:17:36 2008 +0200
3184
3185 fw_env.c: fix build problems with MTD_VERSION=old
3186
3187 (as needed to support old 2.4 Linux kernel based releases)
3188
3189 Signed-off-by: Wolfgang Denk <wd@denx.de>
3190
3191 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
3192 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3193 Date: Mon Sep 1 17:11:26 2008 +0200
3194
3195 device: make device_register() clone the device
3196
3197 This is expected by the callers, but this fact was hidden well within
3198 the old list implementation.
3199
3200 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3201
3202 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
3203 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3204 Date: Sun Aug 31 23:28:15 2008 +0900
3205
3206 sh: Remove CC line from board's Makefile
3207
3208 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3209
3210 commit 468eae0660de6fdfd9999944c536ecc4797bd944
3211 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3212 Date: Sun Aug 31 23:25:57 2008 +0900
3213
3214 sh: Replaced "@./mkconfig" for @$(MKCONFIG)
3215
3216 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3217
3218 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
3219 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3220 Date: Thu Aug 28 14:50:52 2008 +0900
3221
3222 sh: Add support sh2 to MAKEALL
3223
3224 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3225 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3226
3227 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
3228 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3229 Date: Thu Aug 28 14:52:23 2008 +0900
3230
3231 sh: Fix compile error rsk7203 board
3232
3233 This boards used old type preprocessor.
3234 This patch fix compile error.
3235
3236 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3237 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3238
3239 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
3240 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3241 Date: Thu Aug 28 14:53:31 2008 +0900
3242
3243 sh: Fix compile error sh7785lcr board
3244
3245 This boards used old type preprocessor.
3246 This patch fix compile error.
3247
3248 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3249 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3250
3251 commit 6f0da4972e48f99d37bc522814940a6022cd3084
3252 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3253 Date: Fri Aug 22 17:39:09 2008 +0900
3254
3255 sh: Renesas Solutions AP325RXA board support
3256
3257 AP325RXA is SH7723's reference board.
3258 This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
3259 In this patch, support SCIF, NOR Flash, and Ethernet.
3260
3261 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3262 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3263
3264 commit ab09f433b50bb83b5e440c335bc3839ee069e534
3265 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3266 Date: Fri Aug 22 17:48:51 2008 +0900
3267
3268 sh: add support Renesas SH7723
3269
3270 Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
3271 This patch supports CPU register's header file and SCIF serial driver.
3272
3273 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3274 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3275
3276 commit c655fad06ba3fb042dbc667724a40e1a9a091248
3277 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3278 Date: Sun Aug 31 23:02:04 2008 +0900
3279
3280 sh: Renesas RSK+ 7203 board support
3281
3282 This adds initial support for the RTE RSK+ SH7203 board.
3283
3284 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3285 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3286
3287 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
3288 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3289 Date: Thu Jul 3 23:11:02 2008 +0900
3290
3291 sh: Add support Renesas SH7203 processor
3292
3293 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3294 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3295
3296 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
3297 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3298 Date: Sun Aug 31 22:48:33 2008 +0900
3299
3300 sh: Add support SH2/SH2A which is CPU of Renesas Technology
3301
3302 Add support SH2/SH2A basic function.
3303
3304 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3305 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3306
3307 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
3308 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3309 Date: Sun Aug 31 22:45:08 2008 +0900
3310
3311 sh: Renesas R0P7785LC0011RL board support
3312
3313 This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
3314 Graphic, Ethernet, USB, SD, RTC, and I2C controller.
3315
3316 This patch supports the following functions:
3317 - 128MB DDR2-SDRAM (29-bit address mode only)
3318 - NOR Flash
3319 - USB host
3320 - Ethernet
3321
3322 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
3323 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3324
3325 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
3326 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
3327 Date: Thu Jul 10 19:32:53 2008 +0900
3328
3329 sh: add support for SH7785
3330
3331 Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
3332 This patch supports CPU register's header file.
3333
3334 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
3335 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3336
3337 commit d6e04258be8f2408845468d3cf722a4cf0433445
3338 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3339 Date: Sun Aug 31 04:45:42 2008 +0200
3340
3341 davinci: fix remaining dm644x_eth
3342
3343 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3344
3345 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
3346 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3347 Date: Sun Aug 31 04:24:56 2008 +0200
3348
3349 fs: Move conditional compilation to Makefile
3350
3351 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3352
3353 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
3354 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3355 Date: Sun Aug 31 04:24:55 2008 +0200
3356
3357 devices: merge to list_head
3358
3359 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3360
3361 commit ef0255fc75f28655f9681422079287d68a14dbaa
3362 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3363 Date: Sun Aug 31 04:24:51 2008 +0200
3364
3365 update linux/list
3366
3367 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3368
3369 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
3370 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3371 Date: Sun Aug 31 00:39:48 2008 +0200
3372
3373 smdk6400: add gitignore
3374
3375 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3376
3377 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
3378 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3379 Date: Sun Aug 31 00:39:48 2008 +0200
3380
3381 smdk6400: Use CONFIG_FLASH_CFI_DRIVER
3382
3383 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3384
3385 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
3386 Author: Guennadi Liakhovetski <lg@denx.de>
3387 Date: Sun Aug 31 00:39:47 2008 +0200
3388
3389 smdk6400: remove redundant bootargs definition
3390
3391 Double bootargs setting leads to a duplicated environmant entry.
3392
3393 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3394
3395 commit 11edcfe260f20dcea79284a3e95270989d433854
3396 Author: Guennadi Liakhovetski <lg@denx.de>
3397 Date: Sun Aug 31 00:39:47 2008 +0200
3398
3399 ARM: Add support for S3C6400 based SMDK6400 board
3400
3401 SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
3402 driver for it too. The board can also boot from the NOR flash, but due to
3403 hardware limitations it can only address 64KiB on it, which is not enough
3404 for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
3405
3406 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3407
3408 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
3409 Author: Guennadi Liakhovetski <lg@denx.de>
3410 Date: Sun Aug 31 00:39:47 2008 +0200
3411
3412 NAND: add NAND driver for S3C64XX
3413
3414 Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
3415
3416 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3417
3418 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
3419 Author: Guennadi Liakhovetski <lg@denx.de>
3420 Date: Sun Aug 31 00:39:47 2008 +0200
3421
3422 S3C64XX: remove broken HWFLOW support from the serial driver
3423
3424 As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
3425 broken and currently unused. Remove it.
3426
3427 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3428
3429 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
3430 Author: Guennadi Liakhovetski <lg@denx.de>
3431 Date: Sun Aug 31 00:39:47 2008 +0200
3432
3433 serial: add S3C64XX serial driver
3434
3435 Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
3436
3437 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3438
3439 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
3440 Author: Guennadi Liakhovetski <lg@denx.de>
3441 Date: Sun Aug 31 00:39:46 2008 +0200
3442
3443 USB: Add support for OHCI controller on S3C6400
3444
3445 Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
3446 try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
3447 it should work too and we could still profit from instruction cache.
3448
3449 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3450
3451 commit 9b07773f8883665b002500c190507e9fd99b7181
3452 Author: Guennadi Liakhovetski <lg@denx.de>
3453 Date: Sun Aug 31 00:39:46 2008 +0200
3454
3455 ARM: Add arm1176 core with S3C6400 SoC
3456
3457 Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
3458
3459 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3460
3461 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
3462 Author: Sandeep Paulraj <s-paulraj@ti.com>
3463 Date: Sun Aug 31 00:39:46 2008 +0200
3464
3465 ARM DaVinci: Changing function names for EMAC driver
3466
3467 DM644x is just one of a series of DaVinci chips that use the EMAC driver.
3468 By replacing all the function names that start with dm644x_* to davinci_*
3469 we make these function more portable. I have tested this change on my EVM.
3470 DM6467 is another DaVinci SOC which uses the EMAC driver and i will
3471 be sending patches that add DaVinci DM6467 support to the list soon.
3472
3473 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3474
3475 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
3476 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
3477 Date: Sat Aug 30 23:21:30 2008 +0200
3478
3479 Integrator[AP/CP] - Remove unused file memsetup.S
3480
3481 - memsetup.s is changed/merged to lowlevel_init.S
3482 memsetup.S has a global label memsetup that just returns back to caller
3483 - memsetup global label is changed/merged to lowlevel_init
3484 This label is not called from anywhere.
3485
3486 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
3487
3488 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
3489 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3490 Date: Wed Aug 27 21:35:52 2008 +0200
3491
3492 ARM DaVinci: Standardize names of directories/files
3493
3494 ARM DaVinci: Standardize names of directories/files.
3495
3496 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3497 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3498
3499 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
3500 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3501 Date: Fri Jul 11 15:10:13 2008 -0400
3502
3503 ARM DaVinci: Move common functions to board/davinci/common
3504
3505 ARM DaVinci: Move common functions to board/davinci/common.
3506
3507 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3508
3509 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
3510 Author: Stefan Roese <sr@denx.de>
3511 Date: Fri Aug 29 11:56:49 2008 +0200
3512
3513 ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
3514
3515 This function is needed for the new NAND infrastructure. We only need
3516 a dummy implementation though for the NDFC.
3517
3518 Signed-off-by: Stefan Roese <sr@denx.de>
3519
3520 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
3521 Author: Stefan Roese <sr@denx.de>
3522 Date: Fri Aug 29 12:06:27 2008 +0200
3523
3524 ppc4xx: Increase image size for NAND boot target
3525
3526 This is needed since now with HUSH enabled (amcc-common.h) the image
3527 read from NAND exceeds the previous limit.
3528
3529 Signed-off-by: Stefan Roese <sr@denx.de>
3530
3531 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
3532 Author: Ben Warren <biggerbadderben@gmail.com>
3533 Date: Thu Aug 28 23:58:30 2008 -0700
3534
3535 Move MPC512x_FEC driver to drivers/net
3536
3537 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3538
3539 commit 80b00af01b3c9154774de2936f05a051e92f6a03
3540 Author: Ben Warren <biggerbadderben@gmail.com>
3541 Date: Thu Aug 28 23:58:29 2008 -0700
3542
3543 Move MPC5xxx_FEC driver to drivers/net
3544
3545 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3546
3547 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
3548 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3549 Date: Fri Aug 29 21:53:57 2008 +0200
3550
3551 cmd_terminal: remove no need ifdef
3552
3553 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3554
3555 commit 578118bdf122877ae769776be002255be447b4fa
3556 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3557 Date: Fri Aug 29 21:53:57 2008 +0200
3558
3559 common/Makefile: order by functionality
3560
3561 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3562
3563 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
3564 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3565 Date: Fri Aug 29 21:53:56 2008 +0200
3566
3567 miiphyutil: Move conditional compilation to Makefile
3568
3569 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3570
3571 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
3572 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3573 Date: Fri Aug 29 21:53:37 2008 +0200
3574
3575 autoscript: Move conditional compilation to Makefile
3576
3577 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3578
3579 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
3580 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3581 Date: Fri Aug 29 01:18:11 2008 +0200
3582
3583 crc16: move to lib_generic
3584
3585 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3586
3587 commit 55195773eacefb22dd483a3c560ea30a14263ce1
3588 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3589 Date: Fri Aug 29 01:18:01 2008 +0200
3590
3591 miiphybb: move to drivers/net/phy
3592
3593 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3594
3595 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
3596 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3597 Date: Thu Aug 28 12:31:51 2008 +0200
3598
3599 soft_spi: move to drivers/spi
3600
3601 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3602
3603 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
3604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3605 Date: Thu Aug 28 12:31:51 2008 +0200
3606
3607 soft_i2c: move to drivers/i2c
3608
3609 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3610
3611 commit 717a222229fdb77703e9174d0eb08a4b41febf49
3612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3613 Date: Thu Aug 28 12:31:48 2008 +0200
3614
3615 gunzip: move to lib_generic
3616
3617 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3618
3619 commit 52aef8f9ba28b747973bf76741c23db658d5773c
3620 Author: Wolfgang Ocker <weo@reccoware.de>
3621 Date: Tue Aug 26 19:55:23 2008 +0200
3622
3623 ppc4xx: NAND configuration
3624
3625 Made NAND bank configuration setting a config variable.
3626
3627 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
3628 Signed-off-by: Stefan Roese <sr@denx.de>
3629
3630 commit 5bc542a593abc9e974fbd34704af85c37c366c60
3631 Author: Victor Gallardo <vgallardo@amcc.com>
3632 Date: Thu Aug 28 16:03:28 2008 -0700
3633
3634 ppc4xx: fix UIC external_interrupt hang on UIC0
3635
3636 This patch fixes a UIC external_interrupt hang if critical or non-critical
3637 interrupt is set at the same time as a normal interrupt is set on UIC0.
3638
3639 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
3640 Signed-off-by: Stefan Roese <sr@denx.de>
3641
3642 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
3643 Author: Prodyut Hazarika <phazarika@amcc.com>
3644 Date: Wed Aug 27 16:39:00 2008 -0700
3645
3646 ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
3647
3648 Removed Magic numbers from Initialization preload registers
3649 Tested with Kilauea, Glacier, Canyonlands and Katmai boards
3650 About 5-7% improvement seen for LMBench memtests
3651
3652 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
3653 Signed-off-by: Stefan Roese <sr@denx.de>
3654
3655 commit 8a490422bed685c9491274ec997f62061d88620b
3656 Author: John Rigby <jrigby@freescale.com>
3657 Date: Thu Aug 28 13:17:07 2008 -0600
3658
3659 ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
3660
3661 MPC5121 rev 2 silicon has a new register for controlling how long
3662 CS is asserted after deassertion of ALE in multiplexed mode.
3663
3664 The default is to assert CS together with ALE. The alternative
3665 is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
3666
3667 The default is wrong for the NOR flash and CPLD on the ADS5121.
3668
3669 This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
3670 it does so conditionally based on silicon rev 2.0 or greater.
3671
3672 Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
3673 Signed-off-by: John Rigby <jrigby@freescale.com>
3674
3675 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
3676 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3677 Date: Tue Aug 19 00:56:46 2008 +0600
3678
3679 Add I2C frequency dividers for ColdFire
3680
3681 The existing I2C freqency dividers for FDR does not apply
3682 to ColdFire platforms; thus, a seperate table is added
3683 based on MCF5xxx Reference Manual
3684
3685 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3686 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3687 Acked-by: Tabi Timur <timur@freescale.com>
3688
3689 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
3690 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3691 Date: Tue Aug 19 03:01:19 2008 +0600
3692
3693 ColdFire: I2C fix for multiple platforms
3694
3695 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3696
3697 commit d53cf6a9c7423cba668b867978648645f71c3090
3698 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3699 Date: Tue Aug 19 00:37:13 2008 +0600
3700
3701 ColdFire: Add CONFIG_MII_INIT for M5272C3
3702
3703 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3704
3705 commit f78ced3028d4130b24a318943a70cf5584ab16f4
3706 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3707 Date: Tue Aug 19 00:26:25 2008 +0600
3708
3709 ColdFire: Multiple fixes for MCF5445x platforms
3710
3711 Add FEC pin set and mii reset in __mii_init(). Change
3712 legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
3713 change cfi_offset to 0, and change CFG_FLASH_CFI to
3714 CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
3715 M54455EVB env settings in configuration file.
3716
3717 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3718
3719 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
3720 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3721 Date: Fri Aug 15 18:24:25 2008 +0000
3722
3723 ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
3724
3725 The user manuals recommend 7.
3726
3727 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
3728 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3729
3730 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
3731 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3732 Date: Fri Aug 15 16:50:07 2008 +0000
3733
3734 ColdFire: Raise uart baudrate to 115200 bps
3735
3736 M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
3737 uart baudrate increase from 19200 to 115200 bps
3738
3739 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3740
3741 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
3742 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3743 Date: Wed Aug 13 12:07:03 2008 +0000
3744
3745 ColdFire: Fix board.c warning message
3746
3747 Implicit declaration of nand_init() warning message
3748
3749 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3750
3751 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
3752 Author: Kumar Gala <galak@kernel.crashing.org>
3753 Date: Wed Aug 27 01:10:34 2008 -0500
3754
3755 FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
3756
3757 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3758
3759 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
3760 Author: Heiko Schocher <hs@denx.de>
3761 Date: Thu Aug 21 20:44:49 2008 +0200
3762
3763 mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
3764
3765 Signed-off-by: Heiko Schocher <hs@denx.de>
3766
3767 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
3768 Author: Kumar Gala <galak@kernel.crashing.org>
3769 Date: Tue Aug 19 14:46:36 2008 -0500
3770
3771 mpc85xx: remove redudant code with lib_ppc/interrupts.c
3772
3773 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
3774 not show how that happened, but there is no good reason for it.
3775
3776 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
3777 they exist.
3778
3779 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3780
3781 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
3782 Author: Kumar Gala <galak@kernel.crashing.org>
3783 Date: Fri Jul 25 13:31:05 2008 -0500
3784
3785 mpc85xx: Add support for the MPC8536DS reference board
3786
3787 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3788 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
3789 Signed-off-by: Dejan Minic <minic@freescale.com>
3790 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
3791 Signed-off-by: Dave Liu <daveliu@freescale.com>
3792 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3793
3794 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
3795 Author: Kumar Gala <galak@kernel.crashing.org>
3796 Date: Tue Aug 12 11:14:19 2008 -0500
3797
3798 mpc85xx: Add support for the MPC8536
3799
3800 The MPC8536 Adds SDHC and SATA controllers to the PQ3 family. We
3801 also have SERDES init code for the 8536.
3802
3803 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3804 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
3805 Signed-off-by: Dejan Minic <minic@freescale.com>
3806 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
3807 Signed-off-by: Dave Liu <daveliu@freescale.com>
3808
3809 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
3810 Author: Kumar Gala <galak@kernel.crashing.org>
3811 Date: Tue Aug 12 11:13:08 2008 -0500
3812
3813 mpc85xx: Add support for the MPC8572DS reference board
3814
3815 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3816
3817 commit 457caecdbca3df21a93abff19eab12dbc61b7897
3818 Author: Kumar Gala <galak@kernel.crashing.org>
3819 Date: Wed Aug 27 01:05:35 2008 -0500
3820
3821 FSL DDR: Remove old SPD support from cpu/mpc85xx
3822
3823 All 85xx boards have been converted to the new code so we can
3824 remove the old SPD DDR setup code.
3825
3826 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3827
3828 commit 0e7927db138976469e7257e29c1338050a50fcd9
3829 Author: Kumar Gala <galak@kernel.crashing.org>
3830 Date: Wed Aug 27 01:04:07 2008 -0500
3831
3832 FSL DDR: Convert STXSSA to new DDR code.
3833
3834 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3835
3836 commit c360d9b970fbb9c13744c355879671165bbb9b9e
3837 Author: Kumar Gala <galak@kernel.crashing.org>
3838 Date: Wed Aug 27 01:03:42 2008 -0500
3839
3840 FSL DDR: Convert STXGP3 to new DDR code.
3841
3842 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3843
3844 commit 8e55313b7ae12352a343f9b9962e662dbd897187
3845 Author: Kumar Gala <galak@kernel.crashing.org>
3846 Date: Tue Aug 26 23:52:58 2008 -0500
3847
3848 FSL DDR: Convert SBC8560 to new DDR code.
3849
3850 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3851
3852 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
3853 Author: Kumar Gala <galak@kernel.crashing.org>
3854 Date: Tue Aug 26 23:52:32 2008 -0500
3855
3856 FSL DDR: Convert MPC8540EVAL to new DDR code.
3857
3858 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3859
3860 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
3861 Author: Kumar Gala <galak@kernel.crashing.org>
3862 Date: Tue Aug 26 23:52:07 2008 -0500
3863
3864 FSL DDR: Convert PM856 to new DDR code.
3865
3866 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3867
3868 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
3869 Author: Kumar Gala <galak@kernel.crashing.org>
3870 Date: Tue Aug 26 23:51:49 2008 -0500
3871
3872 FSL DDR: Convert PM854 to new DDR code.
3873
3874 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3875
3876 commit 33b9079ba20926f14238fff863b68a98e938948e
3877 Author: Kumar Gala <galak@kernel.crashing.org>
3878 Date: Tue Aug 26 23:15:28 2008 -0500
3879
3880 FSL DDR: Convert sbc8548 to new DDR code.
3881
3882 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3883
3884 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
3885 Author: Kumar Gala <galak@kernel.crashing.org>
3886 Date: Tue Aug 26 23:14:14 2008 -0500
3887
3888 FSL DDR: Convert atum8548 to new DDR code.
3889
3890 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3891
3892 commit be0bd8234b9777ecd63c4c686f72af070d886517
3893 Author: Kumar Gala <galak@kernel.crashing.org>
3894 Date: Tue Aug 26 22:56:56 2008 -0500
3895
3896 FSL DDR: Convert socrates to new DDR code.
3897
3898 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3899
3900 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
3901 Author: Kumar Gala <galak@kernel.crashing.org>
3902 Date: Tue Aug 26 08:02:30 2008 -0500
3903
3904 FSL DDR: Convert MPC8544DS to new DDR code.
3905
3906 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3907
3908 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
3909 Author: Jon Loeliger <jdl@freescale.com>
3910 Date: Tue Mar 18 13:51:05 2008 -0500
3911
3912 FSL DDR: Convert MPC8568MDS to new DDR code.
3913
3914 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3915 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3916
3917 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
3918 Author: Jon Loeliger <jdl@freescale.com>
3919 Date: Tue Mar 18 13:51:06 2008 -0500
3920
3921 FSL DDR: Convert MPC8548CDS to new DDR code.
3922
3923 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3924 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3925
3926 commit aa11d85cf318b961e029fe50d68ca47d004bce93
3927 Author: Jon Loeliger <jdl@freescale.com>
3928 Date: Mon Mar 17 15:48:18 2008 -0500
3929
3930 FSL DDR: Convert MPC8541CDS to new DDR code.
3931
3932 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3933 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3934
3935 commit 2b40edb10d81da7bba724edbccd7f53777112579
3936 Author: Jon Loeliger <jdl@freescale.com>
3937 Date: Tue Mar 18 11:12:42 2008 -0500
3938
3939 FSL DDR: Convert MPC8555ADS to new DDR code.
3940
3941 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3942 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3943
3944 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
3945 Author: Jon Loeliger <jdl@freescale.com>
3946 Date: Tue Mar 18 11:12:44 2008 -0500
3947
3948 FSL DDR: Convert MPC8560ADS to new DDR code.
3949
3950 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3951 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3952
3953 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
3954 Author: Kumar Gala <galak@kernel.crashing.org>
3955 Date: Fri Jun 6 13:12:18 2008 -0500
3956
3957 FSL DDR: Convert MPC8540ADS to new DDR code.
3958
3959 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3960
3961 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
3962 Author: Kumar Gala <galak@kernel.crashing.org>
3963 Date: Tue Aug 26 21:34:55 2008 -0500
3964
3965 FSL DDR: Add 85xx specific register setting
3966
3967 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3968
3969 commit 6fb1b7346849ccd0c20306143e334f5b76143070
3970 Author: Kumar Gala <galak@kernel.crashing.org>
3971 Date: Mon Jun 9 11:07:46 2008 -0500
3972
3973 FSL DDR: Add e500 TLB helper for DDR code
3974
3975 Provide a helper function that board code can call to map TLBs when
3976 setting up DDR.
3977
3978 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3979
3980 commit d26b739afe5a6760bd345743188759cd9d0f3b47
3981 Author: Andrew Dyer <adyer@righthandtech.com>
3982 Date: Tue Aug 26 17:03:38 2008 -0500
3983
3984 dm9000 remove dead external phy support, gpio fix
3985
3986 dm9000 has code to detect and initialize external phy parts, but later
3987 on in the code the part is forced to use the internal phy
3988 unconditionally. Remove the unused/untested code.
3989
3990 change the GPIO initialization so that only the GPIO used as an
3991 internal phy reset (hardwired in the chip) is set as an output. The
3992 remaining GPIO need to be handled by board specific code to prevent
3993 possible drive conflicts. Set as inputs for safety.
3994
3995 replace a few magic numbers with defines
3996
3997 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
3998 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3999
4000 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
4001 Author: Peter Tyser <ptyser@xes-inc.com>
4002 Date: Tue Aug 26 11:17:48 2008 -0500
4003
4004 Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
4005
4006 cmd_net.c command descriptions were updated to describe the optional
4007 hostIPaddr argument. The dhcp command help message was also updated
4008 to more closely reflect the other commands in cmd_net.c
4009
4010 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4011 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4012
4013 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
4014 Author: Remy Bohmer <linux@bohmer.net>
4015 Date: Wed Aug 20 11:30:28 2008 +0200
4016
4017 Fix bogus error message in the DHCP handler
4018
4019 The DHCP handler has 1 state that is not listed in this case, causing a
4020 failure message when there is actually no failure.
4021
4022 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4023 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4024
4025 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
4026 Author: Remy Bohmer <linux@bohmer.net>
4027 Date: Wed Aug 20 11:30:27 2008 +0200
4028
4029 Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
4030
4031 The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
4032 missing extern inside the net/bootp.h header
4033
4034 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4035 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4036
4037 commit 1803f7f91ff35ca402259065df7557107dcf28a2
4038 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4039 Date: Tue Aug 19 21:26:32 2008 +0000
4040
4041 ColdFire: Add FEC Buffer descriptors in SRAM
4042
4043 Add FEC Buffer descriptors and data buffer in SRAM for
4044 faster execution and access.
4045
4046 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4047 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4048
4049 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
4050 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4051 Date: Thu Aug 21 23:55:11 2008 +0000
4052
4053 Fix ColdFire FEC warning messages
4054
4055 Types mismatch and implicit declaration of icache_invalid()
4056 warning messages
4057
4058 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4059 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4060
4061 commit 6a002171098e968bd5b362347d2831224fab6048
4062 Author: Ben Warren <biggerbadderben@gmail.com>
4063 Date: Sat Jul 12 00:17:50 2008 -0700
4064
4065 Moved initialization of SKGE Ethernet driver to board code.
4066
4067 The only board using this driver is the SL8245 board.
4068 Removed initialization for the driver from net/eth.c
4069
4070 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4071
4072 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
4073 Author: Ben Warren <biggerbadderben@gmail.com>
4074 Date: Sat Jul 12 00:08:45 2008 -0700
4075
4076 Moved conditional compilation to Makefile for SK98 Ethernet driver
4077
4078 Brute-force removal of #ifdefs. Didn't touch the code.
4079 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4080
4081 commit 65d3d99c28dc363d15eaee78225ff643df499b97
4082 Author: Ben Warren <biggerbadderben@gmail.com>
4083 Date: Fri Jul 11 23:42:19 2008 -0700
4084
4085 Moved initialization of ULI526X Ethernet driver to board code.
4086
4087 The only board using this driver is the Freescale MPC8610HPCD board.
4088 Removed initialization for the driver from net/eth.c
4089
4090 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4091
4092 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
4093 Author: Ben Warren <biggerbadderben@gmail.com>
4094 Date: Fri Jul 11 23:15:28 2008 -0700
4095
4096 Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
4097
4098 Added board_eth_init() function to bf537-stamp board.
4099 Removed initialization for the Blackin EMAC driver from net/eth.c
4100
4101 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4102
4103 commit fc363ce35408f348cacced68505f3747a53e3d7c
4104 Author: Ben Warren <biggerbadderben@gmail.com>
4105 Date: Wed Jul 9 01:04:19 2008 -0700
4106
4107 Moved initialization of GRETH Ethernet driver to CPU directory
4108
4109 Added a cpu_eth_init() function to leon2/leon3 CPU directories and
4110 removed code from net/eth.c
4111
4112 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4113
4114 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
4115 Author: Ben Warren <biggerbadderben@gmail.com>
4116 Date: Tue Aug 26 22:16:25 2008 -0700
4117
4118 Moved initialization of MCFFEC Ethernet driver to CPU directory
4119
4120 Added a cpu_eth_init() function to coldfire CPU directories and
4121 removed code from net/eth.c
4122
4123 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4124
4125 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
4126 Author: Ben Warren <biggerbadderben@gmail.com>
4127 Date: Tue Aug 26 22:12:36 2008 -0700
4128
4129 Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
4130
4131 Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
4132 removed code from net/eth.c
4133
4134 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4135
4136 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
4137 Author: Kumar Gala <galak@kernel.crashing.org>
4138 Date: Tue Aug 26 15:01:38 2008 -0500
4139
4140 FSL DDR: Remove old SPD support from cpu/mpc86xx
4141
4142 All 86xx boards have been converted to the new code so we can
4143 remove the old SPD DDR setup code.
4144
4145 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4146
4147 commit 9bd4e5911b750837515466bc7449087698b88e0e
4148 Author: Kumar Gala <galak@kernel.crashing.org>
4149 Date: Tue Aug 26 15:01:37 2008 -0500
4150
4151 FSL DDR: Convert SBC8641D to new DDR code.
4152
4153 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4154
4155 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
4156 Author: Jon Loeliger <jdl@freescale.com>
4157 Date: Tue Aug 26 15:01:36 2008 -0500
4158
4159 FSL DDR: Convert MPC8610HPCD to new DDR code.
4160
4161 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4162 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4163
4164 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
4165 Author: Kumar Gala <galak@kernel.crashing.org>
4166 Date: Tue Aug 26 15:01:35 2008 -0500
4167
4168 FSL DDR: Convert MPC8641HPCN to new DDR code.
4169
4170 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4171 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4172
4173 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
4174 Author: Kumar Gala <galak@kernel.crashing.org>
4175 Date: Tue Aug 26 15:01:34 2008 -0500
4176
4177 FSL DDR: Add 86xx specific register setting
4178
4179 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4180
4181 commit 233fdd502a6c227f476212b3097653ad48d7e254
4182 Author: Kumar Gala <galak@kernel.crashing.org>
4183 Date: Tue Aug 26 15:01:32 2008 -0500
4184
4185 FSL DDR: Add DDR2 DIMM paramter support
4186
4187 Compute DIMM parameters based upon the SPD information.
4188
4189 Signed-off-by: James Yang <James.Yang@freescale.com>
4190 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4191 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4192
4193 commit 05c05a2363a6ac11e0e405926034546ffad71fad
4194 Author: Kumar Gala <galak@kernel.crashing.org>
4195 Date: Tue Aug 26 15:01:30 2008 -0500
4196
4197 FSL DDR: Add DDR1 DIMM paramter support
4198
4199 Compute DIMM parameters based upon the SPD information in spd.
4200
4201 Signed-off-by: James Yang <James.Yang@freescale.com>
4202 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4203 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4204
4205 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
4206 Author: Kumar Gala <galak@kernel.crashing.org>
4207 Date: Tue Aug 26 15:01:29 2008 -0500
4208
4209 FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
4210
4211 The main purpose of this rewrite it to be able to share the same
4212 initialization code on all FSL PowerPC products that have DDR
4213 controllers. (83xx, 85xx, 86xx).
4214
4215 The code is broken up into the following steps:
4216 GET_SPD
4217 COMPUTE_DIMM_PARMS
4218 COMPUTE_COMMON_PARMS
4219 GATHER_OPTS
4220 ASSIGN_ADDRESSES
4221 COMPUTE_REGS
4222 PROGRAM_REGS
4223
4224 This allows us to share more code an easily allow for board specific code
4225 overrides.
4226
4227 Additionally this code base adds support for >4G of DDR and provides a
4228 foundation for supporting interleaving on processors with more than one
4229 controller.
4230
4231 Signed-off-by: James Yang <James.Yang@freescale.com>
4232 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4233 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4234 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4235 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4236
4237 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
4238 Author: Kumar Gala <galak@kernel.crashing.org>
4239 Date: Tue Aug 26 15:01:28 2008 -0500
4240
4241 FSL DDR: Provide a generic set_ddr_laws()
4242
4243 Provide a helper function that will setup the last available
4244 LAWs (upto 2) for DDR. Useful for SPD/dyanmic DDR setting code.
4245
4246 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4247
4248 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
4249 Author: James Yang <James.Yang@freescale.com>
4250 Date: Tue Aug 26 15:01:27 2008 -0500
4251
4252 Add proper SPD definitions for DDR1/2/3
4253
4254 Also adds helper functions for DDR1/2 to verify the checksum.
4255
4256 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4257
4258 commit 285db74716c724ae8a0ff177878fd09a74428c7b
4259 Author: Wolfgang Denk <wd@denx.de>
4260 Date: Wed Aug 27 01:02:48 2008 +0200
4261
4262 Update CHANGELOG
4263
4264 Signed-off-by: Wolfgang Denk <wd@denx.de>
4265
4266 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
4267 Author: Heiko Schocher <hs@denx.de>
4268 Date: Tue Aug 19 10:08:49 2008 +0200
4269
4270 Add support for muas3001 board (MPC8270)
4271
4272 Signed-off-by: Heiko Schocher <hs@denx.de>
4273
4274 commit 322098bff32410d2a00031649b47c4ec90a66d9a
4275 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
4276 Date: Tue Aug 19 08:31:18 2008 +0530
4277
4278 common/cmd_load.c cleanup - remove unused variables
4279
4280 - Remove unused global variable os_data_count.
4281 - Remove unused variable z.
4282
4283 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
4284
4285 commit 306620b762a4f9fa6678568ad2e8772dec145208
4286 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
4287 Date: Mon Aug 18 13:35:27 2008 +0200
4288
4289 remove MVS1 board
4290
4291 MVS1 board has reached end-of-life and can be removed completely.
4292
4293 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4294
4295 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
4296 Author: Kumar Gala <galak@kernel.crashing.org>
4297 Date: Fri Aug 15 08:24:45 2008 -0500
4298
4299 bootm: refactor do_reset and os boot function args
4300
4301 There is no need for each OS specific function to call do_reset() we
4302 can just do it once in bootm. This means its feasible on an error for
4303 the OS boot function to return.
4304
4305 Also, remove passing in cmd_tbl_t as its not needed by the OS boot
4306 functions. flag isn't currently used but might be in the future so
4307 we left it alone.
4308
4309 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4310
4311 commit 40afac22a9c602e55c501c800f1c064324711b56
4312 Author: Kumar Gala <galak@kernel.crashing.org>
4313 Date: Fri Aug 15 08:24:44 2008 -0500
4314
4315 fdt: Added resize command
4316
4317 Resize the fdt to size + padding to 4k boundary
4318
4319 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4320
4321 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
4322 Author: Kumar Gala <galak@kernel.crashing.org>
4323 Date: Fri Aug 15 08:24:43 2008 -0500
4324
4325 fdt: refactor initrd related code
4326
4327 Created a new fdt_initrd() to deal with setting the initrd properties
4328 in the device tree and fixing up the mem reserve. We can use this
4329 both in the choosen node handling and lets us remove some duplicated
4330 code when we fixup the initrd info in bootm on PPC.
4331
4332 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4333
4334 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
4335 Author: Kumar Gala <galak@kernel.crashing.org>
4336 Date: Fri Aug 15 08:24:42 2008 -0500
4337
4338 fdt: refactor fdt resize code
4339
4340 Move the fdt resizing code out of ppc specific boot code and into
4341 common fdt support code.
4342
4343 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4344
4345 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
4346 Author: Kumar Gala <galak@kernel.crashing.org>
4347 Date: Fri Aug 15 08:24:41 2008 -0500
4348
4349 bootm: refactor image detection and os load steps
4350
4351 Created a bootm_start() that handles the parsing and detection of all
4352 the images that will be used by the bootm command (OS, ramdisk, fdt).
4353 As part of this we now tract all the relevant image offsets in the
4354 bootm_headers_t struct. This will allow us to have all the needed
4355 state for future sub-commands and lets us reduce a bit of arch
4356 specific code on SPARC.
4357
4358 Created a bootm_load_os() that deals with decompression and loading
4359 the OS image.
4360
4361 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4362
4363 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
4364 Author: Kumar Gala <galak@kernel.crashing.org>
4365 Date: Fri Aug 15 08:24:40 2008 -0500
4366
4367 bootm: move lmb into the bootm_headers_t structure
4368
4369 To allow for persistent state between future bootm subcommands we
4370 need the lmb to exist in a global state.
4371 Moving it into the bootm_headers_t allows us to do that.
4372
4373 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4374
4375 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
4376 Author: Kumar Gala <galak@kernel.crashing.org>
4377 Date: Fri Aug 15 08:24:39 2008 -0500
4378
4379 bootm: Set working fdt address as part of the bootm flow
4380
4381 Set the fdt working address so "fdt FOO" commands can be used as part
4382 of the bootm flow. Also set an the environment variable "fdtaddr"
4383 with the value.
4384
4385 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4386
4387 commit 06a09918f3903450313e2047a9cc258bf5872f46
4388 Author: Kumar Gala <galak@kernel.crashing.org>
4389 Date: Fri Aug 15 08:24:38 2008 -0500
4390
4391 bootm: refactor fdt locating and relocation code
4392
4393 Move the code that handles finding a device tree blob and relocating
4394 it (if needed) into common code so all arch's have access to it.
4395
4396 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4397
4398 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
4399 Author: Kumar Gala <galak@kernel.crashing.org>
4400 Date: Fri Aug 15 08:24:37 2008 -0500
4401
4402 bootm: refactor ramdisk locating code
4403
4404 Move determing if we have a ramdisk and where its located into the
4405 common code. Keep track of the ramdisk start and end in the
4406 bootm_headers_t image struct.
4407
4408 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4409
4410 commit c160a9544743e80e8889edb2275538e7764ce334
4411 Author: Kumar Gala <galak@kernel.crashing.org>
4412 Date: Fri Aug 15 08:24:36 2008 -0500
4413
4414 bootm: refactor entry point code
4415
4416 Move entry point code out of each arch and into common code.
4417 Keep the entry point in the bootm_headers_t images struct.
4418
4419 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4420
4421 commit 20220d22b9f41446288588cd2e457e0077a18bed
4422 Author: Randy Vinson <rvinson@mvista.com>
4423 Date: Wed Aug 13 11:44:57 2008 -0700
4424
4425 mpc7448hpc2: Fix PCI I/O space mapping.
4426
4427 PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
4428 PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
4429 space such that 0xFA000000 in the processor's address space maps to 0
4430 on the PCI I/O bus.
4431
4432 Signed-off-by Randy Vinson <rvinson@mvista.com>
4433 Acked-by: Roy Zang <tie-fei.zang@freescale.com>
4434
4435 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
4436 Author: Guennadi Liakhovetski <lg@denx.de>
4437 Date: Wed Aug 13 18:10:26 2008 +0200
4438
4439 i.MX31: Specify maintainers for i.MX31-based boards
4440
4441 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4442 Signed-off-by: Wolfgang Denk <wd@denx.de>
4443
4444 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
4445 Author: Wolfgang Denk <wd@denx.de>
4446 Date: Tue Aug 26 15:01:28 2008 +0200
4447
4448 ADS5121: adjust image addresses in RAM and flash
4449
4450 Use the same mapping in flash as used by Linux
4451
4452 Signed-off-by: Wolfgang Denk <wd@denx.de>
4453
4454 commit 19f101412c16edee9fd55db4039e1d68a833b28b
4455 Author: Wolfgang Denk <wd@denx.de>
4456 Date: Tue Aug 26 13:14:34 2008 +0200
4457
4458 cmd_mem.c: Fix help message alignment
4459
4460 Bug was introced by "Big white-space cleanup" (53677ef1)
4461
4462 Signed-off-by: Wolfgang Denk <wd@denx.de>
4463
4464 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
4465 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
4466 Date: Wed Aug 20 11:11:52 2008 +0200
4467
4468 change mvBL-M7 default env and move to vendor subdir
4469
4470 fix mvBL-M7 config and move to matrix_vision subdir
4471
4472 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4473 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4474
4475 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
4476 Author: Nick Spence <nick.spence@freescale.com>
4477 Date: Fri Aug 22 23:52:40 2008 -0700
4478
4479 MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
4480
4481 This patch adds elements to the 83xx sysconf structure and #define values that are used
4482 by mpc83xx family devices.
4483
4484 Signed-off-by: Nick Spence <nick.spence@freescale.com>
4485 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4486
4487 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
4488 Author: Ira W. Snyder <iws@ovro.caltech.edu>
4489 Date: Fri Aug 22 11:00:15 2008 -0700
4490
4491 MPC8349EMDS: Add PCI Agent (PCISLAVE) support
4492
4493 Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
4494 PCI card rather than a host computer.
4495
4496 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
4497 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4498
4499 commit 4ff9aea9d6b5602683a920951ef896996438af62
4500 Author: Ira W. Snyder <iws@ovro.caltech.edu>
4501 Date: Fri Aug 22 11:00:14 2008 -0700
4502
4503 mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
4504
4505 This adds a helper function to unlock the PCI configuration bit, so that
4506 any extra PCI setup (such as outbound windows, etc.) can be done after
4507 using the 83XX_GENERIC_PCI code to set up the PCI bus.
4508
4509 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
4510 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4511
4512 commit 162338e1fcde231ca4d562e5ebd7859456731691
4513 Author: Ira W. Snyder <iws@ovro.caltech.edu>
4514 Date: Fri Aug 22 11:00:13 2008 -0700
4515
4516 MPC8349EMDS: use 83XX_GENERIC_PCI setup code
4517
4518 Change the MPC8349EMDS board to use the generic PCI initialization code
4519 for the mpc83xx cpu.
4520
4521 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
4522 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4523
4524 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
4525 Author: Kim Phillips <kim.phillips@freescale.com>
4526 Date: Mon Aug 25 14:53:09 2008 -0500
4527
4528 fix out of tree building
4529
4530 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4531
4532 commit a49d10cf027d059ee15c262010a05cdaec0961e1
4533 Author: Wolfgang Denk <wd@denx.de>
4534 Date: Mon Aug 25 23:45:41 2008 +0200
4535
4536 Minor coding style cleanup, updte CHANGELOG
4537
4538 Signed-off-by: Wolfgang Denk <wd@denx.de>
4539
4540 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
4541 Author: Stefan Roese <sr@denx.de>
4542 Date: Wed Aug 20 20:29:38 2008 +0200
4543
4544 RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
4545
4546 This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
4547 to combine both config options into one line. This even allows defining
4548 both options and not generating the target object twice.
4549
4550 Signed-off-by: Stefan Roese <sr@denx.de>
4551
4552 commit 079edb913dbae147b50a488cf02e03f473fc5f28
4553 Author: Jens Gehrlein <sew_s@tqs.de>
4554 Date: Fri Jul 4 16:50:05 2008 +0200
4555
4556 MX31: fix bit masks in function mx31_decode_pll()
4557
4558 Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
4559
4560 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
4561
4562 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
4563 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
4564 Date: Mon Aug 25 11:11:34 2008 +0200
4565
4566 Correct ARM Versatile Timer Initialization
4567
4568 - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
4569 -- Timer Value Register @ TIMER Base + 4 is Read-only.
4570 -- Prescale Value (Bits 3-2 of TIMER Control register)
4571 can only be one of 00,01,10. 11 is undefined.
4572 -- CFG_HZ for Versatile board is set to
4573 #define CFG_HZ (1000000 / 256)
4574 So Prescale bits is set to indicate
4575 - 8 Stages of Prescale, Clock divided by 256
4576 - The Timer Control Register has one Undefined/Shouldn't Use Bit
4577 So we should do read/modify/write Operation
4578
4579 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
4580
4581 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
4582 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
4583 Date: Mon Aug 25 11:30:29 2008 +0200
4584
4585 Add ARM AMBA PL031 RTC Support
4586
4587 Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
4588
4589 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
4590 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
4591 Date: Tue Aug 19 16:21:03 2008 -0400
4592
4593 ARM DaVinci: Removed redundant NAND initialization code.
4594
4595 ARM DaVinci: Removed redundant NAND initialization code.
4596
4597 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
4598
4599 commit b3fb663b20d995ca41327db877ddb168279b3f62
4600 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
4601 Date: Tue Aug 19 16:21:00 2008 -0400
4602
4603 ARM DaVinci: Fix compilation error with new MTD code.
4604
4605 ARM DaVinci: Fix compilation error with new MTD code.
4606
4607 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
4608
4609 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
4610 Author: Gerald Van Baren <vanbaren@cideas.com>
4611 Date: Fri Aug 22 14:37:05 2008 -0400
4612
4613 Add note on dereferencing /aliases pointers
4614
4615 Replace the "must quote special characters" note with a hint on
4616 how to dereference /aliases pointers by omitting the leading "/".
4617 This feature was introduced by Kumar Gala as a libfdt enhancement
4618 in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
4619
4620 Example:
4621
4622 => fdt print /aliases
4623 aliases {
4624 ethernet0 = "/qe@e0100000/ucc@2000";
4625 ethernet1 = "/qe@e0100000/ucc@3000";
4626 serial0 = "/soc8360@e0000000/serial@4500";
4627 serial1 = "/soc8360@e0000000/serial@4600";
4628 pci0 = "/pci@e0008500";
4629 };
4630 => fdt print ethernet0
4631 ucc@2000 {
4632 device_type = "network";
4633 compatible = "ucc_geth";
4634 cell-index = <0x1>;
4635 reg = <0x2000 0x200>;
4636 interrupts = <0x20>;
4637 interrupt-parent = <0x2>;
4638 local-mac-address = [00 00 00 00 00 00];
4639 rx-clock-name = "none";
4640 tx-clock-name = "clk9";
4641 phy-handle = <0x3>;
4642 phy-connection-type = "rgmii-id";
4643 pio-handle = <0x4>;
4644 };
4645
4646 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
4647
4648 commit feeca3f578b7f53c032ba203698751c982f8bf5a
4649 Author: Kumar Gala <galak@kernel.crashing.org>
4650 Date: Thu Aug 14 08:28:19 2008 -0500
4651
4652 libfdt: Add support for using aliases in fdt_path_offset()
4653
4654 If the path doesn't start with '/' check to see if it matches some alias
4655 under "/aliases" and substitute the matching alias value in the path
4656 and retry the lookup.
4657
4658 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4659 Acked-by: David Gibson <david@gibson.dropbear.id.au>
4660 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
4661
4662 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
4663 Author: David Gibson <david@gibson.dropbear.id.au>
4664 Date: Wed Aug 6 14:50:49 2008 +1000
4665
4666 libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
4667
4668 As well as fdt_subnode_offset(), libfdt includes an
4669 fdt_subnode_offset_namelen() function that takes the subnode name to
4670 look up not as a NUL-terminated string, but as a string with an
4671 explicit length. This can be useful when the caller has the name as
4672 part of a longer string, such as a full path.
4673
4674 However, we don't have corresponding 'namelen' versions for
4675 fdt_get_property() and fdt_getprop(). There are less obvious use
4676 cases for these variants on property names, but there are
4677 circumstances where they can be useful e.g. looking up property names
4678 which need to be parsed from a longer string buffer such as user input
4679 or a configuration file, or looking up an alias in a path with
4680 IEEE1275 style aliases.
4681
4682 So, since it's very easy to implement such variants, this patch does
4683 so. The original NUL-terminated variants are, of course, implemented
4684 in terms of the namelen versions.
4685
4686 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4687
4688 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
4689 Author: David Gibson <david@gibson.dropbear.id.au>
4690 Date: Tue Jul 29 14:51:22 2008 +1000
4691
4692 libfdt: Forgot one function when cleaning the namespace
4693
4694 In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
4695 libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
4696 chance of collisions with things from whatever package libfdt is
4697 embedded in, pulled into the libfdt build via that environment's
4698 libfdt_env.h.
4699
4700 Except... I missed one. This patch applies the same treatment to
4701 _stringlist_contains(). While we're at it, also make it static since
4702 it's only used in the same file.
4703
4704 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4705
4706 commit 46390da15411351fc3b498bd8c1615f78fe80df0
4707 Author: Wolfram Sang <w.sang@pengutronix.de>
4708 Date: Wed Jul 9 11:22:44 2008 +0200
4709
4710 libfdt: Improve documentation in libfdt.h
4711
4712 Fix a few typos and mistakes.
4713
4714 Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
4715 Acked-by: David Gibson <david@gibson.dropbear.id.au>
4716
4717 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
4718 Author: David Gibson <david@gibson.dropbear.id.au>
4719 Date: Wed Jul 9 14:10:24 2008 +1000
4720
4721 libfdt: Increase namespace-pollution paranoia
4722
4723 libfdt is supposed to easy to embed in projects all and sundry.
4724 Often, it won't be practical to separate the embedded libfdt's
4725 namespace from that of the surrounding project. Which means there can
4726 be namespace conflicts between even libfdt's internal/static functions
4727 and functions or macros coming from the surrounding project's headers
4728 via libfdt_env.h.
4729
4730 This patch, therefore, renames a bunch of libfdt internal functions
4731 and macros and makes a few other chances to reduce the chances of
4732 namespace collisions with embedding projects. Specifically:
4733 - Internal functions (even static ones) are now named _fdt_*()
4734
4735 - The type and (static) global for the error table in
4736 fdt_strerror() gain an fdt_ prefix
4737
4738 - The unused macro PALIGN is removed
4739
4740 - The memeq and streq macros are removed and open-coded in the
4741 users (they were only used once each)
4742
4743 - Other macros gain an FDT_ prefix
4744
4745 - To save some of the bulk from the previous change, an
4746 FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
4747 FDT_ALIGN(x, FDT_TAGSIZE)
4748
4749 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4750
4751 commit c66830263af19831f2b7db307f79d1943febf7f9
4752 Author: David Gibson <david@gibson.dropbear.id.au>
4753 Date: Mon Jul 7 10:14:15 2008 +1000
4754
4755 dtc: Enable and fix -Wcast-qual warnings
4756
4757 Enabling -Wcast-qual warnings in dtc shows up a number of places where
4758 we are incorrectly discarding a const qualification. There are also
4759 some places where we are intentionally discarding the 'const', and we
4760 need an ugly cast through uintptr_t to suppress the warning. However,
4761 most of these are pretty well isolated with the *_w() functions. So
4762 in the interests of maximum safety with const qualifications, this
4763 patch enables the warnings and fixes the existing complaints.
4764
4765 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4766 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
4767
4768 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
4769 Author: David Gibson <david@gibson.dropbear.id.au>
4770 Date: Mon Jul 7 10:10:48 2008 +1000
4771
4772 dtc: Enable and fix -Wpointer-arith warnings
4773
4774 This patch turns on the -Wpointer-arith option in the dtc Makefile,
4775 and fixes the resulting warnings due to using (void *) in pointer
4776 arithmetic. While convenient, pointer arithmetic on void * is not
4777 portable, so it's better that we avoid it, particularly in libfdt.
4778
4779 Also add necessary definition of uintptr_t needed by David Gibson's
4780 changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
4781 comes from stdint.h, which u-boot doesn't have). -- gvb
4782
4783 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4784 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
4785
4786 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
4787 Author: Tirumala R Marri <tmarri@amcc.com>
4788 Date: Thu Aug 21 21:54:53 2008 -0700
4789
4790 ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
4791
4792 During recent PCI-E tests it has been found that current
4793 driverl level and de-emphasis values are not set correctly.
4794 After sweeping throgh all de-ephasis values, it was found that
4795 0x130 is a right value. Where 0x13 is driver level and 0 is
4796 de-emphasis.
4797
4798 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
4799 Signed-off-by: Stefan Roese <sr@denx.de>
4800
4801 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
4802 Author: Remy Bohmer <linux@bohmer.net>
4803 Date: Wed Aug 20 20:46:56 2008 +0200
4804
4805 Make the YAFFS filesystem work
4806
4807 Recently the YAFFS filesystem support has been added to U-boot.
4808 However, just enabling CONFIG_YAFFS2 is not enough to get it working.
4809
4810 ymount will generate an exception (when dereferencing mtd->readoob()), because
4811 the genericDevice is a null pointer. Further, a lot of logging is produced
4812 while using YAFFS fs, so logging should also be disabled.
4813 Both issues are solved by this patch.
4814
4815 With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
4816 in U-boot, as well as in Linux.
4817
4818 Tested on a Atmel AT91SAM9261EK board.
4819
4820 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4821 Acked-by: William Juul <william.juul@tandberg.com>
4822 Signed-off-by: Scott Wood <scottwood@freescale.com>
4823
4824 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
4825 Author: Kyungmin Park <kmpark@infradead.org>
4826 Date: Tue Aug 19 08:42:53 2008 +0900
4827
4828 Fix OneNAND read_oob/write_oob functions compatability
4829
4830 Also sync with kernel OneNAND codes
4831
4832 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4833 Signed-off-by: Scott Wood <scottwood@freescale.com>
4834
4835 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
4836 Author: Scott Wood <scottwood@freescale.com>
4837 Date: Mon Aug 18 17:11:20 2008 -0500
4838
4839 NAND: Remove delay from nand_boot_fsl_elbc.c.
4840
4841 It was for debugging purposes, and shouldn't have been left in.
4842
4843 Signed-off-by: Scott Wood <scottwood@freescale.com>
4844
4845 commit f556483734126793522fb7a8cf36af90da78f084
4846 Author: Stefan Roese <sr@denx.de>
4847 Date: Thu Aug 21 11:05:03 2008 +0200
4848
4849 ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
4850
4851 This patch fixes some minor issues introduced with the patch:
4852 ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
4853
4854 - Rework memory-queue and PLB arbiter optimization code, that the
4855 local variable is not needed anymore. This removes one #ifdef.
4856 - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
4857 of XXX+ 0x01). This was not introduced by Prodyut, just a
4858 copy-paste problem.
4859
4860 Signed-off-by: Stefan Roese <sr@denx.de>
4861
4862 commit 079589bcfb24ba11068460276a3cc9549ab5346f
4863 Author: Prodyut Hazarika <phazarika@amcc.com>
4864 Date: Wed Aug 20 09:38:51 2008 -0700
4865
4866 ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
4867 PPC405EX and PPC460EX/GT/SX
4868
4869 - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
4870 processors
4871 - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
4872 across processors (405 and 440/460)
4873 - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
4874 processors
4875 - Add register bit definitions for Memory Queue Configuration registers
4876
4877 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
4878 Signed-off-by: Stefan Roese <sr@denx.de>
4879
4880 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
4881 Author: Kumar Gala <galak@kernel.crashing.org>
4882 Date: Tue Aug 19 15:41:18 2008 -0500
4883
4884 fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
4885
4886 Move to using the environment variables 'ethaddr', 'eth1addr', etc..
4887 instead of bd->bi_enetaddr, bi_enet1addr, etc.
4888
4889 This makes the code a bit more flexible to the number of ethernet
4890 interfaces.
4891
4892 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4893
4894 commit 4cacf7c64609839f809e2f9c45873f1d65861703
4895 Author: Stefan Roese <sr@denx.de>
4896 Date: Tue Aug 19 14:57:55 2008 +0200
4897
4898 hush: Fix printf debug macro in hush.c so that it usable in U-Boot
4899
4900 This patch changes the debug_printf() marco for U-Boot in hush.c and
4901 moves the definition of DEBUG_SHELL to a place that is actually compiled
4902 under U-Boot.
4903
4904 Signed-off-by: Stefan Roese <sr@denx.de>
4905
4906 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
4907 Author: Heiko Schocher <hs@denx.de>
4908 Date: Tue Aug 19 09:57:41 2008 +0200
4909
4910 cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
4911
4912 Commit 00b1883a4cac59d97cd297b1a3a398db85982865
4913 missed a few boards:
4914 include/configs/M5253DEMO.h
4915 include/configs/ml507.h
4916 include/configs/redwood.h
4917
4918 This patch fixes this.
4919
4920 Signed-off-by: Heiko Schocher <hs@denx.de>
4921
4922 commit 0768b7a872964085eece8d5e9fec9175e9deb161
4923 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4924 Date: Mon Aug 18 13:41:27 2008 +0200
4925
4926 Consolidate strmhz() implementation
4927
4928 ARM, i386, m68k and ppc all have identical implementations of strmhz().
4929 Other architectures don't provide this function at all.
4930
4931 This patch moves strmhz() into lib_generic, reducing code duplication
4932 and providing a more unified API across architectures.
4933
4934 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4935
4936 commit a928d0df211f1d829308d335d19be3ca42558dfc
4937 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
4938 Date: Mon Aug 18 12:02:51 2008 +0200
4939
4940 fix mvbc_p board build warnings
4941
4942 fix build warnings @ mvBC-P board by using correct types, i.e. change
4943 out_be32 to out_be16 and out_8 accordingly.
4944
4945 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4946
4947 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
4948 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4949 Date: Sat Aug 16 18:54:27 2008 +0200
4950
4951 Makefile: fix posix support on find
4952
4953 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4954
4955 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
4956 Author: Axel Beierlein <belatronix@web.de>
4957 Date: Sat Aug 16 00:30:48 2008 +0200
4958
4959 Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
4960
4961 Tested with TQM5200S on STK52XX.200 Board
4962
4963 Signed-off-by: Axel Beierlein <belatronix@web.de>
4964
4965 commit 0800707b6d5041a840a65d556032c15c584b55f8
4966 Author: Peter Tyser <ptyser@xes-inc.com>
4967 Date: Fri Aug 15 14:36:32 2008 -0500
4968
4969 mod_i2c_mem() bugfix
4970
4971 The last used chip, address, and address length were not being
4972 stored for the imm and imn commands.
4973
4974 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4975
4976 commit 4afbef967275b2f636abae86f91b81becee7ad03
4977 Author: Steven A. Falco <sfalco@harris.com>
4978 Date: Fri Aug 15 15:37:31 2008 -0400
4979
4980 Fix typo in spelling of ATAPI.
4981
4982 Correct a small spelling mistake.
4983
4984 Signed-off-by: Steven A. Falco <sfalco@harris.com>
4985
4986 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
4987 Author: Steven A. Falco <sfalco@harris.com>
4988 Date: Fri Aug 15 15:34:10 2008 -0400
4989
4990 Add a hook to allow board-specific PIO mode setting.
4991
4992 This patch adds a hook whereby a board-specific routine can be called to
4993 configure hardware for a PIO mode. The prototype for the board-specific
4994 routine is:
4995
4996 int inline ide_set_piomode(int pio_mode)
4997
4998 ide_set_piomode should be prepared to configure hardware for a pio_mode
4999 between 0 and 6, inclusive. It should return 0 on success or 1 on failure.
5000
5001 Signed-off-by: Steven A. Falco <sfalco@harris.com>
5002
5003 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
5004 Author: Steven A. Falco <sfalco@harris.com>
5005 Date: Fri Aug 15 15:29:12 2008 -0400
5006
5007 Replace enums in ata.h with an include of libata.h
5008
5009 This patch removes some enums from ata.h and replaces them with an
5010 include of libata.h. This way, we eliminate duplicated code, and
5011 prevent errors whereby the different versions could be out of sync.
5012
5013 Signed-off-by: Steven A. Falco <sfalco@harris.com>
5014
5015 commit 0de0afbca865ecf482b4d2b635236746def8518f
5016 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5017 Date: Fri Aug 15 18:32:41 2008 +0200
5018
5019 coldfire: fix CFI drivers activation with new macro
5020
5021 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
5022
5023 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5024
5025 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
5026 Author: Kumar Gala <galak@kernel.crashing.org>
5027 Date: Fri Aug 15 08:24:35 2008 -0500
5028
5029 fdt: fdt addr w/o any args reports back the current working address
5030
5031 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5032
5033 commit f953d99fd528a496b400a706b511eaf8e3ea66af
5034 Author: Kumar Gala <galak@kernel.crashing.org>
5035 Date: Fri Aug 15 08:24:34 2008 -0500
5036
5037 fdt: added the ability to set initrd start/end via chosen command
5038
5039 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5040
5041 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
5042 Author: Kumar Gala <galak@kernel.crashing.org>
5043 Date: Fri Aug 15 08:24:33 2008 -0500
5044
5045 Add command to enable/disable interrupts
5046
5047 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5048
5049 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
5050 Author: Nick Spence <nick.spence@freescale.com>
5051 Date: Tue Aug 19 22:21:16 2008 -0700
5052
5053 CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
5054
5055 This patch fixes a missing vendor code in the flash_real_protect() function.
5056
5057 Signed-off-by: Nick Spence <nick.spence@freescale.com>
5058 Signed-off-by: Stefan Roese <sr@denx.de>
5059
5060 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
5061 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5062 Date: Tue Aug 19 16:53:39 2008 +0000
5063
5064 CFI: Fix AMD Legacy sector protect
5065
5066 New implement sector lock and unlock or softlock commands
5067 do not exist in AMD legacy flash. Thus, causing issue
5068 when erasing AMD legacy flash (such as lv040)
5069
5070 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5071 Signed-off-by: Stefan Roese <sr@denx.de>
5072
5073 commit 492671404140f09d5b21b3d2ce4e362c0692c069
5074 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5075 Date: Wed Aug 20 09:40:16 2008 +0200
5076
5077 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
5078
5079 CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
5080
5081 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5082
5083 commit 33eac2b3d946fc998a09245dfe54d017079b9056
5084 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5085 Date: Wed Aug 20 09:28:36 2008 +0200
5086
5087 hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
5088
5089 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5090
5091 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
5092 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5093 Date: Wed Aug 20 09:27:37 2008 +0200
5094
5095 favr-32-ezkit: Fix printf format warnings
5096
5097 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5098
5099 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
5100 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5101 Date: Fri Aug 15 12:04:25 2008 +0200
5102
5103 MAINTAINERS: Sort avr32 section alphabetically
5104
5105 The rest of the MAINTAINERS file appears to be sorted
5106 almost-alphabetically, but entries for the newly added AVR32 boards were
5107 added somewhat randomly. This patch sorts the list alphabetically again.
5108
5109 Also update my e-mail address. The old one still works, but it may not
5110 work forever.
5111
5112 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5113
5114 commit 13b50fe3bc065c48911fa373231421280855a9d6
5115 Author: Mark Jackson <mpfj@mimc.co.uk>
5116 Date: Wed Jul 30 13:07:27 2008 +0100
5117
5118 avr32: Add MIMC200 board
5119
5120 The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
5121 8MByte FLASH and 128KByte FRAM.
5122
5123 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
5124 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5125
5126 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
5127 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5128 Date: Wed Jul 9 21:07:34 2008 +0900
5129
5130 rtl8169: add support for RTL8110SCL
5131
5132 This patch fixes a problem that RTL8110SCL started transfer
5133 with an incorrect memory address.
5134
5135 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5136 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5137
5138 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
5139 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5140 Date: Wed Jun 25 15:48:52 2008 -0500
5141
5142 Fix dm9000 receive status and len little endian issue
5143
5144 The received status and len was in little endian
5145 format and caused the ethernet unable to proceed
5146 further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
5147
5148 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5149 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5150
5151 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
5152 Author: Kumar Gala <galak@kernel.crashing.org>
5153 Date: Fri Aug 15 08:24:32 2008 -0500
5154
5155 Clean up usage of icache_disable/dcache_disable
5156
5157 There is no point in disabling the icache on 7xx/74xx/86xx parts and not
5158 also flushing the icache. All callers of invalidate_l1_instruction_cache()
5159 call icache_disable() right after. Make it so icache_disable() calls
5160 invalidate_l1_instruction_cache() for us.
5161
5162 Also, dcache_disable() already calls dcache_flush() so there is no point
5163 in the explicit calls of dcache_flush().
5164
5165 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5166
5167 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
5168 Author: Kumar Gala <galak@kernel.crashing.org>
5169 Date: Fri Aug 15 08:24:31 2008 -0500
5170
5171 Update linux bootm to support ePAPR client interface
5172
5173 The ePAPR spec has some subtle differences from the current device
5174 tree based boot interface to the powerpc linux kernel. The powerpc
5175 linux kernel currently ignores the differences that ePAPR specifies.
5176
5177 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5178
5179 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
5180 Author: Wolfgang Denk <wd@denx.de>
5181 Date: Mon Aug 18 23:50:20 2008 +0200
5182
5183 Minor code cleanup: keep lists sorted.
5184
5185 Signed-off-by: Wolfgang Denk <wd@denx.de>
5186
5187 commit d0039d4ed275e6ca09fb417895024ad02be118c4
5188 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
5189 Date: Wed Jul 23 19:10:14 2008 +0200
5190
5191 Add support for ADT7460 I2C monitor chip
5192
5193 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
5194
5195 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
5196 Author: Michal Simek <monstr@monstr.eu>
5197 Date: Mon Jul 14 19:45:45 2008 +0200
5198
5199 video: Clean drivers/video/Makefile
5200
5201 Signed-off-by: Michal Simek <monstr@monstr.eu>
5202
5203 commit 871c18dd301752270e1f74328c846c3104be1e2e
5204 Author: Michal Simek <monstr@monstr.eu>
5205 Date: Mon Jul 14 19:45:37 2008 +0200
5206
5207 rtc: Clean drivers/rtc/Makefile
5208
5209 Signed-off-by: Michal Simek <monstr@monstr.eu>
5210
5211 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
5212 Author: Michal Simek <monstr@monstr.eu>
5213 Date: Mon Jul 14 19:45:35 2008 +0200
5214
5215 i2c: Clean drivers/i2c/ Makefile
5216
5217 Signed-off-by: Michal Simek <monstr@monstr.eu>
5218
5219 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
5220 Author: Harald Welte <laforge@openmoko.org>
5221 Date: Wed Jul 9 22:30:30 2008 +0800
5222
5223 Add 'license' command to U-Boot command line
5224
5225 The 'license' command includes the U-Boot license (GPLv2) into the
5226 actual bootloader binary. The license text can be shown interactively
5227 at the U-Boot commandline.
5228
5229 For products where the commandline can actually be accessed by the
5230 end user, this helps to prevent inadvertent GPL violations, since the
5231 GPLv2 license text can no longer be 'forgotten' to be included into
5232 the product.
5233
5234 The 'license' command can be enabled by CONFIG_CMD_LICENSE.
5235
5236 Signed-off-by: Harald Welte <laforge@openmoko.org>
5237
5238 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
5239 Author: Harald Welte <laforge@gnumonks.org>
5240 Date: Sun Jul 6 15:56:38 2008 +0800
5241
5242 add 'unzip' command to u-boot commandline
5243
5244 [PATCH] add new 'unzip' command to u-boot commandline
5245
5246 common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
5247 memory to memory, and option CONFIG_CMD_UNZIP to enable it
5248
5249 Signed-off-by: Werner Almesberger <werner@openmoko.org>
5250 Signed-off-by: Harald Welte <laforge@openmoko.org>
5251
5252 commit 07efc9e321619c3dec213310c32e011aa6f02783
5253 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5254 Date: Wed Aug 6 19:37:17 2008 -0500
5255
5256 Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
5257
5258 The CFG_ENV_SIZE is not suitable used for SPI flash erase
5259 sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
5260 Add condition check if CFG_ENV_SIZE is larger than
5261 CFG_ENV_SECT_SIZE, calculate the right number of sectors for
5262 erasing.
5263
5264 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5265
5266 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
5267 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5268 Date: Mon Aug 11 15:54:25 2008 +0000
5269
5270 ColdFire: Multiple fixes for M5282EVB
5271
5272 Incorrect CFG_HZ value, change 1000000 to 1000.
5273 Rename #waring to #warning. RAMBAR1 uses twice
5274 in start.S, rename the later to FLASHBAR. Insert
5275 nop for DRAM setup. And, env_offset in linker file.
5276
5277 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5278
5279 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
5280 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5281 Date: Mon Aug 11 15:26:43 2008 +0000
5282
5283 ColdFire: Move m5282evb from board to board/freescale
5284
5285 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5286
5287 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
5288 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5289 Date: Mon Aug 11 15:25:07 2008 +0000
5290
5291 ColdFire: Move m5272c3 from board to board/freescale
5292
5293 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5294
5295 commit 659e9bad629a480f606b286d5703aef7159edf98
5296 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5297 Date: Mon Aug 11 15:23:16 2008 +0000
5298
5299 ColdFire: Move m5271evb from board to board/freescale
5300
5301 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5302
5303 commit 05316f8ece8206339a208ec052f039cd0f7ca922
5304 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5305 Date: Mon Aug 11 13:41:49 2008 +0000
5306
5307 ColdFire: Add M54451EVB platform support for MCF5445x
5308
5309 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5310
5311 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
5312 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5313 Date: Wed Aug 6 19:14:08 2008 -0500
5314
5315 ColdFire: Add Serial Flash support for M54455EVB
5316
5317 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5318
5319 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
5320 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5321 Date: Wed Jul 23 20:38:53 2008 -0500
5322
5323 ColdFire: Implement SBF feature for M5445EVB
5324
5325 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5326
5327 commit a7323bba229203aae2604afde131ab47bad4eadc
5328 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5329 Date: Wed Jul 23 17:53:36 2008 -0500
5330
5331 ColdFire: Add SSPI feature for MCF5445x
5332
5333 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5334
5335 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
5336 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5337 Date: Wed Jul 23 17:37:10 2008 -0500
5338
5339 ColdFire: Use CFI Flash driver for M54455EVB
5340
5341 Remove non-common flash driver in
5342 board/freescale/m54455evb/flash.c. The non-cfi flash will
5343 use CONFIG_FLASH_CFI_LEGACY to configure the flash
5344 attribute.
5345
5346 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5347
5348 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
5349 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5350 Date: Wed Jul 23 17:11:47 2008 -0500
5351
5352 ColdFire: Add M5253DEMO platform support for MCF5253
5353
5354 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5355
5356 commit 80ba61fd82569af40e04d4a089257b81881884f2
5357 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5358 Date: Wed Aug 6 14:17:09 2008 -0500
5359
5360 ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
5361
5362 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5363
5364 commit d361307e73ce1f6fc68760123f37d4876f851f3e
5365 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5366 Date: Wed Aug 6 14:11:36 2008 -0500
5367
5368 ColdFire: Fix M5253EVB dram bring up issue
5369
5370 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5371
5372 commit 4b0708093e15b412296328bf81325cf9b69fe512
5373 Author: Wolfgang Denk <wd@denx.de>
5374 Date: Thu Aug 14 14:41:06 2008 +0200
5375
5376 Coding Style cleanup, update CHANGELOG
5377
5378 Signed-off-by: Wolfgang Denk <wd@denx.de>
5379
5380 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
5381 Author: Scott Wood <scottwood@freescale.com>
5382 Date: Wed Aug 13 18:24:05 2008 -0500
5383
5384 socrates: Update NAND driver to new API.
5385
5386 Also, fix some minor formatting issues, and simplify the handling of
5387 "state" for writes.
5388
5389 Signed-off-by: Scott Wood <scottwood@freescale.com>
5390
5391 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
5392 Author: Scott Wood <scottwood@freescale.com>
5393 Date: Wed Aug 13 18:03:40 2008 -0500
5394
5395 quad100hd: Update NAND driver to new API.
5396
5397 Signed-off-by: Scott Wood <scottwood@freescale.com>
5398
5399 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
5400 Author: Scott Wood <scottwood@freescale.com>
5401 Date: Wed Aug 13 17:53:48 2008 -0500
5402
5403 m5373evb: Update NAND driver to new API.
5404
5405 Signed-off-by: Scott Wood <scottwood@freescale.com>
5406
5407 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
5408 Author: Scott Wood <scottwood@freescale.com>
5409 Date: Wed Aug 13 17:04:30 2008 -0500
5410
5411 s3c24x0: Update NAND driver to new API.
5412
5413 Signed-off-by: Scott Wood <scottwood@freescale.com>
5414
5415 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
5416 Author: Scott Wood <scottwood@freescale.com>
5417 Date: Wed Aug 13 15:56:00 2008 -0500
5418
5419 at91: Update board NAND drivers to current API.
5420
5421 Signed-off-by: Scott Wood <scottwood@freescale.com>
5422
5423 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
5424 Author: Kyungmin Park <kmpark@infradead.org>
5425 Date: Wed Aug 13 09:11:02 2008 +0900
5426
5427 Fix OneNAND build break
5428
5429 Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
5430 - fix bufferram management at erase operation
5431 This patch includes the NAND/OneNAND state filed too.
5432
5433 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
5434 Signed-off-by: Scott Wood <scottwood@freescale.com>
5435
5436 commit 9483df6408c25f16060432de3868901e352e23bc
5437 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5438 Date: Wed Aug 13 01:40:43 2008 +0200
5439
5440 drivers/mtd/nand_legacy: Move conditional compilation to Makefile
5441
5442 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5443
5444 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
5445 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5446 Date: Wed Aug 13 01:40:43 2008 +0200
5447
5448 drivers/mtd/nand: Move conditional compilation to Makefile
5449
5450 rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
5451
5452 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5453
5454 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
5455 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5456 Date: Wed Aug 13 01:40:42 2008 +0200
5457
5458 drivers/mtd/onenand: Move conditional compilation to Makefile
5459
5460 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5461
5462 commit 00b1883a4cac59d97cd297b1a3a398db85982865
5463 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5464 Date: Wed Aug 13 01:40:42 2008 +0200
5465
5466 drivers/mtd: Move conditional compilation to Makefile
5467
5468 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
5469
5470 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5471
5472 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
5473 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5474 Date: Wed Aug 13 01:40:41 2008 +0200
5475
5476 drivers/qe: Move conditional compilation to Makefile
5477
5478 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5479
5480 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
5481 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5482 Date: Wed Aug 13 01:40:40 2008 +0200
5483
5484 drivers/pci: Move conditional compilation to Makefile
5485
5486 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5487
5488 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
5489 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5490 Date: Wed Aug 13 01:40:40 2008 +0200
5491
5492 drivers/misc: Move conditional compilation to Makefile
5493
5494 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5495
5496 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
5497 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5498 Date: Wed Aug 13 01:40:40 2008 +0200
5499
5500 drivers/input: Move conditional compilation to Makefile
5501
5502 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5503
5504 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
5505 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5506 Date: Wed Aug 13 01:40:39 2008 +0200
5507
5508 drivers/dma: Move conditional compilation to Makefile
5509
5510 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5511
5512 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
5513 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5514 Date: Wed Aug 13 01:40:39 2008 +0200
5515
5516 drivers/block: Move conditional compilation to Makefile
5517
5518 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5519
5520 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
5521 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5522 Date: Wed Aug 13 01:40:39 2008 +0200
5523
5524 serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
5525
5526 move also conditional compilation to Makefile
5527
5528 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5529
5530 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
5531 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5532 Date: Wed Aug 13 01:40:38 2008 +0200
5533
5534 serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
5535
5536 move also conditional compilation to Makefile
5537
5538 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5539
5540 commit d6e9ee92e890f67594ab150689510df361133ead
5541 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5542 Date: Wed Aug 13 01:40:38 2008 +0200
5543
5544 common: Move conditional compilation to Makefile
5545
5546 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5547
5548 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
5549 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5550 Date: Wed Aug 13 01:40:09 2008 +0200
5551
5552 mx31: move freescale's mx31 boards to vendor board dir
5553
5554 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5555
5556 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
5557 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5558 Date: Sat Jul 5 23:11:11 2008 +0200
5559
5560 at91: move arch-at91sam9 to arch-at91
5561
5562 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5563
5564 commit 195ccfc5991d48764b2519941e3507f693851d5d
5565 Author: Fathi BOUDRA <fabo@debian.org>
5566 Date: Wed Aug 6 10:06:20 2008 +0200
5567
5568 OneNAND: Fill in MTD function pointers for OneNAND.
5569
5570 onenand_print_device_info():
5571 - Now returns a string to be placed in mtd->name,
5572 rather than calling printf.
5573 - Remove verbose parameter as it becomes useless.
5574
5575 Signed-off-by: Fathi Boudra <fabo@debian.org>
5576 Signed-off-by: Scott Wood <scottwood@freescale.com>
5577
5578 commit aa646643b6bc250cb3a4966bf728876e0c10d329
5579 Author: Guennadi Liakhovetski <lg@denx.de>
5580 Date: Wed Aug 6 21:42:07 2008 +0200
5581
5582 nand_spl: Support page-aligned read in nand_load, use chipselect
5583
5584 Supporting page-aligned reads doesn't incure any sinificant overhead, just
5585 a small change in the algorithm. Also replace in_8 with readb, since there
5586 is no in_8 on ARM.
5587
5588 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5589 Signed-off-by: Scott Wood <scottwood@freescale.com>
5590
5591 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
5592 Author: Scott Wood <scottwood@freescale.com>
5593 Date: Tue Aug 5 11:15:59 2008 -0500
5594
5595 NAND boot: Update large page support for current API.
5596
5597 Also, remove the ctrl variable in favor of passing the constants
5598 directly, and remove redundant (u8) casts.
5599
5600 Signed-off-by: Scott Wood <scottwood@freescale.com>
5601
5602 commit e4c09508545d1c45617ba45391c03c03cbc360b9
5603 Author: Scott Wood <scottwood@freescale.com>
5604 Date: Mon Jun 30 14:13:28 2008 -0500
5605
5606 NAND boot: MPC8313ERDB support
5607
5608 Note that with older board revisions, NAND boot may only work after a
5609 power-on reset, and not after a warm reset. I don't have a newer board
5610 to test on; if you have a board with a 33MHz crystal, please let me know
5611 if it works after a warm reset.
5612
5613 Signed-off-by: Scott Wood <scottwood@freescale.com>
5614
5615 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
5616 Author: Scott Wood <scottwood@freescale.com>
5617 Date: Thu Jun 26 14:06:52 2008 -0500
5618
5619 mpc8313erdb: Enable NAND in config.
5620
5621 Signed-off-by: Scott Wood <scottwood@freescale.com>
5622
5623 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
5624 Author: Guennadi Liakhovetski <lg@denx.de>
5625 Date: Thu Jul 31 12:38:26 2008 +0200
5626
5627 NAND: Do not write or read a whole block if it is larger than the environment
5628
5629 Environment can be smaller than NAND block size, do not need to read a whole
5630 block and minimum for writing is one page. Also remove an unused variable.
5631
5632 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5633 Signed-off-by: Scott Wood <scottwood@freescale.com>
5634
5635 commit eafcabd15f00c142156235c519fcc55b10993241
5636 Author: Marcel Ziswiler <marcel@ziswiler.com>
5637 Date: Sun Jun 22 16:30:06 2008 +0200
5638
5639 NAND: chip->state does not always get set.
5640
5641 Fixes an issue with chip->state not always being set causing troubles.
5642
5643 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
5644 Signed-off-by: Scott Wood <scottwood@freescale.com>
5645
5646 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
5647 Author: Ilya Yanok <yanok@emcraft.com>
5648 Date: Mon Jun 30 15:34:40 2008 +0200
5649
5650 NAND: Scan bad blocks lazily.
5651
5652 Rather than scanning on boot, scan upon the first attempt to check the
5653 badness of a block. This speeds up boot when not using NAND, and reduces
5654 the likelihood of needing to reflash via JTAG if NAND becomes
5655 nonfunctional.
5656
5657 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
5658 Signed-off-by: Scott Wood <scottwood@freescale.com>
5659
5660 commit dfbf617ff055e4216f78d358b0867c548916d14b
5661 Author: Scott Wood <scottwood@freescale.com>
5662 Date: Thu Jun 12 13:20:16 2008 -0500
5663
5664 NAND read/write fix
5665
5666 Implement block-skipping read/write, based on a patch from
5667 Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
5668
5669 Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
5670 Signed-off-by: Scott Wood <scottwood@freescale.com>
5671
5672 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
5673 Author: Scott Wood <scottwood@freescale.com>
5674 Date: Thu Jun 12 13:13:23 2008 -0500
5675
5676 NAND: Always skip blocks on read/write/boot.
5677
5678 Use of the non-skipping versions was almost always (if not always)
5679 an error, and no valid use case has been identified.
5680
5681 Signed-off-by: Scott Wood <scottwood@freescale.com>
5682
5683 commit e1c3dbada349992875934575c97b328ab2cb33ca
5684 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5685 Date: Thu Jun 12 11:10:21 2008 -0500
5686
5687 nand: fsl_upm: convert to updated MTD NAND infrastructure
5688
5689 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5690 Signed-off-by: Scott Wood <scottwood@freescale.com>
5691
5692 commit 300253306acc72b1b2e9faf0987f86551151d7cf
5693 Author: Scott Wood <scottwood@freescale.com>
5694 Date: Thu May 22 15:02:46 2008 -0500
5695
5696 fsl_elbc_nand: Hard-code the FBAR/FPAR split.
5697
5698 The hardware has separate registers for block and page-within-block,
5699 but the division between the two has no apparent relation to the
5700 actual erase block size of the NAND chip.
5701
5702 Signed-off-by: Scott Wood <scottwood@freescale.com>
5703
5704 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
5705 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5706 Date: Fri Mar 28 22:10:54 2008 +0300
5707
5708 fsl_elbc_nand: workaround for hangs during nand write
5709
5710 Using current driver elbc sometimes hangs during nand write. Reading back
5711 last byte helps though (thanks to Scott Wood for the idea).
5712
5713 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5714 Signed-off-by: Scott Wood <scottwood@freescale.com>
5715
5716 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
5717 Author: Scott Wood <scottwood@freescale.com>
5718 Date: Fri Mar 21 16:12:51 2008 -0500
5719
5720 Freescale eLBC FCM NAND driver
5721
5722 This is a driver for the Flash Control Machine of the enhanched Local Bus
5723 Controller found on some Freescale chips (such as the mpc8313 and the
5724 mpc8379).
5725
5726 Signed-off-by: Scott Wood <scottwood@freescale.com>
5727
5728 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
5729 Author: Scott Wood <scottwood@freescale.com>
5730 Date: Tue Mar 18 15:29:14 2008 -0500
5731
5732 Don't panic if a controller driver does ecc its own way.
5733
5734 Some hardware, such as the enhanced local bus controller used on some
5735 mpc83xx chips, does ecc transparently when reading and writing data, rather
5736 than providing a generic calculate/correct mechanism that can be exported to
5737 the nand subsystem.
5738
5739 The subsystem should not BUG() when calculate, correct, or hwctl are
5740 missing, if the methods that call them have been overridden.
5741
5742 Signed-off-by: Scott Wood <scottwood@freescale.com>
5743
5744 commit e52b34d40a8a646e3d11638ea8797e96398dba13
5745 Author: Stefan Roese <sr@denx.de>
5746 Date: Thu Jan 10 18:47:33 2008 +0100
5747
5748 NAND: Make NAND driver less verbose per default
5749
5750 This patch turns off printing of bad blocks per default upon bootup.
5751 This can always be shown via the "nand bad" command later.
5752
5753 Signed-off-by: Stefan Roese <sr@denx.de>
5754
5755 commit fe56a2772e5c59577df906163d0d4b29b056140e
5756 Author: Sergey Kubushyn <ksi@koi8.net>
5757 Date: Wed Jan 9 15:36:20 2008 +0100
5758
5759 NAND: Davinci driver updates
5760
5761 Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
5762 don't have hardware handy so I can not test it at the moment but changes are
5763 rather trivial so it should work. It would be nice if somebody with a
5764 hardware checked it anyways.
5765
5766 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
5767
5768 commit deac913effd8d80535c9ff4687b6fcdff540c554
5769 Author: Stefan Roese <sr@denx.de>
5770 Date: Sat Jan 5 16:50:32 2008 +0100
5771
5772 NAND: Fix compilation warning and small coding style issue
5773
5774 Signed-off-by: Stefan Roese <sr@denx.de>
5775
5776 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
5777 Author: Stefan Roese <sr@denx.de>
5778 Date: Sat Jan 5 16:49:37 2008 +0100
5779
5780 NAND: Update nand_spl driver to match updated nand subsystem
5781
5782 This patch changes the NAND booting driver nand_spl/nand_boot.c to match
5783 the new infrastructure from the updated NAND subsystem. This NAND
5784 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
5785 subsystem.
5786
5787 Signed-off-by: Stefan Roese <sr@denx.de>
5788
5789 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
5790 Author: Stefan Roese <sr@denx.de>
5791 Date: Sat Jan 5 16:47:58 2008 +0100
5792
5793 NAND: Update 4xx NDFC driver to match updated nand subsystem
5794
5795 This patch changes the 4xx NAND driver ndfc.c to match the new
5796 infrastructure from the updated NAND subsystem. This NAND
5797 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
5798 subsystem.
5799
5800 Tested successfully on AMCC Sequoia and Bamboo.
5801
5802 Signed-off-by: Stefan Roese <sr@denx.de>
5803
5804 commit 12072264528eba33737bc9674e19f0e925ffda23
5805 Author: Stefan Roese <sr@denx.de>
5806 Date: Sat Jan 5 16:43:25 2008 +0100
5807
5808 NAND: Change nand_wait_ready() to not call nand_wait()
5809
5810 This patch changes nand_wait_ready() to not just call nand_wait(),
5811 since this will send a new command to the NAND chip. We just want to
5812 wait for the chip to become ready here.
5813
5814 Signed-off-by: Stefan Roese <sr@denx.de>
5815
5816 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
5817 Author: William Juul <william.juul@datarespons.no>
5818 Date: Fri Dec 14 16:33:45 2007 +0100
5819
5820 make nand dump and nand dump.oob work
5821
5822 Signed-off-by: William Juul <william.juul@tandberg.com>
5823 Signed-off-by: Scott Wood <scottwood@freescale.com>
5824
5825 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
5826 Author: William Juul <william.juul@datarespons.no>
5827 Date: Mon Nov 19 14:46:00 2007 +0100
5828
5829 moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
5830
5831 Signed-off-by: William Juul <william.juul@tandberg.com>
5832
5833 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
5834 Author: William Juul <william.juul@tandberg.com>
5835 Date: Tue Jun 10 16:18:13 2008 -0500
5836
5837 Clean out unneeded files
5838
5839 Signed-off-by: William Juul <william.juul@tandberg.com>
5840
5841 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
5842 Author: William Juul <william.juul@datarespons.no>
5843 Date: Fri Nov 16 08:44:27 2007 +0100
5844
5845 Create symlinks from yaffs2/direct to yaffs2
5846
5847 Signed-off-by: William Juul <william.juul@tandberg.com>
5848
5849 commit 90ef117b68387d66763291af0117677644166611
5850 Author: William Juul <william.juul@datarespons.no>
5851 Date: Thu Nov 15 12:23:57 2007 +0100
5852
5853 Incorporate yaffs2 into U-boot
5854
5855 To use YAFFS2 define CONFIG_YAFFS2
5856
5857 Signed-off-by: William Juul <william.juul@tandberg.com>
5858 Signed-off-by: Scott Wood <scottwood@freescale.com>
5859
5860 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
5861 Author: William Juul <william.juul@datarespons.no>
5862 Date: Thu Nov 15 11:13:05 2007 +0100
5863
5864 YAFFS2 import
5865
5866 Direct import of yaffs as a tarball as of 20071113 from their public
5867 CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
5868
5869 The code can also be imported on the command line with:
5870 export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
5871 (Hit return when asked for a password)
5872 cvs checkout yaffs2
5873
5874 Signed-off-by: William Juul <william.juul@tandberg.com>
5875 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
5876
5877 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
5878 Author: William Juul <william.juul@datarespons.no>
5879 Date: Wed Nov 14 14:28:11 2007 +0100
5880
5881 Whitespace cleanup and marking broken code.
5882
5883 Changes requested by maintainer Stefan Roese after
5884 posting patch to U-boot mailing list.
5885
5886 Signed-off-by: William Juul <william.juul@tandberg.com>
5887 Signed-off-by: Scott Wood <scottwood@freescale.com>
5888
5889 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
5890 Author: William Juul <william.juul@datarespons.no>
5891 Date: Fri Nov 9 13:32:30 2007 +0100
5892
5893 Fixing coding style issues
5894
5895 - Fixing leading white spaces
5896 - Fixing indentation where 4 spaces are used instead of tab
5897 - Removing C++ comments (//), wherever I introduced them
5898
5899 Signed-off-by: William Juul <william.juul@tandberg.com>
5900 Signed-off-by: Scott Wood <scottwood@freescale.com>
5901
5902 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
5903 Author: William Juul <william.juul@datarespons.no>
5904 Date: Thu Nov 8 10:39:53 2007 +0100
5905
5906 Remove white space at end.
5907
5908 Signed-off-by: William Juul <william.juul@tandberg.com>
5909 Signed-off-by: Scott Wood <scottwood@freescale.com>
5910
5911 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
5912 Author: William Juul <william.juul@datarespons.no>
5913 Date: Wed Oct 31 13:53:06 2007 +0100
5914
5915 Update MTD to that of Linux 2.6.22.1
5916
5917 A lot changed in the Linux MTD code, since it was last ported from
5918 Linux to U-Boot. This patch takes U-Boot NAND support to the level
5919 of Linux 2.6.22.1 and will enable support for very large NAND devices
5920 (4KB pages) and ease the compatibility between U-Boot and Linux
5921 filesystems.
5922
5923 This patch is tested on two custom boards with PPC and ARM
5924 processors running YAFFS in U-Boot and Linux using gcc-4.1.2
5925 cross compilers.
5926
5927 MAKEALL ppc/arm has some issues:
5928 * DOC/OneNand/nand_spl is not building (I have not tried porting
5929 these parts, and since I do not have any HW and I am not familiar
5930 with this code/HW I think its best left to someone else.)
5931
5932 Except for the issues mentioned above, I have ported all drivers
5933 necessary to run MAKEALL ppc/arm without errors and warnings. Many
5934 drivers were trivial to port, but some were not so trivial. The
5935 following drivers must be examined carefully and maybe rewritten to
5936 some degree:
5937 cpu/ppc4xx/ndfc.c
5938 cpu/arm926ejs/davinci/nand.c
5939 board/delta/nand.c
5940 board/zylonite/nand.c
5941
5942 Signed-off-by: William Juul <william.juul@tandberg.com>
5943 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
5944 Signed-off-by: Scott Wood <scottwood@freescale.com>
5945
5946 commit cd82919e6c8a73b363a26f34b734923844e52d1c
5947 Author: Wolfgang Denk <wd@denx.de>
5948 Date: Tue Aug 12 16:08:38 2008 +0200
5949
5950 Coding style cleanup, update CHANGELOG, prepare release
5951
5952 Signed-off-by: Wolfgang Denk <wd@denx.de>
5953
5954 commit 17e900b8c0f38d922da47073246219dce2a847f2
5955 Author: Wolfgang Denk <wd@denx.de>
5956 Date: Tue Aug 12 14:54:04 2008 +0200
5957
5958 MVBC_P: fix compile problem
5959
5960 Signed-off-by: Wolfgang Denk <wd@denx.de>
5961
5962 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
5963 Author: Wolfgang Denk <wd@denx.de>
5964 Date: Tue Aug 12 12:10:11 2008 +0200
5965
5966 MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
5967
5968 Signed-off-by: Wolfgang Denk <wd@denx.de>
5969
5970 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
5971 Author: Wolfgang Denk <wd@denx.de>
5972 Date: Tue Aug 12 00:36:53 2008 +0200
5973
5974 ads5121: fix compiler warnings (unused variables)
5975
5976 Signed-off-by: Wolfgang Denk <wd@denx.de>
5977
5978 commit 902ca09246039964d59bbcb519b1e1b5aed01308
5979 Author: Kumar Gala <galak@kernel.crashing.org>
5980 Date: Mon Aug 11 11:29:28 2008 -0500
5981
5982 85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
5983
5984 Use CONFIG_NUM_CPUS to match existing define used by 86xx.
5985
5986 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5987 Acked-by: Jon Loeliger <jdl@freescale.com>
5988
5989 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
5990 Author: Kumar Gala <galak@kernel.crashing.org>
5991 Date: Mon Aug 11 09:20:53 2008 -0500
5992
5993 Fix fallout from autostart revert
5994
5995 The autostart revert caused a bit of duplicated code as well as
5996 code that was using images->autostart that needs to get removed so
5997 we can build again.
5998
5999 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6000
6001 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
6002 Author: Kumar Gala <galak@kernel.crashing.org>
6003 Date: Mon Aug 11 09:16:25 2008 -0500
6004
6005 Fix compile error related to r8a66597-hcd & usb
6006
6007 When building the 8544DS board we get this error:
6008
6009 In file included from r8a66597-hcd.c:22:
6010 u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
6011 make[1]: *** [r8a66597-hcd.o] Error 1
6012
6013 The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
6014 is set.
6015
6016 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6017
6018 commit 2d0daa03612338a813e3c9d22680e54eabfea378
6019 Author: Becky Bruce <becky.bruce@freescale.com>
6020 Date: Mon Aug 4 14:02:26 2008 -0500
6021
6022 POWERPC 86xx: Move BAT setup code to C
6023
6024 This is needed because we will be possibly be locating
6025 devices at physical addresses above 32bits, and the asm
6026 preprocessing does not appear to deal with ULL constants
6027 properly. We now call write_bat in lib_ppc/bat_rw.c.
6028
6029 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
6030 Acked-by: Jon Loeliger <jdl@freescale.com>
6031
6032 commit 9de67149db576c91b9c2a0a182652331e7e44211
6033 Author: Becky Bruce <becky.bruce@freescale.com>
6034 Date: Mon Aug 4 14:01:53 2008 -0500
6035
6036 POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
6037
6038 Perform sync/isync as required by the architecture.
6039
6040 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
6041 Acked-by: Jon Loeliger <jdl@freescale.com>
6042
6043 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
6044 Author: Becky Bruce <becky.bruce@freescale.com>
6045 Date: Mon Aug 4 14:01:16 2008 -0500
6046
6047 POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
6048
6049 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
6050 Acked-by: Jon Loeliger <jdl@freescale.com>
6051
6052 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
6053 Author: Magnus Lilja <lilja.magnus@gmail.com>
6054 Date: Sun Aug 3 21:44:10 2008 +0200
6055
6056 i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
6057
6058 Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
6059 contacts instead of only the first 256 ones as is the case prior to
6060 this patch.
6061
6062 Add missing MUX_* macros and update board files to use the new macros.
6063
6064 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
6065
6066 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
6067 Author: Magnus Lilja <lilja.magnus@gmail.com>
6068 Date: Sun Aug 3 21:43:37 2008 +0200
6069
6070 i.MX31: Fix IOMUX related typos
6071
6072 Correct the names of some IOMUX macros.
6073
6074 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
6075
6076 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
6077 Author: Steve Sakoman <steve@sakoman.com>
6078 Date: Mon Aug 11 20:26:16 2008 +0200
6079
6080 OneNAND: Remove unused parameters to onenand_verify_page
6081
6082 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.
6083
6084 Signed-off-by: Steve Sakoman <steve@sakoman.com>
6085 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
6086
6087 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
6088 Author: Anatolij Gustschin <agust@denx.de>
6089 Date: Fri Aug 8 18:00:40 2008 +0200
6090
6091 video: fix bug in cfb_console code
6092
6093 FILL_15BIT_555RGB macro extension for pixel swapping
6094 by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
6095 introduced a bug in cfb_console:
6096
6097 Bitmaps with odd-numbered width won't be rendered
6098 correctly and even U-Boot crashes are observed on
6099 some platforms while repeated rendering of such
6100 bitmaps with "bmp display". Also if a bitmap is
6101 rendered to an odd-numbered x starting position,
6102 the same problem occurs. This patch is an attempt
6103 to fix it.
6104
6105 Signed-off-by: Anatolij Gustschin <agust@denx.de>
6106
6107 commit d9015f6a50d7258125349ef5c2af836458a0029a
6108 Author: Anatolij Gustschin <agust@denx.de>
6109 Date: Fri Aug 8 18:00:39 2008 +0200
6110
6111 video: fix bug in logo_plot
6112
6113 If logo_plot() should ever be called with x starting
6114 position other than zero and for pixel depths greater
6115 than 8bpp, logo colors distortion will be observed.
6116 This patch fixes the issue.
6117
6118 Signed-off-by: Anatolij Gustschin <agust@denx.de>
6119
6120 commit 406819ae94f79f5b59e01d163380ca7d83709251
6121 Author: Wolfgang Denk <wd@denx.de>
6122 Date: Mon Aug 11 00:17:52 2008 +0200
6123
6124 MAINTAINERS: sort entries
6125
6126 Signed-off-by: Wolfgang Denk <wd@denx.de>
6127
6128 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
6129 Author: Roy Zang <tie-fei.zang@freescale.com>
6130 Date: Thu Aug 7 18:19:28 2008 +0800
6131
6132 Add mpc7448hpc2 maintainer information
6133
6134 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
6135
6136 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
6137 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
6138 Date: Thu Aug 7 13:13:27 2008 +0530
6139
6140 common/cmd_load.c - Minor code & Coding Style cleanup
6141
6142 - os_data_header Variable is a carry over feature
6143 & unused. So removed all instance of this variable
6144 - Minor Code Style Update
6145
6146 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
6147 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6148
6149 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
6150 Author: Magnus Lilja <lilja.magnus@gmail.com>
6151 Date: Wed Aug 6 19:32:33 2008 +0200
6152
6153 Update the U-Boot wiki URL.
6154
6155 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
6156
6157 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
6158 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
6159 Date: Sun Aug 10 17:56:36 2008 +0200
6160
6161 OneNAND: Remove base address offset usage
6162
6163 While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
6164 using OneNAND and some using NAND, we found some differences in OneNAND and
6165 NAND command address handling.
6166
6167 As this might confuse users (it already confused us), we like to align OneNAND
6168 and NAND address handling.
6169
6170 The issue is that cmd_onenand.c subtracts the onenand base address from the
6171 addresses you type into the u-boot command line so, unlike nand, you can't
6172 use addresses relative to the start of the onenand part e.g. this won't work:
6173
6174 onenand read 82000000 280000 400000
6175
6176 you have to use:
6177
6178 onenand read 82000000 20280000 400000
6179
6180 Looking at recent git, the only board currently using OneNAND is Apollon, and
6181 for this the OneNAND base address is 0 (apollon.h)
6182
6183 #define CFG_ONENAND_BASE 0x00000000
6184
6185 so patch below won't break any existing boards and will align OneNAND and NAND
6186 handling on boards where OneNAND base address is != 0.
6187
6188 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
6189 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
6190 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
6191
6192 commit c11528083ef6e55e76df742228c26e39d151813d
6193 Author: Kumar Gala <galak@kernel.crashing.org>
6194 Date: Thu Aug 7 09:28:20 2008 -0500
6195
6196 mpc85xx: workaround old binutils bug
6197
6198 The recent change to move the .bss outside of the image gives older
6199 binutils (ld from eldk4.1/binutils-2.16) some headache:
6200
6201 ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
6202 ppc_85xx-ld: final link failed: Bad value
6203
6204 We workaround it by being explicit about the program headers and not
6205 assigning the .bss to a program header.
6206
6207 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6208
6209 commit 0bf202ec586d4466c900e987720fa635c594d689
6210 Author: Wolfgang Denk <wd@denx.de>
6211 Date: Sun Aug 10 01:26:26 2008 +0200
6212
6213 Revert "[new uImage] Add autostart flag to bootm_headers structure"
6214
6215 This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
6216
6217 The commit was based on a misunderstanding of the (documented)
6218 meaning of the 'autostart' environment variable. It might cause
6219 boards to hang if 'autostart' was used, with the potential to brick
6220 them. Go back to the documented behaviour.
6221
6222 Conflicts:
6223
6224 common/cmd_bootm.c
6225 common/image.c
6226 include/image.h
6227
6228 Signed-off-by: Wolfgang Denk <wd@denx.de>
6229
6230 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
6231 Author: Wolfgang Denk <wd@denx.de>
6232 Date: Sat Aug 9 23:17:32 2008 +0200
6233
6234 TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
6235
6236 - enable CFI driver where this was forgotten
6237 - enable mtdparts support
6238 - adjust default environment
6239 etc.
6240
6241 Signed-off-by: Wolfgang Denk <wd@denx.de>
6242
6243 commit 41266c9b5a5f873df3ec891bb0907616958b5602
6244 Author: Peter Tyser <ptyser@xes-inc.com>
6245 Date: Tue Aug 5 10:51:57 2008 -0500
6246
6247 FIT: Fix handling of images without ramdisks
6248
6249 boot_get_ramdisk() should not treat the case when a FIT image does
6250 not contain a ramdisk as an error.
6251
6252 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6253 Acked-by: Michal Simek <monstr@monstr.eu>
6254
6255 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
6256 Author: Sergey Lapin <slapin@ossfans.org>
6257 Date: Sat Aug 9 01:39:09 2008 +0400
6258
6259 DataFlash: AT45DB021 fix and AT45DB081 support
6260
6261 Fix for page size of AT45DB021. Also adding bigger AT45DB081
6262 which comes with some newer boards.
6263
6264 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
6265
6266 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
6267 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6268 Date: Fri Aug 8 16:30:23 2008 +0900
6269
6270 sh: Update sh7763rdp config
6271
6272 Add sh_eth support to sh7763rdp.
6273
6274 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6275
6276 commit 21f971ec265f6042ec21636d55d06a6bc0751077
6277 Author: Wolfgang Denk <wd@denx.de>
6278 Date: Mon Jul 7 01:22:29 2008 +0200
6279
6280 TQM823L: re-enable logo support; update LCD_INFO text
6281
6282 Signed-off-by: Wolfgang Denk <wd@denx.de>
6283
6284 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
6285 Author: Wolfgang Denk <wd@denx.de>
6286 Date: Fri Aug 8 16:41:56 2008 +0200
6287
6288 TQM8xxL: fix support for second flash bank
6289
6290 When switching the TQM8xxL modules to use the CFI flash driver,
6291 support for the second flash bank was broken because the CFI driver
6292 did not support dynamically sized banks. This gets fixed now.
6293
6294 Signed-off-by: Wolfgang Denk <wd@denx.de>
6295
6296 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
6297 Author: Wolfgang Denk <wd@denx.de>
6298 Date: Fri Aug 8 16:39:54 2008 +0200
6299
6300 CFI: allow for dynamically determined flash sizes and addresses
6301
6302 The CFI driver allowed only for static initializers in the
6303 CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
6304 several flash banks contiguously if the bank sizes were not known in
6305 advance, which kind of violates U-Boot's design philosophy.
6306
6307 (will be used for example by the TQM8xxL boards)
6308
6309 Signed-off-by: Wolfgang Denk <wd@denx.de>
6310
6311 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
6312 Author: Ben Warren <biggerbadderben@gmail.com>
6313 Date: Thu Aug 7 23:26:35 2008 -0700
6314
6315 QE UEC: Fix compiler warnings
6316
6317 Moved static functions earlier in file so forward declarations are not needed.
6318
6319 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6320
6321 commit d5d28fe4aad5f4535400647a5617c11039506467
6322 Author: David Saada <David.Saada@ecitele.com>
6323 Date: Mon Mar 31 02:37:38 2008 -0700
6324
6325 QE UEC: Add MII Commands
6326
6327 Add MII commands to the UEC driver. Note that once a UEC device is selected,
6328 any device on its MDIO bus can be addressed.
6329
6330 Signed-off-by: David Saada <david.saada@ecitele.com>
6331 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6332
6333 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
6334 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
6335 Date: Wed Jul 9 21:07:38 2008 +0900
6336
6337 usb: add support for R8A66597 usb controller
6338
6339 add support for Renesas R8A66597 usb controller.
6340 This patch supports USB Host mode.
6341
6342 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
6343 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
6344
6345 commit 1d10dcd041aaeae9fd7c821005692898a0303382
6346 Author: Hunter, Jon <jon-hunter@ti.com>
6347 Date: Sat Jul 26 18:59:16 2008 -0500
6348
6349 Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
6350
6351 Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
6352
6353 Signed-off-by: Jon Hunter <jon-hunter@ti.com>
6354 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
6355
6356 commit eab1007334b93a6209f1ec33615e26ef5311ede7
6357 Author: Steven A. Falco <sfalco@harris.com>
6358 Date: Wed Aug 6 15:42:52 2008 -0400
6359
6360 ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
6361
6362 The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
6363 configuration to match the schematic, and also sets the SDR0_PFC1 register to
6364 select the corresponding mode for the UARTs.
6365
6366 Signed-off-by: Steven A. Falco <sfalco@harris.com>
6367 Signed-off-by: Stefan Roese <sr@denx.de>
6368
6369 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
6370 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
6371 Date: Wed Aug 6 14:42:13 2008 +0200
6372
6373 avr32: add support for EarthLCD Favr-32 board
6374
6375 This patch adds support for the Favr-32 board made by EarthLCD.
6376
6377 This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
6378 has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
6379 Ethernet, audio out, USB device, SD-card slot, USART and various other
6380 connectors for cennecting stuff to SPI, I2C, GPIO, etc.
6381
6382 Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
6383 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6384
6385 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
6386 Author: Rafael Campos <rafael.campos@hanscan.com>
6387 Date: Thu Jul 31 10:22:20 2008 +0200
6388
6389 cfi-flash: Added support to flash_real_protect for Atmel flash devices
6390
6391 Some of the flash memories produced by ATMEL start in read-only mode.
6392 We need to unprotect it. This patch allows the AT49BV6416 to work with
6393 cfi_flash memories. Tested in the at91rm9200ek board.
6394
6395 Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
6396 Signed-off-by: Stefan Roese <sr@denx.de>
6397
6398 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
6399 Author: Guennadi Liakhovetski <lg@denx.de>
6400 Date: Tue Aug 5 15:36:39 2008 +0200
6401
6402 cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
6403
6404 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
6405 Signed-off-by: Stefan Roese <sr@denx.de>
6406
6407 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
6408 Author: Stefan Roese <sr@denx.de>
6409 Date: Wed Aug 6 14:06:03 2008 +0200
6410
6411 Fix merge problems
6412
6413 Signed-off-by: Stefan Roese <sr@denx.de>
6414
6415 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
6416 Author: Stefan Roese <sr@denx.de>
6417 Date: Wed Aug 6 14:05:38 2008 +0200
6418
6419 Fix merge problems
6420
6421 Signed-off-by: Stefan Roese <sr@denx.de>
6422
6423 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
6424 Author: Kenneth Johansson <kenneth@southpole.se>
6425 Date: Tue Jul 15 12:13:38 2008 +0200
6426
6427 mpc5121: Move iopin features from board specific to common files.
6428
6429 And in the process eliminate some duplicate register defines.
6430
6431 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
6432
6433 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
6434 Author: John Rigby <jrigby@freescale.com>
6435 Date: Tue Aug 5 17:38:57 2008 -0600
6436
6437 mpc5121: squash some fdt fixup errors
6438
6439 On ADS5121 when booting linux the following errors are seen:
6440 Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
6441 Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
6442 Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
6443
6444 This is caused by ft_cpu_setup trying to deal with
6445 both old and new soc node naming. This patch
6446 fixes this by being smarter about what to
6447 fixup.
6448
6449 Also do soc node fixups by compatible instead of by path.
6450 A new board config called OF_SOC_COMPAT defined
6451 to be "fsl,mpc5121-immr" replaces the old
6452 OF_SOC node path that was defined to be "soc@80000000".
6453
6454 Old device trees still work, but the compatiblity
6455 is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
6456 which is on by default in include/configs/ads5121.h.
6457
6458 Signed-off-by: John Rigby <jrigby@freescale.com>
6459
6460 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
6461 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6462 Date: Sat Aug 2 23:48:30 2008 +0200
6463
6464 drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
6465
6466 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6467
6468 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
6469 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6470 Date: Sat Aug 2 23:48:32 2008 +0200
6471
6472 nios2/sysid: fix printf warning
6473
6474 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6475
6476 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
6477 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6478 Date: Sat Aug 2 23:48:33 2008 +0200
6479
6480 Fix remaining build issues with MPC8xx FADS boards.
6481
6482 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6483
6484 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
6485 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6486 Date: Sat Aug 2 23:48:31 2008 +0200
6487
6488 nios2: fix phys_addr_t and phys_size_t support
6489
6490 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6491
6492 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
6493 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6494 Date: Sat Aug 2 23:48:34 2008 +0200
6495
6496 mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
6497
6498 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6499
6500 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
6501 Author: Mark Jackson <mpfj@mimc.co.uk>
6502 Date: Fri Aug 1 09:48:29 2008 +0100
6503
6504 Fix bitmap display for atmel lcd controller
6505
6506 The current lcd_display_bitmap() function does not work properly
6507 for the Atmel LCD controller.
6508
6509 2 fixes need to be done:-
6510
6511 (a) when setting the colour map, use the lcd_setcolreg() function
6512 as provided by the Atmel driver
6513 (b) the data is never actually written to the lcd framebuffer !!
6514
6515 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
6516
6517 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
6518 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6519 Date: Fri Aug 1 08:40:34 2008 +0200
6520
6521 qemu_mips: update README to follow qemu update about default machine
6522
6523 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6524
6525 commit ac169d645f5f0e0b9a232563099209e92a355d8e
6526 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6527 Date: Thu Jul 31 19:53:21 2008 -0500
6528
6529 ColdFire: Fix compilation issue caused by a missing function
6530
6531 Implement usec2ticks() which is used by fsl_i2c.c in
6532 lib_m68k/time.c
6533
6534 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6535
6536 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
6537 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6538 Date: Thu Jul 31 19:53:06 2008 -0500
6539
6540 Fix compilation error for TASREG
6541
6542 TASREG is ColdFire platform, the include ppc4xx.h in
6543 board/esd/common/flash.c causes conflict.
6544
6545 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6546
6547 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
6548 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6549 Date: Thu Jul 31 19:52:36 2008 -0500
6550
6551 Fix compilation error for MCF5275
6552
6553 Rename OBJ to COBJ in board/platform/Makefile
6554
6555 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6556
6557 commit 5c40548f01218360a1f1395198c50ff45f3035b5
6558 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6559 Date: Thu Jul 31 19:52:28 2008 -0500
6560
6561 Fix compile error caused by incorrect function return type
6562
6563 Rename int mii_init(void) to void mii_init(void) for idmr
6564 ColdFire platform
6565
6566 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6567
6568 commit a58c78067c928976c082c758d3987e89ead5b191
6569 Author: Wolfgang Denk <wd@denx.de>
6570 Date: Fri Aug 1 12:06:22 2008 +0200
6571
6572 Fix build issues with MPC8xx FADS boards.
6573
6574 Signed-off-by: Wolfgang Denk <wd@denx.de>
6575
6576 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
6577 Author: Wolfgang Denk <wd@denx.de>
6578 Date: Thu Jul 31 17:54:03 2008 +0200
6579
6580 Prepare v1.3.4-rc2: update CHANGELOG
6581
6582 Signed-off-by: Wolfgang Denk <wd@denx.de>
6583
6584 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
6585 Author: Mark Jackson <mpfj@mimc.co.uk>
6586 Date: Thu Jul 31 16:09:00 2008 +0100
6587
6588 Add gzipped logo support
6589
6590 The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
6591
6592 If this option is set, additionally to standard BMP
6593 images, gzipped BMP images can be displayed via the
6594 splashscreen support or the bmp command.
6595
6596 However, the splashscreen function *only* supports standard BMP images.
6597
6598 This patch adds the documented gzip support.
6599
6600 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
6601
6602 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
6603 Author: Mark Jackson <mpfj@mimc.co.uk>
6604 Date: Thu Jul 31 15:56:48 2008 +0100
6605
6606 Fix Atmel LCD controller endianess for AVR32 processors
6607
6608 The Atmel lcd controller is used on Atmel's AT91 (little endian) and
6609 AVR32 (big endian) platforms.
6610
6611 As such, the controller can handle both big and little endian memory.
6612
6613 This patch fixes the driver for the AVR32 platform.
6614
6615 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
6616
6617 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
6618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6619 Date: Thu Jul 31 15:56:01 2008 +0200
6620
6621 apollon: fix build out of tree
6622
6623 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6624
6625 commit 2e752be39d3e398d4ab89ffa6634c397df298297
6626 Author: Guennadi Liakhovetski <lg@denx.de>
6627 Date: Thu Jul 31 12:35:04 2008 +0200
6628
6629 Uncompressed images loaded to their start address shall set load_end too
6630
6631 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
6632 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
6633
6634 commit c37207d7f51e19c17f859966f314e27cc1231801
6635 Author: Wolfgang Denk <wd@denx.de>
6636 Date: Wed Jul 16 16:38:59 2008 +0200
6637
6638 Fix printf() format problems with configurable prompts
6639
6640 U-Boot allows for configurable prompt strings using the
6641 CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
6642 the assumption was that any such user defined problts would contain
6643 exactly one "%d" format specifier. But some boards did not.
6644
6645 To allow for flexible boot prompts without adding too complex code we
6646 now allow to specify the whole list of printf() arguments in the user
6647 definition. This is powerful, but requires a responsible user who
6648 really understands what he is doing, as he needs to know for exanple
6649 which variables are available in the respective context.
6650
6651 Signed-off-by: Wolfgang Denk <wd@denx.de>
6652
6653 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
6654 Author: Wolfgang Denk <wd@denx.de>
6655 Date: Thu Jul 31 17:02:14 2008 +0200
6656
6657 TQM85xx: fix typo introduce by commit ffbb5cb9
6658
6659 Signed-off-by: Wolfgang Denk <wd@denx.de>
6660
6661 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
6662 Author: Wolfgang Denk <wd@denx.de>
6663 Date: Thu Jul 31 15:27:01 2008 +0200
6664
6665 mvbc_p board: fix most build warnings.
6666
6667 Signed-off-by: Wolfgang Denk <wd@denx.de>
6668
6669 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
6670 Author: Wolfgang Denk <wd@denx.de>
6671 Date: Thu Jul 31 13:57:20 2008 +0200
6672
6673 E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
6674
6675 Avoid "integer constant is too large for 'long' type" warnings.
6676 And simplify the code.
6677
6678 Signed-off-by: Wolfgang Denk <wd@denx.de>
6679
6680 commit 9196b44334c330cc13de2464c59181e4db71f549
6681 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
6682 Date: Wed Jul 30 23:21:19 2008 +0400
6683
6684 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
6685
6686 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
6687
6688 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
6689 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
6690 Date: Wed Jul 30 23:20:32 2008 +0400
6691
6692 PPC: Add pci_clk in the global_data for CPM2 processors
6693
6694 This patch adds pci_clk field to the global_data structure for the
6695 processors which have CPM2 module in case the CONFIG_PCI is defined.
6696
6697 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
6698
6699 commit f0ff885ca64655bee6540eb8a25eed90b1152686
6700 Author: Kumar Gala <galak@kernel.crashing.org>
6701 Date: Wed Jul 30 14:13:30 2008 -0500
6702
6703 mpc85xx: Update linker scripts for Freescale boards
6704
6705 * Move to using absolute addressing always. Makes the scripts a bit more
6706 portable and common
6707 * Moved .bss after the end of the image. These allows us to have more
6708 room in the resulting binary image for code and data.
6709 * Removed .text object files that aren't really needed
6710 * Make sure _end is 4-byte aligned as the .bss init code expects this.
6711 (Its possible that the end of .bss isn't 4-byte aligned)
6712
6713 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6714
6715 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
6716 Author: Kumar Gala <galak@kernel.crashing.org>
6717 Date: Wed Jul 30 08:01:15 2008 -0500
6718
6719 Fix compile warnings in dlmalloc
6720
6721 The origional code was using on odd reference to get to the first
6722 real element in av_[]. The first two elements of the array are
6723 not used for actual bins, but for house keeping. If we are more
6724 explicit about how use the first few elements we can get rid of the
6725 warnings:
6726
6727 dlmalloc.c: In function 'malloc_extend_top':
6728 dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
6729 dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
6730 dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
6731 ...
6732
6733 The logic of how this code came to be is:
6734 bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
6735
6736 SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
6737 bin_at(0) = &(av_[0])
6738
6739 Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
6740
6741 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6742
6743 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
6744 Author: Stefan Roese <sr@denx.de>
6745 Date: Wed Jul 30 10:21:01 2008 +0200
6746
6747 ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
6748
6749 Signed-off-by: Stefan Roese <sr@denx.de>
6750
6751 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
6752 Author: Stefan Roese <sr@denx.de>
6753 Date: Wed Jul 30 09:59:51 2008 +0200
6754
6755 cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
6756
6757 A recent patch used '#if (CONFIG_CMD_USB)' instead of
6758 '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
6759 common/bootm.c compile again.
6760
6761 Signed-off-by: Stefan Roese <sr@denx.de>
6762 Acked-by: Markus Klotzbuecher <mk@denx.de>
6763
6764 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
6765 Author: Kyungmin Park <kmpark@infradead.org>
6766 Date: Tue Jul 22 08:01:43 2008 +0900
6767
6768 Remove unused I2C at apollon board
6769
6770 There are no I2C devices on this board.
6771
6772 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
6773
6774 commit 3c95960e526b3b026da20201db64526f46faf14b
6775 Author: Wolfgang Denk <wd@denx.de>
6776 Date: Thu Jul 31 10:12:09 2008 +0200
6777
6778 at91rm9200dk, csb637: fix NAND related build problems
6779
6780 Tried fixing NAND support for the at91rm9200dk board; untested.
6781 Disabled NAND support in the csb637 board config file.
6782
6783 Signed-off-by: Wolfgang Denk <wd@denx.de>
6784
6785 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
6786 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6787 Date: Wed Jul 30 12:39:28 2008 +0200
6788
6789 ppc4xx: ML507: Environment in flash and MTD Support
6790
6791 - Relocate the location of U-Boot in the flash
6792 - Save the environment in one sector of the flash memory
6793 - MTD Support
6794
6795 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6796 Signed-off-by: Stefan Roese <sr@denx.de>
6797
6798 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
6799 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6800 Date: Tue Jul 29 17:16:10 2008 +0200
6801
6802 ppc4xx: ML507: Use of get_ram_size in board ml507
6803
6804 - Change suggested by WD
6805
6806 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6807 Signed-off-by: Stefan Roese <sr@denx.de>
6808
6809 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
6810 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6811 Date: Mon Jul 21 20:30:07 2008 +0200
6812
6813 ppc4xx: ML507: U-Boot in flash and System ACE
6814
6815 This patch allows booting from FLASH the ML507 board by Xilinx.
6816 Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
6817
6818 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6819 Signed-off-by: Stefan Roese <sr@denx.de>
6820
6821 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
6822 Author: Julien May <mailinglist@miromico.ch>
6823 Date: Mon Jun 23 13:57:52 2008 +0200
6824
6825 Add support for the hammerhead (AVR32) board
6826
6827 The Hammerhead platform is built around a AVR32 32-bit microcontroller
6828 from Atmel. It offers versatile peripherals, such as ethernet, usb
6829 device, usb host etc.
6830
6831 The board also incooperates a power supply and is a Power over Ethernet
6832 (PoE) Powered Device (PD).
6833
6834 Additonally, a Cyclone III FPGA from Altera is integrated on the board.
6835 The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
6836 DDR2 SDRAM interfaces, which will cover even the most exceptional need
6837 of memory bandwidth. Together with the onboard video decoder the board
6838 is ready for video processing.
6839
6840 For more information see: http:///www.miromico.com/hammerhead
6841
6842 Signed-off-by: Julien May <mailinglist@miromico.ch>
6843 [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
6844 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6845
6846 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
6847 Author: Kumar Gala <galak@kernel.crashing.org>
6848 Date: Tue Jul 29 12:23:49 2008 -0500
6849
6850 fsl_i2c: Use timebase timer functions instead of get_timer()
6851
6852 The current implementation of get_timer() is only really useful after we
6853 have relocated u-boot to memory. The i2c code is used before that as part
6854 of the SPD DDR setup.
6855
6856 We actually have a bug when using the get_timer() code before relocation
6857 because the .bss hasn't been setup and thus we could be reading/writing
6858 a random location (probably in flash).
6859
6860 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6861
6862 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
6863 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
6864 Date: Tue Jul 29 14:49:31 2008 +0200
6865
6866 Adder8xx: Fix CFG_MONITOR_LEN
6867
6868 Due to increased space usage, U-Boot can no longer be stored in three sectors.
6869 The current U-Boot use just over three flash sectors (197k), and U-Boot will
6870 become corrupt after saving environment variables. This patch adds another 64k
6871 to CFG_MONITOR_LEN.
6872
6873 Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
6874
6875 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
6876 Author: Kyungmin Park <kmpark@infradead.org>
6877 Date: Tue Jul 29 08:47:57 2008 +0900
6878
6879 Add OneNAND IPL related files to gitignore
6880
6881 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
6882
6883 commit 8d87589e8e874df7120a3d9667f051bc33bac250
6884 Author: Rafal Jaworowski <raj@semihalf.com>
6885 Date: Mon Jul 28 20:38:25 2008 +0200
6886
6887 API: Teach the storage layer about SATA and MMC options.
6888
6889 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6890 Acked-by: Rafal Jaworowski <raj@semihalf.com>
6891
6892 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
6893 Author: Rafal Jaworowski <raj@semihalf.com>
6894 Date: Mon Jul 28 20:37:48 2008 +0200
6895
6896 API: Dump contents of sector 0 in the demo application.
6897
6898 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6899 Acked-by: Rafal Jaworowski <raj@semihalf.com>
6900
6901 commit 13ca6305f2eba49c175f6370c35286141059c789
6902 Author: Rafal Jaworowski <raj@semihalf.com>
6903 Date: Mon Jul 28 20:37:10 2008 +0200
6904
6905 API: Correct storage enumeration routine, other minor fixes in API storage area.
6906
6907 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6908 Acked-by: Rafal Jaworowski <raj@semihalf.com>
6909
6910 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
6911 Author: Rafal Jaworowski <raj@semihalf.com>
6912 Date: Mon Jul 28 20:36:19 2008 +0200
6913
6914 API: Fix compilation warnings in api_examples/demo.c.
6915
6916 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6917
6918 commit c14eefcc48212af2f3314809605698dd8393a90a
6919 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6920 Date: Sun Jul 27 17:09:43 2008 +0200
6921
6922 Fix more printf() format warnings
6923
6924 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6925
6926 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
6927 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6928 Date: Fri Jul 25 15:18:16 2008 +0200
6929
6930 Fix remaining CFG_CMD_ define, ifdef and comments
6931
6932 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6933
6934 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
6935 Author: Stefano Babic <sbabic@denx.de>
6936 Date: Fri Jul 25 08:57:40 2008 +0200
6937
6938 Add include for config.h in command.h.
6939
6940 Because the cmd_tbl_s structure depends on the configuration file, it
6941 must be assured that config.h is included before the structure is
6942 evaluated by the compiler. If this is not certain, it could happen
6943 that the compiler generates structures of different size, depending
6944 on the fact if the source file includes <config.h> before or after
6945 <command.h>.
6946
6947 The effect is that u-boot crashes when tries to relocate the command
6948 table (for ppc) or try to access to the command table for other
6949 architectures.
6950
6951 The problem can happen on board-depending commands. All general
6952 commands under /common are unaffected, because they include already
6953 config.h before command.h.
6954
6955 Signed-off-by: Stefano Babic <sbabic@denx.de>
6956
6957 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
6958 Author: Scott Wood <scottwood@freescale.com>
6959 Date: Wed Jul 23 13:16:06 2008 -0500
6960
6961 NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
6962
6963 This fixes building out-of-tree.
6964
6965 Signed-off-by: Scott Wood <scottwood@freescale.com>
6966
6967 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
6968 Author: Heiko Schocher <hs@denx.de>
6969 Date: Wed Jul 23 07:30:46 2008 +0200
6970
6971 Fix warnings if compiling with IDE support.
6972
6973 cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
6974 cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
6975
6976 Signed-off-by: Heiko Schocher <hs@denx.de>
6977
6978 commit 7610db17fd4d59c51d825488526d85ede2f06767
6979 Author: Adrian Filipi <adrian.filipi@eurotech.com>
6980 Date: Tue Jul 22 14:28:11 2008 -0400
6981
6982 Removed support for the adsvix board.
6983
6984 Support for the adsvix was originally provided by Applied Data
6985 Systems (ADS), inc., now EuroTech, Inc.
6986 The board never shipped aside from some sample boards.
6987
6988 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
6989
6990 commit f96b44cef897bd372beb86dde1b33637c119d84d
6991 Author: Remy Bohmer <linux@bohmer.net>
6992 Date: Tue Jul 22 16:22:11 2008 +0200
6993
6994 ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
6995
6996 If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
6997 never set, because relocation to RAM is actually never done by U-boot
6998 itself. However, several pieces of code check if this flag is set at
6999 some time.
7000
7001 So, to make sure this flag is set on boards skipping relocation, this
7002 is added to the initialisation of U-boot at a moment where it is safe
7003 to do so.
7004
7005 Signed-off-by: Remy Bohmer <linux@bohmer.net>
7006
7007 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
7008 Author: Timur Tabi <timur@freescale.com>
7009 Date: Mon Jul 21 14:26:23 2008 -0500
7010
7011 fsl-i2c: fix writes to data segment before relocation
7012
7013 Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
7014 relocation. Commit d8c82db4 added the ability for i2c_init() to program the
7015 I2C bus speed and save the value in i2c_bus_speed[], which is a global
7016 variable. It is an error to write to the data segment before relocation,
7017 which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
7018
7019 Signed-off-by: Timur Tabi <timur@freescale.com>
7020
7021 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
7022 Author: Wolfgang Ocker <weo@reccoware.de>
7023 Date: Mon Jul 28 16:56:51 2008 +0200
7024
7025 mips: Fix baudrate divisor computation on alchemy cpus
7026
7027 Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
7028 on alchemy cpus.
7029
7030 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
7031 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
7032
7033 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
7034 Author: Ben Warren <biggerbadderben@gmail.com>
7035 Date: Sat Jul 5 00:08:48 2008 -0700
7036
7037 Moved initialization of AVR32 Ethernet controllers to board_eth_init()
7038
7039 Renamed initialization functions for atngw100 and atstk1000.
7040 Removed initializations for these boards from net/eth.c
7041
7042 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7043 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7044
7045 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
7046 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7047 Date: Wed Jul 23 10:55:46 2008 +0200
7048
7049 spi flash: Fix printf() format warnings
7050
7051 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7052
7053 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
7054 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7055 Date: Wed Jul 23 10:55:31 2008 +0200
7056
7057 atmel_mci: Fix printf() format warnings
7058
7059 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7060
7061 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
7062 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7063 Date: Wed Jul 23 10:55:15 2008 +0200
7064
7065 avr32: Fix printf() format warnings
7066
7067 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7068
7069 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
7070 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7071 Date: Wed Jul 23 10:52:19 2008 +0200
7072
7073 avr32: asm/io.h needs asm/types.h
7074
7075 map_physmem() takes a phys_addr_t as parameter. This type is defined in
7076 asm/types.h, so we need to include that file.
7077
7078 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7079
7080 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
7081 Author: Michal Simek <monstr@monstr.eu>
7082 Date: Thu Jul 17 12:25:46 2008 +0200
7083
7084 microblaze: Fix printf() format issues
7085
7086 Signed-off-by: Michal Simek <monstr@monstr.eu>
7087
7088 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
7089 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
7090 Date: Thu Jul 17 07:27:51 2008 +0530
7091
7092 Remove unused code from lib_arm/bootm.c
7093
7094 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
7095
7096 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
7097 Author: Detlev Zundel <dzu@denx.de>
7098 Date: Wed Jul 16 18:56:45 2008 +0200
7099
7100 tqm85xx: Demystify 'DK: !!!' comment
7101
7102 Signed-off-by: Detlev Zundel <dzu@denx.de>
7103
7104 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
7105 Author: Detlev Zundel <dzu@denx.de>
7106 Date: Wed Jul 16 18:56:44 2008 +0200
7107
7108 83xx/85xx/86xx: Add LTEDR local bus definitions
7109
7110 Signed-off-by: Detlev Zundel <dzu@denx.de>
7111
7112 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
7113 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7114 Date: Wed Jul 16 16:22:32 2008 +0200
7115
7116 serial_xuartlite.c: fix compiler warnings
7117
7118 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7119 Acked-by: Grant Likely <grant.likely@secretlab.ca>
7120
7121 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
7122 Author: Stefan Roese <sr@denx.de>
7123 Date: Fri Jul 18 11:03:35 2008 +0200
7124
7125 POST: Add disable interrupts in some of the missing CPU POST tests
7126
7127 Some CPU POST tests did not disable the interrupts while running. This
7128 seems to be necessary to protect this self modifying code.
7129
7130 Signed-off-by: Stefan Roese <sr@denx.de>
7131
7132 commit 97a3bf268d096e0e97e54048448c35114edcf557
7133 Author: Stefan Roese <sr@denx.de>
7134 Date: Fri Jul 18 10:43:24 2008 +0200
7135
7136 ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
7137
7138 This is needed for boards that define CFG_64BIT_STRTOUL but don't define
7139 CFG_64BIT_LBA.
7140
7141 Signed-off-by: Stefan Roese <sr@denx.de>
7142
7143 commit 0043ac55024963295fc79b39af85b6dc3b261e17
7144 Author: Niklaus Giger <niklaus.giger@netstal.com>
7145 Date: Fri Jul 18 11:22:23 2008 +0200
7146
7147 POST PPC4xx/spr IVPR only if PPC440
7148
7149 The SPR IVPR register is only present (as far as I know) for
7150 processors with a PPC440 core.
7151
7152 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
7153 Acked-by: Stefan Roese <sr@denx.de>
7154
7155 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
7156 Author: Stefan Roese <sr@denx.de>
7157 Date: Fri Jul 18 10:42:29 2008 +0200
7158
7159 ppc4xx: Enable 64bit printf format on 440/460 platforms
7160
7161 This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
7162 440/460 platforms. This may be needed since those platforms support
7163 36bit physical address space.
7164
7165 Signed-off-by: Stefan Roese <sr@denx.de>
7166
7167 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
7168 Author: Stefan Roese <sr@denx.de>
7169 Date: Fri Jul 18 15:57:23 2008 +0200
7170
7171 ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
7172
7173 This patch fixes a problem with incorrect MODTx (On Die Termination)
7174 setup for a configuration with multiple DIMM's and multiple ranks.
7175 Without this change Katmai was unable to boot Linux with DDR2 frequency
7176 >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
7177 with DDR2 frequency = 640MHz and mem=4GB.
7178
7179 Signed-off-by: Stefan Roese <sr@denx.de>
7180
7181 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
7182 Author: Stefan Roese <sr@denx.de>
7183 Date: Fri Jul 18 12:24:41 2008 +0200
7184
7185 ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
7186
7187 Signed-off-by: Stefan Roese <sr@denx.de>
7188
7189 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
7190 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7191 Date: Thu Jul 17 12:47:09 2008 +0200
7192
7193 ppc4xx: ML507 Board Support
7194
7195 The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
7196 among others:
7197 -Virtex 5 FX FPGA (With a ppc440x5 in it)
7198 -256MB of SDRAM2
7199 -32MB of Flash
7200 -I2C Eeprom
7201 -System ACE chip
7202 -Serial ATA connectors
7203 -RS232 Level Conversors
7204 -Ethernet Transceiver
7205
7206 This patch gives support to a standard design produced by EDK for this
7207 board: ppc440, uartlite, xilinx_int and flash
7208
7209 - Includes Changes propossed by Stefan Roese and Michal Simek
7210
7211 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7212 Acked-by: Stefan Roese <sr@denx.de>
7213
7214 commit d865fd09809a3a18669f35f970781820af40e4de
7215 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7216 Date: Thu Jul 17 11:44:12 2008 +0200
7217
7218 ppc4xx: CPU PPC440x5 on Virtex5 FX
7219
7220 -This patchs gives support for the embbedded ppc440
7221 on the Virtex5 FPGAs
7222 -interrupts.c divided in uic.c and interrupts.c
7223 -xilinx_irq.c for xilinx interrupt controller
7224 -Include modifications propossed by Stefan Roese
7225
7226 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7227 Acked-by: Stefan Roese <sr@denx.de>
7228
7229 commit 340ccb260f21516be360745d5c5e3bd0657698df
7230 Author: Sebastian Siewior <bigeasy@linutronix.de>
7231 Date: Wed Jul 16 20:04:49 2008 +0200
7232
7233 cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
7234
7235 This got broken by commits 93c56f212c
7236 [cfi_flash: support of long cmd in U-boot.]
7237
7238 That command needs to be in little endian format on BE machines
7239 with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
7240 gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
7241 the cmdbuf in case portwidth = chipwidth = 8bit.
7242
7243 Cc: Alexey Korolev <akorolev@infradead.org>
7244 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
7245 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
7246
7247 commit 11188d55bc16dd907451c00282e00a038f73dd62
7248 Author: Stefan Roese <sr@denx.de>
7249 Date: Thu Jul 17 10:40:51 2008 +0200
7250
7251 ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
7252
7253 Signed-off-by: Stefan Roese <sr@denx.de>
7254
7255 commit 021f6df6e96af5b387810cf96d24848da1faa55c
7256 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7257 Date: Thu Jul 10 17:20:51 2008 +0400
7258
7259 83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
7260
7261 The thinko was quite silly indeed, I messed with !ptr. Normally this
7262 would trigger some fault, but in U-Boot NULL pointer is equal to phys
7263 0, so the code was working still, just didn't actually test mpc8315erdb
7264 environment variable value. Heh.
7265
7266 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7267 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7268
7269 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
7270 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7271 Date: Tue Jul 8 21:00:04 2008 +0400
7272
7273 83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
7274
7275 Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
7276 support, or without TSEC1 but with USB ULPI PHY support in addition.
7277 With this patch user can specify desired USB PHY.
7278
7279 Also, it seems that we can't distinguish the two boards in software, so
7280 user have to set `mpc8315erdb' environment variable to either 'tsec1'
7281 (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
7282 Linux will not probe for TSEC1.
7283
7284 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7285 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7286
7287 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
7288 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7289 Date: Tue Jul 8 20:59:43 2008 +0400
7290
7291 fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
7292
7293 Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
7294 MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
7295 (connected to the four-ports hub, usb host only).
7296
7297 This patch implements support for passing Dual-Role USB controller's
7298 device tree property phy_type through the usb_phy_type environment
7299 variable.
7300
7301 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7302 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7303 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7304
7305 commit 699f05125509249072a0b865c8d35520d97cd501
7306 Author: Wolfgang Denk <wd@denx.de>
7307 Date: Tue Jul 15 22:22:44 2008 +0200
7308
7309 Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
7310
7311 Signed-off-by: Wolfgang Denk <wd@denx.de>
7312
7313 commit bcab74baa6b1b1c969038ab6f64a186239180405
7314 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7315 Date: Tue Jul 15 11:23:02 2008 -0400
7316
7317 Round the serial port clock divisor value returned by calc_divisor()
7318
7319 Round the serial port clock divisor value returned by
7320 calc_divisor()
7321
7322 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7323 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7324
7325 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
7326 Author: Robin Getz <rgetz@blackfin.uclinux.org>
7327 Date: Tue Jul 15 21:44:46 2008 +0200
7328
7329 Fix DHCP protocol so U-Boot does not respond too early
7330 on the network with it's offered IP number; it should not reply until
7331 after it has received a DHCP ACK message. Also ensures that U-Boot
7332 does it's DHCPREQUEST as broadcast (per RFC 2131).
7333
7334 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
7335 Acked-by: Ben Warren <biggerbadderben@gmail.com>
7336 Signed-off-by: Wolfgang Denk <wd@denx.de>
7337
7338 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
7339 Author: Sebastian Siewior <bigeasy@linutronix.de>
7340 Date: Tue Jul 15 13:35:23 2008 +0200
7341
7342 cfi_flash: make the command u32 only
7343
7344 This got changed by commit 93c56f212c
7345 [cfi_flash: support of long cmd in U-boot.]
7346
7347 Long is the wrong type because it will behave differently on 64bit
7348 machines in a way that is probably not expected. u32 should be
7349 enough.
7350
7351 Cc: Alexey Korolev <akorolev@infradead.org>
7352 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
7353 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
7354
7355 commit 31cfe57491b183acae575d486729e158f016c27b
7356 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7357 Date: Mon Jul 14 23:48:41 2008 +0200
7358
7359 tools/gitignore: update to all generated files
7360
7361 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7362
7363 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
7364 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
7365 Date: Wed Jul 9 18:30:44 2008 +0200
7366
7367 mpc5xxx: Add MVBC_P board support
7368
7369 The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
7370 controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
7371
7372 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
7373 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
7374
7375 commit e2d31fb3450653115452144363d5bde4e5e3e693
7376 Author: Timur Tabi <timur@freescale.com>
7377 Date: Thu Jun 19 17:56:11 2008 -0500
7378
7379 Update Freescale sys_eeprom.c to handle CCID formats
7380
7381 Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats. The
7382 NXID format replaces the older CCID format, but it's important to support both
7383 since most boards out there still use the CCID format. This change is in
7384 preparation for using one file to handle both formats. This will also unify
7385 EEPROM support for all Freescale 85xx and 86xx boards.
7386
7387 Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
7388 instead of ID_EEPROM_ADDR.
7389
7390 Signed-off-by: Timur Tabi <timur@freescale.com>
7391
7392 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
7393 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7394 Date: Fri Jul 11 17:22:43 2008 +0900
7395
7396 pci: sh: Add pci_skip_dev and pci_print_dev function
7397
7398 Add function of new PCI, pci_skip_dev and pci_print_dev.
7399
7400 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7401 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7402
7403 commit 1107014e835ec9d46c0333f4211d104f77442db0
7404 Author: Andy Fleming <afleming@freescale.com>
7405 Date: Mon Jul 14 20:29:07 2008 -0500
7406
7407 Clean up INIT_RAM options
7408
7409 The L2_INIT_RAM option was unused, and recent changes to the TLB code
7410 meant that the INIT_RAM TLBs weren't being cleared out. In order to reduce
7411 the amount of mapped space attached to nothing, we change things so the TLBs
7412 get cleared.
7413
7414 Signed-off-by: Andy Fleming <afleming@freescale.com>
7415
7416 commit 4524561820a9327e89107854b3a7187800ccf719
7417 Author: Andy Fleming <afleming@freescale.com>
7418 Date: Mon Jul 14 20:26:57 2008 -0500
7419
7420 Remove fake flash bank from 8544 DS
7421
7422 The fake flash bank was generating errors for anyone who didn't have a
7423 PromJET hooked up to the board. As that constitutes the vast majority of
7424 users, we remove it.
7425
7426 Signed-off-by: Andy Fleming <afleming@freescale.com>
7427
7428 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
7429 Author: Kumar Gala <galak@kernel.crashing.org>
7430 Date: Mon Jul 14 14:07:03 2008 -0500
7431
7432 MPC8544DS: Add ATI Video card support
7433
7434 Add support for using a PCIe ATI Video card on PCIe2.
7435
7436 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7437
7438 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
7439 Author: Kumar Gala <galak@kernel.crashing.org>
7440 Date: Mon Jul 14 14:07:02 2008 -0500
7441
7442 85xx: Add some L1/L2 SPR register definitions
7443
7444 Add new L1/L2 SPRs related to e500mc cache config and control.
7445
7446 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7447
7448 commit e5852787f0c3c442a276262f13d91ca450605ac0
7449 Author: Kumar Gala <galak@kernel.crashing.org>
7450 Date: Mon Jul 14 14:07:01 2008 -0500
7451
7452 MPC8544DS: Report board id, board version and fpga version.
7453
7454 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7455
7456 commit 73f15a060f67a2462551c334215bd20fac6b81d1
7457 Author: Kumar Gala <galak@kernel.crashing.org>
7458 Date: Mon Jul 14 14:07:00 2008 -0500
7459
7460 85xx: Cleanup L2 cache size detection
7461
7462 The L2 size detection code was a bit confusing and we kept having to add
7463 code to it to handle new processors. Change the sense of detection so we
7464 look for the older processors that aren't changing.
7465
7466 Also added support for 1M cache size on 8572.
7467
7468 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7469
7470 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
7471 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7472 Date: Fri Jul 11 15:33:08 2008 -0400
7473
7474 sbc8560: enable CONFIG_OF_LIBFDT by default
7475
7476 Make the default build for the sbc8560 board be powerpc
7477 capable with libfdt support.
7478
7479 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7480
7481 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
7482 Author: Andy Fleming <afleming@freescale.com>
7483 Date: Mon Jul 14 20:04:40 2008 -0500
7484
7485 Fix indentation for default boot environment variables
7486
7487 This was proposed by Paul Gortmaker in response to Wolfgang's comments on
7488 similar #defines in sbc8560.h.
7489
7490 Signed-off-by: Andy Fleming <afleming@freescale.com>
7491
7492 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
7493 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7494 Date: Fri Jul 11 15:33:07 2008 -0400
7495
7496 sbc8560: add default fdt values
7497
7498 Add in the default fdt settings and the typical EXTRA_ENV
7499 settings as borrowed from the mpc8560ads. Fix a couple
7500 of stale references to the mpc8560ads dating back to the
7501 original clone/fork.
7502
7503 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7504 Signed-off-by: Andy Fleming <afleming@freescale.com>
7505
7506 commit d04e76edf92f7f89696989e8702b97e020455af3
7507 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7508 Date: Fri Jul 11 15:33:06 2008 -0400
7509
7510 sbc8560: add in ft_board_setup()
7511
7512 Add in for the sbc8560, the ft_board_setup() routine, based on what is
7513 in use for the Freescale MPC8560ADS board.
7514
7515 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7516
7517 commit c158bcaca3b31cbe38c4143812e6170e38a57393
7518 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7519 Date: Fri Jul 11 15:33:05 2008 -0400
7520
7521 sbc8560: define eth0 and eth1 instead of eth1 and eth2
7522
7523 The existing config doesn't define CONFIG_HAS_ETH0, and so the
7524 fdt support doesn't update the zeros in the dtb local-mac with
7525 real data from the u-boot env. Since the existing config is
7526 tailored to just two interfaces, get rid of the ETH2 definitions
7527 at the same time.
7528
7529 Also don't include any end user specific data into the environment
7530 by default -- things like MAC address, network parameters etc. need
7531 to come from the end user.
7532
7533 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7534 Signed-off-by: Andy Fleming <afleming@freescale.com>
7535
7536 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
7537 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7538 Date: Fri Jul 11 15:33:04 2008 -0400
7539
7540 sbc8560: properly set cs0_bnds for 512MB
7541
7542 The sbc8560 board ships with 512MB of memory installed,
7543 but the current cs0_bnds is hard coded for 256MB. Set the
7544 value based on CFG_SDRAM_SIZE.
7545
7546 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7547
7548 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
7549 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7550 Date: Fri Jul 11 15:33:03 2008 -0400
7551
7552 sbc8560: proper definitions for TSEC.
7553
7554 The definitions for the TSEC have become out of date. There is no
7555 longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
7556 Update to match those of other boards, like the MPC8560ADS.
7557
7558 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7559 Acked-by: Ben Warren <biggerbadderben@gmail.com>
7560
7561 commit 71074abbe0c76429577aff58aeff0a24ad210b23
7562 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7563 Date: Wed Jul 9 13:23:05 2008 -0400
7564
7565 8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
7566
7567 Some boards that have external 16550 UARTs don't have a direct
7568 tie between bi_busfreq and the clock used for the UARTs. Boards
7569 that do have such a tie should set CFG_NS16550_CLK to be
7570 get_bus_freq(0) -- which most of them do already.
7571
7572 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7573 Acked-by: Kim Phillips <kim.phillips@freescale.com>
7574
7575 commit 24ef76f320fbadf074105229826514db140f939f
7576 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
7577 Date: Wed Jul 2 07:03:53 2008 -0700
7578
7579 Change the temp map to ROM to align addresses to page size.
7580
7581 With a page size of BOOKE_PAGESZ_16M, both the real and effective
7582 addresses must be multiples of 16MB. The hardware silently truncates
7583 them so the code happens to work. This patch clarifies the situation
7584 by establishing addresses that the hardware doesn't need to truncate.
7585
7586 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
7587 Signed-off-by: Andy Fleming <afleming@freescale.com>
7588
7589 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
7590 Author: Kim Phillips <kim.phillips@freescale.com>
7591 Date: Tue Jun 17 17:45:22 2008 -0500
7592
7593 mpc85xx: use IS_E_PROCESSOR macro
7594
7595 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7596
7597 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
7598 Author: Kim Phillips <kim.phillips@freescale.com>
7599 Date: Mon Jun 16 15:55:53 2008 -0500
7600
7601 fdt: add crypto node handling for MPC8{3, 5}xxE processors
7602
7603 Delete the crypto node if not on an E-processor. If on 8360 or 834x family,
7604 check rev and up-rev crypto node (to SEC rev. 2.4 property values)
7605 if on an 'EA' processor, e.g. MPC8349EA.
7606
7607 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7608
7609 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
7610 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7611 Date: Fri Jul 11 15:10:11 2008 -0400
7612
7613 ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
7614
7615 ARM DaVinci: Remove extern phy_t declaration by moving
7616 code to proper place.
7617
7618 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7619
7620 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
7621 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7622 Date: Fri Jul 11 15:10:10 2008 -0400
7623
7624 ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
7625
7626 ARM DaVinci: Remove duplicate definitions of MACH_TYPE
7627 and prototype of i2c_init().
7628
7629 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7630
7631 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
7632 Author: Kumar Gala <galak@kernel.crashing.org>
7633 Date: Mon Jul 14 14:03:02 2008 -0500
7634
7635 Fix some more printf() format problems.
7636
7637 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7638
7639 commit 45b16d22c64674ccd8c4637456a987463609141c
7640 Author: Wolfgang Denk <wd@denx.de>
7641 Date: Mon Jul 14 22:38:42 2008 +0200
7642
7643 Fix coding style; make code better parsable by external tools
7644
7645 Signed-off-by: Wolfgang Denk <wd@denx.de>
7646
7647 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
7648 Author: Wolfgang Denk <wd@denx.de>
7649 Date: Mon Jul 14 21:19:08 2008 +0200
7650
7651 cpu/i386/serial.c: Fix syntax errors
7652
7653 Signed-off-by: Wolfgang Denk <wd@denx.de>
7654
7655 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
7656 Author: Wolfgang Denk <wd@denx.de>
7657 Date: Mon Jul 14 20:41:35 2008 +0200
7658
7659 elppc board: Coding style cleanup.
7660
7661 Signed-off-by: Wolfgang Denk <wd@denx.de>
7662
7663 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
7664 Author: Wolfgang Denk <wd@denx.de>
7665 Date: Mon Jul 14 20:40:22 2008 +0200
7666
7667 elppc board: fix syntax error.
7668
7669 Signed-off-by: Wolfgang Denk <wd@denx.de>
7670
7671 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
7672 Author: Wolfgang Denk <wd@denx.de>
7673 Date: Mon Jul 14 20:38:26 2008 +0200
7674
7675 EB+MCF-EV123 board: fix coding style (alingment)
7676
7677 Signed-off-by: Wolfgang Denk <wd@denx.de>
7678
7679 commit 6841785a0bb0f38175456a923edd634fb7dd6947
7680 Author: Wolfgang Denk <wd@denx.de>
7681 Date: Mon Jul 14 20:36:44 2008 +0200
7682
7683 EB+MCF-EV123 board: fix syntx error
7684
7685 Signed-off-by: Wolfgang Denk <wd@denx.de>
7686
7687 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
7688 Author: Andy Fleming <afleming@freescale.com>
7689 Date: Mon Jul 7 18:02:08 2008 -0500
7690
7691 Remove LBC_CACHE_BASE from 8544 DS
7692
7693 The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping
7694 space for some anyway, we were allowing speculative loads into unmapped space,
7695 which would cause an exception (annoying, even if ultimately harmless).
7696 Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
7697 problem.
7698
7699 Signed-off-by: Andy Fleming <afleming@freescale.com>
7700
7701 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
7702 Author: Wolfgang Denk <wd@denx.de>
7703 Date: Mon Jul 14 15:19:07 2008 +0200
7704
7705 Code cleanup: fix old style assignment ambiguities like "=-" etc.
7706
7707 Signed-off-by: Wolfgang Denk <wd@denx.de>
7708
7709 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
7710 Author: Wolfgang Denk <wd@denx.de>
7711 Date: Mon Jul 14 15:10:53 2008 +0200
7712
7713 AmigaOneG3SE: remove dead and incomplete files
7714
7715 Signed-off-by: Wolfgang Denk <wd@denx.de>
7716
7717 commit b64f190b7a34224df09b559ca111eb1b733f00ad
7718 Author: Wolfgang Denk <wd@denx.de>
7719 Date: Mon Jul 14 15:06:35 2008 +0200
7720
7721 Fix printf() format issues with sizeof_t types by using %zu
7722
7723 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7724 Signed-off-by: Wolfgang Denk <wd@denx.de>
7725
7726 commit f354b73e16a86f9e9085471a830605f74f84ea5d
7727 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7728 Date: Mon Jul 14 14:11:45 2008 +0200
7729
7730 vsprintf: add z and t options
7731
7732 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7733
7734 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
7735 Author: Wolfgang Denk <wd@denx.de>
7736 Date: Sun Jul 13 23:07:35 2008 +0200
7737
7738 Fix some more printf() format issues.
7739
7740 Signed-off-by: Wolfgang Denk <wd@denx.de>
7741
7742 commit d5996dd555edf52721b7691a4c59de016251ed39
7743 Author: Wolfgang Denk <wd@denx.de>
7744 Date: Sun Jul 13 19:51:00 2008 +0200
7745
7746 Fix some more printf() format problems.
7747
7748 Signed-off-by: Wolfgang Denk <wd@denx.de>
7749
7750 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
7751 Author: Wolfgang Denk <wd@denx.de>
7752 Date: Sun Jul 13 19:48:26 2008 +0200
7753
7754 ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
7755
7756 Signed-off-by: Wolfgang Denk <wd@denx.de>
7757
7758 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
7759 Author: Anatolij Gustschin <agust@denx.de>
7760 Date: Sat Jul 12 17:31:36 2008 +0200
7761
7762 Fix bug in Lime video driver
7763
7764 We need to wait while drawing engine clears frame
7765 buffer before any further software accesses to frame
7766 buffer will be initiated. Otherwise software drawn
7767 parts could be partially destroyed by the drawing
7768 engine or even GDC chip freeze could occur (as
7769 observed on socrates board).
7770
7771 Signed-off-by: Anatolij Gustschin <agust@denx.de>
7772
7773 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
7774 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7775 Date: Sat Jul 12 14:36:34 2008 +0200
7776
7777 Fix some more printf() format issues.
7778
7779 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7780
7781 commit 18c8a28aad49803780bd8d52432ded528e37e701
7782 Author: Michal Simek <monstr@monstr.eu>
7783 Date: Fri Jul 11 15:11:57 2008 +0200
7784
7785 hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
7786
7787 Signed-off-by: Michal Simek <monstr@monstr.eu>
7788 Acked-by: Stefan Roese <sr@denx.de>
7789
7790 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
7791 Author: Michal Simek <monstr@monstr.eu>
7792 Date: Fri Jul 11 11:50:53 2008 +0200
7793
7794 hwmon: Cleaning hwmon devices
7795
7796 Clean Makefile
7797 Move device specific values to driver for better reading
7798
7799 Signed-off-by: Michal Simek <monstr@monstr.eu>
7800 Acked-by: Stefan Roese <sr@denx.de>
7801
7802 commit c78fce699c7ff467ecd841da6a79f065180bf578
7803 Author: Michal Simek <monstr@monstr.eu>
7804 Date: Fri Jul 11 10:43:13 2008 +0200
7805
7806 FIS: repare incorrect return value with ramdisk handling
7807
7808 Microblaze and PowerPC use boot_get_ramdisk for loading
7809 ramdisk to memory with checking return value.
7810 Return 0 means success. Return 1 means failed.
7811 Here is correspond part of code from bootm.c which check
7812 return code.
7813
7814 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
7815 &rd_data_start, &rd_data_end);
7816 if (ret)
7817 goto error;
7818
7819 Signed-off-by: Michal Simek <monstr@monstr.eu>
7820
7821 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
7822 Author: Michal Simek <monstr@monstr.eu>
7823 Date: Fri Jul 11 10:10:32 2008 +0200
7824
7825 microblaze: Remove useless ancient headers
7826
7827 Signed-off-by: Michal Simek <monstr@monstr.eu>
7828
7829 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
7830 Author: Michal Simek <monstr@monstr.eu>
7831 Date: Fri Jul 11 10:10:31 2008 +0200
7832
7833 microblaze: Clean uartlite driver
7834
7835 Redesign uartlite driver to in_be32 and out_be32 macros
7836 Fix missing header in io.h
7837
7838 Signed-off-by: Michal Simek <monstr@monstr.eu>
7839 Acked-by: Grant Likely <grant.likely@secretlab.ca>
7840
7841 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
7842 Author: Marcel Ziswiler <marcel@ziswiler.com>
7843 Date: Fri Jul 11 02:39:14 2008 +0200
7844
7845 Enable passing of ATAGs required by latest Linux kernel.
7846
7847 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
7848 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7849 Date: Fri Jul 11 10:24:15 2008 -0400
7850
7851 Fix integer overflow warning in calc_divisor()
7852
7853 which happened when rounding the serial port clock divisor
7854
7855 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7856
7857 commit 6b760189d77f001684e3160b355c185ca3804961
7858 Author: Marcel Ziswiler <marcel@ziswiler.com>
7859 Date: Fri Jul 11 01:09:59 2008 +0200
7860
7861 Fix build time warnings in function mmc_decode_csd()
7862
7863 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
7864
7865 commit c15947d6ce0d59925c97fdfac692476af6e262d0
7866 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7867 Date: Thu Jul 10 10:46:33 2008 -0400
7868
7869 ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
7870
7871 caused by missing dcache status/enable/disable functions.
7872
7873 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7874
7875 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
7876 Author: Stefan Roese <sr@denx.de>
7877 Date: Thu Jul 10 13:53:31 2008 +0200
7878
7879 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
7880
7881 This patch removes some ft_board_setup() functions from some 4xx boards.
7882 This can be done since we now have a default weak implementation for this
7883 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
7884 implementation like canyonlands need their own version.
7885
7886 Signed-off-by: Stefan Roese <sr@denx.de>
7887
7888 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
7889 Author: Wolfgang Denk <wd@denx.de>
7890 Date: Sun Jul 13 14:58:16 2008 +0200
7891
7892 Add last known maintainer for orphaned boards; reformat.
7893
7894 Signed-off-by: Wolfgang Denk <wd@denx.de>
7895
7896 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
7897 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7898 Date: Thu Jul 10 13:16:04 2008 +0200
7899
7900 Remove kharris@nexus-tech.net from MAINTAINERS
7901
7902 Mail to kharris@nexus-tech.net bounces because the user doesn't exist
7903 anymore. You can't be a maintainer without a valid e-mail address, so
7904 move all boards that used to be maintained by Kyle Harris to the
7905 "orphaned" list.
7906
7907 Currently, only PowerPC has a list of orphaned boards, so this patch
7908 creates one for ARM as well.
7909
7910 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7911
7912 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
7913 Author: Anatolij Gustschin <agust@denx.de>
7914 Date: Thu Jul 10 01:15:10 2008 +0200
7915
7916 at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
7917
7918 On the at91sam9260ep development board there is an EEPROM
7919 connected to the TWI interface (PA23, PA24 Peripheral A
7920 multiplexing), so we cannot use these pins as ETX2, ETX3.
7921 This patch configures PA10, PA11 pins for ETX2, ETX3
7922 instead of PA23, PA24 pins.
7923
7924 Signed-off-by: Anatolij Gustschin <agust@denx.de>
7925 Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
7926
7927 commit f889265753ddf4465d9d580827bb9289bfac55d6
7928 Author: Kenneth Johansson <kenneth@southpole.se>
7929 Date: Sat Jul 12 13:18:34 2008 -0600
7930
7931 fix DIU for small screens
7932
7933 The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
7934 so it was not possible to set a slow pixel clock and thus prevented
7935 display on small screens.
7936
7937 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
7938 Acked-by: John Rigby <jrigby@freescale.com>
7939
7940 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
7941 Author: John Rigby <jrigby@freescale.com>
7942 Date: Fri Jul 11 14:44:09 2008 -0600
7943
7944 ADS5121 cleanup compile warnings
7945
7946 board/ads5121/iopin.c
7947 Replace bit fields in struct iopin_t with a single
7948 field and intialize it via plain old macros.
7949 This fixes the type pun warnings and makes the code
7950 more readable.
7951
7952 board/ads5121/ads5121.c
7953 Add include iopin.h to ads5121.c for the iopin_initialize
7954 prototype.
7955
7956 Add an extern void ads5121_diu_init(void)
7957
7958 Signed-off-by: John Rigby <jrigby@freescale.com>
7959
7960 commit bde63587622c4b830a27d1ddf7265843de9e994f
7961 Author: Wolfgang Denk <wd@denx.de>
7962 Date: Fri Jul 11 22:56:11 2008 +0200
7963
7964 Fix some more printf() format issues.
7965
7966 Signed-off-by: Wolfgang Denk <wd@denx.de>
7967
7968 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
7969 Author: Wolfgang Denk <wd@denx.de>
7970 Date: Fri Jul 11 22:55:31 2008 +0200
7971
7972 Fixed some out-of-tree build issues
7973
7974 Signed-off-by: Wolfgang Denk <wd@denx.de>
7975
7976 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
7977 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7978 Date: Wed Jul 9 16:20:23 2008 -0500
7979
7980 ColdFire: Fix FB CS not setup properly for Mcf5282
7981
7982 Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
7983 CFG_CSn_RO is defined as 0, the chipselect will not
7984 be assigned.
7985
7986 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7987
7988 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
7989 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7990 Date: Wed Jul 9 15:47:27 2008 -0500
7991
7992 ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
7993
7994 Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
7995 clock module in cpu/<cf arch>/cpu_init.c
7996
7997 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7998
7999 commit f94945b517f10e01927101679c62361e03d4e837
8000 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8001 Date: Wed Jul 9 15:25:01 2008 -0500
8002
8003 ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
8004
8005 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8006
8007 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
8008 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8009 Date: Wed Jul 9 15:21:44 2008 -0500
8010
8011 Fix compile error caused by missing timer function
8012
8013 Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
8014
8015 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8016
8017 commit c37ea031175b807c54e6bad9b270e9bede6c0078
8018 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8019 Date: Wed Jul 9 15:14:25 2008 -0500
8020
8021 Fix compile error caused by incorrect function return type
8022
8023 Rename int mii_init(void) to void mii_init(void)
8024
8025 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8026
8027 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
8028 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8029 Date: Wed Jun 18 19:27:23 2008 -0500
8030
8031 ColdFire: Fix power up issue for MCF5235
8032
8033 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8034
8035 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
8036 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8037 Date: Wed Jun 18 19:19:07 2008 -0500
8038
8039 ColdFire: Fix compiling error for MCF5275
8040
8041 The compiling error was caused by missing a closed parentheses
8042 in speed.c
8043
8044 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8045
8046 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
8047 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8048 Date: Wed Jun 18 19:14:01 2008 -0500
8049
8050 ColdFire: Fix timer issue for MCF5272
8051
8052 The timer was assigned to wrong timer memory mapped which
8053 caused udelay() and timer() not working properly.
8054
8055 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8056
8057 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
8058 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8059 Date: Wed Jun 18 19:12:13 2008 -0500
8060
8061 ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
8062
8063 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
8064
8065 commit 8371dc2066136be21e10b7b9293e469297d77298
8066 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8067 Date: Wed Jun 18 19:05:23 2008 -0500
8068
8069 ColdFire: Add -got=single param for new linux v4e toolchains
8070
8071 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
8072
8073 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
8074 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8075 Date: Wed Jun 18 13:21:19 2008 -0500
8076
8077 ColdFire: Fix code flash configuration for M547x/M548x boards
8078
8079 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
8080
8081 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
8082 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8083 Date: Tue Jun 24 12:12:16 2008 -0500
8084
8085 ColdFire: Fix warning messages by passing correct data type in board.c
8086
8087 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8088
8089 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
8090 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8091 Date: Thu May 29 12:21:54 2008 -0500
8092
8093 ColdFire: Fix UART baudrate formula
8094
8095 The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
8096 can generate the wrong divisor due to integer division truncation.
8097 Round the calculated divisor value by adding 1/2 the baudrate
8098 before dividing by the baudrate.
8099
8100 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8101 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
8102
8103 commit b578fb471444cbd7db1285701ba51343baaf73fb
8104 Author: Stefan Roese <sr@denx.de>
8105 Date: Thu Jul 10 11:38:26 2008 +0200
8106
8107 ppc4xx: Fix include sequence in 4xx_pcie.c
8108
8109 This patch now moves common.h to the top of the inlcude list. This
8110 is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
8111 the phys_size_t/phys_addr_t are defined to the correct size in this
8112 driver.
8113
8114 Signed-off-by: Stefan Roese <sr@denx.de>
8115
8116 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
8117 Author: Stefan Roese <sr@denx.de>
8118 Date: Fri Jul 11 13:10:56 2008 +0200
8119
8120 ppc4xx: Fix compile warning in 44x_spd_ddr2.c
8121
8122 Signed-off-by: Stefan Roese <sr@denx.de>
8123
8124 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
8125 Author: Stefan Roese <sr@denx.de>
8126 Date: Fri Jul 11 11:40:13 2008 +0200
8127
8128 ppc4xx: Fix small korat merge problem
8129
8130 Signed-off-by: Stefan Roese <sr@denx.de>
8131
8132 commit 1d0554736a0a1dd59718acda660871ce56b69e18
8133 Author: Stefan Roese <sr@denx.de>
8134 Date: Fri Jul 11 11:34:52 2008 +0200
8135
8136 ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
8137
8138 Signed-off-by: Stefan Roese <sr@denx.de>
8139
8140 commit 3a82113ed5934d498f25080441a8261fc9454b15
8141 Author: Stefan Roese <sr@denx.de>
8142 Date: Thu Jul 10 16:37:09 2008 +0200
8143
8144 ppc4xx: Add 460SX UIC defines
8145
8146 Only the really needed ones are added (cascading and EMAC/MAL).
8147
8148 Signed-off-by: Stefan Roese <sr@denx.de>
8149
8150 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
8151 Author: Stefan Roese <sr@denx.de>
8152 Date: Mon Jun 30 14:11:07 2008 +0200
8153
8154 ppc4xx: Continue cleanup of ppc440.h
8155
8156 This patch continues the ppc440.h cleanup by removing some of the unused
8157 defines.
8158
8159 Signed-off-by: Stefan Roese <sr@denx.de>
8160
8161 commit d9056b7913ed6a228d2f33671d916efedee541dd
8162 Author: Stefan Roese <sr@denx.de>
8163 Date: Mon Jun 30 14:05:05 2008 +0200
8164
8165 ppc4xx: Cleanup Katmai & Yucca PCIe register usage
8166
8167 This patch cleans up the 440SPe PCIe register usage. Now only defines
8168 from the include/asm-ppc/4xx_pcie.h are used.
8169
8170 Signed-off-by: Stefan Roese <sr@denx.de>
8171
8172 commit 5de851403b01489b493fa83137ad990b8ce60d1c
8173 Author: Stefan Roese <sr@denx.de>
8174 Date: Thu Jun 26 17:36:39 2008 +0200
8175
8176 ppc4xx: Rework 440GX UIC handling
8177
8178 This patch reworks the 440GX interrupt handling so that the common 4xx
8179 code can be used. The 440GX is an exception to all other 4xx variants
8180 by having the cascading interrupt vectors not on UIC0 but on a special
8181 UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
8182 the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
8183 handling is simpler without any 440GX special cases.
8184
8185 Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
8186
8187 Signed-off-by: Stefan Roese <sr@denx.de>
8188
8189 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
8190 Author: Stefan Roese <sr@denx.de>
8191 Date: Thu Jun 26 13:40:57 2008 +0200
8192
8193 ppc4xx: Consolidate PPC4xx UIC defines
8194
8195 This 2nd patch now removes all UIC mask bit definition. They should be
8196 generated from the vectors by using the UIC_MASK() macro from now on.
8197 This way only the vectors need to get defined for new PPC's.
8198
8199 Also only the really used interrupt vectors are now defined. This makes
8200 definitions for new PPC versions easier and less error prone.
8201
8202 Another part of this patch is that the 4xx emac driver got a little
8203 cleanup, since now the usage of the interrupts is clearer.
8204
8205 Signed-off-by: Stefan Roese <sr@denx.de>
8206
8207 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
8208 Author: Stefan Roese <sr@denx.de>
8209 Date: Wed Jun 25 10:59:22 2008 +0200
8210
8211 ppc4xx: Consolidate PPC4xx UIC defines
8212
8213 This patch is the first step to consolidate the UIC related defines in the
8214 4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
8215 asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
8216 steps.
8217
8218 Signed-off-by: Stefan Roese <sr@denx.de>
8219
8220 commit 7ee2619c20ccecd57966d74d844e6329e141261c
8221 Author: Stefan Roese <sr@denx.de>
8222 Date: Tue Jun 24 17:18:50 2008 +0200
8223
8224 ppc4xx: Consolidate PPC4xx EBC defines
8225
8226 This patch removes all EBC related defines from the PPC4xx headers
8227 ppc405.h and ppc440.h and introduces a new header
8228
8229 include/asm-ppc/ppc4xx-ebc.h
8230
8231 with all those defines.
8232
8233 Signed-off-by: Stefan Roese <sr@denx.de>
8234
8235 commit e321801bed5a6d896d298c00fd20046f039d5d66
8236 Author: Stefan Roese <sr@denx.de>
8237 Date: Thu Jul 10 13:52:44 2008 +0200
8238
8239 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
8240
8241 This patch removes some ft_board_setup() functions from some 4xx boards.
8242 This can be done since we now have a default weak implementation for this
8243 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
8244 implementation like canyonlands need their own version.
8245
8246 Signed-off-by: Stefan Roese <sr@denx.de>
8247
8248 commit 08250eb2edbd96514d049602d9e134110ac3185f
8249 Author: Stefan Roese <sr@denx.de>
8250 Date: Thu Jul 10 15:32:32 2008 +0200
8251
8252 ppc4xx: Fix merge problems in 44x_spd_ddr2.c
8253
8254 Signed-off-by: Stefan Roese <sr@denx.de>
8255
8256 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
8257 Author: Grant Erickson <gerickson@nuovations.com>
8258 Date: Tue Jul 8 08:35:00 2008 -0700
8259
8260 ppc4xx: Add MII mode support to the EMAC RGMII Bridge
8261
8262 This patch adds support for placing the RGMII bridge on the
8263 PPC405EX(r) into MII/GMII mode and allows a board-specific
8264 configuration to specify the bridge mode at compile-time.
8265
8266 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8267 Signed-off-by: Stefan Roese <sr@denx.de>
8268
8269 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
8270 Author: Grant Erickson <gerickson@nuovations.com>
8271 Date: Wed Jul 9 16:46:35 2008 -0700
8272
8273 ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
8274
8275 This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
8276 controller registers (MODT and INITPLR) used by the
8277 PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
8278 peer values used for the INITPLR MR and EMR registers,
8279 respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
8280
8281 With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
8282 Kilauea are replaced by equivalent mnemonics to make it easier to
8283 compare and contrast other 405EX(r)-based boards (e.g. during board
8284 bring-up).
8285
8286 Finally, unified the SDRAM controller register dump routine such that
8287 it can be used across all processor variants that utilize the IBM DDR2
8288 SDRAM controller core. It produces output of the form:
8289
8290 PPC4xx IBM DDR2 Register Dump:
8291 ...
8292 SDRAM_MB0CF[40] = 0x00006701
8293 ...
8294
8295 which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
8296 since it is not uncommon that the DCR values in header files get mixed
8297 up and it helps to validate, at a glance, they match what is printed
8298 in the user manual.
8299
8300 Tested on:
8301 AMCC Kilauea/Haleakala:
8302 - NFS Linux Boot: PASSED
8303 - NAND Linux Boot: PASSED
8304
8305 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8306 Signed-off-by: Stefan Roese <sr@denx.de>
8307
8308 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
8309 Author: Grant Erickson <gerickson@nuovations.com>
8310 Date: Wed Jul 9 16:31:59 2008 -0700
8311
8312 ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
8313
8314 Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
8315 revision ID DCR based on 405EX, and add field mnemonics for bus error
8316 status and ECC error status registers.
8317
8318 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8319 Signed-off-by: Stefan Roese <sr@denx.de>
8320
8321 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
8322 Author: Grant Erickson <gerickson@nuovations.com>
8323 Date: Wed Jul 9 16:31:36 2008 -0700
8324
8325 ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
8326
8327 This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
8328
8329 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8330 Signed-off-by: Stefan Roese <sr@denx.de>
8331
8332 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
8333 Author: Grant Erickson <gerickson@nuovations.com>
8334 Date: Wed Jul 9 11:55:46 2008 -0700
8335
8336 PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
8337
8338 While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
8339 controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
8340 the 405EX(r), SDRAM_MCSTAT has a different DCR value.
8341
8342 Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
8343 which causes SDRAM initialization to periodically fail since it can
8344 prematurely indicate SDRAM ready status.
8345
8346 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8347 Signed-off-by: Stefan Roese <sr@denx.de>
8348
8349 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
8350 Author: Feng Kan <fkan@amcc.com>
8351 Date: Tue Jul 8 22:48:42 2008 -0700
8352
8353 ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
8354
8355 Add AMCC Redwood reference board that uses the latest
8356 PPC 464 CPU processor combined with a rich mix of peripheral
8357 controllers. The board will support PCIe, mutiple Gig ethernet
8358 ports, advanced hardware RAID assistance and IEEE 1588.
8359
8360 Signed-off-by: Feng Kan <fkan@amcc.com>
8361 Signed-off-by: Stefan Roese <sr@denx.de>
8362
8363 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
8364 Author: Feng Kan <fkan@amcc.com>
8365 Date: Tue Jul 8 22:48:07 2008 -0700
8366
8367 ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
8368
8369 Signed-off-by: Feng Kan <fkan@amcc.com>
8370 Signed-off-by: Stefan Roese <sr@denx.de>
8371
8372 commit 7d30793685efcada183891c78fc892e6c9ba50c7
8373 Author: Feng Kan <fkan@amcc.com>
8374 Date: Tue Jul 8 22:47:31 2008 -0700
8375
8376 ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
8377
8378 Signed-off-by: Feng Kan <fkan@amcc.com>
8379 Signed-off-by: Stefan Roese <sr@denx.de>
8380
8381 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
8382 Author: Wolfgang Denk <wd@denx.de>
8383 Date: Fri Jul 11 01:16:00 2008 +0200
8384
8385 Fix some more print() format errors.
8386
8387 Signed-off-by: Wolfgang Denk <wd@denx.de>
8388
8389 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
8390 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8391 Date: Thu Jul 10 20:57:54 2008 +0200
8392
8393 MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
8394
8395 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8396
8397 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
8398 Author: Sergey Lapin <slapin@ossfans.org>
8399 Date: Thu Jun 5 11:06:29 2008 +0400
8400
8401 DataFlash AT45DB021 support
8402
8403 Some boards based on AT91SAM926X-EK use smaller DF chips to keep
8404 bootstrap, u-boot and its environment, using NAND or other external
8405 storage for kernel and rootfs. This patch adds support for
8406 small 1024x263 chip.
8407
8408 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
8409
8410 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
8411 Author: Kim Phillips <kim.phillips@freescale.com>
8412 Date: Thu Jul 10 14:00:15 2008 -0500
8413
8414 silence misc printf formatting compiler warnings
8415
8416 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8417
8418 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
8419 Author: Markus Klotzbücher <mk@denx.de>
8420 Date: Thu Jul 10 14:47:09 2008 +0200
8421
8422 USB: shutdown USB before booting
8423
8424 This patch fixes a potentially serious issue related to USB which was
8425 discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
8426 ARM920T. Martin wrote:
8427
8428 Turn off USB to prevent the host controller from writing to the
8429 SDRAM while Linux is booting. This could happen, because the HCCA
8430 (Host Controller Communication Area) lies within the SDRAM and the
8431 host controller writes continously to this area (as busmaster!), for
8432 example to increase the HccaFrameNumber variable, which happens
8433 every 1 ms.
8434
8435 This is a slightly modified version of the patch in order to shutdown
8436 USB when booting on all architectures.
8437
8438 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
8439
8440 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
8441 Author: Martha Marx <mmarx@silicontkx.com>
8442 Date: Thu May 29 14:23:25 2008 -0400
8443
8444 Configuration changes for ADS5121 Rev 3
8445
8446 ADS5121 Rev 3 board is now the default config
8447
8448 config targets are now
8449
8450 ads5121_config
8451 Rev 3 board with
8452 PCI
8453 M41T62 on board RTC
8454 512MB DRAM
8455
8456 ads5121_rev2_config
8457 Rev 2 board with
8458 No PCI
8459 256MB DRAM
8460
8461 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
8462 Acked-by: Grant Likely <grant.likely@secretlab.ca>
8463 Acked-by: John Rigby <jrigby@freescale.com>
8464
8465 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
8466 Author: Martha Marx <mmarx@silicontkx.com>
8467 Date: Thu May 29 15:37:21 2008 -0400
8468
8469 Consolidate ADS5121 IO Pin configuration
8470
8471 Consolidate ADS5121 IO Pin configuration to one file
8472 board/ads5121/iopin.c.
8473
8474 Remove pin config from cpu/mpc512x/fec.c
8475
8476 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
8477 Acked-by: Grant Likely <grant.likely@secretlab.ca>
8478 Acked-by: John Rigby <jrigby@freescale.com>
8479
8480 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
8481 Author: Christian Eggers <christian@p2400.wgnetz.xx>
8482 Date: Fri Jun 27 19:46:51 2008 +0200
8483
8484 Fix "usb part" command
8485
8486 Only print partition for selected device if user supplied the <dev>
8487 arg with the "usb part [dev]" command.
8488
8489 Signed-off-by: Christian Eggers <ceggers@gmx.de>
8490 Acked-by: Markus Klotzbuecher <mk@denx.de>
8491
8492 commit cc83b27217f7380041fea386ddb6d6d9b261617d
8493 Author: Harald Welte <laforge@gnumonks.org>
8494 Date: Mon Jul 7 00:58:05 2008 +0800
8495
8496 fix USB devices with multiple configurations
8497
8498 This patch fixes bugs in usbdcore*.c related to the use of devices
8499 with multiple configurations.
8500
8501 The original code made mistakes about the meaning of configuration value and
8502 configuration index, and the resulting off-by-one errors resulted in:
8503
8504 * SET_CONFIGURATION always selected the first configuration, no matter what
8505 wValue is being passed.
8506 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
8507 configuration (index 0).
8508
8509 Signed-off-by: Harald Welte <laforge@openmoko.org>
8510 Acked-by: Markus Klotzbuecher <mk@denx.de>
8511
8512 commit 06c53beae1a726e707971c555613f09b270a2461
8513 Author: Wolfgang Denk <wd@denx.de>
8514 Date: Thu Jul 10 13:16:09 2008 +0200
8515
8516 Fix some more print() format errors.
8517
8518 Signed-off-by: Wolfgang Denk <wd@denx.de>
8519
8520 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
8521 Author: Christian Eggers <christian@p2400.wgnetz.xx>
8522 Date: Fri Jun 27 19:46:51 2008 +0200
8523
8524 Fix "usb part" command
8525
8526 Only print partition for selected device if user supplied the <dev>
8527 arg with the "usb part [dev]" command.
8528
8529 Signed-off-by: Christian Eggers <ceggers@gmx.de>
8530 Acked-by: Markus Klotzbuecher <mk@denx.de>
8531
8532 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
8533 Author: Harald Welte <laforge@gnumonks.org>
8534 Date: Mon Jul 7 00:58:05 2008 +0800
8535
8536 fix USB devices with multiple configurations
8537
8538 This patch fixes bugs in usbdcore*.c related to the use of devices
8539 with multiple configurations.
8540
8541 The original code made mistakes about the meaning of configuration value and
8542 configuration index, and the resulting off-by-one errors resulted in:
8543
8544 * SET_CONFIGURATION always selected the first configuration, no matter what
8545 wValue is being passed.
8546 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
8547 configuration (index 0).
8548
8549 Signed-off-by: Harald Welte <laforge@openmoko.org>
8550 Acked-by: Markus Klotzbuecher <mk@denx.de>
8551
8552 commit e870690bdca154943ecadd5212d2d59c1b9d391b
8553 Author: Stefan Roese <sr@denx.de>
8554 Date: Thu Jul 10 10:10:54 2008 +0200
8555
8556 MTD/NAND: Fix printf format warning in nand code
8557
8558 This patch fixes NAND related printf format warning. Those warnings are
8559 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
8560 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
8561 really helpful.
8562
8563 Signed-off-by: Stefan Roese <sr@denx.de>
8564
8565 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
8566 Author: Stefan Roese <sr@denx.de>
8567 Date: Thu Jul 10 10:00:45 2008 +0200
8568
8569 rtc: Fix printf format warning in m41t60.c
8570
8571 Signed-off-by: Stefan Roese <sr@denx.de>
8572
8573 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
8574 Author: Stefan Roese <sr@denx.de>
8575 Date: Tue Jul 8 12:01:47 2008 +0200
8576
8577 pci: Move PCI device configuration check into a separate weak function
8578
8579 This patch moves the check, if a device should be skipped in PCI PNP
8580 configuration into the function pci_skip_dev(). This function is defined
8581 as weak so that it can be overwritten by a platform specific one if
8582 needed. The check if the device should get printed in the PCI summary upon
8583 bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
8584 pci_print_dev() which is also defined as weak too.
8585
8586 Signed-off-by: Stefan Roese <sr@denx.de>
8587
8588 commit b002144e1dc21374b1ef5281fe6b5d014af96650
8589 Author: Stefan Roese <sr@denx.de>
8590 Date: Thu Jul 10 09:58:06 2008 +0200
8591
8592 ppc4xx: Fix printf format warnings now visible with the updated format check
8593
8594 This patch fixes ppc4xx related printf format warning. Those warnings are
8595 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
8596 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
8597 really helpful.
8598
8599 Signed-off-by: Stefan Roese <sr@denx.de>
8600
8601 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
8602 Author: Stefan Roese <sr@denx.de>
8603 Date: Wed Jul 9 17:33:57 2008 +0200
8604
8605 ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
8606
8607 Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
8608 To support such configurations, we "only" map the first 2GB via the TLB's. We
8609 need some free virtual address space for the remaining peripherals like, SoC
8610 devices, FLASH etc.
8611
8612 Note that ECC is currently not supported on configurations with more than 2GB
8613 SDRAM. This is because we only map the first 2GB on such systems, and therefore
8614 the ECC parity byte of the remaining area can't be written.
8615
8616 Signed-off-by: Stefan Roese <sr@denx.de>
8617
8618 commit cf1c2ed91df26903b956948f37f82de9e1158a89
8619 Author: Larry Johnson <lrj@acm.org>
8620 Date: Sat Jun 14 17:02:49 2008 -0400
8621
8622 ppc4xx: Remove implementation of testdram() from Korat board support
8623
8624 Signed-off-by: Larry Johnson <lrj@acm.org>
8625 Signed-off-by: Stefan Roese <sr@denx.de>
8626
8627 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
8628 Author: Larry Johnson <lrj@acm.org>
8629 Date: Sat Jun 14 16:53:02 2008 -0400
8630
8631 ppc4xx: Update and add FDT to Korat board support
8632
8633 Signed-off-by: Larry Johnson <lrj@acm.org>
8634 Signed-off-by: Stefan Roese <sr@denx.de>
8635
8636 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
8637 Author: Wolfgang Denk <wd@denx.de>
8638 Date: Thu Jul 10 01:13:30 2008 +0200
8639
8640 Minor coding style cleanup; update CHANGELOG
8641
8642 Signed-off-by: Wolfgang Denk <wd@denx.de>
8643
8644 commit 8915f1189c1d29d8be7f4de325702d90a8988219
8645 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8646 Date: Wed Jul 9 17:50:45 2008 -0400
8647
8648 e1000: add support for 82545GM 64bit PCI-X copper variant
8649
8650 This PCI-X e1000 variant works by just adding in the correct
8651 PCI IDs in the appropriate places.
8652
8653 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8654
8655 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
8656 Author: Daniel Hellstrom <daniel@gaisler.com>
8657 Date: Wed Jul 9 12:34:11 2008 +0000
8658
8659 SPARC: Build error fix
8660
8661 (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
8662
8663 This patch makes SPARC targets build again. It is caused by
8664 phys_addr_t and phys_size_t being defined in the wrong header
8665 file. include/lmb.h need those typedefs to build.
8666
8667 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
8668
8669 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
8670 Author: Marcel Ziswiler <marcel@ziswiler.com>
8671 Date: Wed Jul 9 08:17:15 2008 +0200
8672
8673 Many spelling fixes in README.
8674
8675 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
8676
8677 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
8678 Author: Marcel Ziswiler <marcel@ziswiler.com>
8679 Date: Wed Jul 9 08:17:06 2008 +0200
8680
8681 Minor spelling fix in comment.
8682
8683 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
8684
8685 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
8686 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8687 Date: Tue Jul 8 14:54:58 2008 -0400
8688
8689 Round the serial port clock divisor value returned by calc_divisor()
8690
8691 Round the serial port clock divisor value returned by
8692 calc_divisor().
8693
8694 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8695 Signed-off-by: John Roberts <john.roberts@pwav.com>
8696
8697 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
8698 Author: Scott Wood <scottwood@freescale.com>
8699 Date: Wed Jul 9 17:47:52 2008 -0500
8700
8701 NAND: ifdef-protect most of nand.h when using legacy NAND.
8702
8703 Some macros such as NAND_CTL_SETALE conflict between current and legacy
8704 NAND, being defined by the subsystem in the former case and the board
8705 config file in the latter.
8706
8707 Signed-off-by: Scott Wood <scottwood@freescale.com>
8708
8709 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
8710 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8711 Date: Tue Jul 8 11:02:05 2008 -0400
8712
8713 ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
8714
8715 ARM: Fix for incorrect version of patch applied when
8716 adding support for the Lyrtech SFF-SDR board.
8717
8718 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8719 Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
8720
8721 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
8722 Author: Kyungmin Park <kmpark@infradead.org>
8723 Date: Tue Jul 8 09:08:40 2008 +0900
8724
8725 Remove useless print message at apollon
8726
8727 Remove useless print message at apollon
8728
8729 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
8730
8731 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
8732 Author: Andy Fleming <afleming@freescale.com>
8733 Date: Mon Jul 7 14:24:39 2008 -0500
8734
8735 Fix LMB type issues
8736
8737 The LMB code now uses phys_addr_t and phys_size_t. Also, there were a couple
8738 of casting problems in the bootm code that called the LMB functions.
8739
8740 Signed-off-by: Andy Fleming <afleming@freescale.com>
8741
8742 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
8743 Author: Kumar Gala <galak@kernel.crashing.org>
8744 Date: Mon Jul 7 09:39:06 2008 -0500
8745
8746 Fix compiler warnings
8747
8748 gcc-4.3.x generates the following:
8749
8750 bootm.c: In function 'do_bootm_linux':
8751 bootm.c:208: warning: cast from pointer to integer of different size
8752 bootm.c:215: warning: cast from pointer to integer of different size
8753
8754 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8755
8756 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
8757 Author: Harald Welte <laforge@gnumonks.org>
8758 Date: Mon Jul 7 15:40:39 2008 +0800
8759
8760 Remove code duplication for setting the default environment
8761
8762 common/env_common.c (default_env): new function that resets the environment to
8763 the default value
8764 common/env_common.c (env_relocate): use default_env instead of own copy
8765 common/env_nand.c (env_relocate_spec): use default_env instead of own copy
8766 include/environment.h: added default_env prototype
8767
8768 Signed-off-by: Werner Almesberger <werner@openmoko.org>
8769 Signed-off-by: Harald Welte <laforge@openmoko.org>
8770
8771 commit 99c2b434d37863df5dda5207a53760c6506fc2be
8772 Author: Marcel Ziswiler <marcel@ziswiler.com>
8773 Date: Sun Jun 22 16:13:46 2008 +0200
8774
8775 NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
8776
8777 The writeenv() and readenv() calls introduced by the recently added bad block
8778 management for environment variables were missing casts therefore producing
8779 compile time warnings.
8780 While at it fixing some typo in a comment and indentation.
8781
8782 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
8783 Signed-off-by: Scott Wood <scottwood@freescale.com>
8784
8785 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
8786 Author: Scott Wood <scottwood@freescale.com>
8787 Date: Fri Jun 20 12:38:57 2008 -0500
8788
8789 NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
8790
8791 This is particularly problematic now that non-NAND-specific code is
8792 including <nand.h>, and thus all debugging code is being compiled
8793 regardless of whether it was requested, as reported by Scott McNutt
8794 <smcnutt@psyent.com>.
8795
8796 Signed-off-by: Scott Wood <scottwood@freescale.com>
8797
8798 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
8799 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8800 Date: Thu Jun 12 19:27:58 2008 +0200
8801
8802 mmc: Move atmel_mci driver into drivers/mmc
8803
8804 This makes it easier to use the driver on other platforms.
8805
8806 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8807 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8808
8809 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
8810 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8811 Date: Thu Jun 12 19:27:57 2008 +0200
8812
8813 avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
8814
8815 After we move the atmel_mci driver into drivers/mmc, we can't select
8816 it with CONFIG_MMC anymore. Introduce a new symbol specifically for
8817 this driver so that there's no ambiguity.
8818
8819 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8820 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8821
8822 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
8823 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8824 Date: Thu Jun 12 19:27:56 2008 +0200
8825
8826 Create drivers/mmc subdirectory
8827
8828 In order to consolidate more of the various MMC drivers around the
8829 tree, we must first have a common place to put them.
8830
8831 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8832 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8833
8834 commit b502611b51f02718c2d1117d4981dabceb5af6de
8835 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
8836 Date: Sun Jul 6 12:30:09 2008 +0200
8837
8838 Change env_get_char from a global function ptr to a function
8839
8840 This avoids an early global data reference.
8841
8842 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
8843
8844 commit 27269417ade432189b234d9fbac98b54e37b978c
8845 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
8846 Date: Sun Jul 6 13:57:58 2008 +0400
8847
8848 Some copy-n-paste fixes in printf usage
8849
8850 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
8851
8852 commit 0e6989b9faf1588e8723535539e88a0df3c71356
8853 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
8854 Date: Sun Jul 6 13:57:00 2008 +0400
8855
8856 FDT memory and pci node fixes for MPC8260ADS
8857
8858 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
8859
8860 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
8861 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
8862 Date: Mon Jul 7 06:41:14 2008 -0700
8863
8864 Fix printf errors.
8865
8866 The compiler will help find mismatches between printf formats and
8867 arguments if you let it. This patch adds the necessary attributes to
8868 declarations in include/common.h, then begins to correct the resulting
8869 compiler warnings. Some of these were bugs, e.g., "$d" instead of
8870 "%d" and incorrect arguments. Others were just annoying, like
8871 int-long mismatches on a system where both are 32 bits. It's worth
8872 fixing the annoying errors to catch the real ones.
8873
8874 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
8875
8876 commit 417faf285b2527acb2de24c5cd3e2621d385408c
8877 Author: Becky Bruce <becky.bruce@freescale.com>
8878 Date: Wed Jul 9 11:09:41 2008 -0500
8879
8880 Allow print_size to print in GB
8881
8882 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8883
8884 commit e7c374529c87525c9aa463e0557c287887ae4e9e
8885 Author: Jason McMullan <mcmullan@netapp.com>
8886 Date: Sun Jun 8 23:56:00 2008 -0400
8887
8888 mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
8889
8890 Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
8891 they are set in the U-Boot environment.
8892
8893 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
8894 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
8895
8896 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
8897 Author: Stefan Roese <sr@denx.de>
8898 Date: Tue Jul 8 12:57:14 2008 +0200
8899
8900 jedec_flash: Fix AM29DL800BB device ID
8901
8902 As pointed out by Jerry Hicks, this patch corrects the device ID of
8903 the Spansion AM29DL800BB NOR device. Verified against latest Spansion
8904 datasheet (rev C4 from Dezember 2006).
8905
8906 Signed-off-by: Stefan Roese <sr@denx.de>
8907
8908 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
8909 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8910 Date: Mon Jul 7 11:22:37 2008 +0900
8911
8912 sh: Fix compile error sh7763rdp board
8913
8914 Disable SH ether driver.
8915
8916 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8917
8918 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
8919 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8920 Date: Tue Jul 8 12:03:24 2008 +0900
8921
8922 sh: Fix SH-boards compile error
8923
8924 By Cleanup out-or-tree building for some boards (.depend)
8925 (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
8926 because filse ware changed, some SH-boards have compile error.
8927 I revised this problem.
8928
8929 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8930
8931 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
8932 Author: Jason Jin <Jason.jin@freescale.com>
8933 Date: Tue May 13 11:50:36 2008 +0800
8934
8935 Feed the watchdog in u-boot for 8610 board.
8936
8937 The watchdog on 8610 board is enabled by setting sw[6]
8938 to on. Once enabled, the watchdog can not be disabled
8939 by software. So feed the dog in u-boot is necessary for
8940 normal operation.
8941
8942 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
8943
8944 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
8945 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8946 Date: Wed Jun 18 12:10:33 2008 -0400
8947
8948 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
8949
8950 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
8951
8952 Remove duplicate code in a if/else block in
8953 cpu/arm926ejs/davinci/lxt972.c.
8954 Fixed style issues.
8955
8956 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8957 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8958
8959 commit fec61431a003f5778bafa2624073a571af8bec9f
8960 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8961 Date: Wed Jun 18 12:10:31 2008 -0400
8962
8963 Remove duplicate definitions in include/lxt971a.h.
8964
8965 Remove duplicate definitions in include/lxt971a.h.
8966
8967 Remove duplicate registers and bits definitions in
8968 include/lxt971a.h for standard MII registers, and
8969 use values in include/miiphy.h instead.
8970
8971 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8972 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8973
8974 commit 9751ee0990f467941da0b095a4e995f863672d7a
8975 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8976 Date: Wed Jun 11 21:05:00 2008 +0900
8977
8978 net: sh: Renesas SH7763 Ethernet device support
8979
8980 Renesas SH7763 has 2 channel Ethernet device.
8981 This is 10/100/1000 Base support.
8982 But this patch check 10/100 Base only.
8983
8984 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8985 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8986
8987 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
8988 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8989 Date: Tue Jun 17 16:28:05 2008 +0900
8990
8991 sh: Update Renesas R2DPlus board
8992
8993 New NOR Flash board support and remove old type flash board config.
8994 And Remove network setting from config file.
8995
8996 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8997 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8998
8999 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
9000 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9001 Date: Tue Jun 17 16:28:01 2008 +0900
9002
9003 sh: Update Renesas R7780MP board
9004
9005 New NOR Flash board support and remove network setting from config file.
9006
9007 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9008 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9009
9010 commit c001cd604e9f133743effbddb1c215b48e761c5a
9011 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9012 Date: Tue Jun 17 16:27:56 2008 +0900
9013
9014 sh: Update Renesas Migo-R board
9015
9016 Remove network setting from config file.
9017
9018 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9019 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9020
9021 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
9022 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9023 Date: Tue Jun 17 16:27:52 2008 +0900
9024
9025 sh: Update Hitachi MS7722SE board
9026
9027 Remove network setting from config file.
9028
9029 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9030 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9031
9032 commit 26209e48e8791670c93108029a5c31a30016c6df
9033 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9034 Date: Tue Jun 17 16:27:48 2008 +0900
9035
9036 sh: Cleanup source code of SH7763RDP
9037
9038 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9039 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9040
9041 commit 5cd5b2c96ef0025762931349d350287aec03ab47
9042 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9043 Date: Tue Jun 17 16:27:44 2008 +0900
9044
9045 sh: Cleanup source code of R2DPlus
9046
9047 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9048 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9049
9050 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
9051 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9052 Date: Tue Jun 17 16:27:41 2008 +0900
9053
9054 sh: Cleanup source code of R7780MP
9055
9056 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9057 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9058
9059 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
9060 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9061 Date: Tue Jun 17 16:27:38 2008 +0900
9062
9063 sh: Cleanup source code of MS7722SE
9064
9065 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9066 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9067
9068 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
9069 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9070 Date: Tue Jun 17 16:27:34 2008 +0900
9071
9072 sh: Cleanup source code of MS7720SE
9073
9074 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9075 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9076
9077 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
9078 Author: Wolfgang Denk <wd@denx.de>
9079 Date: Mon Jul 7 00:45:03 2008 +0200
9080
9081 SH: fix out of tree building
9082
9083 Signed-off-by: Wolfgang Denk <wd@denx.de>
9084
9085 commit 9047bfa1e737d787be460387dd6f45737eeceb10
9086 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9087 Date: Thu Jul 3 23:16:06 2008 +0900
9088
9089 net: smc911x: Fix typo
9090
9091 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9092
9093 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
9094 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9095 Date: Wed Jul 2 18:54:08 2008 +0200
9096
9097 update mvBL-M7 board config
9098
9099 update mvBL-M7 config file to use UBOOT_VERSION and define
9100 CONFIG_HIGH_BATS.
9101
9102 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9103
9104 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
9105 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9106 Date: Mon Jun 30 17:45:01 2008 +0900
9107
9108 net: fix compile problem in smc911x driver.
9109
9110 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9111 Acked-by: Ben Warren <biggerbadderben@gmail.com>
9112
9113 commit 9fea65a6c469b1b474b27446feb58738baba2d31
9114 Author: Michal Simek <monstr@monstr.eu>
9115 Date: Tue Jun 24 09:54:09 2008 +0200
9116
9117 ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
9118
9119 This change helps with better handling with others
9120 Xilinx based platform.
9121
9122 Signed-off-by: Michal Simek <monstr@monstr.eu>
9123 Acked-by: Stefan Roese <sr@denx.de>
9124
9125 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
9126 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9127 Date: Tue Jun 17 13:07:11 2008 +0900
9128
9129 net: ne2000: Move dev_addr variable from grobal to local.
9130
9131 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9132 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9133
9134 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
9135 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9136 Date: Tue Jun 17 13:07:15 2008 +0900
9137
9138 net: ne2000: Fix compile error of NE2000
9139
9140 If enable DEBUG, can not compile ne2000 driver.
9141
9142 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9143 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9144
9145 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
9146 Author: Ben Warren <biggerbadderben@gmail.com>
9147 Date: Mon Jun 23 22:57:27 2008 -0700
9148
9149 Add mechanisms for CPU and board-specific Ethernet initialization
9150
9151 This patch is the first step in cleaning up net/eth.c, by moving Ethernet
9152 initialization to CPU or board-specific code. Initial implementation is
9153 only on the Freescale TSEC controller, but others will be added soon.
9154
9155 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9156
9157 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
9158 Author: Wolfgang Denk <wd@denx.de>
9159 Date: Sun Jul 6 01:21:46 2008 +0200
9160
9161 include/sha256.h: fix file permissions.
9162
9163 Signed-off-by: Wolfgang Denk <wd@denx.de>
9164
9165 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
9166 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
9167 Date: Tue May 27 11:15:29 2008 +0200
9168
9169 [AT91SAM9] Fix NAND FLASH timings
9170
9171 Fix NAND FLASH timings for at91sam9x evaluation kits.
9172
9173 New timings are based on application note
9174 "NAND Flash Support on AT91SAM9 Microcontrollers" available at
9175 http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
9176
9177 Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
9178 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9179 Acked-by: Stelian Pop <stelian@popies.net>
9180
9181 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
9182 Author: Stelian Pop <stelian@popies.net>
9183 Date: Thu May 22 00:15:40 2008 +0200
9184
9185 Fix boot from NOR due to incorrect reset delay.
9186
9187 AT91 RSTC registers are battery-backuped, so their values
9188 are not reset across power cycles. One of those registers,
9189 the AT91_RSTC_MR register, is being modified by U-Boot, in
9190 the ethernet initialisation routine, to generate a 500ms
9191 user reset.
9192
9193 Unfortunately, this value is not being restored afterwards,
9194 causing subsequent resets to also last for 500ms.
9195
9196 This long reset sequence causes problems (at least) in the
9197 boot sequence from NOR: by the time the CPU tries to load
9198 a program from the NOR flash, the latter is still in reset
9199 and not yet available.
9200
9201 Additionaly, this patch fixes a bug in the original code which
9202 caused the reset delay to last for 2s instead of 500ms.
9203
9204 Signed-off-by: Stelian Pop <stelian@popies.net>
9205 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9206
9207 commit f492dd636fbbae529e17533995bc6e5813c007f6
9208 Author: Wolfgang Denk <wd@denx.de>
9209 Date: Fri Jul 4 20:11:49 2008 +0200
9210
9211 Update CHANGELOG
9212
9213 Signed-off-by: Wolfgang Denk <wd@denx.de>
9214
9215 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
9216 Author: Wolfgang Denk <wd@denx.de>
9217 Date: Fri Jul 4 20:07:35 2008 +0200
9218
9219 CCM/SCM boards: fix out of tree building
9220
9221 Signed-off-by: Wolfgang Denk <wd@denx.de>
9222
9223 commit ab4c3a490df9a964711556d2a05b0c787db45fde
9224 Author: Wolfgang Denk <wd@denx.de>
9225 Date: Thu Jul 3 23:22:27 2008 +0200
9226
9227 SCM board: fix build errors.
9228
9229 Signed-off-by: Wolfgang Denk <wd@denx.de>
9230
9231 commit a566466f17ba0e2d2b6c250e77da678fb932470d
9232 Author: Wolfgang Denk <wd@denx.de>
9233 Date: Thu Jul 3 23:06:36 2008 +0200
9234
9235 IAD210 board: fix ``"ALIGN" redefined'' warning.
9236
9237 Signed-off-by: Wolfgang Denk <wd@denx.de>
9238
9239 commit ad756314797c16fa5dca23e115aab881011f164f
9240 Author: Wolfgang Denk <wd@denx.de>
9241 Date: Thu Jul 3 23:00:24 2008 +0200
9242
9243 CCM board: fix build errors.
9244
9245 Signed-off-by: Wolfgang Denk <wd@denx.de>
9246
9247 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
9248 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9249 Date: Wed Jul 2 18:54:08 2008 +0200
9250
9251 update mvBL-M7 board config
9252
9253 update mvBL-M7 config file to use UBOOT_VERSION.
9254
9255 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9256 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9257
9258 commit ced209c50e80c25f13c083099b05044048d21f4f
9259 Author: Wolfgang Denk <wd@denx.de>
9260 Date: Thu Jul 3 22:39:21 2008 +0200
9261
9262 sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
9263
9264 Signed-off-by: Wolfgang Denk <wd@denx.de>
9265
9266 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
9267 Author: Wolfgang Denk <wd@denx.de>
9268 Date: Thu Jul 3 22:34:08 2008 +0200
9269
9270 Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
9271
9272 Signed-off-by: Wolfgang Denk <wd@denx.de>
9273
9274 commit 730f298485984b011b6ee8f4acb511cb45a843dd
9275 Author: Wolfgang Denk <wd@denx.de>
9276 Date: Thu Jul 3 22:04:17 2008 +0200
9277
9278 lmb: fix "implicit declaration of function 'lmb_free'" warning
9279
9280 Signed-off-by: Wolfgang Denk <wd@denx.de>
9281
9282 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
9283 Author: Wolfgang Denk <wd@denx.de>
9284 Date: Wed Jul 2 23:53:23 2008 +0200
9285
9286 Cleanup: remove redundant deleting on *~ files
9287
9288 Signed-off-by: Wolfgang Denk <wd@denx.de>
9289
9290 commit c8a3b109f07f02342d097b30908965f7261d9f15
9291 Author: Wolfgang Denk <wd@denx.de>
9292 Date: Wed Jul 2 23:49:18 2008 +0200
9293
9294 Cleanup out-or-tree building for some boards (.depend)
9295
9296 Signed-off-by: Wolfgang Denk <wd@denx.de>
9297
9298 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
9299 Author: Wolfgang Denk <wd@denx.de>
9300 Date: Wed Jul 2 23:38:50 2008 +0200
9301
9302 Cleanup: fix out-of-tree building for some boards
9303
9304 Signed-off-by: Wolfgang Denk <wd@denx.de>
9305
9306 commit 461fa68d20861811487944d22291db5a13410e20
9307 Author: Wolfgang Denk <wd@denx.de>
9308 Date: Wed Jul 2 23:00:14 2008 +0200
9309
9310 Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
9311
9312 Signed-off-by: Wolfgang Denk <wd@denx.de>
9313
9314 commit 5981ebd32017e062b08aa6747cf591276f2db779
9315 Author: Detlev Zundel <dzu@denx.de>
9316 Date: Fri Jun 20 22:26:24 2008 +0200
9317
9318 fdt: Fix typo in variable name.
9319
9320 Signed-off-by: Detlev Zundel <dzu@denx.de>
9321
9322 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
9323 Author: Gary Jennejohn <garyj@denx.de>
9324 Date: Thu Jun 19 11:11:19 2008 +0200
9325
9326 Add logos for RRvision board
9327
9328 Signed-off-by: Gary Jennejohn <garyj@denx.de>
9329
9330 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
9331 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
9332 Date: Wed Jun 18 11:03:57 2008 +0200
9333
9334 mpc8260: add fdt_fixup_ethernet support
9335
9336 Add support for updating mac-address and local-mac-address in fdt for
9337 all MPC8260 targets.
9338
9339 Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
9340
9341 commit f6a69559d64498a04e1e0b087a9b920e5775f866
9342 Author: Steven A. Falco <sfalco@harris.com>
9343 Date: Thu Jun 12 13:24:42 2008 -0400
9344
9345 cmd_nvedit.c: clean up syntax highlighting
9346
9347 My text-editor (vim) has a bit of trouble syntax-highlighting the
9348 cmd_nvedit.c file, because it apparently does not parse C
9349 ifdef/else/endif. The following patch does not change the behavior of
9350 the code at all, but does allow the editor to properly
9351 syntax-highlight the file.
9352
9353 Signed-off-by: Steve Falco <sfalco@harris.com>
9354
9355 commit 75678c807a6272ecc5541eb32898c93887f08400
9356 Author: Steven A. Falco <sfalco@harris.com>
9357 Date: Thu Jun 12 13:22:12 2008 -0400
9358
9359 Make setenv() return status
9360
9361 Currently, the setenv function does not return an error code.
9362 This patch allows to test for errors.
9363
9364 Signed-off-by: Steve Falco <sfalco@harris.com>
9365
9366 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
9367 Author: Kumar Gala <galak@kernel.crashing.org>
9368 Date: Wed Jun 11 10:14:06 2008 -0500
9369
9370 PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
9371
9372 fls64, __ilog2_u64, ffs64 are variants that work on an u64,
9373 and fls is used to implement them.
9374
9375 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9376
9377 commit 83002a77cbdf383015ca384eff5fa31722d8e571
9378 Author: Magnus Lilja <lilja.magnus@gmail.com>
9379 Date: Mon Jun 9 22:58:48 2008 +0200
9380
9381 i.MX31: Cleanup comments in lowlevel_init.S.
9382
9383 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
9384
9385 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
9386 Author: Ben Warren <biggerbadderben@gmail.com>
9387 Date: Sun Jun 8 23:28:33 2008 -0700
9388
9389 Move conditional compilation of MPC8XXX SPI driver to Makefile
9390
9391 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9392
9393 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
9394 Author: Juergen Kilb <J.Kilb@gmx.de>
9395 Date: Sun Jun 8 17:59:53 2008 +0200
9396
9397 i.MX31: fixed CTRL-C detection
9398
9399 The Register URXD contains status information in bits [15..8].
9400 With status bit 15 set, CTRL-C was reported as 0x8003 instead
9401 of 0x03. Therefore CTRL-C was not detected.
9402 To solve this, bits [15..8] were masked out now.
9403
9404 Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
9405 Acked-by: Felix Radensky <felix@embedded-sol.com>
9406
9407 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
9408 Author: Stefan Roese <sr@denx.de>
9409 Date: Tue Jul 1 17:03:19 2008 +0200
9410
9411 ppc4xx: Fix 460EX/GT PCIe port initialization
9412
9413 This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
9414 configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
9415 this out.
9416
9417 Signed-off-by: Stefan Roese <sr@denx.de>
9418
9419 commit b571afde0295b007a45055ee49f8822c753a5651
9420 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9421 Date: Sat Jun 7 12:29:52 2008 +0200
9422
9423 add SHA256 support
9424
9425 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9426 Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
9427
9428 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
9429 Author: Marian Balakowicz <m8@semihalf.com>
9430 Date: Fri Jun 6 23:07:40 2008 +0200
9431
9432 Delay FIT format check on sector based devices
9433
9434 Global FIT image operations like format check cannot be performed on
9435 a first sector data, defer them to the point when whole FIT image was
9436 uploaded to a system RAM.
9437
9438 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
9439 Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
9440 NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
9441
9442 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
9443 Author: Dave Liu <r63238@freescale.com>
9444 Date: Tue Jun 3 17:38:19 2008 +0800
9445
9446 sata: wait for device updating signature to host
9447
9448 The driver need wait for the device updating signature to host.
9449 If we don't wait for it, the driver can not detect the device(disk)
9450 when the system powers up.
9451
9452 Signed-off-by: Dave Liu <daveliu@freescale.com>
9453
9454 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
9455 Author: Stefan Roese <sr@denx.de>
9456 Date: Sat Jun 28 14:56:17 2008 +0200
9457
9458 ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
9459
9460 This patch implements a fix provided by AMCC so that the lockup upon
9461 simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
9462 anymore:
9463
9464 Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
9465 (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
9466 USB 2.0 host and SATA.
9467
9468 This errata is not officially available yet. I'll update the comment
9469 to add the errata number later.
9470
9471 Signed-off-by: Stefan Roese <sr@denx.de>
9472
9473 commit 8b616edb118e37d05f6401389eaee1c636b22828
9474 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
9475 Date: Mon Jun 2 16:42:19 2008 -0400
9476
9477 serial_pl010.c: add watchdog support
9478
9479 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
9480
9481 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
9482 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
9483 Date: Mon Jun 2 16:40:08 2008 -0400
9484
9485 jffs2_1pass.c: add watchdog support
9486
9487 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
9488
9489 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
9490 Author: Sascha Laue <sascha.laue@liebherr.com>
9491 Date: Fri May 30 09:48:14 2008 +0200
9492
9493 Configure DSP POST; add watchdog reset to diag command
9494
9495 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
9496
9497 commit f13526517859bf6b573e23ff47199e107d1009b5
9498 Author: Tor Krill <tor@excito.com>
9499 Date: Thu May 29 10:40:17 2008 +0200
9500
9501 Add sata sil3114 support
9502
9503 Signed-off-by: Tor Krill <tor@excito.com>
9504
9505 commit e093a247628228100f405b6d7f6b1bfc16141938
9506 Author: Wolfgang Denk <wd@denx.de>
9507 Date: Sat Jun 28 23:34:37 2008 +0200
9508
9509 Coding Style Cleanup
9510
9511 Signed-off-by: Wolfgang Denk <wd@denx.de>
9512
9513 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
9514 Author: Wolfgang Denk <wd@denx.de>
9515 Date: Sat Jun 28 23:16:01 2008 +0200
9516
9517 Update CHANGELOG
9518
9519 Signed-off-by: Wolfgang Denk <wd@denx.de>
9520
9521 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
9522 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9523 Date: Wed May 21 13:58:41 2008 -0400
9524
9525 ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
9526
9527 This patch adds support for the Lyrtech SFF-SDR board,
9528 based on the TI DaVinci architecture (ARM926EJS).
9529
9530 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9531 Signed-off-by: Philip Balister <philip@balister.org>
9532 Signed-off-by: Wolfgang Denk <wd@denx.de>
9533
9534 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
9535 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9536 Date: Thu May 22 11:09:59 2008 +0200
9537
9538 MMC: Consolidate MMC/SD command definitions
9539
9540 This moves the MMC and SD Card command definitions from
9541 include/asm/arch/mmc.h into include/mmc.h. These definitions are
9542 given by the MMC and SD Card standards, not by any particular
9543 architecture.
9544
9545 There's a lot more room for consolidation in the MMC drivers which
9546 I'm hoping to get done eventually, but this patch is a start.
9547
9548 Compile-tested for all avr32 boards as well as lpc2292sodimm and
9549 lubbock. This should cover all three mmc drivers in the tree.
9550
9551 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9552
9553 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
9554 Author: Kyungmin Park <kmpark@infradead.org>
9555 Date: Wed May 21 14:38:08 2008 +0900
9556
9557 Use better Ethernet timings for apollon board
9558
9559 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9560
9561 commit 41c5eaa7253ed82bbae1eda5667755872c615164
9562 Author: Andy Fleming <afleming@freescale.com>
9563 Date: Mon Jun 16 13:58:56 2008 -0500
9564
9565 Resize device tree to allow space for board changes and the chosen node
9566
9567 Current code requires that a compiled device tree have space added to the end to
9568 leave room for extra nodes added by board code (and the chosen node). This
9569 requires that device tree creators anticipate how much space U-Boot will add to
9570 the tree, which is absurd. Ideally, the code would resize and/or relocate the
9571 tree when it needed more space, but this would require a systemic change to the
9572 fdt code, which is non-trivial. Instead, we resize the tree inside
9573 boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
9574 where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
9575
9576 Signed-off-by: Andy Fleming <afleming@freescale.com>
9577
9578 commit 7570a9941fc565922078679a72d246fe208d696d
9579 Author: Andy Fleming <afleming@freescale.com>
9580 Date: Mon Jun 16 13:58:55 2008 -0500
9581
9582 Fix an underflow bug in __lmb_alloc_base
9583
9584 __lmb_alloc_base can underflow if it fails to find free space. This was fixed
9585 in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc. This patch
9586 merely updates __lmb_alloc_base to resemble the current version in Linux.
9587
9588 Signed-off-by: Andy Fleming <afleming@freescale.com>
9589
9590 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
9591 Author: Andy Fleming <afleming@freescale.com>
9592 Date: Mon Jun 16 13:58:54 2008 -0500
9593
9594 Add lmb_free
9595
9596 lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
9597 lmb_reserve to temporarily reserve some memory.
9598
9599 Signed-off-by: Andy Fleming <afleming@freescale.com>
9600
9601 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
9602 Author: Andy Fleming <afleming@freescale.com>
9603 Date: Mon Jun 16 13:58:53 2008 -0500
9604
9605 Add ALIGN() macro
9606
9607 ALIGN() returns the smallest aligned value greater than the passed
9608 in address or size. Taken from Linux.
9609
9610 Signed-off-by: Andy Fleming <afleming@freescale.com>
9611
9612 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
9613 Author: Stefan Roese <sr@denx.de>
9614 Date: Tue Jun 24 17:15:22 2008 +0200
9615
9616 ppc4xx: Fix compilation problems with phys_size_t
9617
9618 This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
9619 board specific files where it has been missing.
9620
9621 Signed-off-by: Stefan Roese <sr@denx.de>
9622
9623 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
9624 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
9625 Date: Mon May 19 12:26:38 2008 +0200
9626
9627 Conditionally add -fno-stack-protector to CFLAGS
9628
9629 When compile-testing on powerpc, I get errors like this:
9630
9631 net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
9632
9633 This seems to be because -fstack-protector is on by default, so
9634 let's explicitly disable it on all architectures that support the
9635 option.
9636
9637 The Ubuntu toolchain is affected by this problem, and according to
9638 Mike Frysinger, Gentoo has been running with SSP enabled for years.
9639 More and more distros are turning SSP on by default, so this problem
9640 is likely to get worse in the future.
9641
9642 Also, powerpc just happens to be one of the arches I do
9643 compile-testing on. There may be other arches affected by this too.
9644
9645 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
9646
9647 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
9648 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9649 Date: Sun May 18 19:09:52 2008 +0200
9650
9651 pcmcia/ti_pci1410a: Move compile condition to the Makefile
9652
9653 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9654
9655 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
9656 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9657 Date: Sun May 18 19:09:51 2008 +0200
9658
9659 pxa_pcmcia: Move compile condition to the Makefile
9660
9661 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9662
9663 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
9664 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9665 Date: Sun May 18 19:09:50 2008 +0200
9666
9667 marabun_pcmcia: Move compile condition to the Makefile
9668
9669 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9670
9671 commit 6a19c46cae43c16c528eddefae3db97134f1915d
9672 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9673 Date: Mon Jun 23 13:25:34 2008 +0200
9674
9675 fix non-working mvBL-M7
9676
9677 Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
9678
9679 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9680 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9681
9682 commit 846f1574ddddeda2bc227655e687308695f41cdc
9683 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9684 Date: Mon Jun 23 11:40:56 2008 +0200
9685
9686 fix system config overwrite @ MPC834x and MPC8313
9687
9688 During 83xx setup the "System I/O configuration register high" gets
9689 overwritten with user defined value if CFG_SICRH is defined.
9690
9691 Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
9692 must keep their reset value regardless of configuration.
9693
9694 On my board (using RGMII) those bits are set after reset - yet it's
9695 unclear where they come from.
9696
9697 The patch keeps both bits on MPC834x and MPC8313.
9698
9699 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9700 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9701
9702 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
9703 Author: Kim Phillips <kim.phillips@freescale.com>
9704 Date: Tue Jun 17 17:45:27 2008 -0500
9705
9706 mpc83xx: move CPU_TYPE_ENTRY over to processor.h
9707
9708 to avoid this:
9709
9710 cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
9711 In file included from cpu.c:33:
9712 /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
9713
9714 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9715
9716 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
9717 Author: Stefan Roese <sr@denx.de>
9718 Date: Mon Jun 23 11:15:09 2008 +0200
9719
9720 ppc4xx: Fix problem in gpio_config()
9721
9722 As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
9723 left by one. So the additional shift is bogus.
9724
9725 Signed-off-by: Stefan Roese <sr@denx.de>
9726
9727 commit 40777812316fc252c941665c0f60c148fd79d50f
9728 Author: Detlev Zundel <dzu@denx.de>
9729 Date: Fri Jun 20 22:24:05 2008 +0200
9730
9731 fdt: Fix typo in variable name.
9732
9733 Signed-off-by: Detlev Zundel <dzu@denx.de>
9734
9735 commit 5f723a3b98c630bde33de74351f2121691fdef14
9736 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9737 Date: Fri Jun 20 10:41:05 2008 +0200
9738
9739 avr32: Enable SPI flash support on ATNGW100
9740
9741 The ATNGW100 has 8MB DataFlash on board. Give users access to it through
9742 the new SPI flash framework.
9743
9744 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9745
9746 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
9747 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9748 Date: Fri Jun 20 12:44:28 2008 +0200
9749
9750 avr32: Fix SPI portmux initialization
9751
9752 Use the new GPIO manipulation functions to set up the chip select lines,
9753 and make sure both busses use GPIO for chip select control.
9754
9755 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9756
9757 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
9758 Author: Peter Ma <pma@mediamatech.com>
9759 Date: Sun Jun 1 22:59:24 2008 -0700
9760
9761 avr32: Add GPIO manipulation functions
9762
9763 Adds GPIO manipulation functions for AVR32 AP7 platform.
9764
9765 Signed-off-by: Peter Ma <pma@mediamatech.com>
9766 [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
9767 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9768
9769 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
9770 Author: Wolfgang Grandegger <wg@grandegger.com>
9771 Date: Thu Jun 5 13:02:30 2008 +0200
9772
9773 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
9774
9775 This patch is based on the following patch sent a few minutes ago:
9776 "NAND FSL UPM: driver re-write using the hwcontrol callback"
9777 It is untested, of course. Anton, could you please give it a try.
9778
9779 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
9780 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9781
9782 commit 96026d42fa4e646d28318c0a1438aac4b2017909
9783 Author: Anatolij Gustschin <agust@denx.de>
9784 Date: Thu Jun 12 12:40:11 2008 +0200
9785
9786 Fix 4xx build issue
9787
9788 Building for 4xx doesn't work since commit 4dbdb768:
9789
9790 In file included from 4xx_pcie.c:28:
9791 include/asm/processor.h:971: error: expected ')' before 'ver'
9792 make[1]: *** [4xx_pcie.o] Error 1
9793
9794 This patch fixes the problem.
9795
9796 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9797 Acked-by: Stefan Roese <sr@denx.de>
9798 Acked-by: Kumar Gala <galak@kernel.crashing.org>
9799
9800 commit a036b0443657fe0f4773786de9092251869f08ac
9801 Author: Kumar Gala <galak@kernel.crashing.org>
9802 Date: Thu Jun 19 01:45:50 2008 -0500
9803
9804 MPC8610HPCD: Report board id, board version and fpga version.
9805
9806 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9807
9808 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
9809 Author: Kumar Gala <galak@kernel.crashing.org>
9810 Date: Thu Jun 19 01:45:27 2008 -0500
9811
9812 MPC8641HPCN: Report board id, board version and fpga version.
9813
9814 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9815
9816 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
9817 Author: Stefan Roese <sr@denx.de>
9818 Date: Mon Jun 16 10:40:02 2008 +0200
9819
9820 cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
9821
9822 This patch simplifies flash_toggle() (AMD commandset), which is used to
9823 detect if a FLASH device is still busy with erase/program operations. On
9824 800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
9825 did not detect the busy state reliably, resulting in non erased sectors
9826 etc. This patch now simplifies this function by "just" comparing the
9827 complete data-word instead of ANDing it with the command-word (0x40)
9828 before the compatison. It is done the same way in the Linux implementation
9829 chip_ready() in cfi_cmdset_0002.c.
9830
9831 Signed-off-by: Stefan Roese <sr@denx.de>
9832
9833 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
9834 Author: Philip Balister <philip@balister.org>
9835 Date: Mon Jun 16 08:58:07 2008 -0400
9836
9837 NAND: Add missing declaration to non-redundant saveenv().
9838
9839 Signed-off-by: Scott Wood <scottwood@freescale.com>
9840
9841 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
9842 Author: Wolfgang Grandegger <wg@grandegger.com>
9843 Date: Mon Jun 2 15:09:55 2008 +0200
9844
9845 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
9846
9847 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
9848 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9849 Signed-off-by: Scott Wood <scottwood@freescale.com>
9850
9851 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
9852 Author: Stefan Roese <sr@denx.de>
9853 Date: Tue Jun 10 15:34:11 2008 +0200
9854
9855 ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
9856
9857 This patch disables the square wave output of the M41T62 RTC used on
9858 Canyonlands & Glacier. Here the explanation:
9859
9860 The serial real-time clock part used in the design is an
9861 STMicro M41T62. This part has a full-time 32KHz square wave
9862 output that is connected to the TmrClk input to the
9863 processor. The default state for this square wave output is
9864 enabled so the output runs continuously when the board is
9865 powered normally and also from the battery. The TmrClk input
9866 to the processor goes to ground when the power is removed
9867 from the board/processor, and therefore the running square
9868 wave output is driving ground which drains the battery quickly.
9869
9870 Signed-off-by: Stefan Roese <sr@denx.de>
9871
9872 commit a94f22f08f280905926219e568568964cb9eeb9d
9873 Author: Andy Fleming <afleming@freescale.com>
9874 Date: Wed Jun 11 18:10:20 2008 -0500
9875
9876 Fix build issue with string.h and linux/string.h
9877
9878 This commit:
9879 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
9880 Author: Wolfgang Denk <wd@denx.de>
9881 Date: Fri Jun 6 14:28:14 2008 +0200
9882
9883 tools/mkimage: fix compiler warnings on some systems.
9884
9885 Broke building on some systems, because the host's string.h was interfering
9886 with u-boot's linux/string.h. It doesn't look like we need the u-boot one if
9887 we're building for the host, so now we only include when building inside
9888 u-boot.
9889
9890 Signed-off-by: Andy Fleming <afleming@freescale.com>
9891
9892 commit 9973e3c614721bbf169882ffc3be266a6611cd60
9893 Author: Becky Bruce <becky.bruce@freescale.com>
9894 Date: Mon Jun 9 16:03:40 2008 -0500
9895
9896 Change initdram() return type to phys_size_t
9897
9898 This patch changes the return type of initdram() from long int to phys_size_t.
9899 This is required for a couple of reasons: long int limits the amount of dram
9900 to 2GB, and u-boot in general is moving over to phys_size_t to represent the
9901 size of physical memory. phys_size_t is defined as an unsigned long on almost
9902 all current platforms.
9903
9904 This patch *only* changes the return type of the initdram function (in
9905 include/common.h, as well as in each board's implementation of initdram). It
9906 does not actually modify the code inside the function on any of the platforms;
9907 platforms which wish to support more than 2GB of DRAM will need to modify
9908 their initdram() function code.
9909
9910 Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
9911 MPC8641HPCN.
9912
9913 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9914
9915 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
9916 Author: Becky Bruce <becky.bruce@freescale.com>
9917 Date: Mon Jun 9 20:37:18 2008 -0500
9918
9919 Change lmb to use phys_size_t/phys_addr_t
9920
9921 This updates the lmb code to use phys_size_t
9922 and phys_addr_t instead of unsigned long. Other code
9923 which interacts with this code, like getenv_bootm_size()
9924 is also updated.
9925
9926 Booted on MPC8641HPCN, build-tested ppc, arm, mips.
9927
9928 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9929
9930 commit 61b09fc2952dc636017df4e7970e3de132276ba1
9931 Author: Becky Bruce <becky.bruce@freescale.com>
9932 Date: Mon Jun 9 20:37:17 2008 -0500
9933
9934 Change print_size to take phys_size_t
9935
9936 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9937
9938 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
9939 Author: Becky Bruce <becky.bruce@freescale.com>
9940 Date: Mon Jun 9 20:37:16 2008 -0500
9941
9942 Change bd/gd memsize/ram_size to be phys_size_t.
9943
9944 Currently, both are defined as an unsigned long, but
9945 should be phys_size_t. This should result in no real change,
9946 since phys_size_t is currently an unsigned long for all the
9947 default configs. Also add print_lnum to cmd_bdinfo to deal
9948 with the potentially wider memsize.
9949
9950 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9951
9952 commit ba04f7010958e88a8910f2a123fee53fdc72e013
9953 Author: Kumar Gala <galak@kernel.crashing.org>
9954 Date: Tue Jun 10 16:16:02 2008 -0500
9955
9956 FSL LAW: Add new interface to use the last free LAW
9957
9958 LAWs have the concept of priority so its useful to be able to allocate
9959 the lowest (highest number) priority. We will end up using this with the
9960 new DDR code.
9961
9962 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9963
9964 commit 859a86a25c569d3665ff413d1d923394b8a961f3
9965 Author: Kumar Gala <galak@kernel.crashing.org>
9966 Date: Wed Jun 11 00:51:45 2008 -0500
9967
9968 85xx/86xx: Move to dynamic mgmt of LAWs
9969
9970 With the new LAW interface (set_next_law) we can move to letting the
9971 system allocate which LAWs are used for what purpose. This makes life
9972 a bit easier going forward with the new DDR code.
9973
9974 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9975 Signed-off-by: Andy Fleming <afleming@freescale.com>
9976 Acked-by: Jon Loeliger <jdl@freescale.com>
9977 Acked-by: Becky Bruce <becky.bruce@freescale.com>
9978
9979 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
9980 Author: Kumar Gala <galak@kernel.crashing.org>
9981 Date: Wed Jun 11 00:44:10 2008 -0500
9982
9983 FSL LAW: Keep track of LAW allocations
9984
9985 Make it so we keep track of which LAWs have allocated and provide
9986 a function (set_next_law) which can allocate a LAW for us if one is
9987 free.
9988
9989 In the future we will move to doing more "dynamic" LAW allocation
9990 since the majority of users dont really care about what LAW number
9991 they are at.
9992
9993 Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
9994
9995 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9996 Signed-off-by: Andy Fleming <afleming@freescale.com>
9997
9998 commit ddde74a159caa6e18b481fec01d40b885aebb566
9999 Author: Kumar Gala <galak@kernel.crashing.org>
10000 Date: Mon Jun 9 22:31:57 2008 -0500
10001
10002 85xx: remove dummy board_early_init_f
10003
10004 A number of board ports have empty version of board_early_init_f
10005 for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
10006
10007 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10008
10009 commit 81e56e9af0d43712db8efb843606a8d62eab454f
10010 Author: Kumar Gala <galak@kernel.crashing.org>
10011 Date: Mon Jun 9 18:55:38 2008 -0500
10012
10013 MPC8544DS: Update config.h
10014
10015 * Enable flash progress
10016 * remove CLEAR_LAW0 since we dont really use it
10017
10018 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10019
10020 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
10021 Author: Kumar Gala <galak@kernel.crashing.org>
10022 Date: Mon Jun 9 13:37:24 2008 -0500
10023
10024 85xx: Remove unused and unconfigured memory test code.
10025
10026 Remove unused and unconfigured DDR test code from FSL 85xx boards.
10027 Besides, other common code exists.
10028
10029 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10030
10031 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
10032 Author: Sergei Poselenov <sposelenov@emcraft.com>
10033 Date: Fri Jun 6 15:42:45 2008 +0200
10034
10035 Socrates: Added FPGA base address update in FDT.
10036
10037 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10038
10039 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
10040 Author: Sergei Poselenov <sposelenov@emcraft.com>
10041 Date: Fri Jun 6 15:42:44 2008 +0200
10042
10043 Socrates: NAND support added. Changed the U-Boot base address and
10044
10045 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10046
10047 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
10048 Author: Sergei Poselenov <sposelenov@emcraft.com>
10049 Date: Fri Jun 6 15:42:43 2008 +0200
10050
10051 NAND: Added support for 128-bit OOB, adapted
10052
10053 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10054
10055 commit 31ca0208612f2eb57690110d7c2815953650e47b
10056 Author: Sergei Poselenov <sposelenov@emcraft.com>
10057 Date: Fri Jun 6 15:42:42 2008 +0200
10058
10059 Socrates: added missed file with UPMA configuration data.
10060
10061 Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
10062
10063 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
10064 Author: Sergei Poselenov <sposelenov@emcraft.com>
10065 Date: Fri Jun 6 15:42:41 2008 +0200
10066
10067 Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
10068
10069 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10070
10071 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
10072 Author: Sergei Poselenov <sposelenov@emcraft.com>
10073 Date: Fri Jun 6 15:42:40 2008 +0200
10074
10075 Added the upmconfig() function for 85xx.
10076
10077 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10078 Signed-off-by: Andy Fleming <afleming@freescale.com>
10079
10080 commit d39e68514ff943930ee692cff3fde03532eb7fec
10081 Author: Sergei Poselenov <sposelenov@emcraft.com>
10082 Date: Fri Jun 6 15:42:39 2008 +0200
10083
10084 Socrates: config file cleanup.
10085
10086 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10087
10088 commit e8cc3f04b124f757af4528206e60d8eb715ae083
10089 Author: Wolfgang Grandegger <wg@grandegger.com>
10090 Date: Thu Jun 5 13:12:10 2008 +0200
10091
10092 TQM85xx: Change memory map to support Flash memory > 128 MiB
10093
10094 Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
10095 memory. The current memory map only supports up to 128 MiB Flash.
10096 This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
10097 set, up to 1 GiB flash is supported. To achieve this, the memory
10098 map has to be adjusted in great parts (for example the CCSRBAR is
10099 moved from 0xE0000000 to 0xA0000000).
10100
10101 If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
10102 memory map also has to be considered in the kernel (changed
10103 CCSRBAR address, changed PCI IO base address, ...). Please use
10104 an appropriate Flat Device Tree blob (tqm8548.dtb).
10105
10106 Signed-off-by: Martin Krause <martin.krause@tqs.de>
10107 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10108
10109 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
10110 Author: Wolfgang Grandegger <wg@grandegger.com>
10111 Date: Thu Jun 5 13:12:09 2008 +0200
10112
10113 TQM85xx: NAND support via local bus UPMB
10114
10115 This patch adds support for NAND FLASH on the TQM8548. It is disabled by
10116 default and can be enabled for the TQM8548 modules. It is now based on
10117 the re-written FSL NAND UPM driver. A patch has been posted earlier today
10118 with the subject:
10119
10120 "NAND FSL UPM: driver re-write using the hwcontrol callback"
10121
10122 Note that the R/B pin is not supported by that module requiring to use
10123 the specified maximum delay time.
10124
10125 Note: With NAND support enabled the size of the U-Boot image exceeds
10126 256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
10127 doubling the image size :-(.
10128
10129 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
10130 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10131
10132 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
10133 Author: Wolfgang Grandegger <wg@grandegger.com>
10134 Date: Thu Jun 5 13:12:08 2008 +0200
10135
10136 TQM8548: PCI express support
10137
10138 This patch adds support for PCI express cards. The board support
10139 now uses common FSL PCI init code, for both, PCI and PCIe on all
10140 TQM85xx modules.
10141
10142 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
10143 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10144
10145 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
10146 Author: Wolfgang Grandegger <wg@grandegger.com>
10147 Date: Thu Jun 5 13:12:07 2008 +0200
10148
10149 TQM8548: Basic support for the TQM8548 modules
10150
10151 This patch adds basic support for the TQM8548 module from TQ-Components
10152 (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
10153 eTSEC 3 and 4
10154
10155 Furthermore Flash buffer write has been enabled to speed up output to
10156 the Flash by approx. a factor of 10.
10157
10158 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
10159 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10160
10161 commit 25991353204c78b094c3c1fec90182dcd607ab8f
10162 Author: Wolfgang Grandegger <wg@grandegger.com>
10163 Date: Thu Jun 5 13:12:06 2008 +0200
10164
10165 TQM85xx: Support for Flat Device Tree
10166
10167 This patch adds support for Linux kernels using the Flat Device Tree.
10168 It also re-defines the default environment settings for booting Linux
10169 with the FDT blob.
10170
10171 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10172
10173 commit d9ee843d54c54776e1fdb86336ce554906a87331
10174 Author: Wolfgang Grandegger <wg@grandegger.com>
10175 Date: Thu Jun 5 13:12:05 2008 +0200
10176
10177 TQM85xx: Support for Intel 82527 compatible CAN controller
10178
10179 This patch adds initialization of the UPMC RAM to support up to two
10180 Intel 82527 compatible CAN controller on the TQM85xx modules.
10181
10182 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
10183 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10184
10185 commit 518d5cfe72916323c746af1647764459914f555f
10186 Author: Wolfgang Grandegger <wg@grandegger.com>
10187 Date: Thu Jun 5 13:12:04 2008 +0200
10188
10189 TQM85xx: Bugfix in the SDRAM initialisation
10190
10191 The CS0_BNDS register is now set according to the detected
10192 memory size.
10193
10194 Signed-off-by Martin Krause <martin.krause@tqs.de>
10195
10196 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
10197 Author: Wolfgang Grandegger <wg@grandegger.com>
10198 Date: Thu Jun 5 13:12:03 2008 +0200
10199
10200 TQM85xx: Fix chip select configuration for second FLASH bank
10201
10202 This patch fixes the re-calculation of the automatic chip select
10203 configuration for boards with two populated FLASH banks.
10204
10205 Signed-off-by: Martin Krause <martin.krause@tqs.de>
10206
10207 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
10208 Author: Wolfgang Grandegger <wg@grandegger.com>
10209 Date: Thu Jun 5 13:12:02 2008 +0200
10210
10211 TQM85xx: Support for Spansion 'N' type flashes added
10212
10213 The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
10214 than the formerly used 'M' types (S29GLxxxM series), so the flash layout
10215 needs to be changed -> new start address of the environment. The macro
10216 definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
10217 defined for boards with 'N' type flashes.
10218
10219 Signed-off-by: Martin Krause <martin.krause@tqs.de>
10220 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10221
10222 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
10223 Author: Wolfgang Grandegger <wg@grandegger.com>
10224 Date: Thu Jun 5 13:12:01 2008 +0200
10225
10226 TQM85xx: Fix CPM port pin configuration
10227
10228 Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
10229 board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
10230 as serial interface anyway. Worse, on some board variants configuring the
10231 pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
10232
10233 Signed-off-by: Martin Krause <martin.krause@tqs.de>
10234
10235 commit b99ba1679e8cd51b023e67098c89e606e47137d2
10236 Author: Wolfgang Grandegger <wg@grandegger.com>
10237 Date: Thu Jun 5 13:12:00 2008 +0200
10238
10239 TQM85xx: Various coding style fixes
10240
10241 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10242
10243 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
10244 Author: Gerald Van Baren <vanbaren@cideas.com>
10245 Date: Tue Jun 10 22:15:58 2008 -0400
10246
10247 libfdt: Move the working_fdt pointer to cmd_fdt.c
10248
10249 The working_fdt pointer was declared in common/fdt_support.c but was
10250 not used there. Move it to common/cmd_fdt.c where it is used (it is
10251 also used in lib_ppc/bootm.c).
10252
10253 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10254
10255 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
10256 Author: Kim Phillips <kim.phillips@freescale.com>
10257 Date: Tue Jun 10 11:06:17 2008 -0500
10258
10259 fdt: unshadow global working fdt variable
10260
10261 differentiate with local variables of the same name by renaming the
10262 global 'fdt' variable 'working_fdt'.
10263
10264 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10265
10266 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
10267 Author: Andy Fleming <afleming@freescale.com>
10268 Date: Tue Jun 10 18:49:34 2008 -0500
10269
10270 socrates: Fix PCI clk fix patch
10271
10272 The submitted patch seems to have been more up-to-date, but an older patch was
10273 already in the repository. This patch encompasses the differences
10274
10275 Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
10276
10277 Signed-off-by: Andy Fleming <afleming@freescale.com>
10278
10279 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
10280 Author: Wolfgang Grandegger <wg@grandegger.com>
10281 Date: Thu Jun 5 13:02:29 2008 +0200
10282
10283 NAND FSL UPM: driver re-write using the hwcontrol callback
10284
10285 This is a re-write of the NAND FSL UPM driver using the more universal
10286 hwcontrol callback (instead of the cmdfunc callback). Here is a brief
10287 list of furher modifications:
10288
10289 - For the time being, the UPM setup writing the UPM array has been
10290 removed from the driver and must now be done by the board specific
10291 code.
10292
10293 - The bus width definition in "struct fsl_upm_nand" is now in bits to
10294 comply with the corresponding Linux driver and 8, 16 and 32 bit
10295 accesses are supported.
10296
10297 - chip->dev_read is only set if fun->dev_ready != NULL, which is
10298 required for boards not connecting the R/B pin.
10299
10300 - A few issue have been fixed with MxMR bit manipulation like in the
10301 corresponding Linux driver.
10302
10303 Note: I think the "io_addr" field of "struct fsl_upm" could be removed
10304 as well, because the address is already determined by
10305 "nand->IO_ADDR_[RW]", but I'm not 100% sure.
10306
10307 This patch has been tested on a TQM8548 modules with the NAND chip
10308 Micron MT29F8G08FABWP.
10309
10310 This patch is based on the following patches posted to this list a few
10311 minutes ago:
10312
10313 PPC: add accessor macros to clear and set bits in one shot
10314 83xx/85xx/86xx: add more MxMR local bus definitions
10315
10316 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10317 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10318
10319 commit 6beecfbb542992eede5831240cd58678274683a9
10320 Author: Wolfgang Grandegger <wg@grandegger.com>
10321 Date: Thu Jun 5 13:11:59 2008 +0200
10322
10323 MPC85xx: Beautify boot output of L2 cache configuration
10324
10325 The boot output is now aligned poperly with other boot output
10326 lines, e.g.:
10327
10328 FLASH: 128 MB
10329 L2: 512 KB enabled
10330
10331 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10332
10333 commit 398415114f0a705163a14543e9fef03f734b1ffa
10334 Author: Wolfgang Grandegger <wg@grandegger.com>
10335 Date: Wed Jun 4 12:45:22 2008 +0200
10336
10337 PPC: add accessor macros to clear and set bits in one shot
10338
10339 PPC: add accessor macros to clear and set bits in one shot
10340
10341 This patch adds macros from linux/include/asm-powerpc/io.h to clear and
10342 set bits in one shot using the in_be32, out_be32, etc. accessor functions.
10343 They are very handy to manipulate bits it I/O registers.
10344
10345 This patch is required for my forthcoming FSL NAND UPM driver re-write and
10346 the support for the TQM8548 module.
10347
10348 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10349
10350 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
10351 Author: Wolfgang Grandegger <wg@grandegger.com>
10352 Date: Wed Jun 4 13:52:17 2008 +0200
10353
10354 TQM: move TQM boards to board/tqc
10355
10356 Move all TQM board directories to the vendor specific directory "tqc"
10357 for modules from TQ-Components GmbH (http://www.tqc.de).
10358
10359 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10360
10361 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
10362 Author: Wolfgang Grandegger <wg@grandegger.com>
10363 Date: Mon Jun 2 12:09:30 2008 +0200
10364
10365 83xx/85xx/86xx: add more MxMR local bus definitions
10366
10367 83xx/85xx/86xx: add more MxMR local bus definitions
10368
10369 This patch adds more macro definitions for the UPM Machine Mode Registers
10370 They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
10371 common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
10372 required for my forthcoming FSL NAND UPM driver re-write and the support
10373 for the TQM8548 module.
10374
10375 This patch is based on the following two patches from Anton Vorontsov:
10376
10377 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
10378 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
10379
10380 I leave coding style violation fixes, code beautification and name
10381 corrections to somebody else ;-(.
10382
10383 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10384
10385 commit c8c5fc266e4499e283c293ccb972863156aa4134
10386 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10387 Date: Thu May 29 18:14:56 2008 +0400
10388
10389 83xx/85xx: further localbus cleanups
10390
10391 Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
10392 from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
10393
10394 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10395
10396 commit 42dbd667c88d496882d53e22656e89b654205492
10397 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10398 Date: Wed May 28 18:20:15 2008 +0400
10399
10400 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
10401
10402 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
10403 use it on MPC85xx and MPC86xx processors.
10404
10405 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10406
10407 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
10408 Author: Kumar Gala <galak@kernel.crashing.org>
10409 Date: Thu May 29 11:22:06 2008 -0500
10410
10411 85xx: Add setting of cache props in the device tree.
10412
10413 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10414
10415 commit 4dbdb7681e243431530df0725627192a0c4aefda
10416 Author: Kumar Gala <galak@kernel.crashing.org>
10417 Date: Tue Jun 10 16:53:46 2008 -0500
10418
10419 85xx: expose cpu identification
10420
10421 The current cpu identification code is used just to return the name
10422 of the processor at boot. There are some other locations that the name
10423 is useful (device tree setup). Expose the functionality to other bits
10424 of code.
10425
10426 Also, drop the 'E' suffix and add it on by looking at the SVR version
10427 when we print this out. This is mainly to allow the most flexible use
10428 of the name. The device tree code tends to not care about the 'E' suffix.
10429
10430 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10431
10432 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
10433 Author: Kim Phillips <kim.phillips@freescale.com>
10434 Date: Tue Jun 10 13:25:24 2008 -0500
10435
10436 mpc83xx: MVBLM7: minor build fixups
10437
10438 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10439
10440 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
10441 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
10442 Date: Tue Jun 10 09:14:05 2008 +0200
10443
10444 add MPC8343 based board mvBlueLYNX-M7 (board+make files)
10445
10446 Add MPC8343 based board mvBlueLYNX-M7.
10447 It's a single board stereo camera system.
10448 Please read doc/README.mvblm7 for details.
10449
10450 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
10451 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10452
10453 commit c005b93925ba49f07da2aa748527996d927e172f
10454 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
10455 Date: Tue Jun 10 09:13:16 2008 +0200
10456
10457 add MPC8343 based board mvBlueLYNX-M7 (doc+config)
10458
10459 Add MPC8343 based board mvBlueLYNX-M7.
10460 It's a single board stereo camera system.
10461 Please read doc/README.mvblm7 for details.
10462
10463 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
10464 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10465
10466 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
10467 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10468 Date: Thu May 29 18:14:56 2008 +0400
10469
10470 83xx/85xx: further localbus cleanups
10471
10472 move the BRx_* and ORx_* left behind in mpc85xx.h
10473
10474 The same is needed for mpc8xx.h and mpc8260.h (defines are almost
10475 the same, just few differences which needs some attention though).
10476
10477 But the bad news for mpc8xx and mpc8260 is that there are a lot of users
10478 of these defines. So this cleanup I'll leave for the "better times".
10479
10480 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10481 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10482
10483 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
10484 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10485 Date: Wed May 28 18:20:15 2008 +0400
10486
10487 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
10488
10489 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
10490 use it on MPC85xx and MPC86xx processors.
10491
10492 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10493 Acked-by: Andy Fleming <afleming@freescale.com>
10494 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10495
10496 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
10497 Author: Tor Krill <tor@excito.com>
10498 Date: Mon Jun 2 15:09:30 2008 +0200
10499
10500 Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
10501
10502 Signed-off-by: Tor Krill <tor@excito.com>
10503 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10504
10505 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
10506 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10507 Date: Mon Jun 9 23:37:44 2008 +0900
10508
10509 net: Conditional COBJS inclusion of network drivers
10510
10511 Replace COBJS-y with appropriate driver config names.
10512
10513 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10514 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10515
10516 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
10517 Author: Gerald Van Baren <vanbaren@cideas.com>
10518 Date: Mon Jun 9 21:02:17 2008 -0400
10519
10520 Use strncmp() for the fdt command
10521
10522 Cleaner than doing multiple conditionals on characters.
10523
10524 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10525
10526 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
10527 Author: Gerald Van Baren <vanbaren@cideas.com>
10528 Date: Sat Jun 7 12:25:05 2008 -0400
10529
10530 The fdt boardsetup command criteria was not unique
10531
10532 It was checking just for "b", which is not unique with respect to the
10533 "boot" command. Change to check for "boa"[rdsetup].
10534
10535 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10536
10537 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
10538 Author: David Gibson <david@gibson.dropbear.id.au>
10539 Date: Tue May 20 17:19:11 2008 +1000
10540
10541 libfdt: Several cleanups to parameter checking
10542
10543 This patch makes a couple of small cleanups to parameter checking of
10544 libfdt functions.
10545
10546 - In several functions which take a node offset, we use an
10547 idiom involving fdt_next_tag() first to check that we have indeed been
10548 given a node offset. This patch adds a helper function
10549 _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
10550
10551 - In fdt_rw.c in several places we have the expanded version
10552 of the RW_CHECK_HEADER() macro for no particular reason. This patch
10553 replaces those instances with an invocation of the macro; that's what
10554 it's for.
10555
10556 - In fdt_sw.c we rename the check_header_sw() function to
10557 sw_check_header() to match the analgous function in fdt_rw.c, and we
10558 provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
10559 functions in fdt_rw.c
10560
10561 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
10562
10563 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
10564 Author: Gerald Van Baren <vanbaren@cideas.com>
10565 Date: Tue Jun 3 20:34:45 2008 -0400
10566
10567 Remove the deprecated CONFIG_OF_FLAT_TREE
10568
10569 Use CONFIG_OF_LIBFDT instead to support flattened device trees. It is
10570 cleaner, has better functionality, and is better supported.
10571
10572 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10573
10574 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
10575 Author: Gerald Van Baren <vanbaren@cideas.com>
10576 Date: Tue Jun 3 20:26:29 2008 -0400
10577
10578 Change the stxxst to CONFIG_OF_LIBFDT
10579
10580 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
10581 to CONFIG_OF_LIBFDT.
10582
10583 WARNING: It appears that this board lost its ability to boot via a
10584 flattened device tree prior to this changeset.
10585
10586 WARNING: This conversion was untested because I do not have a board to
10587 test it on.
10588
10589 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10590
10591 commit 589c04271d129729a8b01391453851ab9cc4069c
10592 Author: Gerald Van Baren <vanbaren@cideas.com>
10593 Date: Tue Jun 3 20:24:58 2008 -0400
10594
10595 Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
10596
10597 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
10598 to CONFIG_OF_LIBFDT.
10599
10600 WARNING: This conversion is untested because I do not have a board to
10601 test it on.
10602
10603 NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
10604 /aliases/ethernet1 property for the ethernet to work.
10605
10606 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10607
10608 commit ee1e35bede91debc8bff9b02f75574486033b652
10609 Author: Kumar Gala <galak@kernel.crashing.org>
10610 Date: Thu May 29 01:21:24 2008 -0500
10611
10612 85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
10613
10614 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10615
10616 commit 3b9519fc50802436e417c839e69df7b2016cade5
10617 Author: Becky Bruce <becky.bruce@freescale.com>
10618 Date: Wed May 14 13:10:04 2008 -0500
10619
10620 MPC85xx: Change traps.c to not reference non-addressable memory
10621
10622 Currently, END_OF_RAM is used by the trap code to determine if
10623 we should attempt to access the stack pointer or not. However,
10624 on systems with a lot of RAM, only a subset of the RAM is
10625 guaranteed to be mapped in and accessible. Change END_OF_RAM
10626 to use get_effective_memsize() instead of using the raw ram
10627 size out of the bd.
10628
10629 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
10630
10631 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
10632 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10633 Date: Mon Jun 9 13:39:57 2008 +0900
10634
10635 sh: Renesas Solutions SH7763RDP board support
10636
10637 SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
10638 In this patch, support SCIF, NOR Flash, and Ethernet.
10639
10640 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10641 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10642
10643 commit 60179098a95eaa972007d7ec58e4c1588029720f
10644 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10645 Date: Fri Jun 6 16:24:13 2008 +0900
10646
10647 sh: Add support Renesas SH7763
10648
10649 Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
10650 This patch supprts CPU register's header file.
10651
10652 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10653 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10654
10655 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
10656 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10657 Date: Fri Jun 6 16:16:08 2008 +0900
10658
10659 sh: SH7763 SCIF support
10660
10661 SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
10662 but only SCIF2 is different. This patch work all SCIF channel.
10663
10664 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10665 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10666
10667 commit 79b51ff8205f0354d5300570614c1d2db499679c
10668 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10669 Date: Sat Jun 7 20:51:59 2008 +0900
10670
10671 [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
10672
10673 Also get rid of some #ifdefs in *.c files.
10674
10675 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10676
10677 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
10678 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10679 Date: Sat Jun 7 20:51:56 2008 +0900
10680
10681 [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
10682
10683 CONFIG_SOC_AU1X00
10684
10685 Common Alchemy Au1x00 stuff. All Alchemy processor based machines
10686 need to have this config as a system type specifier.
10687
10688 CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
10689 CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
10690
10691 Machine type specifiers. Each port should have one of aboves.
10692
10693 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10694
10695 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
10696 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
10697 Date: Fri May 30 16:05:28 2008 -0400
10698
10699 env_nand.c: Added bad block management for environment variables
10700
10701 Modified to check for bad blocks and to skipping over them when
10702 CFG_ENV_RANGE has been defined.
10703 CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
10704 flash block size.
10705
10706 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
10707 Signed-off-by: Scott Wood <scottwood@freescale.com>
10708
10709 commit 279726bd00558e80263d44581c44167625b7fb9a
10710 Author: Becky Bruce <becky.bruce@freescale.com>
10711 Date: Wed May 14 13:09:58 2008 -0500
10712
10713 MPC86xx: Change traps.c to not reference non-addressable memory
10714
10715 Currently, END_OF_RAM is used by the trap code to determine if
10716 we should attempt to access the stack pointer or not. However,
10717 on systems with a lot of RAM, only a subset of the RAM is
10718 guaranteed to be mapped in and accessible. Change END_OF_RAM
10719 to use get_effective_memsize() instead of using the raw ram
10720 size out of the bd to prevent us from trying to access
10721 non-mapped memory.
10722
10723 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
10724
10725 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
10726 Author: Wolfgang Denk <wd@denx.de>
10727 Date: Fri Jun 6 14:28:14 2008 +0200
10728
10729 tools/mkimage: fix compiler warnings on some systems.
10730
10731 Signed-off-by: Wolfgang Denk <wd@denx.de>
10732
10733 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
10734 Author: Stefan Roese <sr@denx.de>
10735 Date: Fri Jun 6 16:10:41 2008 +0200
10736
10737 ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
10738
10739 We use upper case letters for the AMCC processor defines (like
10740 CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
10741 not CONFIG_440SPe. This patch fixes the last misspelled config options.
10742
10743 Signed-off-by: Stefan Roese <sr@denx.de>
10744
10745 commit 72675dc6c06a48846d180106161d49dd714383cc
10746 Author: Stefan Roese <sr@denx.de>
10747 Date: Fri Jun 6 15:55:21 2008 +0200
10748
10749 ppc4xx: Unify AMCC's board config files (part 3/3)
10750
10751 This patch series unifies the AMCC eval board ports by introducing
10752 a common include header for all AMCC eval boards:
10753
10754 include/configs/amcc-common.h
10755
10756 This header now includes all common configuration options/defines which
10757 are removed from the board specific headers.
10758
10759 The reason for this is ease of maintenance and unified look and feel
10760 of all AMCC boards.
10761
10762 Signed-off-by: Stefan Roese <sr@denx.de>
10763
10764 commit 490f204096d6e2c9940f67816f154a8125bab116
10765 Author: Stefan Roese <sr@denx.de>
10766 Date: Fri Jun 6 15:55:03 2008 +0200
10767
10768 ppc4xx: Unify AMCC's board config files (part 2/3)
10769
10770 This patch series unifies the AMCC eval board ports by introducing
10771 a common include header for all AMCC eval boards:
10772
10773 include/configs/amcc-common.h
10774
10775 This header now includes all common configuration options/defines which
10776 are removed from the board specific headers.
10777
10778 The reason for this is ease of maintenance and unified look and feel
10779 of all AMCC boards.
10780
10781 Signed-off-by: Stefan Roese <sr@denx.de>
10782
10783 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
10784 Author: Stefan Roese <sr@denx.de>
10785 Date: Fri Jun 6 15:54:31 2008 +0200
10786
10787 ppc4xx: Unify AMCC's board config files (part 1/3)
10788
10789 This patch series unifies the AMCC eval board ports by introducing
10790 a common include header for all AMCC eval boards:
10791
10792 include/configs/amcc-common.h
10793
10794 This header now includes all common configuration options/defines which
10795 are removed from the board specific headers.
10796
10797 The reason for this is ease of maintenance and unified look and feel
10798 of all AMCC boards.
10799
10800 Signed-off-by: Stefan Roese <sr@denx.de>
10801
10802 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
10803 Author: Remy Bohmer <linux@bohmer.net>
10804 Date: Thu Jun 5 13:03:36 2008 +0200
10805
10806 DM9000 fix status check fail 0x6d error for trizeps board
10807
10808 According to the Application Notes of the DM9000, only the 2 bits 0:1 of
10809 the status byte need to be checked to identify a valid packet in the fifo
10810
10811 But, The several different Application Notes do not all speak the same
10812 language on these bits. They do not disagree, but only 1 Application Note
10813 noted explicitly that only these 2 bits need to be checked.
10814 Even the datasheets do not mention anything about these 2 bits.
10815
10816 Because the old code, and the kernel check the whole byte, I left this piece
10817 untouched.
10818
10819 However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
10820 it should work.
10821
10822 Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
10823 in the fifo) is much shorter now, compared to the older U-boot driver code,
10824 so that we can maybe run into a hardware condition now that was never seen
10825 before, or maybe was seen very unfrequently.
10826
10827 Additionaly added a cleanup of a stack variable.
10828
10829 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10830 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10831
10832 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
10833 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10834 Date: Thu Jun 5 22:29:00 2008 +0900
10835
10836 [MIPS] Update <asm/addrspace.h> header
10837
10838 - Fix traditional KSEG names
10839 - Replace PHYSADDR with CPHYSADDR
10840
10841 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10842
10843 commit f0d5a6f060d00358b85c62a921a423ea8df71184
10844 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10845 Date: Thu Jun 5 22:29:00 2008 +0900
10846
10847 [MIPS] mips_config.mk: Misc fixes
10848
10849 - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
10850 - Modify comments
10851
10852 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10853
10854 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
10855 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10856 Date: Thu Jun 5 22:29:00 2008 +0900
10857
10858 [MIPS] Kill unused <version.h> inclusions
10859
10860 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10861
10862 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
10863 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10864 Date: Thu Jun 5 22:29:00 2008 +0900
10865
10866 [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
10867
10868 MIPS port has two problems in timer routines. One is now we assume CFG_HZ
10869 equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
10870 in the U-Boot system.
10871
10872 The other is we don't have a proper time management counter like timestamp
10873 other ARCHs have. We need the 32-bit millisecond clock counter.
10874
10875 This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
10876 32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
10877 of calculated CP0 counter cycles in a CFG_HZ.
10878
10879 STRATEGY:
10880
10881 * Fix improper CFG_HZ value to have 1000
10882
10883 * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
10884
10885 * timer_init: initialize timestamp and set up the first timer expiration.
10886 Note that we don't need to initialize CP0 count/compare registers here
10887 as they have been already zeroed out on the system reset. Leave them as
10888 they are.
10889
10890 * get_timer: calculate how many timestamps have been passed, then return
10891 base-relative timestamp. Make sure we can easily count missed timestamps
10892 regardless of CP0 count/compare value.
10893
10894 * get_ticks: return the current timestamp, that is get_timer(0).
10895
10896 Most parts are from good old Linux v2.6.16 kernel.
10897
10898 v2:
10899 - Remove FIXME comments as they turned out to be trivial.
10900 - Use CP0 compare register as a global variable for expirelo.
10901 - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
10902 instead.
10903
10904 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10905
10906 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
10907 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10908 Date: Thu Jun 5 22:29:00 2008 +0900
10909
10910 [MIPS] lib_mips/time.c: Fix udelay
10911
10912 What we have to do is just to wait for given micro-seconds. No need to
10913 take into account current time, get_timer and CFG_HZ.
10914
10915 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10916
10917 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
10918 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10919 Date: Thu Jun 5 22:28:59 2008 +0900
10920
10921 [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
10922
10923 We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
10924 This patch replaces mips_{compare,count}_set and mips_count_get with
10925 existing macros.
10926
10927 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10928
10929 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
10930 Author: Remy Bohmer <linux@bohmer.net>
10931 Date: Tue Jun 3 15:48:17 2008 +0200
10932
10933 Get rid of annoying/superfluous bad-checksum warning message
10934
10935 U-boot can complain a lot about 'checksum bad' when it is attached to the network.
10936 It is annoying for ordinary users who start to doubt the network connection
10937 in general when they see messages like this.
10938
10939 This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
10940 than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
10941 now before checking the checksum.
10942
10943 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10944 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10945
10946 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
10947 Author: Remy Bohmer <linux@bohmer.net>
10948 Date: Wed Jun 4 10:47:25 2008 +0200
10949
10950 Fix order for reading rx-status registers in 32bit mode of DM9000
10951
10952 A last minute cleanup before submitting the DM9000A patch series yesterday introduced
10953 a bug in reading the rx-status registers in 32bit mode only.
10954 This patch repairs this.
10955
10956 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10957 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10958
10959 commit 98291e2e689096420465074cce926b226d2e71b4
10960 Author: Remy Bohmer <linux@bohmer.net>
10961 Date: Tue Jun 3 15:26:26 2008 +0200
10962
10963 DM9000: Some minor code cleanups
10964
10965 Some lines of the U-boot DM9000x driver are longer than 80 characters, or
10966 need some other minor cleanup.
10967
10968 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10969 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10970
10971 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
10972 Author: Remy Bohmer <linux@bohmer.net>
10973 Date: Tue Jun 3 15:26:25 2008 +0200
10974
10975 DM9000: Make driver work properly for DM9000A
10976
10977 The DM9000A network controller does not work with the U-boot DM9000x driver.
10978 Analysis showed that many incoming packets are lost.
10979
10980 The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
10981 check for a valid rx packet be done on the interrupt status register, not
10982 directly by performing the dummy read and the rx status check as is currently
10983 the case in the u-boot driver.
10984
10985 When the recommended poll is done as suggested the driver starts working
10986 correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
10987 can be more than 1 package in the fifo at the same time.
10988
10989 The driver must perform the rx-status check in a loop and read and handle all
10990 packages until there is no more left _after_ the interrupt RX flag is set.
10991
10992 This change has been tested with DM9000A, DM9000E, DM9000EP.
10993
10994 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10995 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10996
10997 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
10998 Author: Remy Bohmer <linux@bohmer.net>
10999 Date: Tue Jun 3 15:26:24 2008 +0200
11000
11001 DM9000: Improve eth_reset() routine
11002
11003 According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
11004 reset procedure must be done twice to properly reset the DM9000 by means of software.
11005 This errata is not needed anymore for the DM9000A, but it does not bother it.
11006
11007 This change has been tested with DM9000A, DM9000E, DM9000EP.
11008
11009 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11010 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11011
11012 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
11013 Author: Remy Bohmer <linux@bohmer.net>
11014 Date: Tue Jun 3 15:26:23 2008 +0200
11015
11016 DM9000: improve eth_send() routine
11017
11018 The eth_send routine of the U-boot DM9000x driver does not match the
11019 DM9000 or DM9000A application notes/programming guides.
11020
11021 This change improves the stability of the DM9000A network controller.
11022
11023 This change has been tested with DM9000A, DM9000E, DM9000EP.
11024
11025 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11026 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11027
11028 commit 134e266253c02a7832560da59d394989c4f64453
11029 Author: Remy Bohmer <linux@bohmer.net>
11030 Date: Tue Jun 3 15:26:22 2008 +0200
11031
11032 DM9000: repair debug logging
11033
11034 It seems that the debugging code of the DM9000x driver in U-boot has not been
11035 compiled for a long time, because it cannot compile...
11036
11037 Also rearranged some loglines to get more useful info while debugging.
11038
11039 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11040 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11041
11042 commit a101361bfe23c120321e45d114c0603b8e0763e9
11043 Author: Remy Bohmer <linux@bohmer.net>
11044 Date: Tue Jun 3 15:26:21 2008 +0200
11045
11046 DM9000: Add data bus-width auto detection.
11047
11048 The U-boot DM9000x driver contains a compile time bus-width definition for
11049 the databus connected to the network controller.
11050
11051 This compile check makes the code unclear, inflexible and is unneccessary.
11052 It can be asked to the network controller what its bus-width is by reading bits
11053 6 and 7 of the interrupt status register.
11054
11055 The linux kernel already uses a runtime mechanism to determine this bus-width,
11056 so the implementation below looks somewhat like that implementation.
11057
11058 This change has been tested with DM9000A, DM9000E, DM9000EP.
11059
11060 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11061 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11062
11063 commit 63a0afa0c32e5f4ea98a9439542870072437404d
11064 Author: Stefan Roese <sr@denx.de>
11065 Date: Wed Jun 4 19:19:20 2008 +0200
11066
11067 ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
11068
11069 This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
11070 introduced by the commit:
11071
11072 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
11073
11074 With this patch SDRAM will get initialized again and booting from NAND
11075 is working again.
11076
11077 Signed-off-by: Stefan Roese <sr@denx.de>
11078 Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
11079
11080 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
11081 Author: Wolfgang Denk <wd@denx.de>
11082 Date: Tue May 27 14:19:30 2008 +0200
11083
11084 Socrates: Fix PCI bus frequency report
11085
11086 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
11087
11088 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
11089 Author: Tor Krill <tor@excito.com>
11090 Date: Thu May 29 11:10:30 2008 +0200
11091
11092 Fix incorrect switch for IF_TYPE in part.c
11093
11094 Use correct field in block_dev_desc_t when writing interface type in
11095 dev_print. Error introduced in 574b3195.
11096
11097 Also added fix from Martin Krause
11098
11099 Signed-off-by: Tor Krill <tor@excito.com>
11100
11101 commit b64b8a0bd310935b70af69ac970952f2b364ae56
11102 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
11103 Date: Tue May 27 10:25:39 2008 +0200
11104
11105 Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
11106
11107 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
11108
11109 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
11110 Author: Peter Tyser <ptyser@xes-inc.com>
11111 Date: Thu May 22 18:56:52 2008 -0500
11112
11113 Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
11114
11115 Removed unneeded command line history initialization. Also, the original
11116 code would access the 'initted' variable before relocation to SDRAM
11117 which resulted in erratic behavior since the bss is not initialized when
11118 executing from flash.
11119
11120 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11121
11122 commit 22f371b63038a4ecab04068877c1089e51a01ba1
11123 Author: Grant Erickson <gerickson@nuovations.com>
11124 Date: Wed May 21 13:28:30 2008 -0700
11125
11126 PPC4xx: Simplified post_word_{load, store}
11127
11128 This patch simplifies post_word_{load,store} by using the preprocessor
11129 to eliminate redundant, copy-and-pasted code.
11130
11131 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
11132
11133 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
11134 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
11135 Date: Wed May 7 21:25:33 2008 +0400
11136
11137 cfi_flash: enable M18 flash chips family support.
11138
11139 Added new command set ID. Buffered write command processing is changed
11140 in order to support M18 flash chips family.
11141
11142 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
11143 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
11144
11145 commit 93c56f212ccdadc182018f0769cb284426b88f1d
11146 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
11147 Date: Wed May 7 21:24:44 2008 +0400
11148
11149 cfi_flash: support of long cmd in U-boot.
11150
11151 Some NOR flash chips needs support of commands with length grether than max
11152 value size of uchar. For example all M18 family chips use 0x1ff command in
11153 buffered write mode as value of program loops count.
11154
11155 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
11156 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
11157
11158 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
11159 Author: Stefan Roese <sr@denx.de>
11160 Date: Fri May 16 11:06:06 2008 +0200
11161
11162 DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
11163
11164 On AD7414 the first value upon bootup is not read correctly.
11165 This is most likely because of the 800ms update time of the
11166 temp register in normal update mode. To get current values
11167 each time we issue the "dtt" command including upon powerup
11168 we switch into one-short mode.
11169
11170 This patch fixes the problem on AD7414 equipped boards (Sequoia,
11171 Canyonlands etc), that temp value printed in the bootup log was
11172 incorrect.
11173
11174 Signed-off-by: Stefan Roese <sr@denx.de>
11175
11176 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
11177 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11178 Date: Fri May 30 16:55:06 2008 +0200
11179
11180 ppc4xx: Cleanup CPCI405 variant's config file
11181
11182 This patch removes some dead code from CPCI405 board's
11183 config files. JFFS2 support is also removed. It's not used and
11184 CPCI4052 does not build anymore without some size reduction.
11185
11186 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11187
11188 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
11189 Author: Kenneth Johansson <kenneth@southpole.se>
11190 Date: Thu May 29 16:32:33 2008 +0200
11191
11192 Remove shell variable UNDEF_SYM.
11193
11194 UNDEF_SYM is a shell variable in the main Makefile used to force the
11195 linker to add all u-boot commands to the final image. It has no use here.
11196
11197 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
11198
11199 commit 8c66497e06bf803489c589df58ee591d71033274
11200 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11201 Date: Fri May 16 11:10:35 2008 +0200
11202
11203 Add support for environment in SPI flash
11204
11205 This is pretty incomplete...it doesn't handle reading the environment
11206 before relocation, it doesn't support redundant environment, and it
11207 doesn't support embedded environment. But apart from that, it does
11208 seem to work.
11209
11210 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11211
11212 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
11213 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11214 Date: Fri May 16 11:10:34 2008 +0200
11215
11216 SPI Flash: Add "sf" command
11217
11218 This adds a new command, "sf" which can be used to manipulate SPI
11219 flash. Currently, initialization, reading, writing and erasing is
11220 supported.
11221
11222 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11223
11224 commit d25ce7d24cc0f93881559f4009175ea305af65e8
11225 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11226 Date: Fri May 16 11:10:33 2008 +0200
11227
11228 SPI Flash subsystem
11229
11230 This adds a new SPI flash subsystem.
11231
11232 Currently, only AT45 DataFlash in non-power-of-two mode is supported,
11233 but some preliminary support for other flash types is in place as
11234 well.
11235
11236 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11237
11238 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
11239 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
11240 Date: Fri May 16 11:10:32 2008 +0200
11241
11242 atmel_spi: Driver for the Atmel SPI controller
11243
11244 This adds a driver for the SPI controller found on most AT91 and AVR32
11245 chips, implementing the new SPI API.
11246
11247 Changed in v4:
11248 - Update to new API
11249 - Handle zero-length transfers appropriately. The user may send a
11250 zero-length SPI transfer with SPI_XFER_END set in order to
11251 deactivate the chip select after a series of transfers with chip
11252 select active. This is useful e.g. when polling the status
11253 register of DataFlash.
11254
11255 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
11256
11257 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
11258 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
11259 Date: Fri May 16 11:10:31 2008 +0200
11260
11261 SPI API improvements
11262
11263 This patch gets rid of the spi_chipsel table and adds a handful of new
11264 functions that makes the SPI layer cleaner and more flexible.
11265
11266 Instead of the spi_chipsel table, each board that wants to use SPI
11267 gets to implement three hooks:
11268 * spi_cs_activate(): Activates the chipselect for a given slave
11269 * spi_cs_deactivate(): Deactivates the chipselect for a given slave
11270 * spi_cs_is_valid(): Determines if the given bus/chipselect
11271 combination can be activated.
11272
11273 Not all drivers may need those extra functions however. If that's the
11274 case, the board code may just leave them out (assuming they know what
11275 the driver needs) or rely on the linker to strip them out (assuming
11276 --gc-sections is being used.)
11277
11278 To set up communication parameters for a given slave, the driver needs
11279 to call spi_setup_slave(). This returns a pointer to an opaque
11280 spi_slave struct which must be passed as a parameter to subsequent SPI
11281 calls. This struct can be freed by calling spi_free_slave(), but most
11282 driver probably don't want to do this.
11283
11284 Before starting one or more SPI transfers, the driver must call
11285 spi_claim_bus() to gain exclusive access to the SPI bus and initialize
11286 the hardware. When all transfers are done, the driver must call
11287 spi_release_bus() to make the bus available to others, and possibly
11288 shut down the SPI controller hardware.
11289
11290 spi_xfer() behaves mostly the same as before, but it now takes a
11291 spi_slave parameter instead of a spi_chipsel function pointer. It also
11292 got a new parameter, flags, which is used to specify chip select
11293 behaviour. This may be extended with other flags in the future.
11294
11295 This patch has been build-tested on all powerpc and arm boards
11296 involved. I have not tested NIOS since I don't have a toolchain for it
11297 installed, so I expect some breakage there even though I've tried
11298 fixing up everything I could find by visual inspection.
11299
11300 I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
11301 DataFlash drivers posted as a follow-up. I'd like some help testing
11302 other boards that use the existing SPI API.
11303
11304 But most of all, I'd like some comments on the new API. Is this stuff
11305 usable for everyone? If not, why?
11306
11307 Changed in v4:
11308 - Build fixes for various boards, drivers and commands
11309 - Provide common struct spi_slave definition that can be extended by
11310 drivers
11311 - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
11312 - Make default bus and mode build-time configurable
11313 - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
11314
11315 Changed in v3:
11316 - Add opaque struct spi_slave for controller-specific data associated
11317 with a slave.
11318 - Add spi_claim_bus() and spi_release_bus()
11319 - Add spi_free_slave()
11320 - spi_setup() is now called spi_setup_slave() and returns a
11321 struct spi_slave
11322 - soft_spi now supports four SPI modes (CPOL|CPHA)
11323 - Add bus parameter to spi_setup_slave()
11324 - Convert the new i.MX32 SPI driver
11325 - Convert the new MC13783 RTC driver
11326
11327 Changed in v2:
11328 - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
11329 new API.
11330
11331 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
11332 Tested-by: Guennadi Liakhovetski <lg@denx.de>
11333
11334 commit 289011207d999b2e4085150d2aa30d547ad9b800
11335 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11336 Date: Fri May 16 11:10:30 2008 +0200
11337
11338 Move definition of container_of() to common.h
11339
11340 AVR32 and AT91SAM9 both have their own identical definitions of
11341 container_of() taken from the Linux kernel. Move it to common.h so
11342 that all architectures can use it.
11343
11344 container_of() is already used by some drivers, and will be used
11345 extensively by the new and improved SPI API.
11346
11347 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11348
11349 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
11350 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11351 Date: Fri May 16 11:08:11 2008 +0200
11352
11353 soft_i2c: Pull SDA high before reading
11354
11355 Spotted by Dean Capindale.
11356
11357 Systems that support open-drain GPIO properly are allowed provide an
11358 empty I2C_TRISTATE define. However, this means that we need to be
11359 careful not to drive SDA low when the slave is expected to respond.
11360
11361 This patch adds a missing I2C_SDA(1) to read_byte() required to
11362 tristate the SDA line on systems that support open-drain GPIO.
11363
11364 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11365
11366 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
11367 Author: Stefan Roese <sr@denx.de>
11368 Date: Mon May 19 11:34:53 2008 +0200
11369
11370 ppc4xx: Remove implementations of testdram()
11371
11372 This patch removes the used testdram() implementations of the board
11373 that are maintained by myself.
11374
11375 Signed-off-by: Stefan Roese <sr@denx.de>
11376
11377 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
11378 Author: Stefan Roese <sr@denx.de>
11379 Date: Mon Jun 2 17:37:28 2008 +0200
11380
11381 ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
11382
11383 Historically the 405 U-Boot port had a dram_init() call in early init
11384 stage. This function was still called from start.S and most of the time
11385 coded in assembler. This is not needed anymore (since a long time) and
11386 boards should implement the common initdram() function in C instead.
11387
11388 This patch now removed the dram_init() call from start.S and removes the
11389 empty implementations that are scattered through most of the 405 board
11390 ports. Some older board ports really implement this dram_init() though.
11391 These are:
11392
11393 csb272
11394 csb472
11395 ERIC
11396 EXBITGEN
11397 W7OLMC
11398 W7OLMG
11399
11400 I changed those boards to call this assembler dram_init() function now
11401 from their board specific initdram() instead. This *should* work, but please
11402 test again on those platforms. And it is perhaps a good idea that those
11403 boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
11404 some time. So further patches welcome here.
11405
11406 Signed-off-by: Stefan Roese <sr@denx.de>
11407
11408 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
11409 Author: Stefan Roese <sr@denx.de>
11410 Date: Mon Jun 2 17:22:11 2008 +0200
11411
11412 ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
11413
11414 Signed-off-by: Stefan Roese <sr@denx.de>
11415
11416 commit 39b32be18cd33b53a84065edcd4e465165cc5564
11417 Author: Stefan Roese <sr@denx.de>
11418 Date: Mon Jun 2 17:20:03 2008 +0200
11419
11420 ppc4xx: Fix common ECC generation code for 440GP style platforms
11421
11422 This patch makes the common 4xx ECC code really usable on 440GP style
11423 platforms.
11424
11425 Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
11426 compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
11427 we need to make some processor dependant defines used later on by the
11428 driver.
11429
11430 Signed-off-by: Stefan Roese <sr@denx.de>
11431
11432 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
11433 Author: Stefan Roese <sr@denx.de>
11434 Date: Mon Jun 2 17:13:55 2008 +0200
11435
11436 ppc4xx: Change Kilauea to use the common DDR2 init function
11437
11438 This patch changes the kilauea and kilauea_nand (for NAND booting)
11439 board port to not use a board specific DDR2 init routine anymore. Now
11440 the common code from cpu/ppc4xx is used.
11441
11442 Thanks to Grant Erickson for all his basic work on this 405EX early
11443 bootup.
11444
11445 Signed-off-by: Stefan Roese <sr@denx.de>
11446
11447 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
11448 Author: Stefan Roese <sr@denx.de>
11449 Date: Mon Jun 2 14:59:21 2008 +0200
11450
11451 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
11452
11453 This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
11454 ppc4xx related SDRAM/DDR/DDR2 controller defines.
11455
11456 Signed-off-by: Stefan Roese <sr@denx.de>
11457
11458 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
11459 Author: Stefan Roese <sr@denx.de>
11460 Date: Mon Jun 2 14:57:41 2008 +0200
11461
11462 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
11463
11464 This patch removes all SDRAM related defines from the PPC4xx headers
11465 ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
11466 the same SDRAM controller as 440 systems do (like 405EX and 440SP).
11467
11468 It also introduces new defines for the equipped SDRAM controller based on
11469 which PPC variant is used. There new defines are:
11470
11471 used on 405GR/CR/EP and some Xilinx Virtex boards.
11472
11473 used on 440GP/GX/EP/GR.
11474
11475 used on 440EPx/GRx.
11476
11477 used on 405EX/r/440SP/SPe/460EX/GT.
11478
11479 Signed-off-by: Stefan Roese <sr@denx.de>
11480
11481 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
11482 Author: Stefan Roese <sr@denx.de>
11483 Date: Mon Jun 2 14:35:44 2008 +0200
11484
11485 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
11486
11487 This patch consolidates the 405 and 440 parts of the NAND booting code
11488 selected via CONFIG_NAND_SPL. Now common code is used to initialize the
11489 SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
11490 Only *after* running from this location, nand_boot() is called.
11491
11492 Please note that the initsdram() call is now moved from nand_boot.c
11493 to start.S. I experienced problems with some boards like Kilauea
11494 (405EX), which don't have internal SRAM (OCM) and relocation needs to
11495 be done to SDRAM before the NAND controller can get accessed. When
11496 initdram() is called later on in nand_boot(), this can lead to problems
11497 with variables in the bss sections like nand_ecc_pos[].
11498
11499 Signed-off-by: Stefan Roese <sr@denx.de>
11500 Acked-by: Scott Wood <scottwood@freescale.com>
11501
11502 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
11503 Author: Grant Erickson <gerickson@nuovations.com>
11504 Date: Thu May 22 14:44:24 2008 -0700
11505
11506 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
11507
11508 This patch (Part 2 of 2):
11509
11510 * Rolls up a suite of changes to enable correct primordial stack and
11511 global data handling when the data cache is used for such a purpose
11512 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
11513
11514 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
11515 eliminating redundant ECC initialization implementations and moving
11516 redundant SDRAM initialization out of board code into shared 4xx
11517 code.
11518
11519 * Enables MCSR visibility on the 405EX(r).
11520
11521 * Enables the use of the data cache for initial RAM on
11522 both AMCC's Kilauea and Makalu and removes a redundant
11523 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
11524
11525 - Removed, per Stefan Roese's request, defunct memory.c file for
11526 Makalu and rolled sdram_init from it into makalu.c.
11527
11528 With respect to the 4xx DDR initialization and ECC unification, there
11529 is certainly more work that can and should be done (file renaming,
11530 etc.). However, that can be handled at a later date on a second or
11531 third pass. As it stands, this patch moves things forward in an
11532 incremental yet positive way for those platforms that utilize this
11533 code and the features associated with it.
11534
11535 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
11536 Signed-off-by: Stefan Roese <sr@denx.de>
11537
11538 commit c821b5f120bedf73867513466412587c6912a8f8
11539 Author: Grant Erickson <gerickson@nuovations.com>
11540 Date: Thu May 22 14:44:14 2008 -0700
11541
11542 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
11543
11544 This patch (Part 1 of 2):
11545
11546 * Rolls up a suite of changes to enable correct primordial stack and
11547 global data handling when the data cache is used for such a purpose
11548 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
11549
11550 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
11551 eliminating redundant ECC initialization implementations and moving
11552 redundant SDRAM initialization out of board code into shared 4xx
11553 code.
11554
11555 * Enables MCSR visibility on the 405EX(r).
11556
11557 * Enables the use of the data cache for initial RAM on
11558 both AMCC's Kilauea and Makalu and removes a redundant
11559 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
11560
11561 - Removed, per Stefan Roese's request, defunct memory.c file for
11562 Makalu and rolled sdram_init from it into makalu.c.
11563
11564 With respect to the 4xx DDR initialization and ECC unification, there
11565 is certainly more work that can and should be done (file renaming,
11566 etc.). However, that can be handled at a later date on a second or
11567 third pass. As it stands, this patch moves things forward in an
11568 incremental yet positive way for those platforms that utilize this
11569 code and the features associated with it.
11570
11571 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
11572 Signed-off-by: Stefan Roese <sr@denx.de>
11573
11574 commit a439680019e06171d4a5694b7992accce87f590e
11575 Author: Grant Erickson <gerickson@nuovations.com>
11576 Date: Wed May 21 13:28:30 2008 -0700
11577
11578 PPC4xx: Simplified post_word_{load, store}
11579
11580 This patch simplifies post_word_{load,store} by using the preprocessor
11581 to eliminate redundant, copy-and-pasted code.
11582
11583 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
11584
11585 commit f979690ee337450b2030aba128f95b7a8d9881c0
11586 Author: Kumar Gala <galak@kernel.crashing.org>
11587 Date: Thu May 15 15:13:08 2008 -0500
11588
11589 Fix warnings from gcc-4.3.0 build on a ppc host
11590
11591 * The cfi_flash.c memset fix actual allows the board to boot so there is
11592 a bit more going on here than just resolving warnings associated with
11593 uninitialized variables.
11594
11595 * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
11596 inline function 'ext2_find_next_zero_bit' which is not static
11597
11598 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11599
11600 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
11601 Author: Becky Bruce <becky.bruce@freescale.com>
11602 Date: Wed May 14 13:09:51 2008 -0500
11603
11604 MPC512x: Change traps.c to not reference non-addressable memory
11605
11606 Currently, END_OF_RAM is used by the trap code to determine if
11607 we should attempt to access the stack pointer or not. However,
11608 on systems with a lot of RAM, only a subset of the RAM is
11609 guaranteed to be mapped in and accessible. Change END_OF_RAM
11610 to use get_effective_memsize() instead of using the raw ram
11611 size out of the bd.
11612
11613 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11614
11615 commit 81673e9ae14b771cd13faf19947192599cae3959
11616 Author: Kumar Gala <galak@kernel.crashing.org>
11617 Date: Tue May 13 19:01:54 2008 -0500
11618
11619 Make sure common.h is the first include.
11620
11621 If common.h isn't first we can get CONFIG_ options defined in the
11622 board config file ignored. This can cause an issue if any of those
11623 config options impact the size of types of data structures
11624 (eg CONFIG_PHYS_64BIT).
11625
11626 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11627
11628 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
11629 Author: Marian Balakowicz <m8@semihalf.com>
11630 Date: Tue May 13 15:53:29 2008 +0200
11631
11632 Avoid initrd and logbuffer area overlaps
11633
11634 Add logbuffer to reserved LMB areas to prevent initrd allocation
11635 from overlaping with it.
11636
11637 Make sure to use correct logbuffer base address.
11638
11639 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
11640
11641 commit 6956d53d9934862507f83f0e3255dfd4662e7482
11642 Author: Sascha Laue <sascha.laue@liebherr.com>
11643 Date: Tue May 13 13:29:54 2008 +0200
11644
11645 lwmon5: add memory-pattern-test to FPGA POST.
11646
11647 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
11648 Author: Becky Bruce <becky.bruce@freescale.com>
11649 Date: Thu May 8 19:02:51 2008 -0500
11650
11651 PPC: 86xx Add bat registers to reginfo command
11652
11653 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11654
11655 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
11656 Author: Becky Bruce <becky.bruce@freescale.com>
11657 Date: Fri May 9 15:41:35 2008 -0500
11658
11659 PPC: Add print_bats() to lib_ppc/bat_rw.c
11660
11661 This function prints the values of all the BAT register
11662 pairs - I needed this for debug earlier this week; adding it to
11663 lib_ppc so others can use it (and add it to reginfo commands
11664 if so desired).
11665
11666 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11667
11668 commit c148f24c15743a02e855636e6bed013bd121f7f2
11669 Author: Becky Bruce <becky.bruce@freescale.com>
11670 Date: Thu May 15 21:29:04 2008 -0500
11671
11672 PPC: Change lib_ppc/bat_rw.c to use high bats
11673
11674 Currently, this code only deals with BATs 0-3, which makes
11675 it useless on systems that support BATs 4-7. Add the
11676 support for these registers.
11677
11678 Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
11679
11680 commit 31d826722434931e1152a09d140187dcf72f8aac
11681 Author: Becky Bruce <becky.bruce@freescale.com>
11682 Date: Thu May 8 19:02:12 2008 -0500
11683
11684 PPC: Create and use CONFIG_HIGH_BATS
11685
11686 Change all code that conditionally operates on high bat
11687 registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
11688 instead of the myriad ways this is done now. Define the option
11689 for every config for which high bats are supported (and
11690 enabled by early boot, on parts where they're not always
11691 enabled)
11692
11693 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11694
11695 commit aa3b8bf9c30065bb2ea852799d32db5020598495
11696 Author: Wolfgang Grandegger <wg@grandegger.com>
11697 Date: Wed May 28 19:55:19 2008 +0200
11698
11699 E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
11700
11701 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
11702 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11703
11704 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
11705 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11706 Date: Wed May 28 13:06:25 2008 -0500
11707
11708 ColdFire: Add 10 base ethernet support for mcf5445x
11709
11710 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11711 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11712
11713 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
11714 Author: Jason McMullan <mcmullan@netapp.com>
11715 Date: Fri May 30 00:53:38 2008 +0900
11716
11717 mips: Add an 'include/asm/errno.h', like all other architectures
11718
11719 All other u-boot architectures have an include/asm/errno.h, so
11720 this change adds it to the mips include/asm-mips headers also.
11721
11722 Stolen from Linux 2.6.25.
11723
11724 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
11725
11726 commit e2ad8426624bac457acc6925b6ff408e9bf20466
11727 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11728 Date: Fri May 30 00:53:38 2008 +0900
11729
11730 [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
11731
11732 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11733
11734 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
11735 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11736 Date: Fri May 30 00:53:38 2008 +0900
11737
11738 [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
11739
11740 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11741
11742 commit bf462ae450a7f2eeeddc699ed345b391e3263540
11743 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11744 Date: Fri May 30 00:53:37 2008 +0900
11745
11746 [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
11747
11748 No functional changes.
11749
11750 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11751
11752 commit 89a1550ec6b74452274a7a23127936e2c7eec711
11753 Author: Jason McMullan <mcmullan@netapp.com>
11754 Date: Fri May 30 00:53:37 2008 +0900
11755
11756 mips: If CONFIG_CMD_SPI is defined, call spi_init()
11757
11758 The mips architecture currently does not call 'spi_init()' in the generic
11759 board initialization routine is CONFIG_CMD_SPI is defined.
11760
11761 This patch rectifies that problem.
11762
11763 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
11764 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11765
11766 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
11767 Author: Jason McMullan <mcmullan@netapp.com>
11768 Date: Fri May 30 00:53:37 2008 +0900
11769
11770 [MIPS] lib_mips/board.c: Add nand_init
11771
11772 This patch adds the standard 'nand_init()' call to the mips generic
11773 'board_init_r()' call, bringing MIPS in line with the other architectures.
11774
11775 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
11776 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11777
11778 commit d6ac2ed893c2168738aee01579d6283af8d37045
11779 Author: Scott Wood <scottwood@freescale.com>
11780 Date: Thu May 22 10:49:46 2008 -0500
11781
11782 Remove prototypes of nand_init() in favor of including nand.h.
11783
11784 Likewise with onenand_init().
11785
11786 Signed-off-by: Scott Wood <scottwood@freescale.com>
11787
11788 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
11789 Author: Scott Wood <scottwood@freescale.com>
11790 Date: Thu May 22 10:49:00 2008 -0500
11791
11792 Make onenand_uboot.h self-sufficient.
11793
11794 Don't assume types are provided by previously included headers.
11795
11796 Signed-off-by: Scott Wood <scottwood@freescale.com>
11797
11798 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
11799 Author: Dirk Behme <dirk.behme@gmail.com>
11800 Date: Wed Jan 16 14:26:59 2008 +0100
11801
11802 nand: Correct NAND erase percentage output
11803
11804 For NAND erase sizes smaller than one NAND erase block, erase
11805 percentage output becomes grater than 100% e.g.
11806
11807 -- cut --
11808 > nand info
11809 Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
11810 > nand erase 0x100000 0x2000
11811 NAND erase: device 0 offset 0x100000, size 0x2000
11812 Erasing at 0x100000 -- 200% complete.
11813 OK
11814 >
11815 -- cut --
11816
11817 Correct this and give user a warning that more is erased than specified:
11818
11819 -- cut --
11820 > nand erase 0x100000 0x2000
11821 NAND erase: device 0 offset 0x100000, size 0x2000
11822 Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
11823 Erasing 0x00004000 instead
11824 Erasing at 0x100000 -- 100% complete.
11825 OK
11826 >
11827 -- cut --
11828
11829 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
11830
11831 commit 5922db6c0948506be91e0de44e7a6863a18a417f
11832 Author: Stelian Pop <stelian@popies.net>
11833 Date: Tue May 13 17:31:24 2008 +0200
11834
11835 Cleanup nand_info[] declaration.
11836
11837 The nand_info array is declared as extern in several .c files.
11838 Those days, nand.h contains a reference to the array, so there is
11839 no need to declare it elsewhere.
11840
11841 Signed-off-by: Stelian Pop <stelian@popies.net>
11842 Signed-off-by: Scott Wood <scottwood@freescale.com>
11843
11844 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
11845 Author: Scott Wood <scottwood@freescale.com>
11846 Date: Mon May 19 09:30:43 2008 -0500
11847
11848 NAND: Provide a sane default for NAND_MAX_CHIPS.
11849
11850 This allows the header to be included regardless of whether a board's
11851 config file provides NAND-related defininitions.
11852
11853 Signed-off-by: Scott Wood <scottwood@freescale.com>
11854
11855 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
11856 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11857 Date: Mon May 26 12:19:10 2008 +0200
11858
11859 avr32: Fix theoretical race in udelay()
11860
11861 If the specified delay is very short, the cycle counter may go past the
11862 "end" time we are waiting for before we get around to reading it.
11863
11864 Fix it by checking the different between the cycle count "now" and the
11865 cycle count at the beginning. This will work as long as the delay
11866 measured in number of cycles is below 2^31.
11867
11868 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11869
11870 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
11871 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11872 Date: Wed May 21 13:01:09 2008 +0200
11873
11874 avr32: Compile atmel_mci.o conditionally
11875
11876 Remove #ifdef CONFIG_MMC from the source file and use conditional
11877 compilation in the Makefile instead.
11878
11879 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11880
11881 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
11882 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11883 Date: Thu May 22 12:28:25 2008 +0200
11884
11885 avr32: Fix wrong error flags in atmel_mci driver
11886
11887 Make sure we check for CRC errors when sending commands that use CRC
11888 checking.
11889
11890 Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
11891 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11892
11893 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
11894 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11895 Date: Wed May 21 11:10:59 2008 +0200
11896
11897 avr32: Fix two warnings in atmel_mci.c
11898
11899 The warnings are harmless but annoying. Let's fix them.
11900
11901 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11902
11903 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
11904 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11905 Date: Mon May 19 11:36:28 2008 +0200
11906
11907 avr32: Rework SDRAM initialization code
11908
11909 This cleans up the SDRAM initialization and related code a bit, and
11910 allows faster booting.
11911
11912 * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
11913 * Remove memory test from sdram_init() and make caller responsible
11914 for verifying the SDRAM and determining its size.
11915 * Remove base_address member from struct sdram_config (was sdram_info)
11916 * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
11917 * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
11918
11919 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11920
11921 commit 95107b7c028806919630bf02c653aa8f4f867c94
11922 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11923 Date: Mon May 19 11:27:37 2008 +0200
11924
11925 avr32: Do stricter stack checking in the exception handler
11926
11927 Don't do a stack dump if the stack pointer is outside the memory area
11928 reserved for stack.
11929
11930 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11931
11932 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
11933 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11934 Date: Fri May 2 15:32:57 2008 +0200
11935
11936 avr32: Use the same entry point for reset and exception handling
11937
11938 Since the reset vector is always aligned to a very large boundary, we
11939 can save a couple of KB worth of alignment padding by placing the
11940 exception vectors at the same address.
11941
11942 Deciding which one it is is easy: If we're handling an exception, the
11943 CPU is in Exception mode. If we're starting up after reset, the CPU is
11944 in Supervisor mode. So this adds a very minimal overhead to the reset
11945 path (only executed once) and the exception handling path (normally
11946 never executed at all.)
11947
11948 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11949
11950 commit 0c16eed2189a190bd5655b33c029f809a9b31128
11951 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11952 Date: Fri May 2 15:24:22 2008 +0200
11953
11954 avr32: Put memset in its own section
11955
11956 All C code is compiled with -ffunction-sections -fdata-sections.
11957 Assembly functions should get their own sections as well so that
11958 everything looks consistent.
11959
11960 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11961
11962 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
11963 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11964 Date: Fri May 2 15:21:40 2008 +0200
11965
11966 avr32: Rename pm_init() as clk_init() and make SoC-specific
11967
11968 pm_init() was always more about clock initialization than anything
11969 else. Dealing with PLLs, clock gating and such is also inherently
11970 SoC-specific, so move it into a SoC-specific directory.
11971
11972 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11973
11974 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
11975 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11976 Date: Wed Apr 30 16:15:57 2008 +0200
11977
11978 avr32: Use new-style Makefile for the at32ap platform
11979
11980 This makes it easier to avoid compiling certain files later.
11981
11982 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11983
11984 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
11985 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11986 Date: Wed Apr 30 14:36:47 2008 +0200
11987
11988 avr32: Remove unused file cpu/at32ap/pm.c
11989
11990 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11991
11992 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
11993 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11994 Date: Wed Apr 30 14:19:28 2008 +0200
11995
11996 avr32: Clean up the HMATRIX code
11997
11998 Rework the HMATRIX configuration interface so that it becomes easier
11999 to configure the HMATRIX for boards with special needs, and add new
12000 parts.
12001
12002 The HMATRIX header file has been split into a general,
12003 chip-independent part with register definitions, etc. and a
12004 chip-specific part with SFR bitfield definitions and master/slave
12005 identifiers.
12006
12007 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12008
12009 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
12010 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12011 Date: Thu Nov 22 12:14:11 2007 +0100
12012
12013 avr32: Add support for the ATSTK1006 board
12014
12015 This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
12016 board. It's currently in production and will be available soon.
12017
12018 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12019
12020 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
12021 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12022 Date: Tue Apr 29 12:53:05 2008 +0200
12023
12024 avr32: Get rid of the .flashprog section
12025
12026 The .flashprog section was only needed back when we were running
12027 directly from flash, and it's even more useless on NGW100 since it
12028 uses the CFI flash driver which never used this workaround in the
12029 first place.
12030
12031 Remove it on STK1000 as well, and get rid of all the associated code and
12032 annotations.
12033
12034 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12035
12036 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
12037 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12038 Date: Wed Apr 30 13:09:56 2008 +0200
12039
12040 avr32: Use correct condition around macb clock accessors
12041
12042 get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
12043 the chip has a MACB controller, not when it has a USART.
12044
12045 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12046
12047 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
12048 Author: David Brownell <david-b@pacbell.net>
12049 Date: Wed Apr 16 22:57:58 2008 -0700
12050
12051 avr32: Disable the AP7000 internal watchdog on startup
12052
12053 This patch forces the watchdog off in all cases. That will at least
12054 get rid of the constant reboot cycle, though it won't let the watchdog
12055 actually run in the new kernels: its probe() comes up with a polite
12056 warning.
12057
12058 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12059
12060 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
12061 Author: David Brownell <david-b@pacbell.net>
12062 Date: Fri Feb 22 12:54:39 2008 -0800
12063
12064 avr32: stk1002 and ngw100 convergence
12065
12066 Make STK1002 and NGW100 boards act more alike:
12067 - STK boards can use as many arguments as NGW
12068 - STK boards don't need to manage FPGAs either
12069 - NGW commands should match STK ones
12070
12071 Also spell U-Boot right in prompts for STK1002 and NGW100.
12072
12073 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
12074 [haavard.skinnemoen@atmel.com: update STK100[34] as well]
12075 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12076
12077 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
12078 Author: Sergei Poselenov <sposelenov@emcraft.com>
12079 Date: Tue May 27 13:47:00 2008 +0200
12080
12081 Socrates: Fix PCI bus frequency report
12082
12083 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12084
12085 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
12086 Author: Sergei Poselenov <sposelenov@emcraft.com>
12087 Date: Tue May 27 11:49:13 2008 +0200
12088
12089 Socrates: Added USB support.
12090
12091 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12092
12093 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
12094 Author: Sergei Poselenov <sposelenov@emcraft.com>
12095 Date: Tue May 27 11:35:02 2008 +0200
12096
12097 USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
12098
12099 In case of several PCI USB controllers on a board this variable
12100 specifys which controller to use.
12101 See doc/README.generic_usb_ohci for details.
12102
12103 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12104
12105 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
12106 Author: Sergei Poselenov <sposelenov@emcraft.com>
12107 Date: Tue May 27 10:36:07 2008 +0200
12108
12109 Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
12110
12111 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12112
12113 commit 83e9d7a2614d4006b92690afa3390c291734267e
12114 Author: Sergei Poselenov <sposelenov@emcraft.com>
12115 Date: Mon May 26 18:16:04 2008 +0200
12116
12117 Socrates: Config file cleanup.
12118
12119 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12120
12121 commit 602cac1389b755b223272f2328a47e6f8c240848
12122 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12123 Date: Sat May 24 12:47:46 2008 +0200
12124
12125 MAKEALL: add at91 list
12126
12127 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12128
12129 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
12130 Author: Ron Madrid <ron_madrid@sbcglobal.net>
12131 Date: Fri May 23 15:37:05 2008 -0700
12132
12133 Add Marvell 88E1118 support for TSEC
12134
12135 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
12136 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12137
12138 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
12139 Author: Jens Gehrlein <sew_s@tqs.de>
12140 Date: Mon May 5 14:06:11 2008 +0200
12141
12142 smc911x: add 16 bit support
12143
12144 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
12145 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12146
12147 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
12148 Author: Christian Eggers <ceggers@gmx.de>
12149 Date: Wed May 21 21:29:10 2008 +0200
12150
12151 Fix endianess conversion in usb_ohci.c
12152
12153 Sorry, I forgot this line:
12154
12155 Signed-off-by: Christian Eggers <ceggers@gmx.de>
12156
12157 I think this must be swapped (result may be equal).
12158
12159 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
12160 Author: Christian Eggers <ceggers@gmx.de>
12161 Date: Wed May 21 22:12:00 2008 +0200
12162
12163 USB: replace old swap_ with proper endianess conversion macros
12164
12165 Signed-off-by: Christian Eggers <ceggers@gmx.de>
12166 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
12167
12168 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
12169 Author: Christian Eggers <ceggers@gmx.de>
12170 Date: Wed May 21 21:29:10 2008 +0200
12171
12172 Fix endianess conversion in usb_ohci.c
12173
12174 Signed-off-by: Christian Eggers <ceggers@gmx.de>
12175 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
12176
12177 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
12178 Author: Sergei Poselenov <sposelenov@emcraft.com>
12179 Date: Thu May 22 01:15:53 2008 +0200
12180
12181 USB: add support for multiple PCI OHCI controllers
12182
12183 Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
12184 In case of several PCI USB controllers on a board this variable
12185 specifys which controller to use.
12186
12187 Also add USB support for sokrates board.
12188
12189 See doc/README.generic_usb_ohci for details.
12190
12191 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12192 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
12193
12194 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
12195 Author: Wolfgang Denk <wd@denx.de>
12196 Date: Wed May 21 16:56:08 2008 +0200
12197
12198 Fix some whitespace issues
12199
12200 introduced by 53677ef18 "Big white-space cleanup."
12201
12202 Signed-off-by: Wolfgang Denk <wd@denx.de>
12203
12204 commit 4416603aeb06861b468b06a981e52c3ff805db7b
12205 Author: York Sun <yorksun@freescale.com>
12206 Date: Mon May 12 14:36:39 2008 -0500
12207
12208 Make ads5121 out-of-tree compiling safe
12209
12210 Reuse the existing DIU driver in board/freescale/common.
12211
12212 Signed-off-by: York Sun <yorksun@freescale.com>
12213
12214 commit 0e1bad47cd345c76c91a64caf41011e431b62599
12215 Author: York Sun <yorksun@freescale.com>
12216 Date: Mon May 5 10:20:01 2008 -0500
12217
12218 Adding DIU support for Freescale 5121ADS
12219
12220 Add DIU and cfb console support to FSL 5121ADS board.
12221
12222 Use #define CONFIG_VIDEO in config file to enable fb console.
12223
12224 Signed-off-by: York Sun <yorksun@freescale.com>
12225
12226 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
12227 Author: York Sun <yorksun@freescale.com>
12228 Date: Mon May 5 10:20:00 2008 -0500
12229
12230 Replace DPRINTF with debug
12231
12232 Remove DPRINTF macro and replace it with generic debug macro.
12233
12234 Signed-off-by: York Sun <yorksun@freescale.com>
12235
12236 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
12237 Author: York Sun <yorksun@freescale.com>
12238 Date: Mon May 5 10:19:59 2008 -0500
12239
12240 Move pixel clock setting to board file
12241
12242 The clock divider has different format in 5121 and 8610. This patch moves it to
12243 board specific code.
12244
12245 Signed-off-by: York Sun <yorksun@freescale.com>
12246
12247 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
12248 Author: Wolfgang Denk <wd@denx.de>
12249 Date: Tue May 20 16:00:29 2008 +0200
12250
12251 Big white-space cleanup.
12252
12253 This commit gets rid of a huge amount of silly white-space issues.
12254 Especially, all sequences of SPACEs followed by TAB characters get
12255 removed (unless they appear in print statements).
12256
12257 Also remove all embedded "vim:" and "vi:" statements which hide
12258 indentation problems.
12259
12260 Signed-off-by: Wolfgang Denk <wd@denx.de>
12261
12262 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
12263 Author: Sergei Poselenov <sposelenov@emcraft.com>
12264 Date: Thu May 8 17:46:23 2008 +0200
12265
12266 socrates: fix second TSEC configuration (it is actually TSEC3)
12267
12268 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12269
12270 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
12271 Author: Sergei Poselenov <sposelenov@emcraft.com>
12272 Date: Thu May 8 14:17:08 2008 +0200
12273
12274 Fixed reset for socrates
12275
12276 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12277
12278 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
12279 Author: Sergei Poselenov <sposelenov@emcraft.com>
12280 Date: Wed May 7 15:10:49 2008 +0200
12281
12282 socrates: changes to support FDT
12283
12284 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12285 Signed-off-by: Wolfgang Denk <wd@denx.de>
12286
12287 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
12288 Author: Sergei Poselenov <sposelenov@emcraft.com>
12289 Date: Wed Apr 30 11:42:50 2008 +0200
12290
12291 Initial support for "Socrates" board
12292
12293 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12294
12295 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
12296 Author: Yuri Tikhonov <yur@emcraft.com>
12297 Date: Thu May 8 15:46:42 2008 +0200
12298
12299 POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
12300
12301 This way we become able to utilize the full post_log_word for POST
12302 activities (overwise, POST ECC, which has 0x8000 ID, could be
12303 erroneously treated as started in post_output_backlog() even if there
12304 was actually no POST ECC run (because of OCM POST failure, for
12305 example).
12306
12307 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
12308
12309 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
12310 Author: Yuri Tikhonov <yur@emcraft.com>
12311 Date: Thu May 8 15:46:02 2008 +0200
12312
12313 POST: mark OCM test as POST_STOP
12314
12315 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12316
12317 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
12318 Author: Yuri Tikhonov <yur@emcraft.com>
12319 Date: Thu May 8 15:45:26 2008 +0200
12320
12321 POST: add POST_STOP flag
12322
12323 Don't run futher tests in case of a test fails that is marked as
12324 POST_STOP.
12325
12326 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12327 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
12328
12329 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
12330 Author: Yuri Tikhonov <yur@emcraft.com>
12331 Date: Thu May 8 15:44:16 2008 +0200
12332
12333 POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
12334
12335 Switch the OCM testid with the codec one. The reason is that current
12336 implementation requires the POST_ROM testid to fit into lower 16
12337 bits, and the codec test will never run with POST_ROM hopefully.
12338
12339 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12340
12341 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
12342 Author: Yuri Tikhonov <yur@emcraft.com>
12343 Date: Thu May 8 15:43:28 2008 +0200
12344
12345 lwmon5: enable OCM post test on lwmon5 board
12346
12347 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12348
12349 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
12350 Author: Yuri Tikhonov <yur@emcraft.com>
12351 Date: Thu May 8 15:42:47 2008 +0200
12352
12353 POST: OCM test added.
12354
12355 Added OCM test to POST layer. This version runs before all other tests
12356 but doesn't yet interrupt post sequence on failure.
12357
12358 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12359 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
12360
12361 commit 6891260bdd935a382c95d9fa333922b0dfded68a
12362 Author: Yuri Tikhonov <yur@emcraft.com>
12363 Date: Thu May 8 15:40:39 2008 +0200
12364
12365 POST: typo fix
12366
12367 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12368
12369 commit 727f63334676e760877d43bfb8f0e9331ac8b101
12370 Author: Hebbar <gururajakr@sanyo.co.in>
12371 Date: Tue May 20 02:16:36 2008 -0700
12372
12373 common/usb.c: fix incorrect escape sequence
12374
12375 Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
12376
12377 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
12378 Author: York Sun <yorksun@freescale.com>
12379 Date: Thu May 15 15:26:27 2008 -0500
12380
12381 Fix 8313ERDB board configuration
12382
12383 Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
12384 Correct TSEC1 vs TSEC2 assignment.
12385 Define ETHADDR and ETH1ADDR always.
12386
12387 Signed-off-by: York Sun <yorksun@freescale.com>
12388 Signed-off-by: Timur Tabi <timur@freescale.com>
12389
12390 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
12391 Author: Jon Loeliger <jdl@freescale.com>
12392 Date: Mon May 19 09:47:25 2008 -0500
12393
12394 mpc86xx: Removed unused and unconfigured memory test code.
12395
12396 Besides, other common code exists.
12397
12398 Signed-off-by: Jon Loeliger <jdl@freescale.com>
12399
12400 commit 180a90abdae72587c0f679edf8991455e559440d
12401 Author: Wolfgang Denk <wd@denx.de>
12402 Date: Mon May 19 12:47:11 2008 +0200
12403
12404 Release v1.3.3
12405
12406 Update CHANGELOG for release.
12407
12408 Signed-off-by: Wolfgang Denk <wd@denx.de>
12409
12410 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
12411 Author: Stefan Roese <sr@denx.de>
12412 Date: Mon May 19 07:14:38 2008 +0200
12413
12414 ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
12415
12416 When SATA is selected (via jumper J6) we need to disable the first PCIe
12417 node in the device tree, so that Linux doesn't initialize it. Otherwise
12418 the Linux SATA driver will fail to detect the devices.
12419
12420 The same goes the other way around too. So if PCIe is selected we need
12421 to disable the SATA node in the device tree.
12422
12423 This is because PCIe port 0 and SATA on 460EX share the same pins
12424 (multiplexed) and we have to configure in U-Boot which peripheral is
12425 enabled.
12426
12427 Signed-off-by: Stefan Roese <sr@denx.de>
12428
12429 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
12430 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12431 Date: Sun May 18 19:09:58 2008 +0200
12432
12433 i386: Fix multiple definitions of __show_boot_progress
12434
12435 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12436
12437 commit 311f3446930c1e64c12026c1cfd00500b05be52d
12438 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12439 Date: Sun May 18 19:09:57 2008 +0200
12440
12441 sc530_spunk: add missing SOBJS entry
12442
12443 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12444
12445 commit a559317143b4f95927b08cd388707e6f077e95fa
12446 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12447 Date: Sun May 18 19:09:56 2008 +0200
12448
12449 sc520_spunk: Fix flash
12450
12451 flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
12452 flash.c:398: error: label at end of compound statement
12453
12454 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12455
12456 commit 91f221317af64191ee8caf303ea9305943158691
12457 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12458 Date: Sun May 18 19:09:49 2008 +0200
12459
12460 drivers/pcmcia: add missing i82365
12461
12462 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12463
12464 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
12465 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12466 Date: Sun May 18 19:09:47 2008 +0200
12467
12468 i386/bootm: remove unused var
12469
12470 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12471
12472 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
12473 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12474 Date: Sun May 18 19:09:45 2008 +0200
12475
12476 example/gitignore: update with all generated examples
12477
12478 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12479
12480 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
12481 Author: Wolfgang Denk <wd@denx.de>
12482 Date: Thu May 15 00:42:45 2008 +0200
12483
12484 TQM8272: fix out-of-tree building
12485
12486 ...and add to MAKEALL script
12487
12488 Signed-off-by: Wolfgang Denk <wd@denx.de>
12489
12490 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
12491 Author: Wolfgang Denk <wd@denx.de>
12492 Date: Wed May 14 23:34:53 2008 +0200
12493
12494 environment: fix bug introduced by commit a8409f4f1ac8
12495
12496 env_get_char is not a function, but a pointer to one.
12497
12498 Signed-off-by: Wolfgang Denk <wd@denx.de>
12499
12500 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
12501 Author: Gary Jennejohn <garyj@denx.de>
12502 Date: Wed May 14 13:39:22 2008 +0200
12503
12504 ppc4xx: QUAD100HD: Allow the environment to be put into flash.
12505
12506 After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect. Also
12507 use a redundant environment.
12508
12509 Signed-off-by: Gary Jennejohn <garyj@denx.de>
12510
12511 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
12512 Author: Wolfgang Denk <wd@denx.de>
12513 Date: Wed May 14 13:55:30 2008 +0200
12514
12515 Fix config files for out-of-tree building
12516
12517 Several board/<...>/config.mk files include dynamically built (by
12518 the Makefile) config files but used the wrong file name of
12519 $(TOPDIR)/board/$(BOARDDIR)/config.tmp
12520 instead if the correct
12521 $(OBJTREE)/board/$(BOARDDIR)/config.tmp
12522
12523 The bug is nasty because the build result is correct for the (normal)
12524 in-tree builds, and because 'sinclude' is used no errors get raised
12525 even for out-of-tree build tests. But out-of-tree builds use an
12526 incomplete and thus usually incorrect configuration...
12527
12528 Signed-off-by: Wolfgang Denk <wd@denx.de>
12529
12530 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
12531 Author: Stefan Roese <sr@denx.de>
12532 Date: Wed May 14 13:40:03 2008 +0200
12533
12534 ppc4xx: Fix bogus Canyonlands config.mk
12535
12536 This patch fixes the canyonlands config.mk file to enable correct
12537 out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
12538
12539 Signed-off-by: Stefan Roese <sr@denx.de>
12540
12541 commit fdd1247a66d788a3446244f6fde9955a93c26322
12542 Author: Stefan Roese <sr@denx.de>
12543 Date: Wed May 14 10:32:32 2008 +0200
12544
12545 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
12546
12547 Canyonlands has a file ddr2_fixed.c which needs special treatment when
12548 building in separate directory. It has to be linked to build directory
12549 otherwise it is not seen.
12550
12551 Signed-off-by: Stefan Roese <sr@denx.de>
12552
12553 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
12554 Author: Wolfgang Denk <wd@denx.de>
12555 Date: Wed May 14 12:22:49 2008 +0200
12556
12557 environment: cleanup prototype declarations of env functions.
12558
12559 Signed-off-by: Wolfgang Denk <wd@denx.de>
12560
12561 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
12562 Author: Wolfgang Denk <wd@denx.de>
12563 Date: Wed May 14 12:21:48 2008 +0200
12564
12565 linkstation_HGLAN: Fix out of tree building.
12566
12567 Signed-off-by: Wolfgang Denk <wd@denx.de>
12568
12569 commit 085551c05ca09e6c491ea11a1c6727a36776a545
12570 Author: Stefan Roese <sr@denx.de>
12571 Date: Wed May 14 10:32:32 2008 +0200
12572
12573 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
12574
12575 Canyonlands has a file ddr2_fixed.c which needs special treatment when
12576 building in separate directory. It has to be linked to build directory
12577 otherwise it is not seen.
12578
12579 Signed-off-by: Stefan Roese <sr@denx.de>
12580
12581 commit 1510b82d50615f344e89d42533e8224cce067dc0
12582 Author: Wolfgang Denk <wd@denx.de>
12583 Date: Tue May 13 23:15:52 2008 +0200
12584
12585 Makefile: fix "error: version_autogenerated.h: No such file or directory"
12586
12587 Signed-off-by: Wolfgang Denk <wd@denx.de>
12588
12589 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
12590 Author: Stelian Pop <stelian@popies.net>
12591 Date: Tue May 13 17:31:24 2008 +0200
12592
12593 Cleanup nand_info[] declaration.
12594
12595 The nand_info array is declared as extern in several .c files.
12596 Those days, nand.h contains a reference to the array, so there is
12597 no need to declare it elsewhere.
12598
12599 Signed-off-by: Stelian Pop <stelian@popies.net>
12600 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12601
12602 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
12603 Author: Stefan Roese <sr@denx.de>
12604 Date: Tue May 13 20:22:01 2008 +0200
12605
12606 ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
12607
12608 Signed-off-by: Stefan Roese <sr@denx.de>
12609
12610 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
12611 Author: Wolfgang Denk <wd@denx.de>
12612 Date: Mon May 12 01:11:21 2008 +0200
12613
12614 Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
12615
12616 This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
12617 which broke many PowerPC boards.
12618
12619 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
12620 Author: Wolfgang Denk <wd@denx.de>
12621 Date: Mon May 12 00:56:28 2008 +0200
12622
12623 Revert "Avoid initrd and logbuffer area overlaps"
12624
12625 This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
12626 which breaks building on all PPC boards that don't use a log buffer.
12627
12628 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
12629 Author: Nick Spence <nick.spence@freescale.com>
12630 Date: Sat May 10 14:02:04 2008 -0700
12631
12632 Fix offset calculation for multi-type legacy images.
12633
12634 Calculation of tail was incorrect when size % 4 == 0.
12635
12636 New code removes the conditional and does the same thing but with arithmetic
12637
12638 Signed-off-by: Nick Spence <nick.spence@freescale.com>
12639
12640 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
12641 Author: Wolfgang Denk <wd@denx.de>
12642 Date: Mon May 12 00:40:58 2008 +0200
12643
12644 Revert "Change env_get_char from a global function ptr to a function."
12645
12646 This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
12647 which is known to break booting from dataflash and NAND.
12648
12649 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
12650 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12651 Date: Sun May 11 23:13:57 2008 +0200
12652
12653 API: remove duplicate syscall check
12654
12655 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12656
12657 commit 67e3beb52c320b0a31cf030716c99392cde2d532
12658 Author: Stelian Pop <stelian@popies.net>
12659 Date: Fri May 9 21:46:51 2008 +0200
12660
12661 AT91: Cleanup unused config header file definitions.
12662
12663 CONFIG_ENV_OVERWRITE is commented out in the config header files,
12664 so let's cleanup the files by removing the whole definition.
12665
12666 Signed-off-by: Stelian Pop <stelian@popies.net>
12667 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12668
12669 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
12670 Author: Stelian Pop <stelian@popies.net>
12671 Date: Thu May 8 14:52:34 2008 +0200
12672
12673 Support AT91CAP9 revC CPUs
12674
12675 The AT91CAP9 revC CPU has a few differences over the previous,
12676 revB CPU which was distributed in small quantities only (revA was
12677 an internal Atmel product only).
12678
12679 The revC silicon needs a special initialisation sequence to
12680 switch from the internal (imprecise) RC oscillator to the
12681 external 32k clock.
12682
12683 Signed-off-by: Stelian Pop <stelian@popies.net>
12684 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12685
12686 commit 098b7b4b441b12c2a64dd517930f43c793542759
12687 Author: Stelian Pop <stelian@popies.net>
12688 Date: Thu May 8 14:52:33 2008 +0200
12689
12690 Use custom logo for Atmel boards
12691
12692 This patch adds a custom vendor logo for the Atmel AT91 boards.
12693
12694 Signed-off-by: Stelian Pop <stelian@popies.net>
12695 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12696
12697 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
12698 Author: Stelian Pop <stelian@popies.net>
12699 Date: Thu May 8 14:52:32 2008 +0200
12700
12701 AT91SAM9RLEK: hook up the ATMEL LCD driver
12702
12703 This patch makes the necessary adaptations (PIO configurations and
12704 defines in config header file) to hook up the Atmel LCD driver to the
12705 AT91SAM9RLEK board.
12706
12707 Signed-off-by: Stelian Pop <stelian@popies.net>
12708 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12709
12710 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
12711 Author: Stelian Pop <stelian@popies.net>
12712 Date: Thu May 8 14:52:31 2008 +0200
12713
12714 AT91SAM9263EK: hook up the ATMEL LCD driver
12715
12716 This patch makes the necessary adaptations (PIO configurations and
12717 defines in config header file) to hook up the Atmel LCD driver to the
12718 AT91SAM9263EK board.
12719
12720 Signed-off-by: Stelian Pop <stelian@popies.net>
12721 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12722
12723 commit 820f2a958325061a446115f3035e48e4726b3390
12724 Author: Stelian Pop <stelian@popies.net>
12725 Date: Thu May 8 14:52:30 2008 +0200
12726
12727 AT91SAM9261EK: hook up the ATMEL LCD driver
12728
12729 This patch makes the necessary adaptations (PIO configurations and
12730 defines in config header file) to hook up the Atmel LCD driver to the
12731 AT91SAM9261EK board.
12732
12733 Signed-off-by: Stelian Pop <stelian@popies.net>
12734 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12735
12736 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
12737 Author: Stelian Pop <stelian@popies.net>
12738 Date: Thu May 8 14:52:29 2008 +0200
12739
12740 AT91CAP9ADK: hook up the ATMEL LCD driver
12741
12742 This patch makes the necessary adaptations (PIO configurations and
12743 defines in config header file) to hook up the Atmel LCD driver to the
12744 AT91CAP9ADK board.
12745
12746 Signed-off-by: Stelian Pop <stelian@popies.net>
12747 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12748
12749 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
12750 Author: Stelian Pop <stelian@popies.net>
12751 Date: Fri May 9 21:57:18 2008 +0200
12752
12753 Add ATMEL LCD driver
12754
12755 This patch adds support for the ATMEL LCDC driver which is used on some
12756 AT91 and AVR platforms.
12757
12758 Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
12759 AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
12760
12761 Signed-off-by: Stelian Pop <stelian@popies.net>
12762 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12763
12764 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
12765 Author: Stelian Pop <stelian@popies.net>
12766 Date: Thu May 8 18:52:25 2008 +0200
12767
12768 AT91SAM9RLEK support
12769
12770 This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
12771 board.
12772
12773 Signed-off-by: Stelian Pop <stelian@popies.net>
12774 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12775
12776 commit 8e429b3eee23927c1222679f6b6f53667b21595c
12777 Author: Stelian Pop <stelian@popies.net>
12778 Date: Thu May 8 18:52:23 2008 +0200
12779
12780 AT91SAM9263EK support
12781
12782 This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
12783 board.
12784
12785 Signed-off-by: Stelian Pop <stelian@popies.net>
12786 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12787
12788 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
12789 Author: Stelian Pop <stelian@popies.net>
12790 Date: Thu May 8 20:52:22 2008 +0200
12791
12792 AT91SAM9261EK support
12793
12794 This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
12795 board.
12796
12797 Signed-off-by: Stelian Pop <stelian@popies.net>
12798 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12799
12800 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
12801 Author: Stelian Pop <stelian@popies.net>
12802 Date: Thu May 8 20:52:21 2008 +0200
12803
12804 AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
12805
12806 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
12807 in order to cope with the changes in DataFlash partitionning scheme
12808 (cset c3a60cb3).
12809
12810 Signed-off-by: Stelian Pop <stelian@popies.net>
12811 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12812
12813 commit 96996ac25d5222611a8888968db6e53a6d3726da
12814 Author: Stelian Pop <stelian@popies.net>
12815 Date: Thu May 8 20:52:20 2008 +0200
12816
12817 AT91SAM9260EK: Normalize BOOTARGS
12818
12819 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
12820 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
12821 variable.
12822
12823 Signed-off-by: Stelian Pop <stelian@popies.net>
12824 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12825
12826 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
12827 Author: Stelian Pop <stelian@popies.net>
12828 Date: Thu May 8 20:52:19 2008 +0200
12829
12830 AT91SAM9260EK: Normalize SPI timings
12831
12832 This patch changes the SPI timings to closely match the ones
12833 used by the Linux kernel and the Atmel's own bootstrap project.
12834
12835 Signed-off-by: Stelian Pop <stelian@popies.net>
12836 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12837
12838 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
12839 Author: Stelian Pop <stelian@popies.net>
12840 Date: Thu May 8 20:52:18 2008 +0200
12841
12842 AT91SAM9260EK: Handle 8 or 16 bit NAND
12843
12844 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
12845 makes the support configurable in the board config header file
12846 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
12847
12848 Signed-off-by: Stelian Pop <stelian@popies.net>
12849 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12850
12851 commit ab52640fc01624e208424e527af0b7b3a5a65a12
12852 Author: Stelian Pop <stelian@popies.net>
12853 Date: Thu May 8 20:52:17 2008 +0200
12854
12855 AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
12856
12857 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
12858 in order to cope with the changes in DataFlash partitionning scheme
12859 (cset c3a60cb3).
12860
12861 Signed-off-by: Stelian Pop <stelian@popies.net>
12862 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12863
12864 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
12865 Author: Stelian Pop <stelian@popies.net>
12866 Date: Thu May 8 20:52:16 2008 +0200
12867
12868 AT91CAP9ADK: Normalize BOOTARGS
12869
12870 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
12871 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
12872 variable.
12873
12874 Signed-off-by: Stelian Pop <stelian@popies.net>
12875 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12876
12877 commit 93da48b910511911ce110656e17ed733c8ac4c45
12878 Author: Stelian Pop <stelian@popies.net>
12879 Date: Thu May 8 20:52:15 2008 +0200
12880
12881 AT91CAP9ADK: Normalize SPI timings
12882
12883 This patch changes the SPI timings to closely match the ones
12884 used by the Linux kernel and the Atmel's own bootstrap project.
12885
12886 Signed-off-by: Stelian Pop <stelian@popies.net>
12887 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12888
12889 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
12890 Author: Stelian Pop <stelian@popies.net>
12891 Date: Thu May 8 20:52:14 2008 +0200
12892
12893 AT91CAP9ADK: Handle 8 or 16 bit NAND
12894
12895 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
12896 makes the support configurable in the board config header file
12897 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
12898
12899 Signed-off-by: Stelian Pop <stelian@popies.net>
12900 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12901
12902 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
12903 Author: Stelian Pop <stelian@popies.net>
12904 Date: Thu May 8 20:52:13 2008 +0200
12905
12906 Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
12907
12908 All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
12909 below avoids the duplication of u-boot.lds by putting the file in the
12910 cpu directory instead of the board one.
12911
12912 Signed-off-by: Stelian Pop <stelian@popies.net>
12913 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12914
12915 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
12916 Author: Stelian Pop <stelian@popies.net>
12917 Date: Thu May 8 20:52:12 2008 +0200
12918
12919 Add proper copyright notices in Atmel boards Makefiles
12920
12921 The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
12922 copyright notice. This patch adds the missing pieces.
12923
12924 Signed-off-by: Stelian Pop <stelian@popies.net>
12925 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12926
12927 commit e817a042cef6164bf26fee86f90326f2ec9e6745
12928 Author: Stelian Pop <stelian@popies.net>
12929 Date: Thu May 8 20:52:11 2008 +0200
12930
12931 Add copyright information in Atmel boards partition.c
12932
12933 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
12934 the new created files. This patch fixes the problem.
12935
12936 Signed-off-by: Stelian Pop <stelian@popies.net>
12937 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12938
12939 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
12940 Author: Stelian Pop <stelian@popies.net>
12941 Date: Thu May 8 20:52:10 2008 +0200
12942
12943 Update origin and copyright information in arch-at91sam9 header files
12944
12945 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
12946 copied from the Linux kernel sources. This patch explicitly specifies
12947 this origin for all the copied headers, and for those missing copyright
12948 information, adds it.
12949
12950 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
12951 in the latest kernel sources by 'at91sam9_smc.h'.
12952
12953 The copyright information has been confirmed by the AT91 Linux kernel
12954 maintainer, Andrew Victor <avictor.za@gmail.com>.
12955
12956 Signed-off-by: Stelian Pop <stelian@popies.net>
12957 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12958
12959 commit 79dd1712689d6a5031d7cbff54957049680751c7
12960 Author: Markus Klotzbücher <mk@denx.de>
12961 Date: Thu May 8 16:00:55 2008 +0200
12962
12963 ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
12964
12965 When using dhcp/bootp the "netmask" environment variable is not set
12966 because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
12967 desireable, so the following patch adds this this option to the board
12968 config.
12969
12970 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
12971 Signed-off-by: Stefan Roese <sr@denx.de>
12972
12973 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
12974 Author: Stefan Roese <sr@denx.de>
12975 Date: Sat May 10 10:30:36 2008 +0200
12976
12977 ppc4xx: Update Makalu defconfig to use device-tree booting as default
12978
12979 This patch reworks the default environment on Makalu. Now "net_nfs" for
12980 example uses the device-tree style booting formerly know as "net_nfs_fdt".
12981 Also the addresses in RAM were changed because of the new image booting
12982 support, which check for image overwriting. So the addresses needed to
12983 get adjusted.
12984
12985 Signed-off-by: Stefan Roese <sr@denx.de>
12986
12987 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
12988 Author: Becky Bruce <bgill@freescale.com>
12989 Date: Wed May 7 13:28:16 2008 -0500
12990
12991 PPC: fix map_physmem build warning
12992
12993 map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
12994 enabled. This quiets the warning.
12995
12996 Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
12997
12998 commit 36f32675f40292002ee1fed252c180a43022d2d4
12999 Author: Becky Bruce <bgill@freescale.com>
13000 Date: Wed May 7 13:24:57 2008 -0500
13001
13002 Update pci code to use phys_addr_t
13003
13004 Physical addrs need to be represented by phys_addr_t, not
13005 unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT
13006 are going to fail mightily.
13007
13008 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13009
13010 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
13011 Author: Nick Spence <nick.spence@freescale.com>
13012 Date: Thu May 8 22:32:22 2008 -0700
13013
13014 Support legacy multi-type images without FDT section.
13015
13016 This patch enables legacy multi-type images containing only a Linux kernel
13017 and root file system to be loaded, maintaining compatibility with previous
13018 versions of u-boot.
13019
13020 This is required when using old image files such as a Linux 2.4 kernel /
13021 filesystem.
13022
13023 Signed-off-by: Nick Spence <nick.spence@freescale.com>
13024 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
13025
13026 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
13027 Author: Wolfgang Denk <wd@denx.de>
13028 Date: Sat May 10 00:38:02 2008 +0200
13029
13030 Update CHANGELOG.
13031
13032 Signed-off-by: Wolfgang Denk <wd@denx.de>
13033
13034 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
13035 Author: Wolfgang Denk <wd@denx.de>
13036 Date: Sat May 10 00:36:09 2008 +0200
13037
13038 post/cpu/ppc4xx/Makefile: line length cleanup
13039
13040 Signed-off-by: Wolfgang Denk <wd@denx.de>
13041
13042 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
13043 Author: Stelian Pop <stelian@popies.net>
13044 Date: Thu May 8 22:52:09 2008 +0200
13045
13046 Fix @ -> <at> substitution
13047
13048 When applying the AT91CAP9 patches upstream, something transformed
13049 the '@' character into the ' <at> ' sequence.
13050
13051 The patch below restores the original form in all the places where
13052 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
13053 were copied from AT91CAP9, and a couple of other files where the
13054 ' <at> ' sequence was present).
13055
13056 Signed-off-by: Stelian Pop <stelian@popies.net>
13057
13058 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
13059 Author: Stelian Pop <stelian@popies.net>
13060 Date: Thu May 8 22:52:10 2008 +0200
13061
13062 Update origin and copyright information in arch-at91sam9 header files
13063
13064 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
13065 copied from the Linux kernel sources. This patch explicitly specifies
13066 this origin for all the copied headers, and for those missing copyright
13067 information, adds it.
13068
13069 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
13070 in the latest kernel sources by 'at91sam9_smc.h'.
13071
13072 The copyright information has been confirmed by the AT91 Linux kernel
13073 maintainer, Andrew Victor <avictor.za@gmail.com>.
13074
13075 Signed-off-by: Stelian Pop <stelian@popies.net>
13076
13077 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
13078 Author: Stelian Pop <stelian@popies.net>
13079 Date: Thu May 8 22:52:11 2008 +0200
13080
13081 Add copyright information in Atmel boards partition.c
13082
13083 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
13084 the new created files. This patch fixes the problem.
13085
13086 Signed-off-by: Stelian Pop <stelian@popies.net>
13087
13088 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
13089 Author: Guennadi Liakhovetski <lg@denx.de>
13090 Date: Thu May 8 10:09:27 2008 +0200
13091
13092 mx31ads: fix 32kHz clock handling
13093
13094 According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
13095 oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
13096 Also fix a typo when verifying a jumper configuration. While at it, make
13097 two needlessly global functions static.
13098
13099 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13100
13101 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
13102 Author: Marian Balakowicz <m8@semihalf.com>
13103 Date: Wed May 7 13:10:04 2008 +0200
13104
13105 Avoid initrd and logbuffer area overlaps
13106
13107 Add logbuffer to reserved LMB areas to prevent initrd allocation
13108 from overlaping with it.
13109
13110 Make sure to use correct logbuffer base address.
13111
13112 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
13113
13114 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
13115 Author: Marian Balakowicz <m8@semihalf.com>
13116 Date: Wed May 7 13:08:54 2008 +0200
13117
13118 ppc: Cleanup get_effective_memsize() use
13119
13120 Removed duplicated effective memory size calculation code.
13121
13122 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
13123
13124 commit 273c37d843d5b581090378016cd12dd9c586907b
13125 Author: Marian Balakowicz <m8@semihalf.com>
13126 Date: Wed May 7 09:03:53 2008 +0200
13127
13128 Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
13129
13130 Recent modifcations to LOGBUFFER handling code were incorrecly
13131 introduced to fit_check_kernel() routine during
13132 "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
13133 commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
13134
13135 This patch cleans up this merge issue.
13136
13137 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
13138
13139 commit bc11756daff89a3de09ca80adac962b88cf06e6e
13140 Author: Grant Erickson <gerickson@nuovations.com>
13141 Date: Tue May 6 20:16:15 2008 -0700
13142
13143 Propagate Error Status to the Shell on fw_printenv Errors
13144
13145 Changed implementation such that fw_printenv returns failure status
13146 when one or more specified variables do not exist or when incorrect
13147 command syntax is used.
13148
13149 This aids scripting fw_printenv such that the script can key of the
13150 return status rather than relying on standard error "scraping".
13151
13152 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13153 Signed-off-by: Wolfgang Denk <wd@denx.de>
13154
13155 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
13156 Author: Grant Erickson <gerickson@nuovations.com>
13157 Date: Tue May 6 16:18:00 2008 -0700
13158
13159 Fix Compilation Errors with 'tools/env/fw_printenv'
13160
13161 In the current top-of-tree, 1.3.3.-rc2, the optional tool
13162 'tools/env/fw_printenv' fails to compile for two reasons:
13163
13164 1) The header watchdog.h cannot be found.
13165 2) The header zlib.h is picked up from the tool chain rather than the
13166 project causing a prototype conflict for crc32.
13167
13168 This patch addresses both of these issues.
13169
13170 Platforms Tested On:
13171 - AMCC "Kilauea"
13172
13173 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13174
13175 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
13176 Author: James Yang <James.Yang@freescale.com>
13177 Date: Mon May 5 10:22:53 2008 -0500
13178
13179 Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
13180
13181 When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
13182 work before relocating to RAM because command history is written into
13183 a global array that is not writable before relocation. This patch
13184 defers to the no-editing and no-history code in readline_into_buffer()
13185 if it is called before relocation.
13186
13187 Signed-off-by: James Yang <James.Yang@freescale.com>
13188 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13189
13190 commit 726c0f1e5f108dccea052965123b95837d2bd402
13191 Author: Detlev Zundel <dzu@denx.de>
13192 Date: Mon May 5 16:11:22 2008 +0200
13193
13194 cosmetic: Adjust coding style for switch statements to be consistent
13195
13196 Signed-off-by: Detlev Zundel <dzu@denx.de>
13197
13198 commit 574b319512b13e10800f0045e39b993f4ca25e42
13199 Author: Detlev Zundel <dzu@denx.de>
13200 Date: Mon May 5 16:11:21 2008 +0200
13201
13202 Fix disk type output in disk/part.c
13203
13204 Signed-off-by: Detlev Zundel <dzu@denx.de>
13205
13206 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
13207 Author: Vlad Lungu <vlad.lungu@windriver.com>
13208 Date: Mon May 5 14:20:03 2008 +0300
13209
13210 Mail address change, documentation modified
13211
13212 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
13213
13214 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
13215 Author: Michal Simek <monstr@monstr.eu>
13216 Date: Sun May 4 15:42:41 2008 +0200
13217
13218 microblaze: Repare intc handling
13219
13220 Signed-off-by: Michal Simek <monstr@monstr.eu>
13221
13222 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
13223 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13224 Date: Sun May 4 15:17:52 2008 +0200
13225
13226 include/gitignore: update to all architectures
13227
13228 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13229
13230 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
13231 Author: Marcel Ziswiler <marcel@ziswiler.com>
13232 Date: Mon May 5 02:12:06 2008 +0200
13233
13234 ide: Remove spurious second include of io.h
13235
13236 Removed the second include, with all the #ifdef around as suggested by Wolfgang.
13237
13238 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13239
13240 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
13241 Author: Adrian Filipi <adrian.filipi@eurotech.com>
13242 Date: Tue May 6 16:46:37 2008 -0400
13243
13244 Fix some typos
13245
13246 This patch fixes three typos.
13247 The first is a repetition of CONFIG_CMD_BSP.
13248 The second makes the #endif comment match its #if.
13249 The third is a spelling error.
13250
13251 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
13252
13253 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
13254 Author: Grant Erickson <gerickson@nuovations.com>
13255 Date: Sun May 4 16:45:01 2008 -0700
13256
13257 Recognize 'powerpc' As an Alias for IH_ARCH_PPC
13258
13259 Add support for the recognition of 'powerpc' as an alias for the PowerPC
13260 architecture type since Linux is already trending in that direction,
13261 preferring 'powerpc' to 'ppc'.
13262
13263 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13264
13265 commit f5a24259190c388c2527bdc49fee34577d862cc7
13266 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
13267 Date: Fri May 2 13:35:15 2008 -0700
13268
13269 7450 and 86xx L2 cache invalidate bug corrections
13270
13271 The 7610 and related parts have an L2IP bit in the L2CR that is
13272 monitored to signal when the L2 cache invalidate is complete whereas the
13273 7450 and related parts utilize L2I for this purpose. However, the
13274 current code does not account for this difference. Additionally the 86xx
13275 L2 cache invalidate code used an "andi" instruction where an "andis"
13276 instruction should have been used.
13277
13278 This patch addresses both of these bugs.
13279
13280 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
13281 Acked-By: Jon Loeliger <jdl@freescale.com>
13282
13283 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
13284 Author: Wolfgang Denk <wd@denx.de>
13285 Date: Fri May 9 10:16:13 2008 +0200
13286
13287 Avoid infinite loop "Generating include/autoconf.mk"
13288
13289 Fix a bogus circular dependency that caused an infinite loop of
13290 "Generating include/autoconf.mk" again and again.
13291
13292 Signed-off-by: Wolfgang Denk <wd@denx.de>
13293
13294 commit 567fb852178dbf59529d7301620a3f3732a4b02d
13295 Author: Stelian Pop <stelian@popies.net>
13296 Date: Thu May 8 22:52:09 2008 +0200
13297
13298 Fix @ -> <at> substitution
13299
13300 When applying the AT91CAP9 patches upstream, something transformed
13301 the '@' character into the ' <at> ' sequence.
13302
13303 The patch below restores the original form in all the places where
13304 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
13305 were copied from AT91CAP9, and a couple of other files where the
13306 ' <at> ' sequence was present).
13307
13308 Signed-off-by: Stelian Pop <stelian@popies.net>
13309 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13310
13311 commit 73ccb3410a0785593cda7aee455dfc51f790e281
13312 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
13313 Date: Mon Apr 28 14:04:32 2008 +0200
13314
13315 ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
13316
13317 Signed-off-by: Gary Jennejohn <garyj@denx.de>
13318 Signed-off-by: Stefan Roese <sr@denx.de>
13319
13320 commit ef2642625cbfb1c3695e3478d08ae515052a4950
13321 Author: Stefan Roese <sr@denx.de>
13322 Date: Thu May 8 11:10:46 2008 +0200
13323
13324 ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
13325
13326 Signed-off-by: Stefan Roese <sr@denx.de>
13327
13328 commit a00eccfebc954ad9485161efeca7d9aaf626d530
13329 Author: Stefan Roese <sr@denx.de>
13330 Date: Thu May 8 11:05:15 2008 +0200
13331
13332 ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
13333
13334 This patch adds fdt (flattened device tree) support to all remaining AMCC
13335 eval boards. Most newer boards already support device tree. With this patch,
13336 all AMCC boards now enable device tree passing from U-Boot to Linux
13337 arch/powerpc kernels.
13338
13339 Signed-off-by: Stefan Roese <sr@denx.de>
13340
13341 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
13342 Author: Stefan Roese <sr@denx.de>
13343 Date: Thu May 8 11:01:09 2008 +0200
13344
13345 ppc4xx: Add weak default ft_board_setup() routine
13346
13347 This patch adds a default ft_board_setup() routine to the 4xx fdt code.
13348 This routine is defined as weak and can be overwritten by a board specific
13349 one if needed.
13350
13351 Signed-off-by: Stefan Roese <sr@denx.de>
13352
13353 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
13354 Author: Stefan Roese <sr@denx.de>
13355 Date: Thu May 8 10:48:58 2008 +0200
13356
13357 ppc4xx: acadia: Add fdt support and fix section overlap problem
13358
13359 This patch adds fdt (flattened device tree) support to the AMCC
13360 Acadia eval board. This increases the image size and it doesn't
13361 fit anymore into 256kByte. Since we didn't want to remove features
13362 from the configuration, we decided to increase the U-Boot image size
13363 (add one flash sector).
13364
13365 Also changed the default environment definition to make it
13366 independent of such changes.
13367
13368 Signed-off-by: Stefan Roese <sr@denx.de>
13369
13370 commit 4adb3023de75bc150f088c8935db340930ad38c8
13371 Author: Ira Snyder <iws@ovro.caltech.edu>
13372 Date: Tue Apr 29 11:18:54 2008 -0700
13373
13374 ppc4xx: Add device tree support to AMCC Yosemite
13375
13376 Add support for booting with a device tree blob. This is needed to boot
13377 ARCH=powerpc kernels. Also add support for setting the eth0 mac address
13378 via the ethaddr variable.
13379
13380 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
13381 Signed-off-by: Stefan Roese <sr@denx.de>
13382
13383 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
13384 Author: Dave Mitchell <dmitchell@amcc.com>
13385 Date: Wed May 7 09:00:23 2008 -0700
13386
13387 ppc4xx: Fix typos in 460GT/EX FBDV array
13388
13389 Corrected two typos in the 460GT/EX FBDV array.
13390
13391 Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
13392 Signed-off-by: Stefan Roese <sr@denx.de>
13393
13394 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
13395 Author: Andy Fleming <afleming@freescale.com>
13396 Date: Wed May 7 16:54:31 2008 -0500
13397
13398 85xx: Limit CPU2 workaround to parts that have the errata
13399
13400 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
13401 Signed-off-by: Andy Fleming <afleming@freescale.com>
13402
13403 commit a5fe514e8ace564300d2c1d73846ddff49654243
13404 Author: Lee Nipper <lee.nipper@freescale.com>
13405 Date: Fri Apr 25 15:44:45 2008 -0500
13406
13407 mpc83xx: system performance settings for MPC8349EMDS.
13408
13409 These same settings are used on MPC8349ITX, and
13410 improve performance on MPC8349EMDS.
13411
13412 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
13413 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13414
13415 commit 49387dba910e485640b575e920ee463b7e611dc3
13416 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13417 Date: Tue May 6 13:22:52 2008 +0900
13418
13419 [MIPS] cpu/mips/cache.S: Fix build warning
13420
13421 Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
13422 warns illegal global symbol references by bal (and jal also) instruction.
13423 This does not happen with the latest binutils v2.18.
13424
13425 Here's an example on gth2_config:
13426
13427 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
13428 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
13429 c -EB -c -o cache.o cache.S
13430 cache.S: Assembler messages:
13431 cache.S:243: Warning: Pretending global symbol used as branch target is local.
13432 cache.S:250: Warning: Pretending global symbol used as branch target is local.
13433
13434 In principle, gas might be sensitive to global symbol references in PIC
13435 code because they should be processed through GOT (global offset table).
13436 But if `bal' instruction is used, it results in PC-based offset jump.
13437 This is the cause of this warning.
13438
13439 In practice, we know it doesn't matter whether PC-based reference or GOT-
13440 based. As for this case, both will work before/after relocation. But let's
13441 fix the code.
13442
13443 This patch explicitly sets up a target address, then jump there.
13444 Here's an example of disassembled code with/without this patch.
13445
13446 90000668: 1485ffef bne a0,a1,90000628 <mips_cache_reset+0x20>
13447 9000066c: ac80fffc sw zero,-4(a0)
13448 90000670: 01402821 move a1,t2
13449 -90000674: 0411ffba bal 90000560 <mips_init_icache>
13450 -90000678: 01803021 move a2,t4
13451 -9000067c: 01602821 move a1,t3
13452 -90000680: 0411ffcc bal 900005b4 <mips_init_dcache>
13453 -90000684: 01a03021 move a2,t5
13454 -90000688: 03000008 jr t8
13455 -9000068c: 00000000 nop
13456 +90000674: 01803021 move a2,t4
13457 +90000678: 8f8f83ec lw t7,-31764(gp)
13458 +9000067c: 01e0f809 jalr t7
13459 +90000680: 00000000 nop
13460 +90000684: 01602821 move a1,t3
13461 +90000688: 01a03021 move a2,t5
13462 +9000068c: 8f8f81e0 lw t7,-32288(gp)
13463 +90000690: 01e0f809 jalr t7
13464 +90000694: 00000000 nop
13465 +90000698: 03000008 jr t8
13466 +9000069c: 00000000 nop
13467
13468 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13469
13470 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
13471 Author: Vlad Lungu <vlad.lungu@windriver.com>
13472 Date: Mon May 5 14:04:00 2008 +0300
13473
13474 Allow building mips versions with ELDK 3.1.1
13475
13476 .gpword works only with local symbols on certain binutils versions
13477
13478 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
13479
13480 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
13481 Author: Wolfgang Denk <wd@denx.de>
13482 Date: Mon May 5 12:52:36 2008 +0200
13483
13484 MAKEALL: add inka4x0 board
13485
13486 Signed-off-by: Wolfgang Denk <wd@denx.de>
13487
13488 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
13489 Author: Wolfgang Denk <wd@denx.de>
13490 Date: Sun May 4 21:34:23 2008 +0200
13491
13492 kb9202 board: fix build problem.
13493
13494 Signed-off-by: Wolfgang Denk <wd@denx.de>
13495
13496 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
13497 Author: Wolfgang Denk <wd@denx.de>
13498 Date: Sun May 4 12:10:33 2008 +0200
13499
13500 Prepare for v1.3.3-rc3
13501
13502 Update ChNAGELOG, minor white space cleanup.
13503
13504 Signed-off-by: Wolfgang Denk <wd@denx.de>
13505
13506 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
13507 Author: Wolfgang Denk <wd@denx.de>
13508 Date: Sun May 4 00:35:15 2008 +0200
13509
13510 drivers/net/tsec.c: Fix typo.
13511
13512 Signed-off-by: Wolfgang Denk <wd@denx.de>
13513
13514 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
13515 Author: Mike Frysinger <vapier@gentoo.org>
13516 Date: Fri May 2 21:45:12 2008 -0400
13517
13518 version_autogenerated.h: use printf rather than echo -n
13519
13520 Some systems are dumb and do not implement the -n flag to echo (like OS X).
13521 Convert the Makefile to use printf as this should work everywhere.
13522
13523 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13524 Signed-off-by: Wolfgang Denk <wd@denx.de>
13525
13526 commit 4acc2a108ad0a669165924704a6cb083f9138242
13527 Author: Mike Frysinger <vapier@gentoo.org>
13528 Date: Fri May 2 18:17:50 2008 -0400
13529
13530 fix building when saveenv is disabled in some setups
13531
13532 If you enable environment in the flash, but disable the embedded
13533 option, and you disable the saveenv command, then the #if nested
13534 logic will trigger a compile failure:
13535 env_flash.c: In function 'env_relocate_spec':
13536 env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
13537 The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
13538
13539 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13540
13541 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
13542 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
13543 Date: Fri May 2 16:10:04 2008 -0400
13544
13545 SBC8548: fix address mask to allow 64M flash
13546
13547 Fix incorrect mask to enable all 64MB of onboard flash.
13548 Previously U-Boot incorrectly mapped only 8MB of flash, this
13549 patch correctly maps all the available flash.
13550
13551 Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
13552
13553 commit 3648085c464c8c22ef76fab006ca4344d3796124
13554 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13555 Date: Fri May 2 19:48:56 2008 +0200
13556
13557 qemu_mips: add README
13558
13559 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13560
13561 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
13562 Author: Marcel Ziswiler <marcel@ziswiler.com>
13563 Date: Fri May 2 02:35:59 2008 +0200
13564
13565 Fix misspelled comment
13566
13567 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13568
13569 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
13570 Author: Mike Frysinger <vapier@gentoo.org>
13571 Date: Thu May 1 04:13:05 2008 -0400
13572
13573 mkimage: make mmap() checks consistent
13574
13575 The mmap() related code is full of inconsistent casts/constants when
13576 it comes to error checking, and may break when building on some
13577 systems (like ones that do not implicitly define the caddr_t type).
13578 Let's just avoid the whole mess by writing the code nice and clean in
13579 the first place.
13580
13581 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13582
13583 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
13584 Author: Marcel Ziswiler <marcel@ziswiler.com>
13585 Date: Thu May 1 09:05:34 2008 +0200
13586
13587 Fix defined but not used build warning
13588
13589 - warning: 'srom' defined but not used
13590
13591 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13592
13593 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
13594 Author: Marcel Ziswiler <marcel@ziswiler.com>
13595 Date: Thu May 1 09:05:26 2008 +0200
13596
13597 Fix implicit declaration build warnings
13598
13599 - warning: implicit declaration of function ‘serial_initialize’
13600
13601 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13602
13603 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
13604 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
13605 Date: Tue Apr 29 19:18:32 2008 +0200
13606
13607 TSEC: add config options for VSC8601 RGMII PHY
13608
13609 The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
13610 and Tx clock lines. They are configured using 2 bits in extended
13611 register 0x17.
13612 Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
13613 been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
13614
13615 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
13616 Acked-by: Andy Fleming <afleming@freescale.com>
13617 Acked-by: Ben Warren <biggerbadderben@gmail.com>
13618 --
13619
13620 drivers/net/tsec.c | 6 ++++++
13621 drivers/net/tsec.h | 3 +++
13622 2 files changed, 9 insertions(+), 0 deletions(-)
13623
13624 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
13625 Author: Wolfgang Denk <wd@denx.de>
13626 Date: Sat May 3 23:07:15 2008 +0200
13627
13628 Revert "ColdFire: Get information from the correct GCC"
13629
13630 This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
13631 (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
13632
13633 commit c4e5f52a58d278eebb87f476e353972c5dacea40
13634 Author: Wolfgang Denk <wd@denx.de>
13635 Date: Sat May 3 22:25:00 2008 +0200
13636
13637 config.mk: use correct (cross) compiler
13638
13639 Some config.mk files reference $(CC) to test for specific tool chain
13640 features, so make sure $(CC) gets set before including any such
13641 config files.
13642
13643 This patch replaces commit b7166e05a5 ("ColdFire: Get information from
13644 the correct GCC").
13645
13646 Signed-off-by: Wolfgang Denk <wd@denx.de>
13647
13648 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
13649 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13650 Date: Thu May 1 02:13:44 2008 +0200
13651
13652 pxa: fix previous definition on cpu init
13653
13654 start.S:183:1: warning: "ICMR" redefined
13655 In file included from start.S:33:
13656 include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
13657 start.S:187:1: warning: "RCSR" redefined
13658 ...
13659
13660 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13661
13662 commit 6d12e697de794d700767f22f950e3026ccf4daf6
13663 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13664 Date: Thu May 1 02:13:43 2008 +0200
13665
13666 pxa: fix pcmcia operation on 'i' may be undefined
13667
13668 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13669 Signed-off-by: Wolfgang Denk <wd@denx.de>
13670
13671 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
13672 Author: Kumar Gala <galak@kernel.crashing.org>
13673 Date: Wed Apr 30 16:24:35 2008 -0500
13674
13675 MPC8610HPCD: Drop -O2 from the build flags
13676
13677 Make the flags use -Os like all other boards
13678
13679 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13680
13681 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
13682 Author: Stefan Roese <sr@denx.de>
13683 Date: Wed Apr 30 15:50:39 2008 +0200
13684
13685 RTC: Fix month offset by one problem in M41T62 RTC driver
13686
13687 This patch fixes a problem with the month being read and written
13688 incorrectly (offset by one). This only gets visible by also using
13689 the Linux driver (rtc-m41t80).
13690
13691 Tested on AMCC Canyonlands.
13692
13693 Signed-off-by: Stefan Roese <sr@denx.de>
13694
13695 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
13696 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13697 Date: Sat May 3 13:51:44 2008 +0900
13698
13699 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
13700
13701 Current trick to pick up GNU assembler minor version uses a dot(.) as a
13702 delimiter, and take the second field to obtain minor version number. But
13703 as can be expected, this doesn't work with a version string which has
13704 dots more than needs.
13705
13706 Here's an example:
13707
13708 $ mips-linux-gnu-as --version | grep 'GNU assembler'
13709 GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
13710 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
13711 2-129) 2
13712 $
13713
13714 This patch restricts the version format to 2.XX.XX... This will work
13715 in most cases.
13716
13717 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
13718 2.18.50.20080215
13719 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
13720 18
13721 $
13722
13723 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13724
13725 commit ea638951acead7f1086c908c0b9f086beab82a22
13726 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13727 Date: Sat May 3 13:51:28 2008 +0900
13728
13729 [MIPS] cpu/mips/cache.S: Add dcache_enable
13730
13731 Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
13732 "allow ports to override bootelf behavior") requires ports to have this
13733 function.
13734
13735 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13736 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13737
13738 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
13739 Author: Wolfgang Denk <wd@denx.de>
13740 Date: Thu May 1 21:30:16 2008 +0200
13741
13742 onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
13743
13744 Onenand needs a version of memcpy() which performs 16 bit accesses
13745 only; make sure the name does not conflict with the standard
13746 function.
13747
13748 Signed-off-by: Wolfgang Denk <wd@denx.de>
13749
13750 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
13751 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13752 Date: Wed Apr 30 22:38:17 2008 +0200
13753
13754 cmd_nand: fix warning: str2long ncompatible pointer type
13755
13756 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13757
13758 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
13759 Author: Timur Tabi <timur@freescale.com>
13760 Date: Fri Apr 4 11:16:11 2008 -0500
13761
13762 Fix calculation of I2C clock for some 86xx chips
13763
13764 Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
13765 There is no pattern that can be used to determine which chips use which
13766 frequency, so the only way to determine is to look up the actual SOC
13767 designation and use the right value for that SOC.
13768
13769 Signed-off-by: Timur Tabi <timur@freescale.com>
13770
13771 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
13772 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13773 Date: Wed Apr 30 12:11:19 2008 -0500
13774
13775 ColdFire: Fix ethernet hang issue for mcf547x_8x
13776
13777 The ethernet hang is caused by receiving buffer in DRAM is not
13778 yet ready due to access cycles require longer time in DRAM.
13779 Relocate DMA buffer descriptors from DRAM to internal SRAM.
13780
13781 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13782
13783 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
13784 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13785 Date: Wed Apr 30 12:10:47 2008 -0500
13786
13787 ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
13788
13789 Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
13790 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13791
13792 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
13793 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13794 Date: Wed Apr 30 12:10:23 2008 -0500
13795
13796 ColdFire: Get information from the correct GCC
13797
13798 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
13799 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13800
13801 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
13802 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
13803 Date: Wed Apr 30 18:02:59 2008 +0200
13804
13805 Fix warning in env_nand.c if compiled for DaVinci Schmoogie
13806
13807 Fix warnings
13808
13809 nv_nand.c: In function 'saveenv':
13810 env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
13811 env_nand.c: In function 'env_relocate_spec':
13812 env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
13813
13814 if compiled for davinci_schmoogie_config.
13815
13816 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
13817 Ack by: Sergey Kubushyn <ksi@koi8.net>
13818
13819 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
13820 Author: Anatolij Gustschin <agust@denx.de>
13821 Date: Wed Apr 30 13:34:40 2008 +0200
13822
13823 Fix warnings while compiling net/net.c for MPC8610HPCD board
13824
13825 MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
13826 causing overriding default -Os option. New gcc (ver. 4.2.2)
13827 produces warnings while compiling net/net.c file with -O2
13828 option. The patch is an attempt to fix this.
13829
13830 Signed-off-by: Anatolij Gustschin <agust@denx.de>
13831
13832 commit 58b575e575c25fdf8c88141e145db201f3092149
13833 Author: Sascha Laue <Sascha.Laue@gmx.biz>
13834 Date: Wed Apr 30 15:23:38 2008 +0200
13835
13836 lwmon5: fix offset error in sysmon0 POST
13837
13838 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
13839 Signed-off-by: Wolfgang Denk <wd@denx.de>
13840
13841 commit e7419b243a373de4ee042f7d4f45f66de787240d
13842 Author: Sascha Laue <Sascha.Laue@gmx.biz>
13843 Date: Wed Apr 30 15:16:35 2008 +0200
13844
13845 lwmon5: fix manual merge error in POST
13846
13847 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
13848
13849 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
13850 Author: Wolfgang Denk <wd@denx.de>
13851 Date: Wed Apr 30 17:46:26 2008 +0200
13852
13853 cmd_nand.c: fix another 'incompatible pointer type' warning.
13854
13855 Signed-off-by: Wolfgang Denk <wd@denx.de>
13856
13857 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
13858 Author: Wolfgang Denk <wd@denx.de>
13859 Date: Wed Apr 30 17:25:07 2008 +0200
13860
13861 Makefile: fix parallel builds
13862
13863 This problem shows up with parallel builds only; it results in
13864 somewhat cryptic error messages like
13865
13866 $ JOBS=-j6 MAKEALL netstar
13867 Configuring for netstar board...
13868 arm-linux-ld: cannot find -lgeneric
13869 make[1]: *** [eeprom.srec] Error 1
13870
13871 A few boards (like netstar and voiceblue) need some libraries for
13872 building; however, the board Makefile does not contain any such
13873 dependencies which may cause problems with parallel builds. Adding
13874 such dependencies is difficult as we would also have to provide build
13875 rules, which already exist in the respective library Makefiles.
13876
13877 To solve this, we make sure that all libraries get built before the
13878 board code.
13879
13880 Signed-off-by: Wolfgang Denk <wd@denx.de>
13881
13882 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
13883 Author: Stefan Roese <sr@denx.de>
13884 Date: Wed Apr 30 14:51:36 2008 +0200
13885
13886 ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
13887
13888 This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
13889 used for NAND booting to match the values needed for the new 512MB
13890 DIMM modules shipped with the productions boards:
13891
13892 Crucial: CT6464AC667.8FB
13893
13894 Signed-off-by: Stefan Roese <sr@denx.de>
13895
13896 commit ea9202a659dc75996facf1475f1866a19a9d3129
13897 Author: Stefan Roese <sr@denx.de>
13898 Date: Wed Apr 30 10:49:43 2008 +0200
13899
13900 ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
13901
13902 This patch fixes a problem with DIMMs that have 8 banks. Now the
13903 MCIF0_MBxCF register will be setup correctly for this setup too.
13904
13905 This was noticed with the 512MB DIMM on Canyonlands/Glacier.
13906
13907 Signed-off-by: Stefan Roese <sr@denx.de>
13908
13909 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
13910 Author: Wolfgang Denk <wd@denx.de>
13911 Date: Tue Apr 29 23:41:06 2008 +0200
13912
13913 Prepare v1.3.3-rc2, again.
13914
13915 Signed-off-by: Wolfgang Denk <wd@denx.de>
13916
13917 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
13918 Author: Wolfgang Denk <wd@denx.de>
13919 Date: Tue Apr 29 23:35:24 2008 +0200
13920
13921 Prepare v1.3.3-rc2
13922
13923 Signed-off-by: Wolfgang Denk <wd@denx.de>
13924
13925 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
13926 Author: Wolfgang Denk <wd@denx.de>
13927 Date: Tue Apr 29 23:32:20 2008 +0200
13928
13929 common/env_nand.c: fix one more incompatible pointer type issue
13930
13931 Signed-off-by: Wolfgang Denk <wd@denx.de>
13932
13933 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
13934 Author: Wolfgang Denk <wd@denx.de>
13935 Date: Tue Apr 29 21:33:08 2008 +0200
13936
13937 post/board/lwmon5/sysmon.c: fix manual merge error.
13938
13939 Signed-off-by: Wolfgang Denk <wd@denx.de>
13940
13941 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
13942 Author: Kumar Gala <galak@kernel.crashing.org>
13943 Date: Tue Apr 29 12:54:59 2008 -0500
13944
13945 85xx: Add -mno-spe to e500/85xx builds
13946
13947 Newer gcc's might be configured to enable autovectorization by default.
13948 If we happen to build with one of those compilers we will get SPE
13949 instructions in random code.
13950
13951 -mno-spe disables the compiler for automatically generating SPE
13952 instructions without our knowledge.
13953
13954 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13955
13956 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
13957 Author: Kumar Gala <galak@kernel.crashing.org>
13958 Date: Tue Apr 29 10:18:34 2008 -0500
13959
13960 Update .gitignore for zlib.h
13961
13962 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13963
13964 commit 45239cf4152109caa925145ccd433529902df887
13965 Author: Kumar Gala <galak@kernel.crashing.org>
13966 Date: Tue Apr 29 10:27:08 2008 -0500
13967
13968 85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
13969
13970 All the 85xx and 86xx UM describe the register as timing_cfg_3
13971 not as ext_refrec.
13972
13973 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13974
13975 commit ef7d30b14394e4c4a153118f5845760cadada02a
13976 Author: Kumar Gala <galak@kernel.crashing.org>
13977 Date: Tue Apr 29 10:28:34 2008 -0500
13978
13979 85xx/86xx: Rename DDR init address and init extended address register
13980
13981 Rename init_addr and init_ext_addr to match the docs between
13982 85xx and 86xx. Both now use 'init_addr' and 'init_ext_addr'.
13983
13984 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13985
13986 commit cf6cc014270549684873a5972d2595052c468cb6
13987 Author: Kumar Gala <galak@kernel.crashing.org>
13988 Date: Mon Apr 28 02:24:04 2008 -0500
13989
13990 85xx: Additional fixes and cleanup of MP code
13991
13992 * adjust __spin_table alignment to match ePAPR v0.94 spec
13993 * loop over all cpus when determing who is up. This fixes an issue if
13994 the "boot cpu" isn't core0. The "boot cpu" will already be in the
13995 cpu_up_mask so there is no harm
13996 * Added some protection in the code to ensure proper behavior. These
13997 changes are explicitly needed but don't hurt:
13998 - Added eieio to ensure the "hot word" of the table is written after
13999 all other table updates have occurred.
14000 - Added isync to ensure we don't prefetch loading of table entries
14001 until we a released
14002
14003 These issues we raised by Dave Liu.
14004
14005 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14006
14007 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
14008 Author: Yuri Tikhonov <yur@emcraft.com>
14009 Date: Tue Apr 29 15:06:41 2008 +0200
14010
14011 lwmon5: minor clean-up to include/configs/lwmon5.h
14012
14013 LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
14014 the CFG_DSPIC_TEST_ADDR definition more readable.
14015
14016 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14017
14018 commit f4c4d21a885ccc222fd0acdf653b683249e85117
14019 Author: Stefan Roese <sr@denx.de>
14020 Date: Tue Apr 29 16:08:05 2008 +0200
14021
14022 ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
14023
14024 Signed-off-by: Stefan Roese <sr@denx.de>
14025
14026 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
14027 Author: Yuri Tikhonov <yur@emcraft.com>
14028 Date: Tue Apr 29 13:32:45 2008 +0200
14029
14030 ppc flush_cache: add watch-dog triggering into the loops.
14031
14032 Some boards (e.g. lwmon5) need rather a frequent watch-dog
14033 kicking. Since the time it takes for the flush_cache() function
14034 to complete its job depends on the size of data being flushed, one
14035 may encounter watch-dog resets on such boards when, for example,
14036 download big files over ethernet.
14037
14038 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14039
14040 commit cab99d6f3281ab6784feccf98b9b425daa58418a
14041 Author: Stefan Roese <sr@denx.de>
14042 Date: Tue Apr 29 14:44:54 2008 +0200
14043
14044 ppc4xx: Fix compilation warning in denali_spd_ddr2.c
14045
14046 Signed-off-by: Stefan Roese <sr@denx.de>
14047
14048 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
14049 Author: Stefan Roese <sr@denx.de>
14050 Date: Tue Apr 29 14:12:07 2008 +0200
14051
14052 ppc4xx: Fix Katmai CFG_MONITOR_LEN
14053
14054 Signed-off-by: Stefan Roese <sr@denx.de>
14055
14056 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
14057 Author: Stefan Roese <sr@denx.de>
14058 Date: Tue Apr 29 13:57:07 2008 +0200
14059
14060 ppc4xx: Complete remove bogus dflush()
14061
14062 Since the current dflush() implementation is know to have some problems
14063 (as seem on lwmon5 ECC init) this patch removes it completely and replaces
14064 it by using clean_dcache_range().
14065
14066 Tested on Katmai with ECC DIMM.
14067
14068 Signed-off-by: Stefan Roese <sr@denx.de>
14069
14070 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
14071 Author: Stefan Roese <sr@denx.de>
14072 Date: Tue Apr 29 13:36:51 2008 +0200
14073
14074 ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
14075
14076 As it seems the "old" ECC initialization routine by using dflush() didn't
14077 write all lines in the dcache back to memory on lwmon5. This could lead
14078 to ECC error upon Linux booting. This patch changes the program_ecc()
14079 routine to now use clean_dcache_range() instead of dflush().
14080 clean_dcache_range() uses dcbst which is exactly what we want in this
14081 case.
14082
14083 Since dflush() is known is cause problems, this routine will be
14084 removed completely and replaced by clean_dcache_range() with an
14085 additional patch.
14086
14087 Signed-off-by: Stefan Roese <sr@denx.de>
14088
14089 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
14090 Author: Yuri Tikhonov <yur@emcraft.com>
14091 Date: Mon Apr 28 18:19:34 2008 +0200
14092
14093 POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
14094
14095 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14096
14097 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
14098 Author: Markus Brunner <super.firetwister@googlemail.com>
14099 Date: Mon Apr 28 08:47:47 2008 +0200
14100
14101 ppc4xx: Fixup ebc clock in FDT for 405GP/EP
14102
14103 On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
14104 and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
14105 doesn't exist.
14106
14107 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
14108
14109 commit 2ef7503a593c77a80c2a054011970227c4b62774
14110 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14111 Date: Thu Apr 24 07:57:17 2008 +0200
14112
14113 NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
14114
14115 Move non-inlied functions into specific drivers file
14116 Set get_prom as weak
14117
14118 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14119 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
14120 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14121
14122 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
14123 Author: Guennadi Liakhovetski <lg@denx.de>
14124 Date: Thu Apr 3 17:04:19 2008 +0200
14125
14126 net: make ARP timeout configurable
14127
14128 Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
14129 On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
14130 to the boards get lost, which typically are ARP replies. By configuring
14131 the timeout to a lower value we significantly improve the first network
14132 transfer time on this board. The timeout is specified in milliseconds,
14133 later internally it is converted to deciseconds, because it has to be
14134 converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
14135 different boards.
14136
14137 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14138 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14139
14140 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
14141 Author: Guennadi Liakhovetski <lg@denx.de>
14142 Date: Thu Apr 3 13:36:18 2008 +0200
14143
14144 minor cs8900 driver clean up
14145
14146 Remove a redundant register definition, clean up some coding style
14147 violations.
14148
14149 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14150 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14151
14152 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
14153 Author: Wolfgang Denk <wd@denx.de>
14154 Date: Mon Apr 28 22:01:04 2008 +0200
14155
14156 jffs2_1pass.c: fix incompatible pointer type warning
14157
14158 Signed-off-by: Wolfgang Denk <wd@denx.de>
14159
14160 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
14161 Author: Sascha Laue <Sascha.Laue@gmx.biz>
14162 Date: Tue Apr 1 10:10:18 2008 +0200
14163
14164 lwmon5: update dsPIC POST spezification
14165
14166 The specification for the lwmon5 board dsPIC POST got changed.
14167 Also add defines for the temperatures and voltages.
14168
14169 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
14170
14171 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
14172 Author: Sascha Laue <Sascha.Laue@gmx.biz>
14173 Date: Tue Apr 1 15:13:03 2008 +0200
14174
14175 Fix watchdog POST for lwmon5
14176
14177 If the hardware watchdog detects a voltage error, the watchdog sets
14178 GPIO62 to low. The watchdog POST has to detect this low level.
14179
14180 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
14181 Signed-off-by: Wolfgang Denk <wd@denx.de>
14182
14183 commit dd5748bcd669f46aeb6686c1b341323843738ccc
14184 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14185 Date: Mon Apr 28 14:37:14 2008 +0200
14186
14187 rtl8169: fix compiler warnings
14188
14189 Fix multiple compiler warnings related to argument type mismatch.
14190
14191 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14192
14193 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
14194 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14195 Date: Mon Apr 28 14:36:06 2008 +0200
14196
14197 IDE: fix compiler warnings
14198
14199 The IDE driver can use 32-bit addresses in LBA mode, in which case it
14200 spits multiple warnings during compilation. Fix them.
14201
14202 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14203
14204 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
14205 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14206 Date: Mon Apr 28 14:35:57 2008 +0200
14207
14208 LinkStation: fix compiler warning, add a maintainer
14209
14210 out_8 wants a pointer to an unsigned as the first argument. Add a
14211 maintainer for Linkstation boards.
14212
14213 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14214
14215 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
14216 Author: Wolfgang Denk <wd@denx.de>
14217 Date: Mon Apr 28 14:55:12 2008 +0200
14218
14219 cmd_nand.c: fix "differ in signedness" problem
14220
14221 Signed-off-by: Wolfgang Denk <wd@denx.de>
14222
14223 commit f2c288a35341ad02ac03b1563d786763c9c8f159
14224 Author: Wolfgang Denk <wd@denx.de>
14225 Date: Mon Apr 28 12:48:47 2008 +0200
14226
14227 pcnet.c: fix a merge issue
14228
14229 Signed-off-by: Wolfgang Denk <wd@denx.de>
14230
14231 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
14232 Author: Wolfgang Denk <wd@denx.de>
14233 Date: Mon Apr 28 12:08:18 2008 +0200
14234
14235 NAND: fix some strict-aliasing compiler warnings
14236
14237 Signed-off-by: Wolfgang Denk <wd@denx.de>
14238
14239 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
14240 Author: Stefan Roese <sr@denx.de>
14241 Date: Mon Apr 28 11:37:14 2008 +0200
14242
14243 ppc4xx: Fix compile warning of hcu4 board
14244
14245 Signed-off-by: Stefan Roese <sr@denx.de>
14246
14247 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
14248 Author: Wolfgang Denk <wd@denx.de>
14249 Date: Mon Apr 28 11:31:23 2008 +0200
14250
14251 MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
14252
14253 Signed-off-by: Wolfgang Denk <wd@denx.de>
14254
14255 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
14256 Author: Guennadi Liakhovetski <lg@denx.de>
14257 Date: Mon Apr 28 00:25:32 2008 +0200
14258
14259 mx31ads: fix loadaddr environment variable define
14260
14261 Arithmetic expressions do not get evaluated under stringification. Remove
14262 default network configuration, add DHCP command support. Thanks to Felix
14263 Radensky for reporting.
14264
14265 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14266
14267 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
14268 Author: Wolfgang Denk <wd@denx.de>
14269 Date: Mon Apr 28 10:55:24 2008 +0200
14270
14271 katmai: fix section overlap problem
14272
14273 Since we didn't want to remove features from the configuration, we
14274 decided to increase the U-Boot image size (add one flash sector).
14275
14276 Also changed the default environment definition to make it
14277 independent of such changes.
14278
14279 Signed-off-by: Wolfgang Denk <wd@denx.de>
14280 Acked-by: Stefan Roese <sr@denx.de>
14281
14282 commit 941d696d25624e3cc65ebf924199541acf52d74e
14283 Author: Wolfgang Denk <wd@denx.de>
14284 Date: Mon Apr 28 10:55:24 2008 +0200
14285
14286 katmai: fix section overlap problem
14287
14288 Since we didn't want to remove features from the configuration, we
14289 decided to increase the U-Boot image size (add one flash sector).
14290
14291 Also changed the default environment definition to make it
14292 independent of such changes.
14293
14294 Signed-off-by: Wolfgang Denk <wd@denx.de>
14295 Acked-by: Stefan Roese <sr@denx.de>
14296
14297 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
14298 Author: Kumar Gala <galak@kernel.crashing.org>
14299 Date: Sat Apr 26 11:44:44 2008 -0500
14300
14301 post: Fix building with O=
14302
14303 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14304
14305 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
14306 Author: Wolfgang Denk <wd@denx.de>
14307 Date: Sat Apr 26 01:55:00 2008 +0200
14308
14309 Prepare v1.3.3-rc1
14310
14311 Signed-off-by: Wolfgang Denk <wd@denx.de>
14312
14313 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
14314 Author: Wolfgang Denk <wd@denx.de>
14315 Date: Sat Apr 26 01:25:39 2008 +0200
14316
14317 post/Makefile: make sure to use the correct flags
14318
14319 ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
14320 messages to be printed.
14321
14322 Signed-off-by: Wolfgang Denk <wd@denx.de>
14323
14324 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
14325 Author: Wolfgang Denk <wd@denx.de>
14326 Date: Sat Apr 26 00:34:42 2008 +0200
14327
14328 Coding Style cleanup, update CHANGELOG
14329
14330 Signed-off-by: Wolfgang Denk <wd@denx.de>
14331
14332 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
14333 Author: Magnus Lilja <lilja.magnus@gmail.com>
14334 Date: Sun Apr 20 10:38:12 2008 +0200
14335
14336 i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
14337
14338 This patch enables SPI and MC13783/RTC support for the Litekit board.
14339
14340 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
14341
14342 commit f97abbfb47d9e407354e157cae3f6369e460cd37
14343 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
14344 Date: Fri Apr 25 01:08:32 2008 -0500
14345
14346 MPC8544DS: decode pcie3 end-point configuration correctly.
14347
14348 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
14349 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14350
14351 commit 292188e15523c165c4269403fdcd33c26d89176e
14352 Author: Roy Zang <tie-fei.zang@freescale.com>
14353 Date: Fri Apr 25 00:55:09 2008 -0500
14354
14355 MPC8544DS: Removes the unknown flash message information
14356
14357 This patch removes the unknown flash message information:
14358 '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
14359 This unknown flash message is caused by PromJet.
14360 Some of the board user is unhappy with this information.
14361
14362 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
14363 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14364
14365 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
14366 Author: Kim Phillips <kim.phillips@freescale.com>
14367 Date: Thu Apr 24 14:07:38 2008 -0500
14368
14369 mpc83xx: bump loadaddr over fdtaddr to 0x500000
14370
14371 this seems as a good compromise between human memory, typing,
14372 and last but not least, to accommodate for current and future kernel bloat.
14373
14374 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14375 Acked-by: Dave Liu <daveliu@freescale.com>
14376
14377 commit be5a7190265a34d968578ff266549c60f6f57654
14378 Author: Dave Liu <r63238@freescale.com>
14379 Date: Tue Apr 15 13:12:23 2008 +0800
14380
14381 mpc83xx: clean up the readme for 83xx boards
14382
14383 1. correct the typo
14384 2. correct the memory map for 837xerdb board
14385
14386 Signed-off-by: Dave Liu <daveliu@freescale.com>
14387
14388 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
14389 Author: Dave Liu <r63238@freescale.com>
14390 Date: Tue Apr 15 13:11:11 2008 +0800
14391
14392 mpc83xx: remove the unused CPM's stuff
14393
14394 The MPC83xx family never have CPM block, so remove it from 83xx.
14395
14396 Signed-off-by: Dave Liu <daveliu@freescale.com>
14397
14398 commit c63ad6325a8ac0097a54b418a3288926b0484b18
14399 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14400 Date: Fri Apr 18 16:29:40 2008 +0200
14401
14402 cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
14403
14404 This patch adds a configurable flash auto protection list that can be used
14405 to make U-Boot protect flash regions in flash_init().
14406
14407 The idea has been discussed on the u-boot mailing list starting
14408 on Nov 18th, 2007.
14409
14410 Even this patch brings a new feature it is used as a bugfix for 4xx
14411 platforms where flash_init() does not completely protect the
14412 monitor's flash range in all situations.
14413
14414 U-Boot protects the flash range from CFG_MONITOR_BASE to
14415 (CFG_MONITOR_BASE + monitor_flash_len - 1) by default. This does not
14416 include the reset vector at 0xfffffffc.
14417
14418 Example:
14419 #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
14420
14421 This config option will auto protect the last 512k of flash that
14422 contains the bootloader on board like APC405 and PMC405.
14423
14424 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14425
14426 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
14427 Author: Stefan Roese <sr@denx.de>
14428 Date: Fri Apr 25 13:59:03 2008 +0200
14429
14430 ppc4xx: Remove double defines in lwmon5.h
14431
14432 introduced with latest lwmon5/POST merge
14433
14434 Signed-off-by: Stefan Roese <sr@denx.de>
14435
14436 commit 7590378fb9c686709492ceb142825cd058255956
14437 Author: Bartlomiej Sieka <tur@semihalf.com>
14438 Date: Fri Apr 25 13:54:02 2008 +0200
14439
14440 Use watchdog-aware functions when calculating hashes of images - take two
14441
14442 Some files didn't get updated properly with the "Use watchdog-aware
14443 functions when calculating hashes of images" commit, this commit
14444 fixes this.
14445
14446 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
14447 Signed-off-by: Wolfgang Denk <wd@denx.de>
14448
14449 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
14450 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14451 Date: Fri Apr 25 12:01:39 2008 +0200
14452
14453 ppc4xx: Add bootcount limit handling for APC405 boards
14454
14455 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14456
14457 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
14458 Author: Bartlomiej Sieka <tur@semihalf.com>
14459 Date: Fri Apr 25 12:10:09 2008 +0200
14460
14461 Use watchdog-aware functions when calculating hashes of images
14462
14463 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
14464
14465 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
14466 Author: Wolfgang Denk <wd@denx.de>
14467 Date: Fri Apr 25 12:44:08 2008 +0200
14468
14469 USB: fix more GCC 4.2.x aliasing warnings
14470
14471 Signed-off-by: Wolfgang Denk <wd@denx.de>
14472 Acked-by: Markus Klotzbuecher <mk@denx.de>
14473
14474 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
14475 Author: Wolfgang Denk <wd@denx.de>
14476 Date: Fri Apr 25 12:41:53 2008 +0200
14477
14478 lib_generic/crc32.c: add missing #include <watchdog.h>
14479
14480 Signed-off-by: Wolfgang Denk <wd@denx.de>
14481
14482 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
14483 Author: Wolfgang Denk <wd@denx.de>
14484 Date: Fri Apr 25 11:52:21 2008 +0200
14485
14486 lib_generic/crc32.c: fix compile problem
14487
14488 Signed-off-by: Wolfgang Denk <wd@denx.de>
14489
14490 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
14491 Author: Stefan Roese <sr@denx.de>
14492 Date: Tue Apr 22 12:20:32 2008 +0200
14493
14494 ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
14495
14496 The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
14497 environment variable will now get passed to the Linux kernel by setting
14498 the device_type property of the PCIe device tree node. For normal root-
14499 complex configuration it will keep its defaults value of "pci" and for
14500 endpoint configuration it will get changed to "pci-endpoint".
14501
14502 Signed-off-by: Stefan Roese <sr@denx.de>
14503
14504 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
14505 Author: Yuri Tikhonov <yur@emcraft.com>
14506 Date: Thu Apr 24 10:30:53 2008 +0200
14507
14508 lwmon5: watchdog POST fix
14509
14510 Use the GPT0_MASKx registers as the temporary storage for watch-dog
14511 timer POST test instead of GPT0_COMPx. The latter
14512 (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
14513
14514 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14515 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14516
14517 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
14518 Author: Kim Phillips <kim.phillips@freescale.com>
14519 Date: Mon Apr 21 18:10:14 2008 -0500
14520
14521 lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
14522
14523 This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
14524 proven problematic getting right from the start at least on 83xx and
14525 4xx.
14526
14527 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14528
14529 commit a99715b8ebfc500f3f40e01b36b64d473938443d
14530 Author: Detlev Zundel <dzu@denx.de>
14531 Date: Fri Apr 18 14:50:01 2008 +0200
14532
14533 Realining some header definitions.
14534
14535 Signed-off-by: Detlev Zundel <dzu@denx.de>
14536
14537 commit 4acbc6c7f993cae409c424615415a3e76820f13d
14538 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14539 Date: Thu Apr 24 07:57:16 2008 +0200
14540
14541 NE2000: coding style cleanup
14542
14543 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14544
14545 commit b4aff1ffaf7120032c653357c007faa14f74d29d
14546 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14547 Date: Wed Apr 23 00:11:47 2008 +0900
14548
14549 qemu-mips.h: Add CFI support
14550
14551 CONFIG_ENV_OVERWRITE is also added.
14552
14553 This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
14554
14555 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14556 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14557
14558 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
14559 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14560 Date: Tue Apr 22 22:47:27 2008 +0900
14561
14562 doc/README.mips: Add MIPS notes
14563
14564 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14565
14566 commit 215b01bba8bc662d35f72b084700b192d367dfb4
14567 Author: Bartlomiej Sieka <tur@semihalf.com>
14568 Date: Tue Apr 22 12:27:56 2008 +0200
14569
14570 Add support for calculating hashes with watchdog triggering
14571
14572 Implement watchodg-aware variants of hash calculation functions:
14573 - crc32_wd()
14574 - md5_wd()
14575 - sha1_csum_wd()
14576 The above functions calculate the hash of the input buffer in chunks,
14577 triggering the watchdog after processing each chunk. The chunk size
14578 is given as a function call parameter.
14579
14580 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
14581
14582 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
14583 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
14584 Date: Wed Apr 23 11:02:12 2008 +0900
14585
14586 qemu-mips: Cleanup whitespace, indentation, etc.
14587
14588 No functional change.
14589
14590 This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
14591 Then I re-created from scratch, and changed more lines than the original.
14592
14593 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14594 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14595
14596 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
14597 Author: Vlad Lungu <vlad@comsys.ro>
14598 Date: Wed Oct 10 23:02:09 2007 +0300
14599
14600 Fixed pcnet io_base
14601
14602 Bus and phys address are not always the same
14603
14604 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
14605
14606 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
14607 Author: Wolfgang Denk <wd@denx.de>
14608 Date: Thu Apr 24 23:44:26 2008 +0200
14609
14610 drivers/net/pcnet.c: Coding Style cleanup.
14611
14612 Signed-off-by: Wolfgang Denk <wd@denx.de>
14613
14614 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
14615 Author: Vlad Lungu <vlad@comsys.ro>
14616 Date: Wed Oct 10 23:04:23 2007 +0300
14617
14618 Added Am79C970A chip id to pcnet
14619
14620 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
14621
14622 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
14623 Author: Magnus Lilja <lilja.magnus@gmail.com>
14624 Date: Sun Apr 20 10:35:03 2008 +0200
14625
14626 i.MX31: Fix architecture numbers for ADS and Litekit boards
14627
14628 Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
14629
14630 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
14631
14632 commit e7ae84d6c7288790e88639f57cb60daf89c11369
14633 Author: Magnus Lilja <lilja.magnus@gmail.com>
14634 Date: Sun Apr 20 10:36:36 2008 +0200
14635
14636 i.MX31: Use symbolic names for Litekit membases.
14637
14638 Use symbolic names instead of hard coded addresses for Litekit membases.
14639
14640 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
14641
14642 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
14643 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14644 Date: Sat Apr 19 17:59:20 2008 +0200
14645
14646 Fix show_boot_progress prototype
14647
14648 in commit fad634071 "make show_boot_progress () weak."
14649 show_boot_progress is supposed to be declared as weak but declared as
14650 inline instead.
14651
14652 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14653
14654 commit edbed247a14d70b94958010f736621212285de91
14655 Author: Bartlomiej Sieka <tur@semihalf.com>
14656 Date: Fri Apr 18 12:39:23 2008 +0200
14657
14658 Memory footprint optimizations
14659
14660 As suggested by Wolfgang Denk:
14661 - image printing functions:
14662 - remove wrappers
14663 - remove indentation prefix from functions' signatures
14664 - merge getenv_verify and getenv_autostart into one parametrized function
14665
14666 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
14667
14668 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
14669 Author: Guennadi Liakhovetski <lg@denx.de>
14670 Date: Tue Apr 15 13:33:11 2008 +0200
14671
14672 MX31ADS environment variable update, spi and rtc support
14673
14674 Update MX31ADS default environment to better match the flash layout and
14675 the memory map, support SPI and RTC.
14676
14677 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14678
14679 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
14680 Author: Kumar Gala <galak@kernel.crashing.org>
14681 Date: Mon Apr 21 09:28:36 2008 -0500
14682
14683 85xx: Round up frequency calculations to get reasonable output
14684
14685 eg. because of rounding error we can get 799Mhz instead of 800Mhz.
14686
14687 Introduced DIV_ROUND_UP and roundup taken from linux kernel.
14688
14689 Signed-off-by: Dejan Minic <minic@freescale.com>
14690 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14691 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14692 Acked-by: Andy Fleming <afleming@freescale.com>
14693
14694 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
14695 Author: Kumar Gala <galak@kernel.crashing.org>
14696 Date: Wed Apr 23 16:58:04 2008 -0500
14697
14698 fsl_pci: Only modify registers if we have them
14699
14700 pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
14701
14702 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14703
14704 commit 83fe32334337def160b302aa9d152d808bfcc68e
14705 Author: Markus Klotzbücher <mk@denx.de>
14706 Date: Wed Apr 23 10:57:33 2008 +0200
14707
14708 USB: remove a cpu bug workaround for an unsupported architecture.
14709
14710 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
14711
14712 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
14713 Author: Markus Klotzbücher <mk@denx.de>
14714 Date: Wed Apr 23 10:53:23 2008 +0200
14715
14716 USB: fix those pesky aliasing warnings issued by gcc-4.2
14717
14718 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
14719 Signed-off-by: Detlev Zundel <dzu@denx.de>
14720
14721 commit 89cdab788f3716b335fefb60b836ebcf975aceab
14722 Author: Mike Frysinger <vapier@gentoo.org>
14723 Date: Mon Mar 31 11:02:01 2008 -0400
14724
14725 crc32: use uint32_t rather than unsigned long
14726
14727 The envcrc.c does sizeof(unsigned long) when calculating the crc, but
14728 this is done with the build toolchain instead of the target tool
14729 chain, so if the build is a 64bit system but the target is 32bits,
14730 the size will obviously be wrong. This converts all unsigned long
14731 stuff related to crc32 to uint32_t types. Compile tested only: output
14732 of ./tools/envcrc when run on a 32bit build system matches that of a
14733 64bit build system.
14734
14735 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14736 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14737
14738 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
14739 Author: Dirk Behme <dirk.behme@googlemail.com>
14740 Date: Wed Mar 26 09:53:29 2008 +0100
14741
14742 ARM: Davinci: Fix DM644x timer overflow handling and cleanup
14743
14744 Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
14745
14746 Changes:
14747
14748 - Remove *_masked() functions as noted by Wolfgang
14749
14750 - Adapt register naming to recent TI spec (sprue26, March 2007)
14751
14752 - Fix reset_timer() handling
14753
14754 - 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.
14755
14756 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
14757
14758 - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
14759
14760 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
14761
14762 Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
14763
14764 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
14765 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
14766
14767 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
14768 Author: Sergei Poselenov <sposelenov@emcraft.com>
14769 Date: Wed Apr 9 16:09:41 2008 +0200
14770
14771 Added watchdog triggering calls in the "mtest" test function.
14772
14773 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14774
14775 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
14776 Author: Yuri Tikhonov <yur@emcraft.com>
14777 Date: Sun Apr 6 19:19:14 2008 +0200
14778
14779 lwmon5 watchdog: limit trigger rate
14780
14781 Limit the rate of h/w watch-dog triggering on the LWMON5 board by
14782 the CONFIG_WD_MAX_RATE value.
14783
14784 Note that an earlier version of this patch which used microseconds
14785 instead of ticks dis not work. The problem was that we used
14786 usec2ticks() to convert microseconds into ticks. usec2ticks() uses
14787 get_tbclk(), which in turn calls get_sys_info(). It turns out that
14788 this function does a lot of prolonged operations (like divisions)
14789 which take too much time so we do not trigger the watchdog in time,
14790 and it resets the system.
14791
14792 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14793
14794 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
14795 Author: Yuri Tikhonov <yur@emcraft.com>
14796 Date: Mon Mar 31 10:51:37 2008 +0200
14797
14798 POST: move CONFIG_POST to Makefiles
14799
14800 Introduce the new logical option CONFIG_HAS_POST which is set when the
14801 platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
14802 to determine should the POST libs be compiled for the selected target
14803 platform, or not.
14804
14805 To avoid breaking u-boot linking process, the empty post/libpost.a file is
14806 created for platforms which do not have POSTs.
14807
14808 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14809 Signed-off-by: Wolfgang Denk <wd@denx.de>
14810
14811 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
14812 Author: Yuri Tikhonov <yur@emcraft.com>
14813 Date: Mon Mar 31 10:49:34 2008 +0200
14814
14815 POST: preparations for moving CONFIG_POST to Makefiles
14816
14817 Remove CONFIG_POST ifdefs from the post/ source files.
14818
14819 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14820 Signed-off-by: Wolfgang Denk <wd@denx.de>
14821
14822 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
14823 Author: Stefan Roese <sr@denx.de>
14824 Date: Tue Apr 22 14:14:20 2008 +0200
14825
14826 ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
14827
14828 This patch fixes the Canyonlands and Glacier default environment to better
14829 fit to the arch/powerpc device-tree kernels. The variables dealing with
14830 arch/ppc booting are removed, since these boards are supported only in
14831 arch/powerpc. Glacier uses the same config file as Canyonlands.
14832
14833 Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
14834
14835 Signed-off-by: Stefan Roese <sr@denx.de>
14836
14837 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
14838 Author: Stefan Roese <sr@denx.de>
14839 Date: Tue Apr 22 14:06:42 2008 +0200
14840
14841 ppc4xx: Small coding style cleanup for the latest esd patches
14842
14843 Signed-off-by: Stefan Roese <sr@denx.de>
14844
14845 commit 79941d63bc03aed8c48d7602f18217cc200ee931
14846 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14847 Date: Mon Apr 21 18:01:07 2008 +0200
14848
14849 ppc4xx: Update CPU strapping for PMC440 boards
14850
14851 This patch removes the temporary 'test' strapping option
14852 of the sbe command. The '667' strapping option now uses
14853 a PLB/PCI divider of 3.
14854
14855 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14856
14857 commit f00cf3193a6635355b121e90debb2f54e777e7da
14858 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14859 Date: Mon Apr 21 14:42:21 2008 +0200
14860
14861 ppc4xx: Remove unused APC405 strataflash driver
14862
14863 The APC405 board support has been migrated to use the common
14864 CFI flash driver.
14865
14866 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14867
14868 commit 1c686676a86473bbd92151f0544e109413f6ed06
14869 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14870 Date: Mon Apr 21 14:42:17 2008 +0200
14871
14872 ppc4xx: Update APC405 configuration
14873
14874 - enable esd's auto_update mechanism
14875 - support alternative flash layout on rev. 1.8 boards
14876 - update default environment
14877 - use common CFI flash driver
14878 - coding style cleanup
14879
14880 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14881
14882 commit 0b9872515a521bf7866dc24b85ddce708e60d702
14883 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14884 Date: Mon Apr 21 14:42:11 2008 +0200
14885
14886 ppc4xx: Update APC405 board support
14887
14888 - enable esd's auto_update mechanism
14889 - fix LCD support on latest hardware revision (uses other LCD controller)
14890 - support alternative flash layout on rev. 1.8 boards
14891 - coding style cleanup
14892
14893 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14894
14895 commit 83975d02e225e231960784972e7820a8b303756b
14896 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14897 Date: Mon Apr 21 14:42:06 2008 +0200
14898
14899 ppc4xx: update esd's common auto_update code for 405 boards
14900
14901 - Coding style cleanup (long lines)
14902 - improve handling of protected flash regions
14903 - remove dead code
14904
14905 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14906
14907 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
14908 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14909 Date: Mon Apr 21 14:41:59 2008 +0200
14910
14911 ppc4xx: Update esd's common LCD code for 405 boards
14912
14913 - Coding style cleanup (long lines)
14914 - Add s1d13505 support
14915 - Make some functions return a result code instead of void
14916
14917 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14918
14919 commit dea68189424c3f1242427a8146a3861bf093173c
14920 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14921 Date: Mon Apr 21 11:36:55 2008 +0200
14922
14923 ppc4xx: Update FPGA image for APC405 boards
14924
14925 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14926
14927 commit 2a05b152924acfcec3b037693329e517e6d3578f
14928 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14929 Date: Mon Apr 21 11:36:08 2008 +0200
14930
14931 ppc4xx: Update bootlogo for APC405 boards
14932
14933 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14934
14935 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
14936 Author: Stefan Roese <sr@denx.de>
14937 Date: Fri Apr 18 16:41:31 2008 +0200
14938
14939 ppc4xx: Add dcache_enable() for 440
14940
14941 dcache_enable() was missing for 440 and the patch
14942 017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
14943 "] behavior uses this function.
14944
14945 Note: Currently the cache handling functions like
14946 d/icache_disable/enable() are NOP's on 440. This may be changed in the
14947 future.
14948
14949 Signed-off-by: Stefan Roese <sr@denx.de>
14950
14951 commit a49e0d177a0749614b316ec847fb623f09c82c07
14952 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14953 Date: Mon Apr 21 11:19:04 2008 +0200
14954
14955 video: Add missing free for logo memory
14956
14957 This patch adds two missing free()s.
14958
14959 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14960
14961 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
14962 Author: Troy Kisky <troy.kisky@boundarydevices.com>
14963 Date: Mon Sep 24 16:41:43 2007 -0700
14964
14965 PATCH - Fix oob data copied into supplied buffer
14966
14967 This patch correctly sets the oobavail variable
14968 and fixes a bug where the oob data was not valid when
14969 there where multiple groups in oobfree.
14970
14971 First segment fixes a typo
14972 Second segment fixes a bug where oob data may be copied incorrectly.
14973 Third segment adds an error message when exiting due to write protect.
14974 Forth segment fixes a bug where oobavail may be set incorrectly.
14975
14976 Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
14977
14978 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
14979 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14980 Date: Fri Apr 18 17:24:32 2008 +0200
14981
14982 ppc4xx: Fix sys_get_info() for 405GP(r)
14983
14984 This patch assigns the correct EBC clock for 405GP(r) CPUs
14985 to PPC4xx_SYS_INFO structure. Without this patch U-Boot
14986 uses an uninitialized EBC clock in its startup message.
14987
14988 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14989
14990 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
14991 Author: Wolfgang Denk <wd@denx.de>
14992 Date: Sun Apr 20 15:39:38 2008 -0700
14993
14994 Makefile: remove nand_spl/System.map when cleaning up.
14995
14996 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
14997 Author: Wolfgang Denk <wd@denx.de>
14998 Date: Sun Apr 20 15:35:52 2008 -0700
14999
15000 MAKEALL: sort entries / lists.
15001
15002 Signed-off-by: Wolfgang Denk <wd@denx.de>
15003
15004 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
15005 Author: Kumar Gala <galak@kernel.crashing.org>
15006 Date: Fri Apr 18 11:29:01 2008 -0500
15007
15008 85xx: Fix size of cpu-release-addr property
15009
15010 The cpu-release-addr is defined as always being a 64-bit quanity regardless
15011 if we are running on a 32-bit or 64-bit machine.
15012
15013 commit 88353a985109562a639b2f8a0c90d77011bfe374
15014 Author: Timur Tabi <timur@freescale.com>
15015 Date: Fri Apr 4 11:15:58 2008 -0500
15016
15017 Fix calculation of I2C clock for some 85xx chips
15018
15019 Some 85xx chips use CCB as the base clock for the I2C. Some use CCB/2, and
15020 some use CCB/3. There is no pattern that can be used to determine which
15021 chips use which frequency, so the only way to determine is to look up the
15022 actual SOC designation and use the right value for that SOC.
15023
15024 Update immap_85xx.h to include the GUTS PORDEVSR2 register.
15025
15026 Signed-off-by: Timur Tabi <timur@freescale.com>
15027
15028 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
15029 Author: Wolfgang Denk <wd@denx.de>
15030 Date: Fri Apr 18 11:44:27 2008 -0700
15031
15032 Fix build breakage casued by commit c0559be371b2
15033
15034 Change env_get_char from a global function ptr to a function.
15035
15036 Signed-off-by: Wolfgang Denk <wd@denx.de>
15037
15038 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
15039 Author: Wolfgang Denk <wd@denx.de>
15040 Date: Fri Apr 18 10:53:41 2008 -0700
15041
15042 Coding Style cleanup, update CHANGELOG.
15043
15044 Signed-off-by: Wolfgang Denk <wd@denx.de>
15045
15046 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
15047 Author: Mike Frysinger <vapier@gentoo.org>
15048 Date: Tue Apr 8 14:00:57 2008 -0400
15049
15050 Add support for u-boot in svn and localversion-* files
15051
15052 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15053
15054 commit d23ff6827decf121461fbc5622612fd7effe207e
15055 Author: Guennadi Liakhovetski <lg@denx.de>
15056 Date: Thu Apr 3 17:04:22 2008 +0200
15057
15058 MX31ADS network and flash updates
15059
15060 This patch allows U-Boot to use buffered writes to the Spansion NOR
15061 flash installed on this board, and eliminates long delays in network
15062 transfers after the board startup.
15063
15064 Also modify flash layout to embed main and redundant environment
15065 blocks in the U-Boot image.
15066
15067 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15068
15069 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
15070 Author: Guennadi Liakhovetski <lg@denx.de>
15071 Date: Mon Apr 14 10:53:12 2008 +0200
15072
15073 Support for the MX31ADS evaluation board from Freescale
15074
15075 This patch adds support for the MX31ADS evaluation board from Freescale,
15076 initialization code is copied from RedBoot sources, also provided by
15077 Freescale.
15078
15079 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15080
15081 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
15082 Author: Stefan Roese <sr@denx.de>
15083 Date: Tue Apr 8 10:33:29 2008 +0200
15084
15085 ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
15086
15087 Signed-off-by: Stefan Roese <sr@denx.de>
15088
15089 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
15090 Author: Stefan Roese <sr@denx.de>
15091 Date: Tue Apr 8 10:33:28 2008 +0200
15092
15093 ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
15094
15095 Signed-off-by: Stefan Roese <sr@denx.de>
15096
15097 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
15098 Author: Stefan Roese <sr@denx.de>
15099 Date: Tue Apr 8 10:33:27 2008 +0200
15100
15101 ppc4xx: Add Glacier NAND booting target
15102
15103 Signed-off-by: Stefan Roese <sr@denx.de>
15104
15105 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
15106 Author: Stefan Roese <sr@denx.de>
15107 Date: Tue Apr 8 10:31:00 2008 +0200
15108
15109 nand_spl: Update nand_spl to support 2k page size NAND devices
15110
15111 This patch adds support for booting from 2k page sized NAND device
15112 (e.g. Micron 29F2G08AAC).
15113
15114 Tested on AMCC Canyonlands.
15115
15116 Signed-off-by: Stefan Roese <sr@denx.de>
15117
15118 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
15119 Author: Anatolij Gustschin <agust@denx.de>
15120 Date: Thu Apr 17 18:18:00 2008 +0200
15121
15122 Fix crash on sequoia in ppc_4xx_eth_init
15123
15124 Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
15125 with cache enabled (TLB Parity exeption). This patch
15126 fixes the problem.
15127
15128 Signed-off-by: Anatolij Gustschin <agust@denx.de>
15129
15130 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
15131 Author: Anatolij Gustschin <agust@denx.de>
15132 Date: Thu Apr 17 18:15:27 2008 +0200
15133
15134 ppc4xx: Fix crash on sequoia with cache enabled
15135
15136 Currently U-Boot crashes on sequoia board in CPU POST if
15137 cache is enabled (CONFIG_4xx_DCACHE defined). The cache
15138 won't be disabled by change_tlb before CPU POST because
15139 there is an insufficient adress range check since
15140 CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
15141 this problem.
15142
15143 Signed-off-by: Anatolij Gustschin <agust@denx.de>
15144
15145 commit 43c509254fab375c49936498da944658117ed07c
15146 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15147 Date: Thu Apr 17 23:35:13 2008 +0900
15148
15149 Use jr as register jump instruction
15150
15151 Current assembler codes are inconsistent in the way of register jump
15152 instruction usage; some use jr, some use j. Of course GNU as allows both
15153 usages, but as can be expected from `Jump Register' the mnemonic `jr' is
15154 more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
15155 at all.
15156
15157 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15158
15159 commit 7ce63709828d37b08866e537339a169bd0db2bd3
15160 Author: Guennadi Liakhovetski <lg@denx.de>
15161 Date: Tue Apr 15 14:15:30 2008 +0200
15162
15163 RTC driver for MC13783
15164
15165 MC13783 is a multifunction IS with an SPI interface to the host. This
15166 driver handles the RTC controller in this chip.
15167
15168 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15169
15170 commit 38254f45b0b412332726c90d3184ad47479fcffb
15171 Author: Guennadi Liakhovetski <lg@denx.de>
15172 Date: Tue Apr 15 14:14:25 2008 +0200
15173
15174 New i.MX31 SPI driver
15175
15176 This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
15177 only implemented and tested on i.MX31, can with a modified register layout
15178 and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
15179 controllers too.
15180
15181 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15182
15183 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
15184 Author: Magnus Lilja <lilja.magnus@gmail.com>
15185 Date: Tue Apr 15 19:09:10 2008 +0200
15186
15187 Fix name of i.MX31 boards in config file header
15188
15189 Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
15190
15191 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
15192
15193 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
15194 Author: Mike Frysinger <vapier@gentoo.org>
15195 Date: Sun Apr 13 19:42:19 2008 -0400
15196
15197 allow ports to override go behavior
15198
15199 Split the arch-specific logic out of the common go code and into a dedicated
15200 weak function called do_go_exec() that lives in cpu directories. This will
15201 need review from i386/nios people to make sure I didn't break them.
15202
15203 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
15204 Author: Mike Frysinger <vapier@gentoo.org>
15205 Date: Sun Apr 13 19:42:18 2008 -0400
15206
15207 allow ports to override bootelf behavior
15208
15209 Change the bootelf setup function into a dedicated weak function called
15210 do_bootelf_exec. This way ports can control the behavior however they
15211 like before/after calling the ELF entry point.
15212
15213 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
15214 Author: Ulf Samuelsson <ulf@atmel.com>
15215 Date: Sat Apr 12 20:56:03 2008 +0200
15216
15217 Reorder ARM boards in Makefile
15218
15219 Rearrange ARM boards in Makefile so that ARM926EJ-S boards
15220 are no longer under ARM92xT header.
15221
15222 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
15223 Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15224
15225 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
15226 Author: Ulf Samuelsson <ulf@atmel.com>
15227 Date: Sat Apr 12 20:29:44 2008 +0200
15228
15229 Clean up dataflash partitioning
15230
15231 This patch removes the board dependent parts from
15232 "drivers/mtd/dataflash.c".
15233 Each board relying on this, will have the appropriate
15234 code in a new file, "partition.c" in the board directory.
15235 board Makefiles updated to use the file.
15236
15237 The dataflash partitions are aligned on sector/page boundaries.
15238
15239 The CONFIG_NEW_DF_PARTITION was used to create named partitions
15240 This is now the default operation, and the CONFIG variable is removed.
15241
15242 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
15243
15244 commit 51ecde946fec511a16346e498204ca10ad71080d
15245 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15246 Date: Sat Apr 12 14:08:45 2008 +0200
15247
15248 gitignore: udpate stgit generated and .patch file
15249
15250 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15251
15252 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
15253 Author: Wolfgang Denk <wd@denx.de>
15254 Date: Fri Apr 18 00:15:36 2008 -0700
15255
15256 Get rid of redundant copy of renamed header file.
15257
15258 Signed-off-by: Wolfgang Denk <wd@denx.de>
15259
15260 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
15261 Author: Vlad Lungu <vlad@comsys.ro>
15262 Date: Fri Apr 11 21:20:14 2008 +0300
15263
15264 Fix dependency generation for older gcc versions
15265
15266 With gcc 3.3.3 at least, compilation fails with
15267
15268 Generating include/autoconf.mk
15269 gcc: compilation of header file requested
15270 make: *** [include/autoconf.mk] Error 1
15271
15272 since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
15273
15274 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
15275
15276 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
15277 Author: Marian Balakowicz <m8@semihalf.com>
15278 Date: Fri Apr 11 11:07:49 2008 +0200
15279
15280 Restore the ability to continue booting after legacy image overwrite
15281
15282 Before new uImage code was merged, bootm code allowed for the kernel image to
15283 get overwritten during decompresion. new uImage introduced a check for image
15284 overwrites and refused to boot the image that got overwritten. This patch
15285 restores the old behavior. It also adds a warning when the image overwriten is
15286 a multi-image file, because in such case accessing componentes other than the
15287 first one will fail.
15288
15289 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
15290
15291 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
15292 Author: Marian Balakowicz <m8@semihalf.com>
15293 Date: Fri Apr 11 11:07:43 2008 +0200
15294
15295 ppc: Fix ftd_blob variable init when processing raw blob
15296
15297 Set fdt_blob variable before its value is printed out.
15298
15299 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
15300
15301 commit 3d36be030043cd841a2551d00a395135e363a64b
15302 Author: Jason Wessel <jason.wessel@windriver.com>
15303 Date: Thu Apr 10 14:30:16 2008 -0500
15304
15305 Remove all the search paths from the .lds files.
15306
15307 The cross compiler is responsible for providing the correct libraries
15308 and the logic to find the linking libraries.
15309
15310 Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
15311
15312 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
15313 Author: Bartlomiej Sieka <tur@semihalf.com>
15314 Date: Mon Apr 14 15:44:16 2008 +0200
15315
15316 Boot-related documentation update
15317
15318 - document 'bootm_low' and 'bootm_size' environment variables
15319 - update inaccurate CFG_BOOTMAPSZ entry
15320
15321 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
15322
15323 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
15324 Author: Guennadi Liakhovetski <lg@denx.de>
15325 Date: Wed Apr 9 17:34:08 2008 +0200
15326
15327 Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
15328
15329 Restore logic reverted by commit
15330
15331 commit 80767a6cead9990d9e77e62be947843c2c72f469
15332 Author: Peter Pearse <peter.pearse@arm.com>
15333 Date: Wed Sep 5 16:04:41 2007 +0100
15334
15335 Changed API name to coloured_led.h
15336 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
15337 Tidied other cpu/arm920t/start.S code
15338
15339 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15340
15341 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
15342 Author: Mike Frysinger <vapier@gentoo.org>
15343 Date: Tue Apr 8 10:24:24 2008 -0400
15344
15345 Remove conflicting NAND ID
15346
15347 There are two NAND entries with ID 0xDC and this obviously causes problems.
15348 In the kernel, they punted the first entry, so we should do the same.
15349
15350 See this upstream e-mail for more info:
15351 http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
15352
15353 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
15354 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15355
15356 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
15357 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
15358 Date: Tue Apr 8 16:20:35 2008 +0900
15359
15360 cpu/mips/cpu.c: Fix flush_cache bug
15361
15362 Cache operations have to take line address (addr), not start_addr.
15363 I noticed this bug when debugging ping failure.
15364
15365 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
15366
15367 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
15368 Author: Martin Krause <martin.krause@tqs.de>
15369 Date: Thu Apr 3 14:29:01 2008 +0200
15370
15371 TQM5200: fix default IDE reset level
15372
15373 Before the first call of ide_reset(), the level of the IDE reset
15374 signal on the TQM5200 is low (reset asserted). This patch sets the
15375 default value to high (reset not asserted).
15376
15377 Currently this patch fixes no real problem, but it is cleaner to
15378 assert the reset signal only on demand, and not permanently.
15379
15380 Signed-off-by: Martin Krause <martin.krause@tqs.de>
15381
15382 commit c61e033d6e8abb7b4060ee36060961e1399f6079
15383 Author: Detlev Zundel <dzu@denx.de>
15384 Date: Thu Apr 3 14:18:48 2008 +0200
15385
15386 mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
15387
15388 Signed-off-by: Detlev Zundel <dzu@denx.de>
15389
15390 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
15391 Author: Detlev Zundel <dzu@denx.de>
15392 Date: Thu Apr 3 14:18:47 2008 +0200
15393
15394 mgcoge, mgsuv: rename 'addcon' to 'addcons'
15395
15396 The latter name with 13 users is already established, so we will use
15397 that.
15398
15399 Signed-off-by: Detlev Zundel <dzu@denx.de>
15400
15401 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
15402 Author: Martin Krause <martin.krause@tqs.de>
15403 Date: Thu Apr 3 13:37:56 2008 +0200
15404
15405 IDE: fix bug in reset sequence
15406
15407 According to the ata (ata5) specification the RESET- signal
15408 shall be asserted for at least 25 us. Without this patch,
15409 the RESET- signal is asserted on some boards for only < 1 us
15410 (e. g. on the TQM5200). This patch adds a general delay of
15411 25 us to the RESET- signal.
15412
15413 Without this patch a Platinum 4 GiB CF card is not recognised
15414 properly on boards with a TQM5200 (STK52xx, TB5200).
15415
15416 Signed-off-by: Martin Krause <martin.krause@tqs.de>
15417
15418 commit 813bea96a960916c72b4a3a7df840151529c26ce
15419 Author: Sascha Laue <Sascha.Laue@gmx.biz>
15420 Date: Thu Apr 3 14:43:11 2008 +0200
15421
15422 lwmon5: disable CONFIG_ZERO_BOOTDELAY
15423
15424 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
15425
15426 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
15427 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15428 Date: Wed Apr 2 08:03:58 2008 +0200
15429
15430 ds174x: Fix warning on return in rtc_get and rtc_set functions
15431
15432 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15433
15434 commit a253b38bf50c85227c33ca0febc870ee49d1588e
15435 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15436 Date: Wed Apr 2 08:03:57 2008 +0200
15437
15438 cmd_log.c: Fix assignment differ in signedness
15439
15440 In function 'logbuff_init_ptrs':
15441 cmd_log.c:79: warning: pointer targets in assignment differ in signedness
15442
15443 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15444
15445 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
15446 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
15447 Date: Wed Apr 2 11:04:43 2008 +0530
15448
15449 Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
15450
15451 Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
15452
15453 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
15454 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15455 Date: Tue Apr 1 14:07:10 2008 +0200
15456
15457 s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
15458
15459 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15460
15461 commit c08fb3ea36d19b1640b7906264581e9105534399
15462 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
15463 Date: Tue Apr 15 10:24:14 2008 +0200
15464
15465 Additional PCI IDs for IDE and network controllers
15466
15467 These PCI IDs are required by the Linkstation platforms.
15468
15469 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
15470
15471 commit c0559be371b2a64b1a817088c3308688e2182f93
15472 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
15473 Date: Mon Apr 14 23:01:50 2008 +0200
15474
15475 Change env_get_char from a global function ptr to a function.
15476
15477 This avoids an early global data reference.
15478
15479 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
15480
15481 commit 3e0f331c05d72f140715c1e9fca991927e44d422
15482 Author: Guennadi Liakhovetski <lg@denx.de>
15483 Date: Tue Apr 29 12:35:08 2008 +0000
15484
15485 Clean up smsc911x driver
15486
15487 Replace direct register address derefencing with accessor functions.
15488 Restrict explicitly 32-bit bus-width, extend affected configurations
15489 respectively.
15490
15491 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15492 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15493
15494 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
15495 Author: Sascha Hauer <s.hauer@pengutronix.de>
15496 Date: Tue Apr 15 00:08:20 2008 -0400
15497
15498 This patch adds a driver for the following smsc network controllers:
15499 LAN9115
15500 LAN9116
15501 LAN9117
15502 LAN9215
15503 LAN9216
15504 LAN9217
15505
15506 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15507 Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
15508 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15509
15510 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
15511 Author: Sascha Laue <Sascha.Laue@gmx.biz>
15512 Date: Tue Apr 1 15:13:03 2008 +0200
15513
15514 Fix watchdog POST for lwmon5
15515
15516 If the hardware watchdog detects a voltage error, the watchdog sets
15517 GPIO62 to low. The watchdog POST has to detect this low level.
15518
15519 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
15520
15521 commit 24b448448a917e52806f82660a5c9d47608894fb
15522 Author: Dave Liu <r63238@freescale.com>
15523 Date: Tue Apr 1 15:22:11 2008 +0800
15524
15525 ata: update the libata.h from ata.h of linux kernel
15526
15527 Current libata.h of u-boot is out of sync from linux kernel,
15528 this patch make it be consistent with linux kernel.
15529
15530 Signed-off-by: Dave Liu <daveliu@freescale.com>
15531 Signed-off-by: Tor Krill <tor@excito.com>
15532
15533 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
15534 Author: Kumar Gala <galak@kernel.crashing.org>
15535 Date: Mon Mar 31 11:59:27 2008 -0500
15536
15537 Allow use of ARCH=powerpc when building
15538
15539 The linux kernel is now mostly ARCH=powerpc, so to make life easier
15540 allow use to use ARCH=powerpc and convert it to ARCH=ppc.
15541
15542 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15543
15544 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
15545 Author: Kyungmin Park <kmpark@infradead.org>
15546 Date: Mon Mar 31 10:40:54 2008 +0900
15547
15548 Add apollon board MAINTAINERS entry
15549
15550 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15551
15552 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
15553 Author: Kyungmin Park <kmpark@infradead.org>
15554 Date: Mon Mar 31 10:40:36 2008 +0900
15555
15556 Fix OneNAND read
15557
15558 It should access with 16-bit instead of 8-bit
15559
15560 Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
15561
15562 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15563
15564 commit a9da2b41079d230db3a5641625311983f85ce1fb
15565 Author: Kyungmin Park <kmpark@infradead.org>
15566 Date: Mon Mar 31 10:40:19 2008 +0900
15567
15568 Fix OneNAND erase command
15569
15570 It mis-calculates the block address.
15571 Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
15572
15573 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15574
15575 commit 61525f2ffa156665a66908fda47dbf29d65ea579
15576 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
15577 Date: Mon Mar 31 01:32:15 2008 +0200
15578
15579 Support for LinkStation / KuroBox HD and HG PPC models
15580
15581 This patch is based on the port by Mihai Georgian (see linkstation.c for
15582 Copyright information) and implements support for LinkStation / KuroBox HD
15583 and HG PPC models from Buffalo Technology, whereby HD is deactivated at
15584 the moment, pending network driver fixing.
15585
15586 Notice to users: this is pretty much a barebone port. Support for network
15587 on HG models is already in the U-Boot mainline, but you might also want
15588 patches to switch fan / phy modes depending on the negotiated ethernet
15589 parameters. This patch also doesn't support console switching, booting EM
15590 mode, Buffalo specific ext2 magic number. So, if you want to use any of
15591 those, you need additional patches. Otherwise this patche provides a fully
15592 functional u-boot with a network console on your system.
15593
15594 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15595
15596 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
15597 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15598 Date: Sun Mar 30 01:22:13 2008 -0500
15599
15600 Add CONFIG_MII_INIT support to related boards
15601
15602 Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
15603 cmd_init.c. Add CONFIG_MII_INIT to board configuration files
15604 that use mii_init() in cmd_init.c.
15605
15606 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15607 Acked-by: Ben Warren <biggerbadderben@gmail.com>
15608
15609 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
15610 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15611 Date: Sun Mar 30 01:19:06 2008 -0500
15612
15613 Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
15614
15615 Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
15616 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
15617
15618 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15619
15620 commit e99ccb488181d012248c6be30b2093e950319fc5
15621 Author: Kumar Gala <galak@kernel.crashing.org>
15622 Date: Thu Mar 27 11:46:38 2008 -0500
15623
15624 Introduce phys_size_t and move phys_addr_t into asm/types.h
15625
15626 Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
15627 that have larger physical addresses like 44x, 85xx, and 86xx.
15628
15629 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15630
15631 commit 20a14a42a25f72e379f38460b8a8484667536795
15632 Author: Andy Fleming <afleming@freescale.com>
15633 Date: Wed Apr 2 16:19:07 2008 -0500
15634
15635 Rename include/md5.h to include/u-boot/md5.h
15636
15637 Some systems have md5.h installed in /usr/include/. This isn't the
15638 desired file (we want the one in include/md5.h). This will avoid the
15639 conflict. This fixes the host tools building problem by creating a new
15640 directory for U-Boot specific header files.
15641
15642 [Patch by Andy Fleming, modified to use separate directory by Wolfgang
15643 Denk]
15644
15645 Signed-off-by: Wolfgang Denk <wd@denx.de>
15646 Signed-off-by: Andy Fleming <afleming@freescale.com>
15647 Acked-by: Timur Tabi <timur@freescale.com>
15648
15649 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
15650 Author: Dave Liu <r63238@freescale.com>
15651 Date: Thu Mar 27 18:51:17 2008 +0800
15652
15653 drivers: code clean up
15654
15655 Signed-off-by: Dave Liu <daveliu@freescale.com>
15656
15657 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
15658 Author: Dave Liu <r63238@freescale.com>
15659 Date: Thu Mar 27 18:50:41 2008 +0800
15660
15661 drivers: clean up the ata_piix.h
15662
15663 Signed-off-by: Dave Liu <daveliu@freescale.com>
15664
15665 commit e8f7ba404f1409606962815ecc955a06984b08b3
15666 Author: Dave Liu <r63238@freescale.com>
15667 Date: Thu Mar 27 18:49:56 2008 +0800
15668
15669 doc: english polishing for README.sata
15670
15671 according to gvb's suggestion, polishing for the doc.
15672
15673 Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
15674 Signed-off-by: Dave Liu <daveliu@freescale.com>
15675
15676 commit 3e3f766a5274d204780460e1879723b565296d34
15677 Author: Kumar Gala <galak@kernel.crashing.org>
15678 Date: Wed Mar 26 18:53:28 2008 -0500
15679
15680 Fix warnings introduced by I2C bus speed setting patch
15681
15682 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15683
15684 commit 3c735e7437150e8615f26930c7819db85634276d
15685 Author: eran liberty <eran.liberty@gmail.com>
15686 Date: Thu Mar 27 00:50:49 2008 +0100
15687
15688 Altera Stratix II support
15689
15690 Adds Support for Altera's Stratix II.
15691
15692 Within your board specific init file you will have to call
15693
15694 1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
15695 2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
15696
15697 Altera_desc* contines (for example):
15698 {
15699 Altera_StratixII, /* part type */
15700 passive_serial, /* interface type */
15701 1, /* bytes of data part can accept */
15702 (void *)(&funcs), /* interface function table */
15703 0L, /* base interface address */
15704 0 /* implementation specific cookie */
15705 }
15706
15707 funcs is the interface. It is of type altera_board_specific_func.
15708 It looks like this:
15709 altera_board_specific_func func = {
15710 pre_fn,
15711 config_fn,
15712 status_fn,
15713 done_fn,
15714 clk_fn,
15715 data_fn,
15716 abort_fn,
15717 post_fn,
15718 };
15719
15720 you will have to implement these functions, which is usually bit
15721 banging some gpio.
15722
15723 Signed-off-by: Eran Liberty <liberty@extricom.com>
15724
15725 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
15726 Author: Wolfgang Denk <wd@denx.de>
15727 Date: Sun Apr 13 14:32:54 2008 -0700
15728
15729 Update CHANGELOG
15730
15731 Signed-off-by: Wolfgang Denk <wd@denx.de>
15732
15733 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
15734 Author: Sascha Hauer <s.hauer@pengutronix.de>
15735 Date: Wed Mar 26 20:41:17 2008 +0100
15736
15737 Phytec Phycore-i.MX31 support
15738
15739 This patch adds support for the Phytec Phycore-i.MX31 board
15740
15741 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15742 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15743
15744 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
15745 Author: Sascha Hauer <s.hauer@pengutronix.de>
15746 Date: Wed Mar 26 20:41:09 2008 +0100
15747
15748 mx31 litekit support
15749
15750 This patch adds support for the mx31 litekit board
15751
15752 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15753 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15754
15755 commit cdace0661208754a53019ea0dc7b803a040e0939
15756 Author: Sascha Hauer <s.hauer@pengutronix.de>
15757 Date: Wed Mar 26 20:40:49 2008 +0100
15758
15759 add an i2c driver for mx31
15760
15761 This patch adds an i2c driver for Freescale i.MX processors
15762
15763 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15764 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15765
15766 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
15767 Author: Sascha Hauer <s.hauer@pengutronix.de>
15768 Date: Wed Mar 26 20:40:42 2008 +0100
15769
15770 core support for Freescale mx31
15771
15772 This patch adds the core support for Freescale mx31
15773
15774 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15775 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15776
15777 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
15778 Author: Wolfgang Denk <wd@denx.de>
15779 Date: Sun Apr 13 14:19:23 2008 -0700
15780
15781 Fix compile error
15782
15783 ...as suggested by Peter Pearse
15784
15785 Signed-off-by: Wolfgang Denk <wd@denx.de>
15786
15787 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
15788 Author: Sascha Hauer <s.hauer@pengutronix.de>
15789 Date: Wed Mar 26 20:40:36 2008 +0100
15790
15791 Separate omap24xx specific code from arm1136
15792
15793 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
15794 to cpu/arm1136/omap24xx.
15795
15796 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15797 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15798
15799 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
15800 Author: Mike Frysinger <vapier@gentoo.org>
15801 Date: Tue Jan 29 18:21:05 2008 -0500
15802
15803 disable caches before booting an app for Blackfin apps
15804
15805 It isn't generally save to execute applications outside of U-Boot with caches
15806 enabled due to the way the Blackfin processor handles caches (requires
15807 software assistance). This patch disables caches before booting an ELF or
15808 just booting raw code. The previous discussion on the patch was that we
15809 wanted to use weaks instead, but that proved to not be feasible when multiple
15810 symbols are involved, which puts us back at the ifdef solution. I've
15811 minimized the ugliness by moving the setup step outside of the main function.
15812
15813 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15814
15815 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
15816 Author: Wolfgang Denk <wd@denx.de>
15817 Date: Sun Apr 13 10:03:54 2008 -0700
15818
15819 ppc: Get rid of unused machine type definitions
15820
15821 Signed-off-by: Wolfgang Denk <wd@denx.de>
15822
15823 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
15824 Author: Wolfgang Denk <wd@denx.de>
15825 Date: Sun Apr 13 09:59:26 2008 -0700
15826
15827 Coding Style cleanup; update CHANGELOG
15828
15829 Signed-off-by: Wolfgang Denk <wd@denx.de>
15830
15831 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
15832 Author: Larry Johnson <lrj@acm.org>
15833 Date: Thu Feb 21 13:58:11 2008 -0500
15834
15835 LM73 bug fix for negative temperatures and cleanup
15836
15837 When the LM73 temperature sensor measures a temperature below 0 C, the
15838 current driver does not perform sign extension, so the result returned is
15839 512 C too high. This patch fixes the problem, and does general cleanup
15840 of the code.
15841
15842 Signed-off-by: Larry Johnson <lrj@acm.org>
15843
15844 commit 96ef831f713289afba19da0c8f905e99da2b23e0
15845 Author: Guennadi Liakhovetski <lg@denx.de>
15846 Date: Thu Apr 3 13:36:02 2008 +0200
15847
15848 cfi_flash: Support buffered writes on non-standard Spansion NOR flash
15849
15850 Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
15851 series require different addresses for buffered write commands. Define a
15852 configuration option to support buffered writes on those chips. A more
15853 elegant solution would be to automatically detect those chips by parsing
15854 their CFI records, but that would require introduction of a fixup table
15855 into the cfi_flash driver.
15856
15857 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15858
15859 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
15860 Author: Lee Nipper <lee.nipper@freescale.com>
15861 Date: Thu Apr 10 09:35:06 2008 -0500
15862
15863 mpc83xx: Update DIMM data bus width test to support 40-bit width
15864
15865 32-bit wide ECC memory modules report 40-bit width.
15866 Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
15867
15868 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
15869 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15870
15871 commit 5fb5a689d822ca61e814bd523fc930af335242fa
15872 Author: Dave Liu <r63238@freescale.com>
15873 Date: Mon Mar 31 17:05:12 2008 +0800
15874
15875 mpc83xx: Fix the bug of serdes initialization
15876
15877 Currently the serdes will not be initializated due to the
15878 partid's error.
15879
15880 Signed-off-by: Dave Liu <daveliu@freescale.com>
15881 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15882
15883 commit 2000784818f043db7ca60e2846a72d097766b894
15884 Author: Dave Liu <r63238@freescale.com>
15885 Date: Thu Apr 3 16:28:29 2008 +0800
15886
15887 mpc83xx: Fix the SATA clock setting of 837x targets
15888
15889 Currently the SATA controller clock is configured as CSB clock,
15890 usually the CSB clock is 400/333/266MHz.
15891
15892 However, The SATA IP block is only guaranteed to operate up to
15893 200 MHz as stated in the HW spec.
15894
15895 The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
15896
15897 This patch makes the SATA clock as half of CSB clock.
15898
15899 Signed-off-by: Dave Liu <daveliu@freescale.com>
15900 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15901
15902 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
15903 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15904 Date: Wed Apr 2 13:41:21 2008 +0200
15905
15906 mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
15907
15908 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15909 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15910
15911 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
15912 Author: Kumar Gala <galak@kernel.crashing.org>
15913 Date: Wed Apr 9 04:20:57 2008 -0500
15914
15915 85xx: Fix detection of MP cpu spin up
15916
15917 We were looking at the wrong memory offset to determine of a secondary
15918 cpu had been spun up or not. Also added a warning message if the
15919 all the secondary cpus we expect don't spin up.
15920
15921 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15922
15923 commit f3e04bdc3f360c66801a9048956e61e41a16edba
15924 Author: Kumar Gala <galak@kernel.crashing.org>
15925 Date: Tue Apr 8 10:45:50 2008 -0500
15926
15927 85xx: Use SVR_SOC_VER instead of SVR_VER
15928
15929 The recent change introduced by 'Update SVR numbers to expand support'
15930 now requires that we use SVR_SOC_VER instead of SVR_VER if we want
15931 to compare against a particular processor id.
15932
15933 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15934
15935 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
15936 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
15937 Date: Fri Apr 11 10:00:35 2008 -0400
15938
15939 ppc4xx: Fix power mgt definitions for PPC440
15940
15941 Corrected DCR addresses of PPC440EP power management registers.
15942
15943 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
15944
15945 commit 950a392464e616b4590bc4501be46e2d7d162dea
15946 Author: Wolfgang Denk <wd@denx.de>
15947 Date: Fri Apr 11 15:11:26 2008 +0200
15948
15949 Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
15950
15951 Reverting became necessary after it turned out that the patches in
15952 the u-boot-arm repo were modified, and in some cases corrupted.
15953
15954 This reverts the following commits:
15955
15956 066bebd6353e33af3adefc3404560871699e9961
15957 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
15958 c88ae20580b2b01487b4cdcc8b2a113f551aee36
15959 a147e56f03871bba4f05058d5e04ce7deb010b04
15960 d6674e0e2a6a1f033945f78838566210d3f28c95
15961 8c8463cce44d849e37744749b32d38e1dfb12e50
15962 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
15963 8bf69d81782619187933a605f1a95ee1d069478d
15964 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
15965 a574a73852a527779234e73e17e7597fd8128882
15966 1377b5583a48021d983e1fd565f7d40c89e84d63
15967 1704dc20917b4f71e373e2c888497ee666d40380
15968
15969 Signed-off-by: Wolfgang Denk <wd@denx.de>
15970
15971 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
15972 Author: Stefan Roese <sr@denx.de>
15973 Date: Fri Apr 11 07:02:29 2008 +0200
15974
15975 ppc4xx: Update Kilauea defconfig to use device-tree booting as default
15976
15977 This patch reworks the default environment on Kilauea/Haleakala. Now
15978 "net_nfs" for exmaple uses the device-tree style booting formerly know
15979 as "net_nfs_fdt". Also the addresses in RAM were changed because of the
15980 new image booting support, which check for image overwriting. So the
15981 addresses needed togeet adjusted.
15982
15983 Signed-off-by: Stefan Roese <sr@denx.de>
15984
15985 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
15986 Author: Stefan Roese <sr@denx.de>
15987 Date: Wed Apr 9 11:58:02 2008 +0200
15988
15989 ppc4xx: Fix Canyonlands default environment to work with new image support
15990
15991 Since the new image support checks for image overwriting, the default
15992 environment needs to get adjusted to use correct addresses.
15993
15994 Signed-off-by: Stefan Roese <sr@denx.de>
15995
15996 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
15997 Author: Stefan Roese <sr@denx.de>
15998 Date: Wed Apr 9 11:54:11 2008 +0200
15999
16000 ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
16001
16002 The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
16003 closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
16004 on 4xx systems _start currently cannot be used for this calculation.
16005 So revert back to the original version for now.
16006
16007 Signed-off-by: Stefan Roese <sr@denx.de>
16008
16009 commit f91374f65eae8b42cac329e06ba1c54728278efb
16010 Author: Michal Simek <monstr@monstr.eu>
16011 Date: Fri Mar 28 12:49:52 2008 +0100
16012
16013 microblaze: Sort microblaze boards in MAKEALL script
16014
16015 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
16016 Author: Michal Simek <monstr@monstr.eu>
16017 Date: Fri Mar 28 11:58:45 2008 +0100
16018
16019 microblaze: clean microblaze_config.mk
16020
16021 FLAGS are generated by U-BOOT generator.
16022 Board specific FLAGS are in board directory
16023
16024 Signed-off-by: Michal Simek <monstr@monstr.eu>
16025
16026 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
16027 Author: Michal Simek <monstr@monstr.eu>
16028 Date: Fri Mar 28 12:47:19 2008 +0100
16029
16030 microblaze: xupv2p fix config file for supporting FDT
16031
16032 commit 188dc16b189143573b1ed90e584bf866d75cdd12
16033 Author: Michal Simek <monstr@monstr.eu>
16034 Date: Fri Mar 28 11:53:02 2008 +0100
16035
16036 microblaze: ml401 fix config file for supporting FDT
16037
16038 Signed-off-by: Michal Simek <monstr@monstr.eu>
16039
16040 commit 4c6a6f02e239236261333759997eeaf86b30b54c
16041 Author: Michal Simek <monstr@monstr.eu>
16042 Date: Fri Mar 28 11:22:48 2008 +0100
16043
16044 microblaze: ml401 - add ifdef for GPIO
16045
16046 Signed-off-by: Michal Simek <monstr@monstr.eu>
16047
16048 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
16049 Author: Michal Simek <monstr@monstr.eu>
16050 Date: Fri Mar 28 12:13:03 2008 +0100
16051
16052 microblaze: clean uart16550 and uartlite handling
16053
16054 Signed-off-by: Michal Simek <monstr@monstr.eu>
16055
16056 commit 0b20f250877441460fb79d72192954abe8498834
16057 Author: Michal Simek <monstr@monstr.eu>
16058 Date: Fri Mar 28 11:08:31 2008 +0100
16059
16060 microblaze: Add Emaclite driver to Makefile
16061
16062 Signed-off-by: Michal Simek <monstr@monstr.eu>
16063
16064 commit 868cde5310f88234b774878e4f06e79df10a88b3
16065 Author: Michal Simek <monstr@monstr.eu>
16066 Date: Fri Mar 28 11:08:01 2008 +0100
16067
16068 microblaze: Add Emac driver to Makefile
16069
16070 Signed-off-by: Michal Simek <monstr@monstr.eu>
16071
16072 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
16073 Author: Michal Simek <monstr@monstr.eu>
16074 Date: Fri Mar 28 12:42:29 2008 +0100
16075
16076 microblaze: add Emac ethernet driver
16077
16078 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
16079 Author: Michal Simek <monstr@monstr.eu>
16080 Date: Fri Mar 28 12:41:56 2008 +0100
16081
16082 microblaze: add Emaclite ethernet driver
16083
16084 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
16085 Author: Michal Simek <monstr@monstr.eu>
16086 Date: Fri Mar 28 11:04:01 2008 +0100
16087
16088 microblaze: ML401 and XUPV2P remove emac and emaclite reference
16089
16090 Signed-off-by: Michal Simek <monstr@monstr.eu>
16091
16092 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
16093 Author: Michal Simek <monstr@monstr.eu>
16094 Date: Fri Mar 28 10:59:32 2008 +0100
16095
16096 microblaze: remove old setting for emac driver
16097
16098 Signed-off-by: Michal Simek <monstr@monstr.eu>
16099
16100 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
16101 Author: Michal Simek <monstr@monstr.eu>
16102 Date: Fri Mar 28 10:58:15 2008 +0100
16103
16104 microblaze: Clean Makefile from ancient emac driver
16105
16106 Signed-off-by: Michal Simek <monstr@monstr.eu>
16107
16108 commit ab68f921d9c741830f721c3d879c13a0c5597183
16109 Author: Daniel Hellstrom <daniel@gaisler.com>
16110 Date: Fri Mar 28 10:20:43 2008 +0100
16111
16112 SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
16113
16114 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16115
16116 commit 6ed8a43a19bb0275501bc286007daafa923552cf
16117 Author: Daniel Hellstrom <daniel@gaisler.com>
16118 Date: Wed Mar 26 23:38:48 2008 +0100
16119
16120 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.
16121
16122 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16123
16124 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
16125 Author: Daniel Hellstrom <daniel@gaisler.com>
16126 Date: Wed Mar 26 23:34:47 2008 +0100
16127
16128 SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
16129
16130 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16131
16132 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
16133 Author: Daniel Hellstrom <daniel@gaisler.com>
16134 Date: Fri Mar 28 10:06:52 2008 +0100
16135
16136 SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
16137
16138 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16139
16140 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
16141 Author: Daniel Hellstrom <daniel@gaisler.com>
16142 Date: Wed Mar 26 23:26:48 2008 +0100
16143
16144 SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
16145
16146 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16147
16148 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
16149 Author: Daniel Hellstrom <daniel@gaisler.com>
16150 Date: Fri Mar 28 10:00:33 2008 +0100
16151
16152 SPARC: Added support for SPARC LEON2 SOC Processor.
16153
16154 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16155
16156 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
16157 Author: Daniel Hellstrom <daniel@gaisler.com>
16158 Date: Wed Mar 26 23:00:38 2008 +0100
16159
16160 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.
16161
16162 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16163
16164 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
16165 Author: Daniel Hellstrom <daniel@gaisler.com>
16166 Date: Wed Mar 26 22:51:29 2008 +0100
16167
16168 SPARC: Added support for SPARC LEON3 SOC processor.
16169
16170 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16171
16172 commit bf3d8b31169546fcddb4737391e1893fb12d033a
16173 Author: Daniel Hellstrom <daniel@gaisler.com>
16174 Date: Fri Mar 28 08:29:26 2008 +0100
16175
16176 SPARC: added SPARC support for new uimage in common code.
16177
16178 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16179
16180 commit 00ab32c85405a4fe65fd4128243086210fc90a21
16181 Author: Daniel Hellstrom <daniel@gaisler.com>
16182 Date: Wed Mar 26 22:36:03 2008 +0100
16183
16184 SPARC: added SPARC board information to the command bdinfo.
16185
16186 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16187
16188 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
16189 Author: Daniel Hellstrom <daniel@gaisler.com>
16190 Date: Fri Mar 28 09:47:00 2008 +0100
16191
16192 SPARC: Added generic support for SPARC architecture.
16193
16194 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16195
16196 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
16197 Author: Stefan Roese <sr@denx.de>
16198 Date: Thu Apr 3 14:50:34 2008 +0200
16199
16200 ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
16201
16202 This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
16203 has 2 RGMII instances and we need to configure the 2nd RGMII instance
16204 for the EMAC2+3 channels.
16205
16206 Signed-off-by: Stefan Roese <sr@denx.de>
16207
16208 commit c2a545ce33b26d80337f80b533828839249fb1c9
16209 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16210 Date: Wed Apr 2 08:03:56 2008 +0200
16211
16212 MPC8xx: Fix libfdt support introduced in commit 77ff7b74
16213
16214 fdt.c: In function 'ft_cpu_setup':
16215 fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
16216 fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
16217 fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
16218 fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
16219
16220 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16221
16222 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
16223 Author: Andy Fleming <afleming@freescale.com>
16224 Date: Mon Mar 31 20:45:56 2008 -0500
16225
16226 Fix fdt set command to conform to dts spec
16227
16228 The fdt set command was treating properties specified as <00> and <0011>
16229 as byte streams, rather than as an array of cells. As we already have
16230 syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
16231 we should use the <> syntax to describe arrays of cells, which are always
16232 32-bits per element. If we imagine this likely (IMHO) scenario:
16233
16234 > fdt set /ethernet-phy@1 reg <1>
16235
16236 With the old code, this would create a bad fdt, since the reg cell would be
16237 made to be one byte in length. But the cell must be 4 bytes, so this would
16238 break mysteriously.
16239
16240 Also, the dts spec calls for constants inside the angle brackets (<>)
16241 to conform to C constant standards as they pertain to base.
16242 Take this scenario:
16243
16244 > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
16245
16246 The old fdt command would complain that it couldn't parse that. Or, if you
16247 wanted to specify that a certain clock ran at 33 MHz, you'd be required to
16248 do this:
16249
16250 > fdt set /mydev clock <1f78a40>
16251
16252 Whereas the new code will accept decimal numbers.
16253
16254 While I was in there, I extended the fdt command parser to handle property
16255 strings which are split across multiple arguments:
16256
16257 > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
16258 > fdt p /ethernet@f00
16259 ethernet@f00 {
16260 interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
16261 };
16262
16263 Lastly, the fdt print code was rearranged slightly to print arrays of cells
16264 if the length of the property is a multiple of 4 bytes, and to not print
16265 leading zeros.
16266
16267 Signed-off-by: Andy Fleming <afleming@freescale.com>
16268
16269 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
16270 Author: Stefan Roese <sr@denx.de>
16271 Date: Wed Apr 2 08:39:33 2008 +0200
16272
16273 ppc4xx: Canyonlands: Init SATA/PCIe port correctly
16274
16275 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
16276 interface. This usage can be configured with the jumper J6. This patch
16277 correctly configures the SATA/PCIe PHY for SATA usage when this jumper
16278 is installed.
16279
16280 Signed-off-by: Stefan Roese <sr@denx.de>
16281
16282 commit 6fe2946f198481254a6ee9600d7456b8316a4083
16283 Author: Kim Phillips <kim.phillips@freescale.com>
16284 Date: Fri Mar 28 17:37:49 2008 -0500
16285
16286 remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
16287
16288 finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
16289 "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
16290 started.
16291
16292 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16293
16294 commit b5873f1732b92a25690e1513b90dfb0d644f6697
16295 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16296 Date: Tue Apr 1 07:30:51 2008 +0200
16297
16298 dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
16299
16300 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16301
16302 commit 2d934ea51f276522b532f870a820e844ff480b5b
16303 Author: Tor Krill <tor@excito.com>
16304 Date: Fri Mar 28 15:29:45 2008 +0100
16305
16306 Add Vitesse 8601 support to TSEC driver
16307
16308 Add phy_info for Vitesse VSC8601.
16309 Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
16310
16311 Signed-off-by: Tor Krill <tor@excito.com>
16312 Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
16313 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16314
16315 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
16316 Author: Daniel Hellstrom <daniel@gaisler.com>
16317 Date: Mon Mar 31 14:25:00 2008 +0000
16318
16319 SPARC: added SMC91111 driver in and out macros for LEON processors.
16320
16321 This patch makes SPARC/LEON processors able to read and write
16322 to the SMC91111 chip using the chip external I/O bus of the memory
16323 controller. This patchs defines the standard in and out macros
16324 expected by the SMC9111 driver.
16325
16326 To access that I/O bus one must set up the memory controller
16327 (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
16328 up this correctly when the other MCTRL parameters are set up. It
16329 can be set up from the board configuration header file.
16330
16331 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16332 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16333
16334 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
16335 Author: Stelian Pop <stelian@popies.net>
16336 Date: Wed Mar 26 18:52:34 2008 +0100
16337
16338 Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
16339
16340 Signed-off-by: Stelian Pop <stelian@popies.net>
16341
16342 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
16343 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16344 Date: Mon Mar 31 21:31:04 2008 +0200
16345
16346 AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
16347
16348 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16349
16350 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
16351 Author: Stelian Pop <stelian@popies.net>
16352 Date: Wed Mar 26 18:52:33 2008 +0100
16353
16354 Add support for AT91SAM9260EK
16355
16356 Support for booting from internal DataFlash, external DataFlash card
16357 or NAND flash is available.
16358
16359 Signed-off-by: Stelian Pop <stelian@popies.net>
16360
16361 commit 1762f13b4aab88b685b1722f17dada247945624b
16362 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16363 Date: Mon Mar 31 21:20:49 2008 +0200
16364
16365 AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
16366
16367 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16368
16369 commit 761712188b353494defb2b644491ff73d0daaa6f
16370 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16371 Date: Mon Mar 31 21:12:17 2008 +0200
16372
16373 AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
16374
16375 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16376
16377 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
16378 Author: Stelian Pop <stelian@popies.net>
16379 Date: Wed Mar 26 20:52:32 2008 +0100
16380
16381 Port AT91CAP9 to the new headers
16382
16383 Adapt the existing AT91CAP9 code to the new headers and APIs.
16384
16385 Signed-off-by: Stelian Pop <stelian@popies.net>
16386
16387 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
16388 Author: Stelian Pop <stelian@popies.net>
16389 Date: Wed Mar 26 19:52:31 2008 +0100
16390
16391 Finish header files reworking
16392
16393 Replace AT91CAP9.h file with several splitted header files coming
16394 from the Linux kernel.
16395
16396 This is part 2 of the replacement: more header imports and edits.
16397
16398 Signed-off-by: Stelian Pop <stelian@popies.net>
16399
16400 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
16401 Author: Stelian Pop <stelian@popies.net>
16402 Date: Wed Mar 26 19:52:30 2008 +0100
16403
16404 Import several header files from Linux
16405
16406 Replace AT91CAP9.h file with several splitted header files coming
16407 from the Linux kernel.
16408
16409 This is part 1 of the replacement: pristine header files import.
16410
16411 Signed-off-by: Stelian Pop <stelian@popies.net>
16412
16413 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
16414 Author: Stelian Pop <stelian@popies.net>
16415 Date: Wed Mar 26 20:52:28 2008 +0100
16416
16417 Move at91cap9 specific files to at91sam9 directory
16418
16419 AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
16420 common infrastructure can be used. Let this infrastructure be
16421 named after the AT91SAM9 family, and move the existing AT91CAP9
16422 files to the new place.
16423
16424 Signed-off-by: Stelian Pop <stelian@popies.net>
16425
16426 commit 61106a565870ff503f92b251b94bd7afef889a04
16427 Author: Stelian Pop <stelian@popies.net>
16428 Date: Wed Mar 26 21:52:27 2008 +0100
16429
16430 Use timer_init() instead of board supplied interrupt_init()
16431
16432 The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
16433 the board, so use timer_init() instead of interrupt_init().
16434
16435 Signed-off-by: Stelian Pop <stelian@popies.net>
16436
16437 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
16438 Author: Stelian Pop <stelian@popies.net>
16439 Date: Wed Mar 26 21:52:36 2008 +0100
16440
16441 Cleanup DataFlash partition handling
16442
16443 DataFlash partition information has become a mess. This patch
16444 defines a single partition scheme for Atmel DataFlashes. This partition
16445 scheme will be used by all AT91CAP9 and AT91SAM9 boards.
16446
16447 Signed-off-by: Stelian Pop <stelian@popies.net>
16448
16449 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
16450 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16451 Date: Fri Mar 28 08:47:45 2008 -0500
16452
16453 ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
16454
16455 When the version_string function in start.S is not 4-byte align,
16456 it will cause the compiler generates "unaligned opcodes detected
16457 in executable segment". This issue affects all ColdFire CPUs.
16458 By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
16459 it is not aligned.
16460
16461 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16462 Acked-by: John Rigby <jrigby@freescale.com>
16463
16464 commit bae61eefe15b4d454060a7140e49ae58322be803
16465 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16466 Date: Tue Mar 25 15:41:15 2008 -0500
16467
16468 ColdFire: Add dspi and serial flash support for MCF5445x
16469
16470 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16471 Acked-by: John Rigby <jrigby@freescale.com>
16472
16473 commit 48ead7a7a922fceaf494e352abfab8216a41b417
16474 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16475 Date: Tue Mar 18 17:37:01 2008 -0500
16476
16477 ColdFire: Remove R5200 board
16478
16479 This board never went into production
16480
16481 Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
16482 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16483 Acked-by: John Rigby <jrigby@freescale.com>
16484
16485 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
16486 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
16487 Date: Thu Jan 24 14:02:32 2008 -0600
16488
16489 ColdFire: Added M5275EVB support.
16490
16491 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
16492 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16493 Acked-by: John Rigby <jrigby@freescale.com>
16494
16495 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
16496 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
16497 Date: Mon Feb 4 15:38:20 2008 -0600
16498
16499 ColdFire: Added MCF5275 cpu support.
16500
16501 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
16502 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16503 Acked-by: John Rigby <jrigby@freescale.com>
16504
16505 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
16506 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16507 Date: Mon Mar 17 12:14:11 2008 -0500
16508
16509 ColdFire: Define bootdelay in configuration file for M52277EVB
16510
16511 Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
16512 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16513 Acked-by: John Rigby <jrigby@freescale.com>
16514
16515 commit 77878f16cedee17161ff2336990970fffc6cea35
16516 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16517 Date: Mon Mar 17 12:09:07 2008 -0500
16518
16519 ColdFire: Fix second memory Chipselect for M5475EVB
16520
16521 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16522 Acked-by: John Rigby <jrigby@freescale.com>
16523
16524 commit 43d60642395a550956cb21d287c8cfa563913d28
16525 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16526 Date: Thu Mar 13 14:26:32 2008 -0500
16527
16528 ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
16529
16530 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16531 Acked-by: John Rigby <jrigby@freescale.com>
16532
16533 commit eb14ebe813a0cb5d47905228da446a5ad692473b
16534 Author: Larry Johnson <lrj@acm.org>
16535 Date: Sun Mar 30 20:33:04 2008 -0500
16536
16537 ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
16538
16539 Signed-off-by: Larry Johnson <lrj@acm.org>
16540
16541 commit 02e3892021112f21067d9ed1d04ae4182725ba52
16542 Author: Stefan Roese <sr@denx.de>
16543 Date: Mon Mar 31 12:20:48 2008 +0200
16544
16545 ppc4xx: Small whitespace fix of esd patches
16546
16547 Signed-off-by: Stefan Roese <sr@denx.de>
16548
16549 commit 034394abb524785047c815f00dde8cdbdc1593c5
16550 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16551 Date: Sun Mar 30 18:52:44 2008 +0200
16552
16553 ppc4xx: Cleanup PMC440 board support
16554
16555 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16556
16557 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
16558 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16559 Date: Sun Mar 30 18:52:06 2008 +0200
16560
16561 ppc4xx: Add ptm configuration variables for PMC440
16562
16563 Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
16564 environment variables.
16565
16566 Cleanup pci_target_init.
16567
16568 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16569
16570 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
16571 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16572 Date: Sun Mar 30 18:01:15 2008 +0200
16573
16574 ppc4xx: Minor updates for DU440 boards
16575
16576 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16577
16578 commit d5bffeb868d6b4d462f558dac43011027b6644b7
16579 Author: Mike Frysinger <vapier@gentoo.org>
16580 Date: Tue Feb 19 00:54:20 2008 -0500
16581
16582 Blackfin: cleanup and overhaul common board init functions
16583
16584 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16585
16586 commit b86b3416f874358acaf07519e7620cdb2145f75b
16587 Author: Mike Frysinger <vapier@gentoo.org>
16588 Date: Tue Feb 19 00:50:58 2008 -0500
16589
16590 Blackfin: cleanup lib_blackfin/cache.c
16591
16592 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16593
16594 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
16595 Author: Mike Frysinger <vapier@gentoo.org>
16596 Date: Sun Mar 30 15:46:13 2008 -0400
16597
16598 Blackfin: unify cpu and boot modes
16599
16600 All of the duplicated code for Blackfin processors and boot modes have been
16601 unified. After all, the core is the same for all processors, just the
16602 peripheral set differs (which gets handled in the drivers).
16603
16604 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16605
16606 commit 880cc4381ea8360248cddcdf87a64566745a5724
16607 Author: Stelian Pop <stelian@popies.net>
16608 Date: Wed Mar 26 22:52:35 2008 +0100
16609
16610 Fix CFG_NO_FLASH compilation.
16611
16612 Many Atmel boards have no "real" (NOR) flash on board, and rely only
16613 on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
16614 be present in a board configuration file, while still enabling flash
16615 commands like 'flinfo', 'protect', etc.
16616
16617 Signed-off-by: Stelian Pop <stelian@popies.net>
16618
16619 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
16620 Author: Mike Frysinger <vapier@gentoo.org>
16621 Date: Tue Feb 19 00:58:13 2008 -0500
16622
16623 Blackfin: BF537-stamp: cleanup spi flash driver
16624
16625 This punts the old spi flash driver for a new/generalized one until the
16626 common one can be integrated.
16627
16628 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16629
16630 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
16631 Author: Ben Warren <biggerbadderben@gmail.com>
16632 Date: Sun Mar 30 11:34:34 2008 -0400
16633
16634 Fix macro typo in common/cmd_mii.c
16635
16636 This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206. I
16637 actually applied the wrong patch.
16638
16639 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16640
16641 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
16642 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16643 Date: Sun Mar 30 16:39:53 2008 +0200
16644
16645 use correct at91rm9200 register name in m501sk board
16646
16647 This fixes a naming bug for at91rm9200 lowlevel init code:
16648 NOR boot flash is on chipselect 0, not chipselect 2. This
16649 makes code use the register name from chip datasheets.
16650
16651 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16652
16653 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
16654 Author: David Brownell <david-b@pacbell.net>
16655 Date: Fri Jan 18 12:55:00 2008 -0800
16656
16657 use correct at91rm9200 register name
16658
16659 This fixes a naming bug for at91rm9200 lowlevel init code:
16660 NOR boot flash is on chipselect 0, not chipselect 2. This
16661 makes code use the register name from chip datasheets.
16662
16663 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
16664
16665 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
16666 Author: David Brownell <david-b@pacbell.net>
16667 Date: Fri Jan 18 12:45:45 2008 -0800
16668
16669 add missing ARM boards to MAKEALL
16670
16671 Add some missing ARM boards to MAKEALL. These build correctly,
16672 unlike several of the boards already listed.
16673
16674 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
16675
16676 commit 066bebd6353e33af3adefc3404560871699e9961
16677 Author: Peter Pearse <peter.pearse@arm.com>
16678 Date: Sun Mar 30 11:34:09 2008 +0100
16679
16680 Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
16681 to prevent compilation error.
16682
16683 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
16684
16685 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
16686 Author: Guennadi Liakhovetski <[lg@denx.de]>
16687 Date: Sun Mar 30 11:32:30 2008 +0100
16688
16689 Support for the MX31ADS evaluation board from Freescale
16690
16691 This patch adds support for the MX31ADS evaluation board from Freescale,
16692 initialization code is copied from RedBoot sources, also provided by Freescale.
16693
16694 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16695
16696 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
16697 Author: Sascha Hauer <s.hauer@pengutronix.de>
16698 Date: Sun Mar 30 11:32:27 2008 +0100
16699
16700 Phytec Phycore-i.MX31 support
16701
16702 This patch adds support for the Phytec Phycore-i.MX31 board
16703
16704 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16705 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16706
16707 commit a147e56f03871bba4f05058d5e04ce7deb010b04
16708 Author: Sascha Hauer <s.hauer@pengutronix.de>
16709 Date: Sun Mar 30 11:32:24 2008 +0100
16710
16711 mx31 litekit support
16712
16713 This patch adds support for the mx31 litekit board
16714
16715 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16716 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16717
16718 commit d6674e0e2a6a1f033945f78838566210d3f28c95
16719 Author: Sascha Hauer <s.hauer@pengutronix.de>
16720 Date: Sun Mar 30 11:32:21 2008 +0100
16721
16722 add SMSC LAN9x1x Network driver
16723
16724 This patch adds a driver for the following smsc network controllers:
16725 LAN9115
16726 LAN9116
16727 LAN9117
16728 LAN9215
16729 LAN9216
16730 LAN9217
16731
16732 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16733 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16734
16735 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
16736 Author: Sascha Hauer <s.hauer@pengutronix.de>
16737 Date: Sun Mar 30 11:32:16 2008 +0100
16738
16739 add an i2c driver for mx31
16740
16741 This patch adds an i2c driver for Freescale i.MX processors
16742
16743 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16744 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16745
16746 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
16747 Author: Sascha Hauer <s.hauer@pengutronix.de>
16748 Date: Sun Mar 30 11:30:43 2008 +0100
16749
16750 core support for Freescale mx31
16751
16752 This patch adds the core support for Freescale mx31
16753
16754 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16755 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16756
16757 commit 8bf69d81782619187933a605f1a95ee1d069478d
16758 Author: Sascha Hauer <s.hauer@pengutronix.de>
16759 Date: Sun Mar 30 11:28:46 2008 +0100
16760
16761 Separate omap24xx specific code from arm1136
16762
16763 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
16764
16765 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16766 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16767
16768 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
16769 Author: Peter Pearse <peter.pearse@arm.com>
16770 Date: Sun Mar 30 11:23:05 2008 +0100
16771
16772 Add pmdra into MAKEALL
16773
16774 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
16775
16776 commit a574a73852a527779234e73e17e7597fd8128882
16777 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
16778 Date: Sun Mar 30 11:21:58 2008 +0100
16779
16780 Adds support for the Prodrive PMDRA board, based on a DM6441
16781
16782 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
16783
16784 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
16785 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
16786 Date: Sun Mar 30 11:11:34 2008 +0100
16787
16788 Removes all board specific code from the arch. part for DM644x (DaVinci) boards
16789
16790 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
16791
16792 commit 1704dc20917b4f71e373e2c888497ee666d40380
16793 Author: Dirk Behme <dirk.behme@gmail.com>
16794 Date: Sun Mar 30 11:09:01 2008 +0100
16795
16796 - Remove *_masked() functions as noted by Wolfgang
16797 - Adapt register naming to recent TI spec (sprue26, March 2007)
16798 - Fix reset_timer() handling
16799 - As reported by Pieter [1] the overflow fix introduced a
16800 delay of factor 16 (e.g 2 seconds became 32). While the
16801 overflow fix is basically okay, it missed to divide udelay by
16802 16, too. Fix this.
16803 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
16804 - Remove software division of timer count value (DIV(x)
16805 macro) and do it in hardware (TIM_CLK_DIV).
16806 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
16807 and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
16808 the hints & testing!
16809
16810 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
16811
16812 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
16813
16814 commit ac3315c26e143c31680750c9c13f027efbcc887e
16815 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16816 Date: Thu Mar 6 16:45:44 2008 +0100
16817
16818 new PHY @ e1000 - 2nd try
16819
16820 Add 82541ER device with latest integrated IGP2 PHY.
16821 Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
16822
16823 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16824 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16825
16826 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
16827 Author: Daniel Hellstrom <daniel@gaisler.com>
16828 Date: Fri Mar 28 20:22:53 2008 +0100
16829
16830 SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
16831
16832 GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
16833 a debug link (EDCL). The GRETH core is documented in GRIP.pdf
16834 available at www.gaisler.com.
16835
16836 If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
16837 offloading etc.) can be determined by a bit in the control register.
16838 The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
16839
16840 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16841 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16842
16843 commit 233a8bcd94997f3f345833a3b82e836222f2a206
16844 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
16845 Date: Mon Mar 17 17:08:22 2008 -0500
16846
16847 Add CONFIG_MII_INIT in cmd_mii.c
16848
16849 Provide common configuration in do_mii() to execute mii_init()
16850 for all cpu architectures
16851
16852 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16853 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16854
16855 commit f605479de2deb11e834f31dfdb0af107c86aced6
16856 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
16857 Date: Mon Mar 17 17:08:16 2008 -0500
16858
16859 ColdFire: Fix FEC transmit issue for MCF5275
16860
16861 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16862 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16863
16864 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
16865 Author: Aras Vaichas <arasv@magtech.com.au>
16866 Date: Wed Mar 26 09:43:57 2008 +1100
16867
16868 DHCP request fix for Windows Server 2003
16869
16870 Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
16871 delay before sending "DHCP Request" in net/bootp.c. Required to overcome
16872 interoperability problems with Windows Server 200x DHCP server when U-Boot
16873 client responds too fast for server to handle.
16874
16875 Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
16876 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16877
16878 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
16879 Author: Daniel Hellstrom <daniel@gaisler.com>
16880 Date: Fri Mar 28 20:40:19 2008 +0100
16881
16882 MTD/CFI: flash_read64 is defined a weak function (for SPARC)
16883
16884 SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
16885 SPARC CPUs implement flash_read64 which calls __raw_readq.
16886
16887 For current SPARC architectures (LEON2 and LEON3) each read from the
16888 FLASH must lead to a cache miss. This is because FLASH can not be set
16889 non-cacheable since program code resides there, and alternatively disabling
16890 cache is poor from performance view, or doing a cache flush between each
16891 read is even poorer.
16892
16893 Forcing a cache miss on a SPARC is done by a special instruction "lda" -
16894 load alternative space, the alternative space number (ASI) is processor
16895 implementation spcific and can be found by including <asm/processor.h>.
16896
16897 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16898
16899 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
16900 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
16901 Date: Fri Mar 28 15:41:25 2008 +0100
16902
16903 Make MPC83xx one step closer to full relocation.
16904
16905 Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
16906 and use GOT relative reference.
16907
16908 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
16909 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16910
16911 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
16912 Author: Michael Barkowski <michael.barkowski@freescale.com>
16913 Date: Thu Mar 27 14:34:43 2008 -0400
16914
16915 mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
16916
16917 This patch fixes eeprom page size so that you can now write more than
16918 64 bytes at a time.
16919
16920 It also makes the board take MAC addresses, if found, from EEPROM.
16921
16922 User should place up to 4 addresses at offset 0x7f00, for
16923 eth{,1,2,3}addr. Any unused addresses should be zero. This group of
16924 four six-byte values should have it's CRC at the end. crc32 and
16925 eeprom commands can be used to accomplish this.
16926
16927 If CRC fails, MAC addresses come from the environment. If CRC
16928 succeeds, the environment is overwritten at startup.
16929
16930 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
16931 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16932
16933 commit 8f325cff31f6e745e6540014b131b9a97f61944c
16934 Author: Michael Barkowski <michael.barkowski@freescale.com>
16935 Date: Fri Mar 28 15:15:38 2008 -0400
16936
16937 mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
16938
16939 Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
16940 controller on the PCI bus in Linux on the MPC8323ERDB.
16941
16942 This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
16943 config file.
16944
16945 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
16946 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16947
16948 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
16949 Author: Kim Phillips <kim.phillips@freescale.com>
16950 Date: Fri Mar 28 10:19:07 2008 -0500
16951
16952 mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
16953
16954 in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
16955 85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
16956 and processor ID display. Add REVID_{MAJ,MIN}OR macros to make
16957 REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR
16958 convenience macros.
16959
16960 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16961
16962 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
16963 Author: Kim Phillips <kim.phillips@freescale.com>
16964 Date: Fri Mar 28 10:18:53 2008 -0500
16965
16966 mpc83xx: display ddr frequency in board_add_ram_info banner
16967
16968 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16969
16970 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
16971 Author: Kim Phillips <kim.phillips@freescale.com>
16972 Date: Fri Mar 28 10:18:40 2008 -0500
16973
16974 mpc83xx: unreinvent mem_clk
16975
16976 delete ddr_clk and use mem_clk instead. Rename other ddr_*_clk to
16977 mem_*_clk for consistency's sake.
16978
16979 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16980
16981 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
16982 Author: Kim Phillips <kim.phillips@freescale.com>
16983 Date: Fri Mar 28 14:31:23 2008 -0500
16984
16985 mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
16986
16987 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16988
16989 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
16990 Author: Dave Liu <r63238@freescale.com>
16991 Date: Wed Mar 26 22:57:19 2008 +0800
16992
16993 mpc83xx: enable the SATA interface on mpc837xemds board
16994
16995 Enable the first two SATA interfaces on MPC837xEMDS board,
16996 The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
16997
16998 Signed-off-by: Dave Liu <daveliu@freescale.com>
16999 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17000
17001 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
17002 Author: Dave Liu <r63238@freescale.com>
17003 Date: Wed Mar 26 22:56:36 2008 +0800
17004
17005 mpc83xx: initialize serdes for MPC837xEMDS boards
17006
17007 This patch is stolen from Anton Vorontsov's patch
17008 for mpc837xerdb boards.
17009
17010 The reference clk and xcorevdd voltage of serdes1/2
17011 is same between mpc837xemds and mpc837xerdb.
17012
17013 8377E: LYNX1- 2 SATA LYNX2- 2 PCIE
17014 8378E: LYNX1- 2 SGMII LYNX2- 2 PCIE
17015 8379E: LYNX1- 2 SATA LYNX2- 2 SATA
17016
17017 Signed-off-by: Dave Liu <daveliu@freescale.com>
17018 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17019
17020 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
17021 Author: Stefan Roese <sr@denx.de>
17022 Date: Fri Mar 28 14:09:04 2008 +0100
17023
17024 ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
17025
17026 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
17027 interface. This usage can be configured with the jumper J6. This patch
17028 displays the current configuration upon bootup and changes the PCIe
17029 init loop, to only initialize the availabel PCIe slots.
17030
17031 Signed-off-by: Stefan Roese <sr@denx.de>
17032
17033 commit 90447ecbbac8572457b6d8903073ac3f120995ba
17034 Author: Tor Krill <tor@excito.com>
17035 Date: Fri Mar 28 11:29:10 2008 +0100
17036
17037 MTD/CFI: Add support for 16bit legacy AMD flash
17038
17039 Add entry for 512Kx16 AMD flash to jedec_table.
17040 Read out 16bit device id if chipwidth is 16bit.
17041 Fixed coding style after Stefans feedback
17042
17043 Signed-off-by: Tor Krill <tor@excito.com>
17044
17045 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
17046 Author: Stefan Roese <sr@denx.de>
17047 Date: Fri Mar 28 11:02:53 2008 +0100
17048
17049 ppc: Small change to CFG_MEM_TOP_HIDE description
17050
17051 Signed-off-by: Stefan Roese <sr@denx.de>
17052
17053 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
17054 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17055 Date: Thu Mar 27 15:44:12 2008 +0900
17056
17057 sh: Add support stat structure and stat.h
17058
17059 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17060
17061 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
17062 Author: Mark Jonas <toertel@gmail.com>
17063 Date: Sat Mar 22 19:27:52 2008 +0100
17064
17065 sh: Removed warning when compiling drivers/serial/serial_sh.c.
17066
17067 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
17068 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17069
17070 commit f309fa38929ffba71230c02330ffa42f4bba6333
17071 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17072 Date: Wed Mar 12 18:02:57 2008 +0900
17073
17074 sh: Remove disable_ctrlc function from R7780MP
17075
17076 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17077
17078 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
17079 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17080 Date: Wed Mar 12 17:55:15 2008 +0900
17081
17082 sh: Add maintainer of R7780MP to MAINTAINER file
17083
17084 Update MAINTAINER entry for R7780MP. And fix maintainer's name.
17085
17086 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17087
17088 commit f5e2466f7baa887a7df0c536333eea8231333497
17089 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17090 Date: Tue Mar 25 17:11:24 2008 +0900
17091
17092 sh: Add support Renesas Solutions R2D plus board
17093
17094 R2D plus is SH reference board used with SH7751R.
17095 This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
17096 one PCI bus, VGA, and two Ethernet controller.
17097
17098 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17099
17100 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
17101 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17102 Date: Wed Mar 12 12:15:29 2008 +0900
17103
17104 sh: Add support SH4 cache control
17105
17106 Add support SH4 cache control and flash_cache function
17107
17108 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17109
17110 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
17111 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17112 Date: Mon Mar 24 01:53:01 2008 +0900
17113
17114 sh: Add support PCI host driver for SH7751/SH7751R
17115
17116 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17117
17118 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
17119 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17120 Date: Mon Mar 24 02:11:26 2008 +0900
17121
17122 sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
17123
17124 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17125
17126 commit 566933278101c144d75361ea682678a326c1290d
17127 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17128 Date: Wed Mar 12 12:10:28 2008 +0900
17129
17130 sh: Add support SuperH SH7751/SH7751R
17131
17132 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17133
17134 commit 3313e0e26224fc9a0c445124f3455058c696df84
17135 Author: Mark Jonas <toertel@gmail.com>
17136 Date: Mon Mar 10 11:37:10 2008 +0100
17137
17138 sh: Added support for SH7720 based board MPR2.
17139
17140 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
17141 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17142
17143 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
17144 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17145 Date: Thu Mar 6 14:05:53 2008 +0900
17146
17147 sh: Fix receive FIFO level register of SH4A
17148
17149 Receive FIFO level register is different in SH4A.
17150 Because register is different, cannot occasionally receive data.
17151
17152 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17153
17154 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
17155 Author: Yusuke Goda <goda.yusuke@renesas.com>
17156 Date: Tue Mar 11 12:55:12 2008 +0900
17157
17158 sh: Add support Renesas Solutions R7780MP
17159
17160 Renesas Solutions R7780MP is a reference board on SH7780.
17161 This board has serial, 10/100 base Ethernet deivice, CF slot
17162 and VGA devices. This board can set extension board.
17163 Extension board has 10/100/1000 base Ethernet device, PCI slot,
17164 S-ATA, iDVR slot.
17165
17166 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
17167 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17168
17169 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
17170 Author: Yusuke Goda <goda.yusuke@renesas.com>
17171 Date: Wed Mar 5 14:30:02 2008 +0900
17172
17173 sh: Add support PCI of SuperH and SH7780
17174
17175 This patch add support PCI of SuperH base code and SH7780 specific code.
17176
17177 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
17178 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17179
17180 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
17181 Author: Yusuke Goda <goda.yusuke@renesas.com>
17182 Date: Wed Mar 5 14:23:26 2008 +0900
17183
17184 sh: Add support SH7780
17185
17186 SH7780 is CPU of Renesas Technology.
17187 This CPU has
17188 - CPU clock 400MHz
17189 - PCI support
17190 - DDR-SDRAM controller
17191 - etc ...
17192
17193 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
17194 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17195
17196 commit c2042f5952a686c414031309b8f244513bf578f0
17197 Author: goda.yusuke <goda.yusuke@renesas.com>
17198 Date: Fri Jan 25 20:46:36 2008 +0900
17199
17200 sh: Add support Renesas Solutions Migo-R board
17201
17202 Migo-R is a board based on SH7722 and has may devices.
17203 In this patch, supported SCIF, NOR flash and Ethernet.
17204
17205 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
17206 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17207
17208 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
17209 Author: Bartlomiej Sieka <tur@semihalf.com>
17210 Date: Thu Mar 27 15:06:40 2008 +0100
17211
17212 Fix host tool build breakage, take two
17213
17214 Revert commit 87c8431f and fix build breakage so that the build continues
17215 to work on FC systems.
17216
17217 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
17218
17219 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
17220 Author: Stefan Roese <sr@denx.de>
17221 Date: Wed Mar 19 09:36:47 2008 +0100
17222
17223 ppc4xx: Enable ECC on LWMON5
17224
17225 Since all ECC related problems seem to be resolved on LWMON5, this patch
17226 now enables ECC support.
17227
17228 We have to write the ECC bytes by zeroing and flushing in smaller
17229 steps, since the whole 256MByte takes too long for the external
17230 watchdog.
17231
17232 Signed-off-by: Stefan Roese <sr@denx.de>
17233
17234 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
17235 Author: Larry Johnson <lrj@acm.org>
17236 Date: Mon Mar 17 11:10:35 2008 -0500
17237
17238 ppc4xx: Updates to Korat-specific code
17239
17240 This patch contains updates for changes for the Korat PPC440EPx board.
17241 These changes include:
17242
17243 (1) Support for "permanent" and "upgradable" copies of U-Boot, as
17244 described in the new "doc/README.korat" file;
17245
17246 (2) a new memory map for the registers in the board's CPLD;
17247
17248 (3) a revised format for manufacturer's data in serial EEPROM; and
17249
17250 (4) changes to track updates to U-Boot for the Sequoia board.
17251
17252 Signed-off-by: Larry Johnson <lrj@acm.org>
17253
17254 commit f766cdf89b3a2a7634b8c5869f606150e332036c
17255 Author: Markus Brunner <super.firetwister@gmail.com>
17256 Date: Thu Mar 27 10:46:25 2008 +0100
17257
17258 ppc4xx: PPC405EP Set EMAC noise filter bits
17259
17260 This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
17261 which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
17262 disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
17263
17264 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
17265 Signed-off-by: Stefan Roese <sr@denx.de>
17266
17267 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
17268 Author: Mike Nuss <mike@terascala.com>
17269 Date: Wed Feb 20 11:54:20 2008 -0500
17270
17271 ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
17272
17273 On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
17274 after startup to change the speed of the clocks. This patch adds the
17275 option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
17276 initialization code will reconfigure the PLL to run the system with a CPU
17277 frequency of 667MHz and PLB frequency of 166MHz, without the need for an
17278 external EEPROM.
17279
17280 Signed-off-by: Mike Nuss <mike@terascala.com>
17281 Acked-by: Stefan Roese <sr@denx.de>
17282
17283 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
17284 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17285 Date: Thu Mar 27 09:12:40 2008 +0100
17286
17287 new-image: Fix host tool build breakage
17288
17289 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17290
17291 commit 6fb4b640562a10daff0dbe537638d511b5b48650
17292 Author: Stefan Roese <sr@denx.de>
17293 Date: Thu Mar 27 10:24:03 2008 +0100
17294
17295 ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
17296
17297 Signed-off-by: Stefan Roese <sr@denx.de>
17298
17299 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
17300 Author: Stefan Roese <sr@denx.de>
17301 Date: Wed Mar 19 10:23:43 2008 +0100
17302
17303 ppc4xx: Add fdt support to Prodrive alpr
17304
17305 Since this board will probably be ported to arch/powerpc in the
17306 near future, we add device tree support now. This way we are
17307 "ready" for arch/powerpc from now on.
17308
17309 Signed-off-by: Stefan Roese <sr@denx.de>
17310
17311 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
17312 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
17313 Date: Mon Mar 17 09:27:56 2008 +0100
17314
17315 ppc4xx: Enable cache support on the ALPR board
17316
17317 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
17318
17319 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
17320 Author: Stefan Roese <sr@denx.de>
17321 Date: Wed Mar 26 10:14:11 2008 +0100
17322
17323 ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
17324
17325 If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
17326 memory area will get subtracted from the top (end) of ram and won't get
17327 "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
17328 should gets passed the now "corrected" memory size and won't touch it
17329 either. This should work for arch/ppc and arch/powerpc. Only Linux board
17330 ports in arch/powerpc with bootwrapper support, which recalculate the
17331 memory size from the SDRAM controller setup, will have to get fixed
17332 in Linux additionally.
17333
17334 This patch enables this config option on some PPC440EPx boards as a workaround
17335 for the CHIP 11 errata. Here the description from the AMCC documentation:
17336
17337 CHIP_11: End of memory range area restricted access.
17338 Category: 3
17339
17340 Overview:
17341 The 440EPx DDR controller does not acknowledge any
17342 transaction which is determined to be crossing over the
17343 end-of-memory-range boundary, even if the starting address is
17344 within valid memory space. Any such transaction from any PLB4
17345 master will result in a PLB time-out on PLB4 bus.
17346
17347 Impact:
17348 In case of such misaligned bursts, PLB4 masters will not
17349 retrieve any data at all, just the available data up to the
17350 end of memory, especially the 440 CPU. For example, if a CPU
17351 instruction required an operand located in memory within the
17352 last 7 words of memory, the DCU master would burst read 8
17353 words to update the data cache and cross over the
17354 end-of-memory-range boundary. Such a DCU read would not be
17355 answered by the DDR controller, resulting in a PLB4 time-out
17356 and ultimately in a Machine Check interrupt. The data would
17357 be inaccessible to the CPU.
17358
17359 Workaround:
17360 Forbid any application to access the last 256 bytes of DDR
17361 memory. For example, make your operating system believe that
17362 the last 256 bytes of DDR memory are absent. AMCC has a patch
17363 that does this, available for Linux.
17364
17365 This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
17366 lwmon5, korat, sequoia
17367
17368 The other remaining 440EPx board were intentionally not included
17369 since it is not clear to me, if they use the end of ram for some
17370 other purpose. This is unclear, since these boards have CONFIG_PRAM
17371 defined and even comments like this:
17372
17373 PMC440.h:
17374 /* esd expects pram at end of physical memory.
17375 * So no logbuffer at the moment.
17376 */
17377
17378 It is strongly recommended to not use the last 256 bytes on those
17379 boards too. Patches from the board maintainers are welcome.
17380
17381 Signed-off-by: Stefan Roese <sr@denx.de>
17382
17383 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
17384 Author: Stefan Roese <sr@denx.de>
17385 Date: Thu Mar 27 10:09:05 2008 +0100
17386
17387 ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
17388
17389 Signed-off-by: Stefan Roese <sr@denx.de>
17390
17391 commit d56a3ce179688cde61073a3690e21703d68fafd7
17392 Author: Stefan Roese <sr@denx.de>
17393 Date: Tue Mar 25 17:51:13 2008 +0100
17394
17395 ppc4xx: Correctly pass phyiscal FLASH base address into dtb
17396
17397 The routine ft_board_setup() configures the EBC NOR mappings for the
17398 Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
17399 0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
17400 problem, we need to pass the corrected address here too.
17401
17402 Signed-off-by: Stefan Roese <sr@denx.de>
17403
17404 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
17405 Author: Stefan Roese <sr@denx.de>
17406 Date: Wed Mar 19 16:35:12 2008 +0100
17407
17408 ppc4xx: Fix compilation warning in 4xx_enet.c
17409
17410 Signed-off-by: Stefan Roese <sr@denx.de>
17411
17412 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
17413 Author: Stefan Roese <sr@denx.de>
17414 Date: Wed Mar 19 16:20:49 2008 +0100
17415
17416 ppc4xx: Add AMCC Glacier 406GT eval board support
17417
17418 This patch adds support for the AMCC Glacier 460GT eval board.
17419 The main difference to the Canyonlands board are listed here:
17420
17421 - 4 ethernet ports instead of 2
17422 - no SATA port
17423 - no USB port
17424
17425 Currently EMAC2+3 are not working. This will be fixed in a later
17426 release.
17427
17428 Signed-off-by: Stefan Roese <sr@denx.de>
17429
17430 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
17431 Author: Stefan Roese <sr@denx.de>
17432 Date: Thu Mar 27 08:47:26 2008 +0100
17433
17434 ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
17435
17436 Signed-off-by: Stefan Roese <sr@denx.de>
17437
17438 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
17439 Author: Anatolij Gustschin <agust@denx.de>
17440 Date: Wed Mar 26 21:05:43 2008 +0100
17441
17442 Fix out of tree building issue
17443
17444 Currently U-Boot building in some external directory
17445 doesn't work. This patch tries to fix the problem.
17446
17447 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17448
17449 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
17450 Author: Anatolij Gustschin <agust@denx.de>
17451 Date: Wed Mar 26 18:13:33 2008 +0100
17452
17453 README: update documentation (availability, links, etc.)
17454
17455 Fix typo in README
17456
17457 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17458
17459 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
17460 Author: Anatolij Gustschin <agust@denx.de>
17461 Date: Wed Mar 26 17:47:44 2008 +0100
17462
17463 Fix compilation error in cmd_usb.c
17464
17465 This patch fixes compilation error
17466 cmd_usb.c: In function 'do_usb':
17467 cmd_usb.c:552: error: void value not ignored as it ought to be
17468
17469 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17470
17471 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
17472 Author: Timur Tabi <timur@freescale.com>
17473 Date: Fri Mar 14 17:45:29 2008 -0500
17474
17475 Add support for setting the I2C bus speed in fsl_i2c.c
17476
17477 Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
17478 the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro,
17479 but fsl_i2c.c ignores it and uses conservative value when programming the
17480 I2C bus speed.
17481
17482 Signed-off-by: Timur Tabi <timur@freescale.com>
17483 Acked-by: Andy Fleming <afleming@freescale.com>
17484
17485 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
17486 Author: Wolfgang Denk <wd@denx.de>
17487 Date: Thu Mar 27 00:03:57 2008 +0100
17488
17489 Coding style cleanup, update CHANGELOG
17490
17491 Signed-off-by: Wolfgang Denk <wd@denx.de>
17492
17493 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
17494 Author: Dave Liu <r63238@freescale.com>
17495 Date: Wed Mar 26 22:55:32 2008 +0800
17496
17497 drivers: add the support for Freescale SATA controller
17498
17499 Add the Freescale on-chip SATA controller driver to u-boot,
17500 The SATA controller is used on the 837x and 8315 targets,
17501 The driver can be used to load kernel, fs and dtb.
17502
17503 The features list:
17504 - 1.5/3 Gbps link speed
17505 - LBA48, LBA28 support
17506 - DMA and FPDMA support
17507 - Two ports support
17508
17509 Signed-off-by: Dave Liu <daveliu@freescale.com>
17510
17511 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
17512 Author: Dave Liu <r63238@freescale.com>
17513 Date: Wed Mar 26 22:54:44 2008 +0800
17514
17515 ata: add the readme for SATA command line
17516
17517 Signed-off-by: Dave Liu <daveliu@freescale.com>
17518
17519 commit cd54081cd479e542fc399b8a40651ff11a1ad849
17520 Author: Dave Liu <r63238@freescale.com>
17521 Date: Wed Mar 26 22:53:24 2008 +0800
17522
17523 ata: enable the sata initialize on boot up
17524
17525 Signed-off-by: Dave Liu <daveliu@freescale.com>
17526
17527 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
17528 Author: Dave Liu <r63238@freescale.com>
17529 Date: Wed Mar 26 22:52:36 2008 +0800
17530
17531 ata: add the fis struct for SATA
17532
17533 Signed-off-by: Dave Liu <daveliu@freescale.com>
17534
17535 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
17536 Author: Dave Liu <r63238@freescale.com>
17537 Date: Wed Mar 26 22:51:44 2008 +0800
17538
17539 ata: add the libata support
17540
17541 add simple libata support in u-boot
17542
17543 Signed-off-by: Dave Liu <daveliu@freescale.com>
17544
17545 commit 8e9bb43429e50df55fa41932cbe65841ff579220
17546 Author: Dave Liu <r63238@freescale.com>
17547 Date: Wed Mar 26 22:50:45 2008 +0800
17548
17549 ata: make the ata_piix driver using new SATA framework
17550
17551 original ata_piix driver is using IDE framework, not real
17552 SATA framework. For now, the ata_piix driver is only used
17553 by x86 sc520_cdp board. This patch makes the ata_piix driver
17554 use the new SATA framework, so
17555
17556 - remove the duplicated command stuff
17557 - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
17558 - add the CONFIG_CMD_SATA define to sc520_cdp.h
17559
17560 Signed-off-by: Dave Liu <daveliu@freescale.com>
17561
17562 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
17563 Author: Dave Liu <r63238@freescale.com>
17564 Date: Wed Mar 26 22:49:44 2008 +0800
17565
17566 ata: add the support for SATA framework
17567
17568 - add the SATA framework
17569 - add the SATA command line
17570
17571 Signed-off-by: Dave Liu <daveliu@freescale.com>
17572
17573 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
17574 Author: Dave Liu <r63238@freescale.com>
17575 Date: Wed Mar 26 22:48:18 2008 +0800
17576
17577 ata: merge the header of ata_piix driver
17578
17579 move the sata.h from include/ to drivers/block/ata_piix.h
17580
17581 Signed-off-by: Dave Liu <daveliu@freescale.com>
17582
17583 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
17584 Author: Dave Liu <r63238@freescale.com>
17585 Date: Wed Mar 26 22:47:06 2008 +0800
17586
17587 ata: merge the ata_piix driver
17588
17589 move the cmd_sata.c from common/ to drivers/ata_piix.c,
17590 the cmd_sata.c have some part of ata_piix controller drivers.
17591 consolidate the driver to have better framework.
17592
17593 Signed-off-by: Dave Liu <daveliu@freescale.com>
17594
17595 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
17596 Author: Markus Klotzbuecher <mk@denx.de>
17597 Date: Wed Mar 26 18:26:43 2008 +0100
17598
17599 USB, Storage: fix a bug introduced in commit
17600 f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
17601 to only print only information on one storage device, but not for
17602 multiple.
17603
17604 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17605
17606 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
17607 Author: Anatolij Gustschin <agust@denx.de>
17608 Date: Wed Mar 26 17:47:44 2008 +0100
17609
17610 Fix compilation error in cmd_usb.c
17611
17612 This patch fixes compilation error
17613 cmd_usb.c: In function 'do_usb':
17614 cmd_usb.c:552: error: void value not ignored as it ought to be
17615
17616 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17617 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17618
17619 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
17620 Author: Kumar Gala <galak@kernel.crashing.org>
17621 Date: Wed Mar 26 08:53:53 2008 -0500
17622
17623 85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
17624
17625 Provide a board_lmb_reserve helper function to ensure we reserve
17626 the page of memory we are using for the boot page translation code.
17627
17628 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17629
17630 commit 79679d80021ab095e639e250ca472fe526da02e2
17631 Author: Kumar Gala <galak@kernel.crashing.org>
17632 Date: Wed Mar 26 08:34:25 2008 -0500
17633
17634 85xx: Update multicore boot mechanism to ePAPR v0.81 spec
17635
17636 The following changes are needed to be inline with ePAPR v0.81:
17637
17638 * r4, r5 and now always set to 0 on boot release
17639 * r7 is used to pass the size of the initial map area (IMA)
17640 * EPAPR_MAGIC value changed for book-e processors
17641 * changes in the spin table layout
17642 * spin table supports a 64-bit physical release address
17643
17644 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17645
17646 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
17647 Author: Jon Loeliger <jdl@freescale.com>
17648 Date: Wed Mar 19 15:02:07 2008 -0500
17649
17650 FSL: Clean up board/freescale/common/Makefile
17651
17652 Each file that can be built here now follows some
17653 CONFIG_ option so that they are appropriately built
17654 or not, as needed. And CONFIG_ defines were added
17655 to various board config files to make sure that happens.
17656
17657 The other board/freescale/*/Makefiles no longer need
17658 to reach up and over into ../common to build their
17659 individually needed files any more.
17660
17661 Boards that are CDS specific were renamed with cds_ prefix.
17662
17663 Signed-off-by: Jon Loeliger <jdl@freescale.com>
17664
17665 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
17666 Author: Kumar Gala <galak@kernel.crashing.org>
17667 Date: Wed Feb 27 22:00:27 2008 -0600
17668
17669 85xx: Fix merge duplication
17670
17671 ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate.
17672
17673 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17674
17675 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
17676 Author: James Yang <James.Yang@freescale.com>
17677 Date: Tue Feb 12 16:35:07 2008 -0600
17678
17679 85xx: Expand CCSR space with more DDR controller registers.
17680
17681 Signed-off-by: James Yang <James.Yang@freescale.com>
17682 Signed-off-by: Jon Loeliger <jdl@freescale.com>
17683 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17684
17685 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
17686 Author: James Yang <James.Yang@freescale.com>
17687 Date: Fri Feb 8 18:05:08 2008 -0600
17688
17689 85xx: Speed up get_ddr_freq() and get_bus_freq()
17690
17691 get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
17692 called. However, get_sys_info() recalculates extraneous information when
17693 called each time. Have get_ddr_freq() and get_bus_freq() return memoized
17694 values from global_data instead.
17695
17696 Signed-off-by: James Yang <James.Yang@freescale.com>
17697 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17698
17699 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
17700 Author: James Yang <James.Yang@freescale.com>
17701 Date: Fri Feb 8 16:46:27 2008 -0600
17702
17703 85xx: Show DDR memory data rate in addition to the memory clock frequency.
17704
17705 Show the DDR memory data rate in addition to the memory clock
17706 frequency. For DDR/DDR2 memories the memory data rate is 2x the
17707 memory clock.
17708
17709 Signed-off-by: James Yang <James.Yang@freescale.com>
17710 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17711
17712 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
17713 Author: James Yang <James.Yang@freescale.com>
17714 Date: Fri Feb 8 16:44:53 2008 -0600
17715
17716 85xx: get_tbclk() speed up and rounding fix
17717
17718 Speed up get_tbclk() by referencing pre-computed bus clock
17719 frequency value from global data instead of sys_info_t. Fix
17720 rounding of result to nearest; previously it was rounding
17721 upwards.
17722
17723 Signed-off-by: James Yang <James.Yang@freescale.com>
17724 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17725
17726 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
17727 Author: Andy Fleming <afleming@freescale.com>
17728 Date: Wed Feb 6 01:19:40 2008 -0600
17729
17730 Update SVR numbers to expand support
17731
17732 FSL has taken to using SVR[16:23] as an SOC sub-version field. This
17733 is used to distinguish certain variants within an SOC family. To
17734 account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
17735 constants to reflect the larger value. We also add SVR numbers for all
17736 of the current variants. Finally, to make things neater, rather than
17737 use an enormous switch statement to print out the CPU type, we create
17738 and array of SVR/name pairs (using a macro), and print out the CPU name
17739 that matches the SVR SOC version.
17740
17741 Signed-off-by: Andy Fleming <afleming@freescale.com>
17742
17743 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
17744 Author: Andy Fleming <afleming@freescale.com>
17745 Date: Wed Feb 6 01:12:57 2008 -0600
17746
17747 Add the Freescale PCI device IDs
17748
17749 Signed-off-by: Andy Fleming <afleming@freescale.com>
17750
17751 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
17752 Author: Kumar Gala <galak@kernel.crashing.org>
17753 Date: Thu Feb 14 11:04:23 2008 -0600
17754
17755 85xx: Added support for multicore boot mechanism
17756
17757 Added the cpu command that provides a generic mechanism to get status,
17758 reset, and release secondary cores in multicore processors.
17759
17760 Added support for using the ePAPR defined spin-table mechanism on 85xx.
17761
17762 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17763 Signed-off-by: Andy Fleming <afleming@freescale.com>
17764
17765 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
17766 Author: Kumar Gala <galak@kernel.crashing.org>
17767 Date: Thu Jan 17 16:48:33 2008 -0600
17768
17769 85xx: Added support for multicore boot mechanism
17770
17771 Added the cpu command that provides a generic mechanism to get status,
17772 reset, and release secondary cores in multicore processors.
17773
17774 Added support for using the ePAPR defined spin-table mechanism on 85xx.
17775
17776 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17777
17778 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
17779 Author: Kumar Gala <galak@kernel.crashing.org>
17780 Date: Wed Jan 30 14:55:14 2008 -0600
17781
17782 85xx: Add the concept of CFG_CCSRBAR_PHYS
17783
17784 When we go to 36-bit physical addresses we need to keep the concept of
17785 the physical CCSRBAR address seperate from the virtual one.
17786
17787 For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
17788
17789 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17790
17791 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
17792 Author: Wolfgang Denk <wd@denx.de>
17793 Date: Wed Mar 26 15:38:47 2008 +0100
17794
17795 Coding style cleanup.
17796
17797 Signed-off-by: Wolfgang Denk <wd@denx.de>
17798
17799 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
17800 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
17801 Date: Wed Mar 26 13:02:13 2008 +0100
17802
17803 Add CFG_RTC_DS1337_NOOSC to turn off OSC output
17804
17805 The default settings for RTC DS1337 keeps the OSC
17806 output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
17807 turn it off.
17808
17809 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
17810
17811 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
17812 Author: Wolfgang Denk <wd@denx.de>
17813 Date: Wed Mar 26 11:48:46 2008 +0100
17814
17815 Cleanup coding style, update CHANGELOG
17816
17817 Signed-off-by: Wolfgang Denk <wd@denx.de>
17818
17819 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
17820 Author: Wolfgang Denk <wd@denx.de>
17821 Date: Wed Mar 26 10:40:12 2008 +0100
17822
17823 README: update documentation (availability, links, etc.)
17824
17825 Signed-off-by: Wolfgang Denk <wd@denx.de>
17826
17827 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
17828 Author: Aras Vaichas <arasv@magtech.com.au>
17829 Date: Tue Mar 25 12:09:07 2008 +1100
17830
17831 USB Storage, add meaningful return value
17832
17833 This patch changes the "usb storage" command to return success if it
17834 finds a USB storage device, otherwise it returns error.
17835
17836 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17837
17838 commit 18e69a35efbb078403db0c0063986470dad7d082
17839 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17840 Date: Fri Mar 14 23:20:18 2008 +0300
17841
17842 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
17843
17844 Linux understands "host" (default), "peripheral" and "otg" (broken).
17845 Though, U-Boot doesn't restrict dr_mode variable to these values (think
17846 of renames in future).
17847
17848 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17849 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17850
17851 commit c7604783b236e368f225efb7b3efb418fe20b404
17852 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17853 Date: Fri Mar 14 23:20:30 2008 +0300
17854
17855 tsec: fix link detection for the RTL8211B PHY
17856
17857 RTL8211B sets link state register after autonegotiation complete,
17858 so with bootdelay=0 RTL8211B will report lack of the link.
17859
17860 To fix this, we should wait for aneg to complete, even if the
17861 link is currently down.
17862
17863 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17864 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17865
17866 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
17867 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17868 Date: Mon Mar 24 20:47:09 2008 +0300
17869
17870 mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
17871
17872 device_type = "soc" is being deprecated, newer device trees will use
17873 "fsl,soc" and/or "fsl,immr" for the soc nodes.
17874
17875 This patch also adds clock-frequency property for soc nodes (the same
17876 value as bus-frequency).
17877
17878 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17879
17880 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
17881 Author: Joe D'Abbraccio <ljd015@freescale.com>
17882 Date: Mon Mar 24 13:00:59 2008 -0400
17883
17884 Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
17885
17886 With the original value of 1/2 clock cycle delay, the system ran relatively
17887 stable except when we run benchmarks that are intensive users of memory.
17888 When I run samba connected disk with a HDBENCH test, the system locks-up
17889 or reboots sporadically.
17890
17891 Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
17892
17893 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
17894 Author: Scott Wood <scottwood@freescale.com>
17895 Date: Mon Mar 24 12:44:13 2008 -0500
17896
17897 mpc83xx: Set PCI I/O bus-address base to zero.
17898
17899 The device trees for these boards describe PCI I/O as starting from
17900 address zero from the device's perspective.
17901
17902 Placing I/O elsewhere may cause problems with certain PCI boards, and may
17903 cause problems with Linux.
17904
17905 Signed-off-by: Scott Wood <scottwood@freescale.com>
17906
17907 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
17908 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17909 Date: Mon Mar 24 20:47:05 2008 +0300
17910
17911 mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
17912
17913 At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
17914 This patch fixes "system time drifting" problem.
17915
17916 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17917
17918 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
17919 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17920 Date: Mon Mar 24 20:47:02 2008 +0300
17921
17922 mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
17923
17924 This is needed to update /choosen/linux,stdout-path properly.
17925
17926 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17927
17928 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
17929 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17930 Date: Mon Mar 24 20:47:00 2008 +0300
17931
17932 mpc83xx: MPC8360E-RDK: add dhcp command
17933
17934 Plus modify environment to use it and remove bootfile env variable,
17935 it is internal and CONFIG_BOOTFILE is used for these purposes.
17936
17937 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17938
17939 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
17940 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17941 Date: Mon Mar 24 20:46:57 2008 +0300
17942
17943 mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
17944
17945 Current DDR setup easily causes memory corruption, this patch fixes it.
17946
17947 Also fix TIMING_CFG0_MRS_CYC definition.
17948
17949 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17950
17951 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
17952 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17953 Date: Mon Mar 24 20:46:53 2008 +0300
17954
17955 mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
17956
17957 This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
17958 controller and FHCI (QE USB).
17959
17960 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17961
17962 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
17963 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17964 Date: Mon Mar 24 20:46:51 2008 +0300
17965
17966 mpc83xx: MPC8360E-RDK: add support for NAND
17967
17968 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17969
17970 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
17971 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17972 Date: Mon Mar 24 20:46:46 2008 +0300
17973
17974 mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
17975
17976 This is needed for BCM PHYs to work on this board.
17977
17978 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17979
17980 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
17981 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17982 Date: Mon Mar 24 20:46:34 2008 +0300
17983
17984 uec: add support for Broadcom BCM5481 Gigabit PHY
17985
17986 This patch adds basic support for Broadcom BCM5481 PHY.
17987
17988 RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
17989 Peter Barada <peterb@logicpd.com>.
17990
17991 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17992
17993 commit 6a600c3a1876bc203445df4f0fd6b12648259666
17994 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17995 Date: Mon Mar 24 20:46:28 2008 +0300
17996
17997 uec: add support for RGMII_RXID interface mode
17998
17999 PHY drivers will use it to setup software delay between RXD and RXC
18000 signals.
18001
18002 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18003
18004 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
18005 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18006 Date: Mon Mar 24 20:46:24 2008 +0300
18007
18008 uec: add support for gbit mii status readings
18009
18010 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18011
18012 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
18013 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18014 Date: Mon Mar 24 17:40:47 2008 +0300
18015
18016 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
18017
18018 This is primarily for the early console support.
18019
18020 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18021
18022 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
18023 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18024 Date: Mon Mar 24 17:40:43 2008 +0300
18025
18026 83xx: initialize serdes for MPC837XRDB boards
18027
18028 On the MPC8377ERDB: 2 SATA and 2 PCI-E.
18029 On the MPC8378ERDB: 2 PCI-E
18030 On the MPC8379ERDB: 4 SATA
18031
18032 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18033
18034 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
18035 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18036 Date: Mon Mar 24 17:40:32 2008 +0300
18037
18038 83xx: serdes setup routines
18039
18040 This patch adds few routines to configure serdes on 837x targets.
18041
18042 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18043
18044 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
18045 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18046 Date: Mon Mar 24 17:40:27 2008 +0300
18047
18048 83xx: split COBJS onto separate lines
18049
18050 ..plus get rid of some #ifdefs in the .c files.
18051
18052 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18053
18054 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
18055 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18056 Date: Mon Mar 24 17:40:23 2008 +0300
18057
18058 83xx: nand support for MPC837XRDB boards
18059
18060 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18061
18062 commit 82e45a204190593e8613145a928f998fb8c909c4
18063 Author: Jerry Van Baren <gvb.uboot@gmail.com>
18064 Date: Tue Mar 18 21:44:41 2008 -0400
18065
18066 Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
18067
18068 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
18069 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18070
18071 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
18072 Author: Michael Barkowski <michael.barkowski@freescale.com>
18073 Date: Thu Mar 20 13:15:39 2008 -0400
18074
18075 mpc8323erdb: remove RTC and add EEPROM
18076
18077 There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
18078
18079 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
18080 Acked-by: Kim Phillips <kim.phillips@freescale.com>
18081
18082 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
18083 Author: Michael Barkowski <michael.barkowski@freescale.com>
18084 Date: Thu Mar 20 13:15:34 2008 -0400
18085
18086 mpc8323erdb: Improve the system performance
18087
18088 The following changes are based on kernel UCC ethernet performance:
18089
18090 1. Make the CSB bus pipeline depth as 4, and enable the repeat mode
18091 2. Optimize transactions between QE and CSB. Added CFG_SPCR_OPT
18092 switch to enable this setting.
18093
18094 The following changes are based on the App Note AN3369 and
18095 verified to improve memory latency using LMbench:
18096
18097 3. CS0_CONFIG[AP_n_EN] is changed from 1 to 0
18098 4. CS0_CONFIG[ODT_WR_CONFIG] set to 1. Was a reserved setting
18099 previously.
18100 5. TIMING_CFG_1[WRREC] is changed from 3clks to 2clks (based on
18101 Twr=15ns, and this was already the setting in DDR_MODE)
18102 6. TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
18103 Trp=15ns)
18104 7. TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
18105 Tras=40ns)
18106 8. TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
18107 Trcd=15ns)
18108 9. TIMING_CFG_1[REFREC] changed from 21 clks to 11clks. (based on
18109 Trfc=75ns)
18110 10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks. (based
18111 on Tfaw=50ns)
18112 11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
18113 on CL=3 and WL=2).
18114
18115 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
18116 Acked-by: Kim Phillips <kim.phillips@freescale.com>
18117
18118 commit fc549c871f43933396a5b3e21d897023d4b31b8d
18119 Author: Michael Barkowski <michael.barkowski@freescale.com>
18120 Date: Thu Mar 20 13:15:28 2008 -0400
18121
18122 mpc8323erdb: use readable DDR config macros
18123
18124 Use available shift/mask macros to define DDR configuration.
18125
18126 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
18127 Acked-by: Kim Phillips <kim.phillips@freescale.com>
18128
18129 commit 89c7784ed90ba50301eec521144f95111e472906
18130 Author: Timur Tabi <timur@freescale.com>
18131 Date: Fri Feb 8 13:15:55 2008 -0600
18132
18133 83xx: Add Vitesse VSC7385 firmware uploading
18134
18135 Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
18136 the Vitesse VSC7385 firmware. Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
18137 Cleaned up the board header files to make selecting the VSC7385 easier to
18138 control.
18139
18140 Signed-off-by: Timur Tabi <timur@freescale.com>
18141 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18142
18143 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
18144 Author: Timur Tabi <timur@freescale.com>
18145 Date: Fri Feb 8 13:15:54 2008 -0600
18146
18147 NET: Add Vitesse VSC7385 firmware uploading
18148
18149 The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
18150 and other boards. A small firwmare must be uploaded to its on-board memory
18151 before it can be enabled. This patch adds the code which uploads firmware
18152 (but not the firmware itself).
18153
18154 Previously, this feature was provided by a U-Boot application that was
18155 made available only on Freescale BSPs. The VSC7385 firmware must still
18156 be obtained separately, but at least there is no longer a need for a separate
18157 application.
18158
18159 Signed-off-by: Timur Tabi <timur@freescale.com>
18160 Acked-by: Ben Warren <biggerbadderben@gmail.com>
18161
18162 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
18163 Author: Wolfgang Denk <wd@denx.de>
18164 Date: Wed Mar 26 00:52:10 2008 +0100
18165
18166 Coding Style cleanyp; update CHANGELOG
18167
18168 Signed-off-by: Wolfgang Denk <wd@denx.de>
18169
18170 commit 43ddd9c820fec44816188f53346b464e20b3142d
18171 Author: Jerry Van Baren <gvb.uboot@gmail.com>
18172 Date: Sat Mar 22 14:23:49 2008 -0400
18173
18174 Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
18175
18176 These defines embedded the u-boot env variables and/or the bd_t structure
18177 in the fdt blob. The conclusion of discussion on the u-boot email list
18178 was that embedding these in the fdt blob is not useful: there are better
18179 ways of passing the data (in fact, the fdt blob itself replaces the
18180 bd_t struct).
18181
18182 The only board that enables these is the stxxtc and they don't appear
18183 to be used by linux.
18184
18185 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
18186 Acked-by: Kim Phillips <kim.phillips@freescale.com>
18187
18188 commit 22ed2285743359fd1fe73e411dff914b2256e68f
18189 Author: Stefan Roese <sr@denx.de>
18190 Date: Mon Mar 17 10:49:25 2008 +0100
18191
18192 rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
18193
18194 Signed-off-by: Stefan Roese <sr@denx.de>
18195
18196 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
18197 Author: Kyungmin Park <kmpark@infradead.org>
18198 Date: Mon Mar 17 08:54:06 2008 +0900
18199
18200 Add Flex-OneNAND booting support
18201
18202 Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
18203 using a NOR Flash interface. This on-chip integration enables system designers
18204 to reduce external system logic and use high-density NAND Flash
18205 in applications that would otherwise have to use more NOR components.
18206
18207 Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
18208 in more flexible way. While MLC area of Flex-OneNAND can be used to store data
18209 that require low reliability and high density, SLC area of Flex-OneNAND
18210 to store data that need high reliability and high performance. Flex-OneNAND
18211 can let users take advantage of storing these two different types of data
18212 into one chip, which is making Flex-OneNAND more cost- and space-effective.
18213
18214 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18215
18216 commit c512389cc4a10253249271ff6c887c6dab1f0db2
18217 Author: André Schwarz <andre.schwarz@matrix-vision.de>
18218 Date: Thu Mar 13 13:50:52 2008 +0100
18219
18220 MPC5200: support setup without FEC
18221
18222 Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
18223 defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
18224
18225 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
18226 Acked-by: Grant Likely <grant.likely@secretlab.ca>
18227
18228 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
18229 Author: Jon Loeliger <jdl@freescale.com>
18230 Date: Wed Mar 5 18:05:46 2008 -0600
18231
18232 FSL: Move board/mpc8266ads under board/freescale
18233
18234 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18235
18236 commit 7f1d846e5c5754449c286587d099d85246062772
18237 Author: Jon Loeliger <jdl@freescale.com>
18238 Date: Wed Mar 5 18:05:47 2008 -0600
18239
18240 FSL: Move board/mpc7448hpc2 under board/freescale
18241
18242 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18243
18244 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
18245 Author: Jon Loeliger <jdl@freescale.com>
18246 Date: Wed Mar 5 18:05:45 2008 -0600
18247
18248 FSL: Move board/mpc8260ads under board/freescale
18249
18250 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18251
18252 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
18253 Author: goda.yusuke <goda.yusuke@renesas.com>
18254 Date: Wed Mar 5 17:08:33 2008 +0900
18255
18256 net: Add support AX88796L ethernet device
18257
18258 AX88796L is device of NE2000 compatible.
18259 This patch support AX88796L ethernet device.
18260
18261 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
18262 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18263
18264 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
18265 Author: Wolfgang Denk <wd@denx.de>
18266 Date: Tue Mar 25 22:50:41 2008 +0100
18267
18268 ne2000 driver: change #ifdef to Makefile conditional compilation
18269
18270 Signed-off-by: Wolfgang Denk <wd@denx.de>
18271
18272 commit e710185aae90c64d39c2d453e40e58ceefe4f250
18273 Author: goda.yusuke <goda.yusuke@renesas.com>
18274 Date: Wed Mar 5 17:08:20 2008 +0900
18275
18276 net: Divided code of NE2000 ethernet driver
18277
18278 There are more devices of the NE2000 base.
18279 A present code is difficult for us to support more devices.
18280 To support more NE2000 clone devices, separated the function.
18281
18282 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
18283 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18284
18285 commit 395bce4f59a507a60a475f7ee46bed47de9482df
18286 Author: Mike Frysinger <vapier@gentoo.org>
18287 Date: Sun Feb 24 23:58:13 2008 -0500
18288
18289 net/Blackfin: move on-chip MAC driver into drivers/net/
18290
18291 The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
18292 directory, but it is not board specific, so relocate it to the drivers dir
18293 so that other Blackfin ports can utilize it.
18294
18295 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18296
18297 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
18298 Author: Mike Frysinger <vapier@gentoo.org>
18299 Date: Sun Feb 24 23:52:35 2008 -0500
18300
18301 smc91111: use SSYNC() rather than asm(ssync) for Blackfin
18302
18303 Since the "ssync" instruction may have hardware anomalies associated with
18304 it, have the smc91111 driver use the SSYNC macro rather than invoking it
18305 directly. We workaround all the anomalies via this macro.
18306
18307 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18308
18309 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
18310 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
18311 Date: Sun Feb 17 22:57:47 2008 +0000
18312
18313 8xx: Update OF support on 8xx
18314
18315 This patch does some shifting around of OF support on 8xx.
18316
18317 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
18318
18319 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
18320 Author: Kumar Gala <galak@kernel.crashing.org>
18321 Date: Fri Feb 15 15:16:18 2008 -0600
18322
18323 ppc: Allow boards to specify how much memory they can map
18324
18325 For historical reasons we limited the stack to 256M because some boards
18326 could only map that much via BATS. However newer boards are capable of
18327 mapping more memory (for example 85xx is capble of doing up to 2G).
18328
18329 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18330
18331 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
18332 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
18333 Date: Fri Feb 15 01:05:58 2008 +0000
18334
18335 8xx : Add OF support to Adder875 board port - resubmit
18336
18337 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
18338
18339 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
18340 Author: Kumar Gala <galak@kernel.crashing.org>
18341 Date: Thu Feb 14 20:44:42 2008 -0600
18342
18343 Add setexpr command
18344
18345 Add a simple expr style command that will set an env variable as the result
18346 of the command. This allows us to do simple math in shell. The following
18347 operations are supported: &, |, ^, +, -, *, /.
18348
18349 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18350
18351 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
18352 Author: Jon Loeliger <jdl@freescale.com>
18353 Date: Wed Mar 5 17:27:48 2008 -0600
18354
18355 FSL: Move board/mpc7448hpc2 under board/freescale
18356
18357 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18358
18359 commit 449c703374a8868453425e15da7e2f76221b72e4
18360 Author: Jon Loeliger <jdl@freescale.com>
18361 Date: Wed Mar 5 17:21:43 2008 -0600
18362
18363 FSL: Move board/mpc8266ads under board/freescale
18364
18365 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18366
18367 commit 5863577989ad689427bb750107e9a75f1c1645d2
18368 Author: Jon Loeliger <jdl@freescale.com>
18369 Date: Wed Mar 5 16:41:41 2008 -0600
18370
18371 FSL: Move board/mpc8260ads under board/freescale
18372
18373 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18374
18375 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
18376 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18377 Date: Tue Mar 25 21:30:08 2008 +0900
18378
18379 [MIPS] Move gth2_config from ARM section to MIPS
18380
18381 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18382
18383 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
18384 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18385 Date: Tue Mar 25 21:30:07 2008 +0900
18386
18387 [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
18388
18389 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18390
18391 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
18392 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18393 Date: Tue Mar 25 21:30:07 2008 +0900
18394
18395 [MIPS] Fix dcache_status()
18396
18397 You can't judge UNCACHED by Config.K0 LSB.
18398
18399 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18400
18401 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
18402 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18403 Date: Tue Mar 25 21:30:07 2008 +0900
18404
18405 [MIPS] Introduce _machine_restart
18406
18407 Handles machine specific functions by using weak functions.
18408
18409 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18410
18411 commit decaba6f5cf386d569ac3997bebb871b966c6b18
18412 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18413 Date: Tue Mar 25 21:30:07 2008 +0900
18414
18415 [MIPS] Cleanup CP0 Status initialization
18416
18417 Add setup_c0_status from Linux. For the moment we disable interrupts, set
18418 CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
18419 reset-time configuration and will work well across most processors.
18420
18421 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18422
18423 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
18424 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18425 Date: Tue Mar 25 21:30:07 2008 +0900
18426
18427 [MIPS] Initialize CP0 Cause before setting up CP0 Status register
18428
18429 Without this change, we'll be suffering from deffered WATCH exception
18430 once Status.EXL is cleared. Make sure Cause.WP is cleared.
18431
18432 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18433
18434 commit 26138623230ca2bad3c78e05a65527ea70c8b688
18435 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18436 Date: Tue Mar 25 21:30:07 2008 +0900
18437
18438 [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
18439
18440 Move things to appropriate place.
18441
18442 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18443
18444 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
18445 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18446 Date: Tue Mar 25 21:30:06 2008 +0900
18447
18448 [MIPS] Implement flush_cache()
18449
18450 We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
18451 don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
18452 function is used not only in U-Boot specfic programs but also at loading
18453 target binaries.
18454
18455 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18456
18457 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
18458 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18459 Date: Tue Mar 25 21:30:06 2008 +0900
18460
18461 [MIPS] Fix I-/D-cache initialization loops
18462
18463 Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
18464 again per a loop for I-cache initialization. But according to 'See MIPS
18465 Run', we're encouraged to use three separate loops rather than combining
18466 them *for both I- and D-cache*. This patch tries to fix this.
18467
18468 In accordance with fixing above, mips_init_[id]cache are separated from
18469 mips_cache_reset(), and rewrite cache loops are completely rewritten with
18470 useful macros.
18471
18472 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18473
18474 commit 1898840797c7f50799377bd5b285a8a93a82c419
18475 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18476 Date: Tue Mar 25 21:30:06 2008 +0900
18477
18478 [MIPS] Replace memory clearance code with f_fill64
18479
18480 This routine fills memory with zero by 64 bytes, and is 64-bit capable.
18481
18482 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18483
18484 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
18485 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18486 Date: Tue Mar 25 21:30:06 2008 +0900
18487
18488 [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
18489
18490 This patch replaces the current function definitions with NESTED, LEAF
18491 and END macro. They specify some more additional information about the
18492 function; an alignment of symbol, type of symbol, stack frame usage, etc.
18493 These information explicitly tells the assembler and the debugger about
18494 the types of code we want to generate.
18495
18496 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18497
18498 commit 282223a607c611425fa33f5428f8eae6636972bb
18499 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18500 Date: Tue Mar 25 11:43:17 2008 +0900
18501
18502 [MIPS] asm headers' updates
18503
18504 Make some asm headers adjusted to the latest Linux kernel.
18505
18506 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18507
18508 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
18509 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18510 Date: Tue Mar 25 11:39:29 2008 +0900
18511
18512 [MIPS] Request for the 'mips_cache_lock()' removal
18513
18514 The initial intension of having mips_cache_lock() was to use the cache
18515 as memory for temporary stack use so that a C environment can be set up
18516 as early as possible.
18517
18518 But now mips_cache_lock() follow lowlevel_init(). We've already have the
18519 real memory initilaized at this point, therefore we could/should use it.
18520 No reason to lock at all.
18521
18522 Other problems:
18523
18524 Cache locking is not consistent across MIPS implementaions. Some imple-
18525 mentations don't support locking at all. The style of locking varies -
18526 some support per line locking, others per way, etc. Some parts use bits
18527 in status registers instead of cache ops. Current mips_cache_lock() is
18528 not necessarily general-purpose.
18529
18530 And this is worthy of special mention; once U-Boot/MIPS locks the lines,
18531 they are never get unlocked, so the code relies on whatever gets loaded
18532 after U-Boot to re-initialize the cache and clear the locks. We're sup-
18533 posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
18534 but leave the situation as it is for a long time.
18535
18536 For these reasons, I proposed the removal of mips_cache_lock() from the
18537 global start-up code.
18538
18539 This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
18540 *things have changed*. If he wants the same behavior as before, he needs
18541 to have CFG_INIT_RAM_LOCK_MIPS in his config file.
18542
18543 If we don't have any regression report through several releases, then
18544 we'll remove codes entirely.
18545
18546 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18547 Acked-by: Andrew Dyer <amdyer@gmail.com>
18548
18549 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
18550 Author: Yuri Tikhonov <yur@emcraft.com>
18551 Date: Mon Mar 24 11:30:54 2008 +0100
18552
18553 lwmon5 SYSMON POST: fix backlight control
18554
18555 If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
18556 run on the board, then the SYSMON POST controls the display backlight
18557 (doesn't switch backlight ON if POST FAILED, and does switch the
18558 backlight ON if PASSED).
18559
18560 If not, then the video driver controls the display backlight (just
18561 switch ON the backlight upon initialization).
18562
18563 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18564
18565 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
18566 Author: Yuri Tikhonov <yur@emcraft.com>
18567 Date: Mon Mar 24 11:29:14 2008 +0100
18568
18569 lwmon5 SYSMON POST: fix handling of negative temperatures
18570
18571 Fix errors in the LWMON5 Sysmon POST for negative temperatures.
18572
18573 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18574
18575 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
18576 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18577 Date: Fri Mar 7 16:04:25 2008 +0900
18578
18579 pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
18580
18581 In current source code, when the device number of PCI is 0, process PCI
18582 bridge without fail. However, when the device number is 0, it is not PCI
18583 always bridge. There are times when device of PCI allocates.
18584
18585 When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
18586 use this patch.
18587
18588 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18589 Acked-by: Stefan Roese <sr@denx.de>
18590
18591 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
18592 Author: Yuri Tikhonov <yur@emcraft.com>
18593 Date: Fri Mar 21 09:18:40 2008 +0100
18594
18595 LWMON5: fix dsPIC POST
18596
18597 Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
18598
18599 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
18600
18601 commit 388b82fddc7c05596f3f615f190da0448227dc82
18602 Author: Bartlomiej Sieka <tur@semihalf.com>
18603 Date: Thu Mar 20 23:23:13 2008 +0100
18604
18605 [new uImage] Enable new uImage support for the pcs440ep board.
18606
18607 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18608
18609 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
18610 Author: Bartlomiej Sieka <tur@semihalf.com>
18611 Date: Thu Mar 20 23:23:13 2008 +0100
18612
18613 [new uImage] Do not compile new uImage format support by default
18614
18615 Disable default building of new uImage format support in preparation
18616 for merge with the master. Support for new format can be enabled on
18617 a per-board basis, by defining the following in the board's config file:
18618
18619 #define CONFIG_FIT 1
18620 #define CONFIG_OF_LIBFDT 1
18621
18622 This can be optionally defined to give more verbose output:
18623
18624 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
18625
18626 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18627
18628 commit dafaede8a46c7159310239e036c93e31c6374487
18629 Author: Bartlomiej Sieka <tur@semihalf.com>
18630 Date: Thu Mar 20 23:20:31 2008 +0100
18631
18632 [new uImage] Disable debuging output in preparation for merge with master
18633
18634 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18635
18636 commit fbe7a155027beacebaee9b32e1ada781fe924bca
18637 Author: Bartlomiej Sieka <tur@semihalf.com>
18638 Date: Thu Mar 20 19:38:45 2008 +0100
18639
18640 [new uImage] Compilation and new uImage handling fixes for imxtract
18641
18642 Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
18643 include/config_cmd_default.h. Fix few warnings and handling of new format
18644 images.
18645
18646 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18647
18648 commit 36cc8cbb3379d5166f882641123521735c469f92
18649 Author: Bartlomiej Sieka <tur@semihalf.com>
18650 Date: Thu Mar 20 23:10:19 2008 +0100
18651
18652 [new uImage] Fix autoscr command used with new uImage format
18653
18654 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18655
18656 commit 43142e817f0597be412e7cbe19413f5532eafa5d
18657 Author: Bartlomiej Sieka <tur@semihalf.com>
18658 Date: Thu Mar 20 23:10:19 2008 +0100
18659
18660 [new uImage] Fix *.its files location in documentation
18661
18662 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18663
18664 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
18665 Author: Wolfgang Denk <wd@denx.de>
18666 Date: Thu Mar 20 22:01:38 2008 +0100
18667
18668 lwmon5 POST: remove unreachable code
18669
18670 plus some coding style cleanup
18671
18672 Signed-off-by: Wolfgang Denk <wd@denx.de>
18673
18674 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
18675 Author: Yuri Tikhonov <yur@emcraft.com>
18676 Date: Thu Mar 20 17:56:04 2008 +0300
18677
18678 LWMON5: POST RTC fix
18679
18680 Modify the RTC API to provide one a status for the time reported by
18681 the rtc_get() function:
18682 0 - a reliable time is guaranteed,
18683 < 0 - a reliable time isn't guaranteed (power fault, clock issues,
18684 and so on).
18685
18686 The RTC chip drivers are responsible for providing this info if the
18687 corresponding chip supports such functionality. If not - always
18688 report that the time is reliable.
18689
18690 The POST RTC test was modified to detect the RTC faults utilizing
18691 this new rtc_get() feature.
18692
18693 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18694
18695 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
18696 Author: Martin Krause <martin.krause@tqs.de>
18697 Date: Wed Mar 19 14:25:14 2008 +0100
18698
18699 TQM5200B: update MTD partition layout
18700
18701 - insert partition for dtb blob to TQM5200B MTD layout
18702 - set env variables dependent on the configured board
18703 (TQM5200 or TQM5200B)
18704
18705 Signed-off-by: Martin Krause <martin.krause@tqs.de>
18706
18707 commit f0105727d132f56a21fa3ed8b162309cca6cac44
18708 Author: Stefan Roese <sr@denx.de>
18709 Date: Wed Mar 19 07:09:26 2008 +0100
18710
18711 CFI: Small cleanup for FLASH_SHOW_PROGRESS
18712
18713 With this patch we don't need that many #ifdef's in the code. It moves
18714 the subtraction into the macro and defines a NOP-macro when
18715 CONFIG_FLASH_SHOW_PROGRESS is not defined.
18716
18717 Signed-off-by: Stefan Roese <sr@denx.de>
18718 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
18719
18720 commit 9a042e9ca512beaaa2cb450274313fc477141241
18721 Author: Jerry Van Baren <gvb.uboot@gmail.com>
18722 Date: Sat Mar 8 13:48:01 2008 -0500
18723
18724 Flash programming progress countdown.
18725
18726 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
18727
18728 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
18729 Author: Bartlomiej Sieka <tur@semihalf.com>
18730 Date: Wed Mar 19 10:00:06 2008 +0100
18731
18732 [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
18733
18734 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18735
18736 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
18737 Author: David Gibson <david@gibson.dropbear.id.au>
18738 Date: Mon Feb 18 18:09:04 2008 +1100
18739
18740 libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
18741
18742 Since fdt_node_offset_by_compatible() was converted to the new
18743 fdt_next_node() iterator, a chunk of initialization code became
18744 redundant, but was not removed by oversight. This patch cleans it up.
18745
18746 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18747
18748 commit d0ccb9b140b472039732de102fc14597eedb14df
18749 Author: David Gibson <david@gibson.dropbear.id.au>
18750 Date: Mon Feb 18 18:06:31 2008 +1100
18751
18752 libfdt: Trivial cleanup for CHECK_HEADER)
18753
18754 Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
18755 However, there are a handful of functions (fdt_move, rw_check_header,
18756 fdt_open_into) from other files which could also use it (currently
18757 they open-code something more-or-less identical). Therefore, this
18758 patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
18759 places.
18760
18761 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18762
18763 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
18764 Author: Kumar Gala <galak@kernel.crashing.org>
18765 Date: Wed Feb 20 14:32:36 2008 -0600
18766
18767 Fix fdt boardsetup command parsing
18768
18769 The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
18770
18771 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18772
18773 commit 804887e6001e2f00bea11431bf34d6d472512cda
18774 Author: Kumar Gala <galak@kernel.crashing.org>
18775 Date: Fri Feb 15 03:34:36 2008 -0600
18776
18777 Add sub-commands to fdt
18778
18779 fdt header - Display header info
18780 fdt bootcpu <id> - Set boot cpuid
18781 fdt memory <addr> <size> - Add/Update memory node
18782 fdt rsvmem print - Show current mem reserves
18783 fdt rsvmem add <addr> <size> - Add a mem reserve
18784 fdt rsvmem delete <index> - Delete a mem reserves
18785
18786 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18787
18788 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
18789 Author: David Gibson <david@gibson.dropbear.id.au>
18790 Date: Thu Feb 14 16:50:34 2008 +1100
18791
18792 libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
18793
18794 fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
18795 node which has NOP tags interspersed with its properties. In this
18796 case fdt_add_subnode_namelen() will put the new subnode before the
18797 first NOP tag, even if there are properties after it, which will
18798 result in an invalid blob.
18799
18800 This patch fixes the bug, and adds a testcase for it.
18801
18802 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18803
18804 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
18805 Author: David Gibson <david@gibson.dropbear.id.au>
18806 Date: Tue Feb 12 11:58:31 2008 +1100
18807
18808 libfdt: Add and use a node iteration helper function.
18809
18810 This patch adds an fdt_next_node() function which can be used to
18811 iterate through nodes of the tree while keeping track of depth. This
18812 function is used to simplify the iteration code in a lot of other
18813 functions, and is also exported for use by library users.
18814
18815 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18816
18817 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
18818 Author: David Gibson <david@gibson.dropbear.id.au>
18819 Date: Fri Jan 11 14:55:05 2008 +1100
18820
18821 libfdt: Add fdt_set_name() function
18822
18823 This patch adds an fdt_set_name() function to libfdt, mirroring
18824 fdt_get_name(). This is a r/w function which alters the name of a
18825 given device tree node.
18826
18827 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18828
18829 commit 23e20aa6488e6c0622496549861bfdc74108debe
18830 Author: Yuri Tikhonov <yur@pollux.denx.de>
18831 Date: Tue Mar 18 13:33:30 2008 +0100
18832
18833 lwmon5: Fix register test logic to match the specific GDC h/w.
18834
18835 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18836 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18837
18838 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
18839 Author: Yuri Tikhonov <yur@pollux.denx.de>
18840 Date: Tue Mar 18 13:27:57 2008 +0100
18841
18842 Fix backlight in the lwmon5 POST.
18843
18844 Backlight was switched on even when temperature was too low.
18845
18846 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18847 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18848
18849 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
18850 Author: Yuri Tikhonov <yur@pollux.denx.de>
18851 Date: Wed Feb 6 18:48:36 2008 +0100
18852
18853 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).
18854
18855 To enable this, alternative, configuration the U-Boot board configuration
18856 file for lwmon5 includes the definitions of alternative addresses for header
18857 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
18858
18859 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
18860 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
18861 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
18862
18863 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18864
18865 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
18866 Author: Yuri Tikhonov <yur@pollux.denx.de>
18867 Date: Mon Feb 4 17:11:53 2008 +0100
18868
18869 Add support for the lwmon5 board reset via GPIO58.
18870
18871 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18872 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18873
18874 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
18875 Author: Yuri Tikhonov <yur@pollux.denx.de>
18876 Date: Mon Feb 4 17:09:55 2008 +0100
18877
18878 Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
18879
18880 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18881 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18882
18883 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
18884 Author: Yuri Tikhonov <yur@pollux.denx.de>
18885 Date: Mon Feb 4 14:11:03 2008 +0100
18886
18887 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.
18888
18889 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18890 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18891
18892 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
18893 Author: Yuri Tikhonov <yur@pollux.denx.de>
18894 Date: Mon Feb 4 14:10:42 2008 +0100
18895
18896 The patch adds new POST tests for the Lwmon5 board. These are:
18897
18898 * External Watchdog test;
18899 * dsPIC tests;
18900 * FPGA test;
18901 * GDC test;
18902 * Sysmon tests.
18903
18904 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18905 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18906
18907 commit c2ed33efbfff5767bca236828e021c55fd547b6c
18908 Author: Yuri Tikhonov <yur@pollux.denx.de>
18909 Date: Mon Feb 4 14:10:01 2008 +0100
18910
18911 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
18912
18913 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18914
18915 commit 3a5d1e7f1309998791702b2a559e3126781746b9
18916 Author: Yuri Tikhonov <yur@pollux.denx.de>
18917 Date: Tue Mar 18 13:33:30 2008 +0100
18918
18919 lwmon5: Fix register test logic to match the specific GDC h/w.
18920
18921 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18922 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18923
18924 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
18925 Author: Yuri Tikhonov <yur@pollux.denx.de>
18926 Date: Tue Mar 18 13:27:57 2008 +0100
18927
18928 Fix backlight in the lwmon5 POST.
18929
18930 Backlight was switcehd on even when temperature was too low.
18931
18932 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18933 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18934
18935 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
18936 Author: Yuri Tikhonov <yur@pollux.denx.de>
18937 Date: Wed Feb 6 18:48:36 2008 +0100
18938
18939 The patch introduces the alternative configuration of the log buffer for
18940 the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
18941 the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
18942 PPC440EPX_GPT0_COMP5).
18943
18944 To enable this, alternative, configuration the U-Boot board configuration
18945 file for lwmon5 includes the definitions of alternative addresses for header
18946 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
18947
18948 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
18949 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
18950 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
18951
18952 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18953
18954 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
18955 Author: Yuri Tikhonov <yur@pollux.denx.de>
18956 Date: Mon Feb 4 17:11:53 2008 +0100
18957
18958 Add support for the lwmon5 board reset via GPIO58.
18959
18960 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18961 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18962
18963 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
18964 Author: Yuri Tikhonov <yur@pollux.denx.de>
18965 Date: Mon Feb 4 17:09:55 2008 +0100
18966
18967 Some fixes to dspic, fpga, and gdc post tests for lwmon5.
18968 Disable external watch-dog for now.
18969
18970 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18971 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18972
18973 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
18974 Author: Yuri Tikhonov <yur@pollux.denx.de>
18975 Date: Mon Feb 4 14:11:03 2008 +0100
18976
18977 The patch introduces the CRITICAL feature of POST tests. If the test
18978 marked as POST_CRITICAL fails then the alternative, post_critical,
18979 boot-command is used. If this command is not defined then U-Boot
18980 enters into interactive mode.
18981
18982 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18983 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18984
18985 commit 65b20dcefc89618193fa51947968dada91e4c778
18986 Author: Yuri Tikhonov <yur@pollux.denx.de>
18987 Date: Mon Feb 4 14:10:42 2008 +0100
18988
18989 The patch adds new POST tests for the Lwmon5 board.
18990 These are:
18991
18992 * External Watchdog test;
18993 * dsPIC tests;
18994 * FPGA test;
18995 * GDC test;
18996 * Sysmon tests.
18997
18998 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18999 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19000
19001 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
19002 Author: Yuri Tikhonov <yur@pollux.denx.de>
19003 Date: Mon Feb 4 14:10:01 2008 +0100
19004
19005 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
19006
19007 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
19008
19009 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
19010 Author: Wolfgang Denk <wd@denx.de>
19011 Date: Tue Mar 18 17:35:51 2008 +0100
19012
19013 HMI1001: fix compile problem.
19014
19015 Signed-off-by: Wolfgang Denk <wd@denx.de>
19016
19017 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
19018 Author: Mike Frysinger <vapier@gentoo.org>
19019 Date: Mon Feb 18 05:32:30 2008 -0500
19020
19021 Blackfin: BF537-stamp: drop board-specific flash driver for CFI
19022
19023 The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
19024 for the board specific driver at all. Just use the common CFI driver.
19025
19026 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19027
19028 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
19029 Author: Mike Frysinger <vapier@gentoo.org>
19030 Date: Tue Feb 19 00:36:14 2008 -0500
19031
19032 Blackfin: add proper ELF markings to some assembly functions
19033
19034 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19035
19036 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
19037 Author: Mike Frysinger <vapier@gentoo.org>
19038 Date: Tue Feb 19 00:35:17 2008 -0500
19039
19040 Blackfin: new cplbinfo command for viewing cplb tables
19041
19042 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19043
19044 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
19045 Author: Mike Frysinger <vapier@gentoo.org>
19046 Date: Mon Feb 18 05:37:51 2008 -0500
19047
19048 Blackfin: update MAINTAINERS list
19049
19050 Add maintainer information for the Blackfin boards.
19051
19052 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19053
19054 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
19055 Author: Mike Frysinger <vapier@gentoo.org>
19056 Date: Mon Feb 18 05:26:48 2008 -0500
19057
19058 Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
19059
19060 Stop tying things to the processor that should be tied to other defines and
19061 change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
19062 system to select the -mcpu option.
19063
19064 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19065
19066 commit 86a20fb920bd198105acf7b1191117f566d637ed
19067 Author: Mike Frysinger <vapier@gentoo.org>
19068 Date: Sat Feb 16 07:40:36 2008 -0500
19069
19070 Blackfin: move bootldr command to common code
19071
19072 This moves the Blackfin-common bootldr command out of the BF537-STAMP
19073 specific board directory and into the common directory so that all Blackfin
19074 boards may utilize it.
19075
19076 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19077
19078 commit decbe029b2a9d3333d02c433389b1c821eea96d7
19079 Author: Heiko Schocher <hs@denx.de>
19080 Date: Fri Mar 14 11:05:20 2008 +0100
19081
19082 mgcoge: update configuration
19083
19084 Fix configuration for mgcoge board
19085
19086 Signed-off-by: Heiko Schocher <hs@denx.de>
19087
19088 commit c136724cda0219c49f1d4b346f00da29b14fdf14
19089 Author: Wolfgang Denk <wd@denx.de>
19090 Date: Sun Mar 16 01:22:59 2008 +0100
19091
19092 drivers/rtc/Makefile: keep list sorted
19093
19094 Signed-off-by: Wolfgang Denk <wd@denx.de>
19095
19096 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
19097 Author: Tor Krill <tor@excito.com>
19098 Date: Sat Mar 15 15:40:26 2008 +0100
19099
19100 Add support for Intersil isl1208 RTC
19101
19102 Signed-off-by: Tor Krill <tor@excito.com>
19103
19104 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
19105 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19106 Date: Sat Mar 15 17:36:41 2008 +0100
19107
19108 cramfs: Fix ifdef
19109
19110 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19111
19112 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
19113 Author: Wolfgang Denk <wd@denx.de>
19114 Date: Sun Mar 16 01:12:58 2008 +0100
19115
19116 Conding style cleanup
19117
19118 Signed-off-by: Wolfgang Denk <wd@denx.de>
19119
19120 commit 41712b4e8c95dff23354bcd620e1f9477160c190
19121 Author: Stefan Roese <sr@denx.de>
19122 Date: Wed Mar 5 12:31:53 2008 +0100
19123
19124 ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
19125
19126 This patch adds USB OHCI support to the Canyonlands board port. It also
19127 enables EXT2 support.
19128
19129 Signed-off-by: Stefan Roese <sr@denx.de>
19130
19131 commit 2596f5b9d353ff3e4387a3325d05740f16958038
19132 Author: Stefan Roese <sr@denx.de>
19133 Date: Wed Mar 5 12:29:32 2008 +0100
19134
19135 usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
19136
19137 This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
19138 way a board just needs to define this new option to enable the "force
19139 NoPowerSwitching mode" instead of adding new CPU/architecture defines
19140 to the USB source itself.
19141
19142 This new option will be used first with the new AMCC 460EX Canyonlands
19143 board port, which will be posted in a few days.
19144
19145 This patch also fixes a small compilation problem when DEBUG is enabled.
19146
19147 Signed-off-by: Stefan Roese <sr@denx.de>
19148
19149 commit 71665ebf88408ff2acb762af47989fd4365b321a
19150 Author: Stefan Roese <sr@denx.de>
19151 Date: Mon Mar 3 17:27:02 2008 +0100
19152
19153 ppc4xx: Add Canyonlands NAND booting support
19154
19155 460EX doesn't support a fixed bootstrap option to boot from 512 byte page
19156 NAND devices. The only bootstrap option for NAND booting is option F for
19157 2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
19158 EEPROM needs to be programmed accordingly.
19159
19160 This patch adds basic NAND booting support for the AMCC Canyonlands aval
19161 board and also adds support to the "bootstrap" command, to enable NAND
19162 booting I2C setting.
19163
19164 Tested with 512 byte page NAND device (32MByte) on Canyonlands.
19165
19166 Signed-off-by: Stefan Roese <sr@denx.de>
19167
19168 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
19169 Author: Stefan Roese <sr@denx.de>
19170 Date: Tue Mar 11 16:53:00 2008 +0100
19171
19172 ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
19173
19174 This patch adds support for the AMCC Canyonlands 460EX evaluation
19175 board.
19176
19177 Signed-off-by: Stefan Roese <sr@denx.de>
19178
19179 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
19180 Author: Stefan Roese <sr@denx.de>
19181 Date: Tue Mar 11 16:52:24 2008 +0100
19182
19183 ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
19184
19185 This patch adds support for the AMCC Canyonlands 460EX evaluation
19186 board.
19187
19188 Signed-off-by: Stefan Roese <sr@denx.de>
19189
19190 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
19191 Author: Stefan Roese <sr@denx.de>
19192 Date: Tue Mar 11 16:51:17 2008 +0100
19193
19194 ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
19195
19196 This patch adds support for the AMCC Canyonlands 460EX evaluation
19197 board.
19198
19199 Signed-off-by: Stefan Roese <sr@denx.de>
19200
19201 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
19202 Author: Stefan Roese <sr@denx.de>
19203 Date: Tue Mar 11 15:11:43 2008 +0100
19204
19205 ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
19206
19207 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19208
19209 Signed-off-by: Stefan Roese <sr@denx.de>
19210
19211 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
19212 Author: Stefan Roese <sr@denx.de>
19213 Date: Tue Mar 11 15:11:18 2008 +0100
19214
19215 ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
19216
19217 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19218
19219 Signed-off-by: Stefan Roese <sr@denx.de>
19220
19221 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
19222 Author: Stefan Roese <sr@denx.de>
19223 Date: Tue Mar 11 15:07:10 2008 +0100
19224
19225 ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
19226
19227 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19228
19229 Signed-off-by: Stefan Roese <sr@denx.de>
19230
19231 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
19232 Author: Stefan Roese <sr@denx.de>
19233 Date: Tue Mar 11 15:05:50 2008 +0100
19234
19235 ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
19236
19237 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19238
19239 Signed-off-by: Stefan Roese <sr@denx.de>
19240
19241 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
19242 Author: Stefan Roese <sr@denx.de>
19243 Date: Tue Mar 11 15:05:26 2008 +0100
19244
19245 ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
19246
19247 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19248
19249 Signed-off-by: Stefan Roese <sr@denx.de>
19250
19251 commit 56e410178375d9f20be25fb24e180974f0ae120b
19252 Author: Stefan Roese <sr@denx.de>
19253 Date: Tue Feb 19 22:07:57 2008 +0100
19254
19255 ppc4xx: interrupt.c reworked
19256
19257 This patch is a rework of the 4xx interrupt handling done while
19258 adding the 460EX/GT support. Interrupts are needed on 4xx for the
19259 EMAC driver.
19260
19261 Signed-off-by: Stefan Roese <sr@denx.de>
19262
19263 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
19264 Author: Stefan Roese <sr@denx.de>
19265 Date: Tue Feb 19 22:01:57 2008 +0100
19266
19267 ppc4xx: program_tlb now uses 64bit physical addess
19268
19269 This patch changes the physical addess parameter from 32bit to 64bit.
19270 This is needed for 36bit 4xx platforms to access areas located
19271 beyond the 4GB border, like SoC peripherals (EBC etc.).
19272
19273 Signed-off-by: Stefan Roese <sr@denx.de>
19274
19275 commit c3307fa186af85771924c434997089b8104c0a46
19276 Author: Stefan Roese <sr@denx.de>
19277 Date: Tue Feb 19 21:58:25 2008 +0100
19278
19279 ppc4xx: miiphy.c reworked
19280
19281 While adding the 460EX/GT support I reworked the 4xx miiphy code. It
19282 badly neede some cleanup.
19283
19284 Signed-off-by: Stefan Roese <sr@denx.de>
19285
19286 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
19287 Author: Stefan Roese <sr@denx.de>
19288 Date: Tue Feb 19 16:21:49 2008 +0100
19289
19290 rtc: Add M41T62 support
19291
19292 This patch add support for the STM M41T62 RTC. It is used and tested
19293 on the AMCC Canyonlands 406EX platform.
19294
19295 Signed-off-by: Stefan Roese <sr@denx.de>
19296
19297 commit 217d383e201adc7f2271145ae345ea5eae2b7170
19298 Author: Niklaus Giger <niklaus.giger@netstal.com>
19299 Date: Mon Feb 25 18:46:43 2008 +0100
19300
19301 ppc4xx: Add 405GPr based MCU25 board specific files
19302
19303 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19304
19305 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
19306 Author: Niklaus Giger <niklaus.giger@netstal.com>
19307 Date: Mon Feb 25 18:46:42 2008 +0100
19308
19309 ppc4xx: Add 405GPr based MCU25 board config file
19310
19311 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19312
19313 commit b05f35436b733a240559e77e46bed8439665ecc5
19314 Author: Niklaus Giger <niklaus.giger@netstal.com>
19315 Date: Mon Feb 25 18:46:41 2008 +0100
19316
19317 ppc4xx: Add 405GPr based MCU25 board. Global files
19318
19319 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19320
19321 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
19322 Author: Niklaus Giger <niklaus.giger@netstal.com>
19323 Date: Mon Feb 25 18:37:02 2008 +0100
19324
19325 ppc4xx: HCU4/5. remove obsolete hcu_flash.c
19326
19327 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19328
19329 commit a079494853cc2bfeddb26673219db0b4b2b31566
19330 Author: Niklaus Giger <niklaus.giger@netstal.com>
19331 Date: Mon Feb 25 18:37:01 2008 +0100
19332
19333 ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
19334
19335 Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
19336 the FLASH_CFI_LEGACY et al. config options.
19337
19338 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19339
19340 commit e4170e5a50c8110f792bc37472833ae669d69951
19341 Author: Stefan Roese <sr@denx.de>
19342 Date: Tue Mar 11 13:52:25 2008 +0100
19343
19344 ppc4xx: Fix comment in 405EX DDR2 init code
19345
19346 Signed-off-by: Stefan Roese <sr@denx.de>
19347
19348 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
19349 Author: Bartlomiej Sieka <tur@semihalf.com>
19350 Date: Fri Mar 14 16:22:34 2008 +0100
19351
19352 Add MD5 support to the new uImage format
19353
19354 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19355
19356 commit 0ede0c383530a418cf98be9122371a86573cd0db
19357 Author: Bartlomiej Sieka <tur@semihalf.com>
19358 Date: Fri Mar 14 16:22:34 2008 +0100
19359
19360 Add the MD5 algorithm
19361
19362 MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
19363 calculated using the md5() function -- see include/md5.h for details.
19364
19365 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19366
19367 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
19368 Author: Wolfgang Denk <wd@denx.de>
19369 Date: Fri Mar 14 16:04:54 2008 +0100
19370
19371 tools/setlocalversion: use a git-describe-ish format
19372
19373 Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
19374 where 'nnnnn' is the number of commits since the last tag (i.e.,
19375 1.3.2-rc3). This makes it much easier to recognize "newer" versions
19376 and to see how much has been changed since the referenced tag.
19377
19378 Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
19379
19380 Signed-off-by: Wolfgang Denk <wd@denx.de>
19381
19382 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
19383 Author: Wolfgang Denk <wd@denx.de>
19384 Date: Thu Mar 13 14:32:03 2008 +0100
19385
19386 HMI1001: add support for MPC5200 Rev. B processors.
19387
19388 Signed-off-by: Wolfgang Denk <wd@denx.de>
19389
19390 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
19391 Author: Wolfgang Denk <wd@denx.de>
19392 Date: Thu Mar 13 14:29:49 2008 +0100
19393
19394 TQM5200: remove dead code
19395
19396 This board never used a MGT5100 processor.
19397
19398 Signed-off-by: Wolfgang Denk <wd@denx.de>
19399
19400 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
19401 Author: Marian Balakowicz <m8@semihalf.com>
19402 Date: Wed Mar 12 12:14:15 2008 +0100
19403
19404 [new uImage] Fix build issue on ARM
19405
19406 ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
19407
19408 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19409
19410 commit 3310c549a73a949430bfda90876df7552a1dab0c
19411 Author: Marian Balakowicz <m8@semihalf.com>
19412 Date: Wed Mar 12 12:13:13 2008 +0100
19413
19414 [new uImage] Add new uImage format documentation and examples
19415
19416 Create doc/uImage.FIT documentation directory with the following files:
19417 - command_syntax_extensions.txt : extended command syntax description
19418 - howto.txt : short usage howto
19419 - source_file_format.txt : internal new uImage format description
19420
19421 Add example image source files:
19422 - kernel.its
19423 - kernel_fdt.its
19424 - multi.its
19425
19426 Update README appropriately.
19427
19428 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19429 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19430
19431 commit 1ec73761d2e247078f4520a265d463e8b73391a2
19432 Author: Marian Balakowicz <m8@semihalf.com>
19433 Date: Wed Mar 12 10:35:52 2008 +0100
19434
19435 [new uImage] Fix definition of common bootm_headers_t fields
19436
19437 verify, autostart and lmb fields are used regardless of CONFIG_FIT
19438 setting, move their definitions to common section.
19439
19440 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19441
19442 commit 1d1cb4270edc6a99276834064069717f9782c491
19443 Author: Marian Balakowicz <m8@semihalf.com>
19444 Date: Wed Mar 12 10:35:51 2008 +0100
19445
19446 [new uImage] Fix build problems on trab board
19447
19448 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19449
19450 commit f773bea8e11f4a11c388dcee956b2444203e6b65
19451 Author: Marian Balakowicz <m8@semihalf.com>
19452 Date: Wed Mar 12 10:35:46 2008 +0100
19453
19454 [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
19455
19456 Save FIT configuration provied in the first bootm argument and use it
19457 when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
19458 arguments are not specified.
19459
19460 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19461
19462 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
19463 Author: Marian Balakowicz <m8@semihalf.com>
19464 Date: Wed Mar 12 10:33:01 2008 +0100
19465
19466 [new uImage] More verbose kernel image uncompress error message
19467
19468 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19469
19470 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
19471 Author: Marian Balakowicz <m8@semihalf.com>
19472 Date: Wed Mar 12 10:33:01 2008 +0100
19473
19474 [new uImage] Use show_boot_progress() for new uImage format
19475
19476 This patch allocates a set of show_boot_progress() IDs for new uImage format
19477 and adds show_boot_progress() calls in new uImage format handling code.
19478
19479 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19480
19481 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
19482 Author: Marian Balakowicz <m8@semihalf.com>
19483 Date: Wed Mar 12 10:33:01 2008 +0100
19484
19485 [new uImage] Add new uImage fromat support to fpga command
19486
19487 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19488
19489 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
19490 Author: Marian Balakowicz <m8@semihalf.com>
19491 Date: Wed Mar 12 10:33:01 2008 +0100
19492
19493 [new uImage] Add new uImage format handling to other bootm related commands
19494
19495 Updated commands:
19496
19497 docboot - cmd_doc.c
19498 fdcboot - cmd_fdc.c
19499 diskboot - cmd_ide.c
19500 nboot - cmd_nand.c
19501 scsiboot - cmd_scsi.c
19502 usbboot - cmd_usb.c
19503
19504 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19505
19506 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
19507 Author: Marian Balakowicz <m8@semihalf.com>
19508 Date: Wed Mar 12 10:33:00 2008 +0100
19509
19510 [new uImage] Add new uImage format support to imgextract command
19511
19512 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19513
19514 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
19515 Author: Marian Balakowicz <m8@semihalf.com>
19516 Date: Wed Mar 12 10:33:00 2008 +0100
19517
19518 [new uImage] Add new uImage format support to autoscript routine
19519
19520 autoscript() routine is updated to accept second argument, which
19521 is only used for FIT images and provides a FIT subimage unit name.
19522
19523 autoscript() routine callers must now pass two arguments. For
19524 non-interactive use (like in cmd_load.c, cmd_net.c), new environment
19525 variable 'autoscript_uname' is introduced and used as a FIT
19526 subimage unit name source.
19527
19528 autoscript command accepts extended syntax of the addr argument:
19529 addr:<subimg_uname>
19530
19531 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19532
19533 commit cd7c596e9f561dbbc17b717277438aee78cde14f
19534 Author: Marian Balakowicz <m8@semihalf.com>
19535 Date: Wed Mar 12 10:33:00 2008 +0100
19536
19537 [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
19538
19539 This patch updates architecture specific implementations of
19540 do_bootm_linux() adding new uImage format handling for
19541 operations like get kernel entry point address, get kernel
19542 image data start address.
19543
19544 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19545
19546 commit 3dfe110149311425919e6d6a14b561b4207498f1
19547 Author: Marian Balakowicz <m8@semihalf.com>
19548 Date: Wed Mar 12 10:32:59 2008 +0100
19549
19550 [new uImage] Add node offsets for FIT images listed in struct bootm_headers
19551
19552 This patch adds new node offset fields to struct bootm_headers
19553 and updates bootm_headers processing code to make use of them.
19554 Saved node offsets allow to avoid repeating fit_image_get_node() calls.
19555
19556 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19557
19558 commit bc8ed486b125452ba3bd8344f052f437329150c5
19559 Author: Marian Balakowicz <m8@semihalf.com>
19560 Date: Wed Mar 12 10:32:53 2008 +0100
19561
19562 [new uImage] ppc: Add new uImage format support to FDT handling routines
19563
19564 Support for new (FIT) format uImages is added to powerpc specific
19565 boot_get_fdt() routine which now recognizes, sanity checks FIT image
19566 and is able to access data sections of the requested component image.
19567
19568 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19569
19570 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
19571 Author: Marian Balakowicz <m8@semihalf.com>
19572 Date: Wed Mar 12 10:14:57 2008 +0100
19573
19574 [new uImage] Re-enable interrupts for non automatic booting
19575
19576 Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
19577 environment variable is not set to 'yes'.
19578
19579 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19580
19581 commit d985c8498c4e47095820da97aa722381d39172c5
19582 Author: Marian Balakowicz <m8@semihalf.com>
19583 Date: Wed Mar 12 10:14:38 2008 +0100
19584
19585 [new uImage] Remove unnecessary arguments passed to ramdisk routines
19586
19587 boot_get_ramdisk() and image_get_ramdisk() do not need all
19588 cmdtp, flag, argc and argv arguments. Simplify routines definition.
19589
19590 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19591
19592 commit c87796483bc7c2900470dc747c367f602577608d
19593 Author: Marian Balakowicz <m8@semihalf.com>
19594 Date: Wed Mar 12 10:12:37 2008 +0100
19595
19596 [new uImage] Add new uImage format support for ramdisk handling
19597
19598 This patch updates boot_get_ramdisk() routine adding format
19599 verification and handling for new (FIT) uImages.
19600
19601 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19602
19603 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
19604 Author: Marian Balakowicz <m8@semihalf.com>
19605 Date: Wed Mar 12 10:01:05 2008 +0100
19606
19607 [new uImage] Add new uImage format support for kernel booting
19608
19609 New format uImages are recognized by the bootm command,
19610 validity of specified kernel component image is checked and
19611 its data section located and used for further processing
19612 (uncompress, load, etc.)
19613
19614 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19615
19616 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
19617 Author: Marian Balakowicz <m8@semihalf.com>
19618 Date: Tue Mar 11 12:35:20 2008 +0100
19619
19620 [new uImage] Add new uImage format support for imls and iminfo commands
19621
19622 imls and iminfo can now recognize nad print out contents of the new (FIT)
19623 format uImages.
19624
19625 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19626
19627 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
19628 Author: Bartlomiej Sieka <tur@semihalf.com>
19629 Date: Tue Mar 11 12:34:47 2008 +0100
19630
19631 [new uImage] Add support for new uImage format to mkimage tool
19632
19633 Support for the new uImage format (FIT) is added to mkimage tool.
19634 Commandline syntax is appropriately extended:
19635
19636 mkimage [-D dtc_options] -f fit-image.its fit-image
19637
19638 mkimage (together with dtc) takes fit-image.its and referenced therein
19639 binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
19640 final image that can be transferred to the target (e.g., via tftp) and then
19641 booted using the bootm command in U-Boot.
19642
19643 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19644
19645 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
19646 Author: Marian Balakowicz <m8@semihalf.com>
19647 Date: Mon Mar 10 17:53:49 2008 +0100
19648
19649 [new uImage] Make node unit names const in struct bootm_headers
19650
19651 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19652
19653 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
19654 Author: Marian Balakowicz <m8@semihalf.com>
19655 Date: Fri Feb 29 21:24:06 2008 +0100
19656
19657 [new uImage] New uImage low-level API
19658
19659 Add FDT-based functions for handling new format component images,
19660 configurations, node operations, property get/set, etc.
19661
19662 fit_ - routines handling global new format uImage operations
19663 like get/set top level property, process all nodes, etc.
19664 fit_image_ - routines handling component images subnodes
19665 fit_conf_ - routines handling configurations node
19666
19667 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19668 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19669
19670 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
19671 Author: Wolfgang Denk <wd@denx.de>
19672 Date: Sun Mar 9 16:20:02 2008 +0100
19673
19674 Release v1.3.2
19675
19676 Update CHANGELOG for release.
19677
19678 Signed-off-by: Wolfgang Denk <wd@denx.de>
19679
19680 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
19681 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19682 Date: Sun Mar 9 14:52:11 2008 +0100
19683
19684 SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
19685
19686 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19687 Signed-off-by: Wolfgang Denk <wd@denx.de>
19688
19689 commit db695b78515ddb88a2d4f3357c120345efbf59ec
19690 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19691 Date: Sun Mar 9 10:44:01 2008 +0100
19692
19693 scb9328: Fix flash warning: type qualifiers ignored on function return type
19694
19695 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19696
19697 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
19698 Author: Wolfgang Denk <wd@denx.de>
19699 Date: Sun Mar 9 10:50:41 2008 +0100
19700
19701 esd/common/fpga.c: fix indentation.
19702
19703 Signed-off-by: Wolfgang Denk <wd@denx.de>
19704
19705 commit cc3843e36453e2b8db65d7e56de938ba045016a0
19706 Author: Wolfgang Denk <wd@denx.de>
19707 Date: Sun Mar 9 10:33:31 2008 +0100
19708
19709 common/kgdb.c: fix 'dereferencing type-punned pointer' warning
19710
19711 and get rid of a couple of unneeded casts.
19712
19713 Signed-off-by: Wolfgang Denk <wd@denx.de>
19714
19715 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
19716 Author: Wolfgang Denk <wd@denx.de>
19717 Date: Sun Mar 9 10:09:53 2008 +0100
19718
19719 esd/common/fpga.c: fix 'assignment of read-only location' error
19720
19721 Signed-off-by: Wolfgang Denk <wd@denx.de>
19722
19723 commit c6fe4dabac066e8758345d249032768496983a3e
19724 Author: Wolfgang Denk <wd@denx.de>
19725 Date: Sun Mar 9 02:13:19 2008 +0100
19726
19727 Makefile: make build silently again.
19728
19729 Signed-off-by: Wolfgang Denk <wd@denx.de>
19730
19731 commit 76babc86576f092573599334c85ec543fdbc6015
19732 Author: Wolfgang Denk <wd@denx.de>
19733 Date: Sun Mar 9 02:07:49 2008 +0100
19734
19735 m501sk: Fix out of tree building
19736
19737 Signed-off-by: Wolfgang Denk <wd@denx.de>
19738
19739 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
19740 Author: Wolfgang Denk <wd@denx.de>
19741 Date: Sun Mar 9 00:06:09 2008 +0100
19742
19743 ADS5121: fix out of tree build
19744
19745 and simplify Makefile a bit.
19746
19747 Signed-off-by: Wolfgang Denk <wd@denx.de>
19748
19749 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
19750 Author: Wolfgang Denk <wd@denx.de>
19751 Date: Sat Mar 8 22:35:31 2008 +0100
19752
19753 Release v1.3.2
19754
19755 Signed-off-by: Wolfgang Denk <wd@denx.de>
19756
19757 commit 78a90f827df74520e939c794fc7413dace21c4db
19758 Author: Wolfgang Denk <wd@denx.de>
19759 Date: Sat Mar 8 22:35:04 2008 +0100
19760
19761 Update CHANGELOG
19762
19763 Signed-off-by: Wolfgang Denk <wd@denx.de>
19764
19765 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
19766 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19767 Date: Sat Mar 8 21:30:04 2008 +0100
19768
19769 esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
19770
19771 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19772
19773 commit d75469d48c05795144f4b8ba76addbb4920a7bba
19774 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19775 Date: Sat Mar 8 09:25:49 2008 +0900
19776
19777 net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
19778
19779 When rtl_recv() of rtl8169 is called, OWNbit of status register
19780 is not enable occasionally.
19781 rtl_recv() doesn't work normally when the driver doesn't do
19782 appropriate processing.
19783 This patch fix this problem.
19784
19785 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19786
19787 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
19788 Author: Heiko Schocher <hs@denx.de>
19789 Date: Fri Mar 7 08:15:28 2008 +0100
19790
19791 mgsuvd: update board configuration
19792
19793 initialize the UPIOx controller.
19794
19795 Signed-off-by: Heiko Schocher <hs@denx.de>
19796
19797 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
19798 Author: Heiko Schocher <hs@denx.de>
19799 Date: Fri Mar 7 08:13:41 2008 +0100
19800
19801 mgcoge: update board configuration
19802
19803 add support for the config Flash.
19804 initialize the UPIOx controller.
19805
19806 Signed-off-by: Heiko Schocher <hs@denx.de>
19807
19808 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
19809 Author: Kim Phillips <kim.phillips@freescale.com>
19810 Date: Fri Mar 7 12:27:31 2008 -0600
19811
19812 mpc83xx: make dtb basename file references equal those of linux
19813
19814 the dts file basenames were updated in linux - this helps avoid
19815 inadvertently loading any old dtbs laying around.
19816
19817 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19818
19819 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
19820 Author: Kim Phillips <kim.phillips@freescale.com>
19821 Date: Wed Feb 27 16:08:22 2008 -0600
19822
19823 net: uec_phy: actually increment the timeout counter
19824
19825 allow u-boot to recover (and, e.g., switch to another interface) in the
19826 case where a PHY does not report autonegotiation is complete within its
19827 two second timeout value.
19828
19829 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19830
19831 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
19832 Author: Markus Brunner <super.firetwister@googlemail.com>
19833 Date: Wed Mar 5 21:38:12 2008 +0100
19834
19835 fix taihu soft spi_read
19836
19837 The taihu board used gpio_read_out_bit which reads the output register and not
19838 the pin state.
19839
19840 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
19841
19842 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
19843 Author: Stefan Roese <sr@denx.de>
19844 Date: Fri Mar 7 08:01:43 2008 +0100
19845
19846 ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
19847
19848 Signed-off-by: Stefan Roese <sr@denx.de>
19849
19850 commit bd4458cb47abecabd406b1210457be96c69fc49d
19851 Author: Dave Liu <r63238@freescale.com>
19852 Date: Tue Mar 4 16:59:22 2008 +0800
19853
19854 837xEMDS: Improve the system performance
19855
19856 1. Make the CSB bus pipeline depth as 4, and enable
19857 the repeat mode;
19858 2. Raise the eTSEC emergency priority;
19859 3. Use the highest IP blocks clock.
19860
19861 Signed-off-by: Dave Liu <daveliu@freescale.com>
19862
19863 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
19864 Author: Detlev Zundel <dzu@denx.de>
19865 Date: Thu Mar 6 16:45:53 2008 +0100
19866
19867 Replace "run load; run update" with conditionalized "run load update".
19868
19869 The latter version stops when "run load" fails for whatever reasons
19870 rendering the combination *a lot* more secure.
19871
19872 Signed-off-by: Detlev Zundel <dzu@denx.de>
19873
19874 commit 6bc113886d7d316df1a4e459bec8baf027518551
19875 Author: Stefan Roese <sr@denx.de>
19876 Date: Tue Mar 4 17:40:41 2008 +0100
19877
19878 net: Print error message upon net usage when no ethernet-interface is found
19879
19880 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
19881 defined. Then no ethernet interface is available but a simple "tftp"
19882 command will return without any error message which is quite confusing.
19883
19884 Signed-off-by: Stefan Roese <sr@denx.de>
19885
19886 commit a30a549a3553032d809e0356306b62de0b125901
19887 Author: Jon Loeliger <jdl@freescale.com>
19888 Date: Tue Mar 4 10:03:03 2008 -0600
19889
19890 Remove erroneous or extra spd.h #includers.
19891
19892 Many of the spd.h #includers don't need it,
19893 and wanted to have spd_sdram() declared instead.
19894 Since they didn't get that, some also had open
19895 coded extern declarations of it instead or as well.
19896 Fix it all up by using spd_sdram.h where needed.
19897
19898 Signed-off-by: Jon Loeliger <jdl@freescale.com>
19899
19900 commit a4475386cef14af3fd88f0518b688e755669486d
19901 Author: Wolfgang Denk <wd@denx.de>
19902 Date: Tue Mar 4 17:41:28 2008 +0100
19903
19904 PCS440EP: fix build problems (redundant #define)
19905
19906 Signed-off-by: Wolfgang Denk <wd@denx.de>
19907
19908 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
19909 Author: Stefan Roese <sr@denx.de>
19910 Date: Tue Mar 4 17:39:25 2008 +0100
19911
19912 net: Print error message upon net usage when no ethernet-interface is found
19913
19914 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
19915 defined. Then no ethernet interface is available but a simple "tftp"
19916 command will return without any error message which is quite confusing.
19917
19918 Signed-off-by: Stefan Roese <sr@denx.de>
19919
19920 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
19921 Author: Wolfgang Denk <wd@denx.de>
19922 Date: Tue Mar 4 17:38:50 2008 +0100
19923
19924 W7OLMC/W7OLMG: fix build problems (redundant #define)
19925
19926 Signed-off-by: Wolfgang Denk <wd@denx.de>
19927
19928 commit f9301e1cda296245ba052d7b08321199c3d0af9d
19929 Author: Wolfgang Denk <wd@denx.de>
19930 Date: Tue Mar 4 14:58:31 2008 +0100
19931
19932 Makefile: fix problem with out-of-tree builds introduced by 5013c09f
19933
19934 Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
19935 problem for out-of-tree builds which caused "make clean" to fail.
19936
19937 Signed-off-by: Wolfgang Denk <wd@denx.de>
19938
19939 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
19940 Author: Wolfgang Denk <wd@denx.de>
19941 Date: Tue Mar 4 11:58:26 2008 +0100
19942
19943 examples/Makefile: build "hello_world" on 8xx, too.
19944
19945 Signed-off-by: Wolfgang Denk <wd@denx.de>
19946
19947 commit 74eb0222594fd23aafdf168e60e872814eea8b62
19948 Author: Mike Nuss <mike@terascala.com>
19949 Date: Mon Mar 3 15:27:05 2008 -0500
19950
19951 PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
19952
19953 Every now and then a Sequoia board (or equivalent hardware) had
19954 problems connecting to a Gigabit capable network interface.
19955
19956 There were differences in the PHY setup between Linux and U-Boot.
19957
19958 This patch fixes the problem. Apparently "remote fault" is being set,
19959 which signals to some devices (on the other end of the cable) that a
19960 fault has occurred, while other devices ignore it. I believe the RF bit
19961 was causing the issue, but I removed T4 also, to match up with Linux.
19962
19963 Signed-off-by: Mike Nuss <mike@terascala.com>
19964
19965 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
19966 Author: Timur Tabi <timur@freescale.com>
19967 Date: Mon Mar 3 09:58:52 2008 -0600
19968
19969 fix QE firmware uploading limit
19970
19971 Fix a typo in qe_upload_firmware() that prevented uploading firmware on
19972 systems with more than one RISC core.
19973
19974 Signed-off-by: Timur Tabi <timur@freescale.com>
19975
19976 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
19977 Author: Bernhard Nemec <bnemec@ganssloser.com>
19978 Date: Mon Mar 3 11:57:23 2008 +0000
19979
19980 Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
19981
19982 Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
19983 see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
19984
19985 Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
19986
19987 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
19988 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
19989 Date: Mon Mar 3 10:39:13 2008 +0200
19990
19991 fix copy from ram to dataflash
19992
19993 If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
19994 routines instead of dataflash. This is because it checks "if source
19995 address is not dataflash" instead of target address.
19996
19997 Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
19998
19999 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
20000 Author: Wolfgang Denk <wd@denx.de>
20001 Date: Mon Mar 3 12:16:44 2008 +0100
20002
20003 Fix quoting problem (preboot setting) in many board config files.
20004
20005 Signed-off-by: Wolfgang Denk <wd@denx.de>
20006
20007 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
20008 Author: Wolfgang Denk <wd@denx.de>
20009 Date: Mon Mar 3 12:36:49 2008 +0100
20010
20011 ADS5121: Fix default environment.
20012
20013 Signed-off-by: Wolfgang Denk <wd@denx.de>
20014
20015 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
20016 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20017 Date: Sun Mar 2 16:12:31 2008 +0100
20018
20019 Makefile: Fix missing unconfig and mkconfig use
20020
20021 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20022
20023 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
20024 Author: michael <trimarchi@gandalf.sssup.it>
20025 Date: Sun Mar 2 23:33:46 2008 +0100
20026
20027 Fix checking fat32 cluster size.
20028
20029 This fixes the cluster size tests in the FAT32 file system.
20030 The current implementation of VFAT support doesn't work if the
20031 referred cluster has an offset > 16bit representation, causing
20032 "fatload" and "fatls" commands etc. to fail.
20033
20034 Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
20035
20036 commit 661bad63a076a96c39c64f136915f146725af92b
20037 Author: Wolfgang Denk <wd@denx.de>
20038 Date: Sun Mar 2 22:57:23 2008 +0100
20039
20040 Prepare v1.3.2-rc2 release candidate
20041
20042 Signed-off-by: Wolfgang Denk <wd@denx.de>
20043
20044 commit 76957cb3d621bf664311908e5962e151c633c285
20045 Author: Stefan Roese <sr@denx.de>
20046 Date: Sat Mar 1 12:11:40 2008 +0100
20047
20048 ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
20049
20050 The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
20051 currently 4k/2k is configured. This patch fixes this issue.
20052
20053 Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
20054
20055 Signed-off-by: Stefan Roese <sr@denx.de>
20056
20057 commit 118978c8eb43803e2794233922df4249fa278b83
20058 Author: Woodruff, Richard <r-woodruff2@ti.com>
20059 Date: Fri Feb 29 17:34:35 2008 -0600
20060
20061 Fix alignment error on ARM for modules
20062
20063 Fix alignment fault on ARM when running modules. With out an explicit
20064 linker file gcc4.2.1 will half word align __bss_start's value. The word
20065 dereference will crash hello_world.
20066
20067 signed-off-by Richard Woodruff <r-woodruff2@ti.com>
20068
20069 commit ce1120dd703e6f12c59e4eba9962356a0300b832
20070 Author: Dave Liu <r63238@freescale.com>
20071 Date: Fri Feb 29 17:45:31 2008 +0800
20072
20073 fs: Fix ext2 read issue
20074
20075 The ext2 aligned process will corrupt the key
20076 data struct, the patch fix this.
20077
20078 Signed-off-by: Dave Liu <daveliu@freescale.com>
20079
20080 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
20081 Author: Wolfgang Denk <wd@denx.de>
20082 Date: Sun Mar 2 22:45:33 2008 +0100
20083
20084 Makefile: cleanup "clean" target
20085
20086 Make sure CDPATH settings cannot interfere.
20087 Update CHANGELOG.
20088
20089 Signed-off-by: Wolfgang Denk <wd@denx.de>
20090
20091 commit ffda586fc1373243c9794babde69500f6293a8d8
20092 Author: Li Yang <leoli@freescale.com>
20093 Date: Fri Feb 29 11:46:05 2008 +0800
20094
20095 add cscope build target
20096
20097 Add cscope build target to generate cscope database for code browsing.
20098
20099 Signed-off-by: Li Yang <leoli@freescale.com>
20100
20101 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
20102 Author: Kim Phillips <kim.phillips@freescale.com>
20103 Date: Wed Feb 27 15:06:39 2008 -0600
20104
20105 net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
20106
20107 erratum 5.6 states the autoneg completion bit is functional only if the
20108 autoneg bit is asserted.
20109
20110 This fixes any secondarily-issued networking commands on non-gigabit
20111 links on the mpc8360 mds board.
20112
20113 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20114
20115 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
20116 Author: John Rigby <jrigby@freescale.com>
20117 Date: Tue Feb 26 09:38:14 2008 -0700
20118
20119 MPC5121e ADS PCI support take 3
20120
20121 Adds PCI support for MPC5121
20122
20123 Tested with drivers/net/rtl8139.c
20124
20125 Support is conditional since PCI on old silicon does not work.
20126
20127 ads5121_PCI_config turns on PCI
20128
20129 In this version, condition compilation of PCI code has been moved
20130 from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
20131 suggested by Jean-Christophe PLAGNIOL-VILLARD
20132
20133 Signed-off-by: John Rigby <jrigby@freescale.com>
20134
20135 commit 44b4dbed4133f657705b7c5193209da9978243a7
20136 Author: Anatolij Gustschin <agust@denx.de>
20137 Date: Mon Feb 25 23:53:07 2008 +0100
20138
20139 Fix warnings while compilation of post/drivers/memory.c
20140
20141 Fix warnings while compilation with new gcc in eldk-4.2
20142
20143 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20144
20145 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
20146 Author: Anatolij Gustschin <agust@denx.de>
20147 Date: Mon Feb 25 20:54:04 2008 +0100
20148
20149 ppc4xx: Fix problem in 4xx_enet.c driver
20150
20151 U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
20152 enabled. To reproduce the problem ensure that 'ethrotate'
20153 environment variable isn't set to "no" and then run
20154 "tftp 200000 not_existent_file".
20155 This patch tries to fix the issue.
20156
20157 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20158
20159 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
20160 Author: Anatolij Gustschin <agust@denx.de>
20161 Date: Mon Feb 25 20:04:20 2008 +0100
20162
20163 POST: Disable cache while SPR POST
20164
20165 Currently (since commit b2e2142c) u-boot crashes on
20166 sequoia board while SPR test if CONFIG_4xx_DCACHE is
20167 enabled. This patch disables the cache while SPR test.
20168
20169 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20170
20171 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
20172 Author: Martin Krause <martin.krause@tqs.de>
20173 Date: Mon Feb 25 17:52:40 2008 +0100
20174
20175 TQM5200: use automatic fdt memory fixup (part 2)
20176
20177 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
20178 TB5200 and TB5200_B to fixup the /memory node with the memory values
20179 detected by U-Boot.
20180
20181 Signed-off-by: Martin Krause <martin.krause@tqs.de>
20182
20183 commit 44ceec253ea941b301abf4b079d52324def69d92
20184 Author: Martin Krause <martin.krause@tqs.de>
20185 Date: Mon Feb 25 15:17:05 2008 +0100
20186
20187 TQM5200: use automatic fdt memory fixup
20188
20189 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
20190 TB5200 and TB5200_B to fixup the /memory node with the memory values
20191 detected by U-Boot.
20192
20193 Signed-off-by: Martin Krause <martin.krause@tqs.de>
20194
20195 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
20196 Author: Martin Krause <martin.krause@tqs.de>
20197 Date: Mon Feb 25 13:27:52 2008 +0100
20198
20199 TQM5200: fix bug in SDRAM initialization code
20200
20201 This patch fixes a bug in the SDRAM initialization code for the
20202 TQM5200. The hi_addr bit is now set correctly. Without this patch
20203 the hi_addr bit is always set to 1, if the second SDRAM bank is
20204 not populated.
20205
20206 For other MPC5200 boards a correspondig patch has already been applied
20207 some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
20208
20209 Signed-off-by: Martin Krause <martin.krause@tqs.de>
20210 --
20211 Forget the first patch please. I confused flash with SDRAM in
20212 the comment ...
20213
20214 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
20215 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20216 Date: Mon Feb 25 00:03:12 2008 +0100
20217
20218 mx1fs2/flash: Fix multiple compiler warnings
20219
20220 "pointer targets in assignment differ in signedness"
20221
20222 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20223
20224 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
20225 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20226 Date: Mon Feb 25 00:03:11 2008 +0100
20227
20228 arm-imx: Fix register definitions
20229
20230 Sync register definitions with linux
20231
20232 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20233
20234 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
20235 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20236 Date: Mon Feb 25 00:03:10 2008 +0100
20237
20238 actua1/actua2/actua3: Fix multiple unused variable warnings
20239
20240 - actua1:
20241 actux1.c: In function 'checkboard':
20242 actux1.c:92: warning: unused variable 'revision'
20243
20244 - actua2:
20245 actux2.c: In function 'checkboard':
20246 actux2.c:100: warning: unused variable 's'
20247 actux2.c:99: warning: unused variable 'revision'
20248 actux2.c: In function 'reset_phy':
20249 actux2.c:130: warning: unused variable 'i'
20250
20251 - actua3:
20252 actux3.c: In function 'checkboard':
20253 actux3.c:114: warning: unused variable 'revision'
20254
20255 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20256
20257 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
20258 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20259 Date: Sun Feb 24 11:44:29 2008 +0900
20260
20261 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
20262
20263 The previous patch was lacking of i386, microblaze, nios and nios2. This
20264 patch tries to fix them.
20265
20266 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20267
20268 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
20269 Author: Marian Balakowicz <m8@semihalf.com>
20270 Date: Fri Feb 29 22:22:46 2008 +0100
20271
20272 [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
20273
20274 Do not use global fdt blob pointer, calculate blob size from routine
20275 argument blob pointer.
20276
20277 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20278
20279 commit d1cc52879c8966507dad9fb575481e6d3985e64e
20280 Author: David Gibson <david@gibson.dropbear.id.au>
20281 Date: Tue Feb 12 00:58:31 2008 +1100
20282
20283 libfdt: Add and use a node iteration helper function.
20284
20285 This patch adds an fdt_next_node() function which can be used to
20286 iterate through nodes of the tree while keeping track of depth. This
20287 function is used to simplify the iteration code in a lot of other
20288 functions, and is also exported for use by library users.
20289
20290 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
20291
20292 commit 8cf30809a82902a471866d2f07725ce3b8a22291
20293 Author: Bartlomiej Sieka <tur@semihalf.com>
20294 Date: Fri Feb 29 16:00:24 2008 +0100
20295
20296 [new uImage] Add libfdt support to mkimage
20297
20298 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
20299
20300 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
20301 Author: Bartlomiej Sieka <tur@semihalf.com>
20302 Date: Fri Feb 29 16:00:23 2008 +0100
20303
20304 [new uImage] Add sha1.o object to mkimage binary build
20305
20306 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
20307
20308 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
20309 Author: Marian Balakowicz <m8@semihalf.com>
20310 Date: Fri Feb 29 16:00:06 2008 +0100
20311
20312 [new uImage] Fix component handling for legacy multi component images
20313
20314 Use uint32_t when accessing size table in image_multi_count() and
20315 image_multi_getimg() for multi component images.
20316
20317 Add missing uimage_to_cpu() endianness conversion.
20318
20319 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20320
20321 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
20322 Author: Marian Balakowicz <m8@semihalf.com>
20323 Date: Fri Feb 29 15:59:59 2008 +0100
20324
20325 [new uImage] Share common uImage code between mkimage and U-boot
20326
20327 This patch adds the following common routines:
20328
20329 1) Dedicated mkimage print_header() is replaced with common
20330 image_print_contents()
20331 image_print_contents_noindent()
20332
20333 2) Common os/arch/type/comp fields name <--> id translation routines
20334 genimg_get_os_name()
20335 genimg_get_arch_name()
20336 genimg_get_type_name()
20337 genimg_get_comp_name()
20338 genimg_get_os_id()
20339 genimg_get_arch_id()
20340 genimg_get_type_id()
20341 genimg_get_comp_id()
20342
20343 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20344
20345 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
20346 Author: Marian Balakowicz <m8@semihalf.com>
20347 Date: Fri Feb 29 14:58:34 2008 +0100
20348
20349 [new uImage] Update naming convention for bootm/uImage related code
20350
20351 This patch introduces the following prefix convention for the
20352 image format handling and bootm related code:
20353
20354 genimg_ - dual format shared code
20355 image_ - legacy uImage format specific code
20356 fit_ - new uImage format specific code
20357 boot_ - booting process related code
20358
20359 Related routines are renamed and a few pieces of code are moved around and
20360 re-grouped.
20361
20362 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20363
20364 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
20365 Author: Kumar Gala <galak@kernel.crashing.org>
20366 Date: Wed Feb 27 21:51:51 2008 -0600
20367
20368 [new uImage] Respect autostart setting in linux bootm
20369
20370 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20371 Acked-by: Marian Balakowicz <m8@semihalf.com>
20372
20373 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
20374 Author: Kumar Gala <galak@kernel.crashing.org>
20375 Date: Wed Feb 27 21:51:50 2008 -0600
20376
20377 [new uImage] Provide ability to restrict region used for boot images
20378
20379 Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
20380 to restrict what memory range is used for bootm.
20381
20382 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20383 Acked-by: Marian Balakowicz <m8@semihalf.com>
20384
20385 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
20386 Author: Kumar Gala <galak@kernel.crashing.org>
20387 Date: Wed Feb 27 21:51:49 2008 -0600
20388
20389 [new uImage] Use lmb for bootm allocations
20390
20391 Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
20392 functions over to using lmb for allocation of the ramdisk, command line
20393 and kernel bd info.
20394
20395 Convert PPC specific fdt_relocate() to use lmb for allocation of the device
20396 tree.
20397
20398 Provided a weak function that board code can call to do additional
20399 lmb reserves if needed.
20400
20401 Also introduce the concept of bootmap_base to specify the offset in
20402 physical memory that the bootmap is located at. This is used for
20403 allocations of the cmdline, kernel bd, and device tree as they should
20404 be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
20405
20406 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20407
20408 commit f5614e7926863bf0225ec860d9b319741a9c4004
20409 Author: Kumar Gala <galak@kernel.crashing.org>
20410 Date: Wed Feb 27 21:51:48 2008 -0600
20411
20412 [new uImage] Add autostart flag to bootm_headers structure
20413
20414 The autostart env variable was dropped as part of the initial new uImage
20415 cleanup. Add it back here so the arch specific code can decide if it
20416 wants to really boot or not.
20417
20418 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20419 Acked-by: Marian Balakowicz <m8@semihalf.com>
20420
20421 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
20422 Author: Kumar Gala <galak@kernel.crashing.org>
20423 Date: Wed Feb 27 21:51:47 2008 -0600
20424
20425 [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
20426
20427 Introduce the LMB lib used on PPC in the kernel as a clean way to manage
20428 the memory spaces used by various boot images and structures. This code
20429 will allow us to simplify the code in bootm and its support functions.
20430
20431 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20432
20433 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
20434 Author: Kumar Gala <galak@kernel.crashing.org>
20435 Date: Tue Feb 19 22:03:47 2008 -0600
20436
20437 [new uImage] ppc: Allow boards to specify effective amount of memory
20438
20439 For historical reasons we limited the stack to 256M because some boards
20440 could only map that much via BATS. However newer boards are capable of
20441 mapping more memory (for example 85xx is capable of doing up to 2G).
20442
20443 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20444 Acked-by: Marian Balakowicz <m8@semihalf.com>
20445
20446 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
20447 Author: Kumar Gala <galak@kernel.crashing.org>
20448 Date: Wed Feb 27 21:51:46 2008 -0600
20449
20450 [new uImage] rework error handling so common functions don't reset
20451
20452 Changed image_get_ramdisk() to just return NULL on error and have
20453 get_ramdisk() propogate that error to the caller. It's left to the
20454 caller to call do_reset() if it wants to.
20455
20456 Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
20457 to a common location. In the future we will change get_fdt() and
20458 fdt_relocate() to return success/failure and not call do_reset() at all.
20459
20460 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20461 Acked-by: Marian Balakowicz <m8@semihalf.com>
20462
20463 commit d2bc095a639672def11d5d043b5688d0dbd692ec
20464 Author: Kumar Gala <galak@kernel.crashing.org>
20465 Date: Wed Feb 27 21:51:45 2008 -0600
20466
20467 [new uImage] ppc: Re-order ramdisk/fdt handling sequence
20468
20469 Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
20470 however it does mean we have to go in and fixup the initrd info since
20471 we don't know where it will be.
20472
20473 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20474
20475 commit 27953493ef025fb698d68c5dee39b36f01f4d530
20476 Author: Kumar Gala <galak@kernel.crashing.org>
20477 Date: Wed Feb 27 21:51:44 2008 -0600
20478
20479 [new uImage] ppc: Determine if we are booting an OF style
20480
20481 If we are bootin OF style than we can skip setting up some things
20482 that are used for the old boot method.
20483
20484 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20485 Acked-by: Marian Balakowicz <m8@semihalf.com>
20486
20487 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
20488 Author: Kumar Gala <galak@kernel.crashing.org>
20489 Date: Wed Feb 27 21:51:43 2008 -0600
20490
20491 [new uImage] Don't pass kdb to ramdisk_high since we may not have one
20492
20493 We don't actually need the kdb param as we are just using it to get
20494 bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we
20495 boot via OF we might not actually fill out a kdb.
20496
20497 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20498 Acked-by: Marian Balakowicz <m8@semihalf.com>
20499
20500 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
20501 Author: Kumar Gala <galak@kernel.crashing.org>
20502 Date: Wed Feb 27 16:30:47 2008 -0600
20503
20504 85xx: Don't icbi when unlocking the cache
20505
20506 There is no reason to icbi when invalidating the temporary stack in
20507 the d-cache. Its impossible on e500 to have the i-cache contain
20508 any addresses in the temp stack and it can be problematic in generating
20509 transactions on the bus to non-valid addresses.
20510
20511 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20512
20513 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
20514 Author: Andy Fleming <afleming@freescale.com>
20515 Date: Wed Feb 27 15:50:50 2008 -0600
20516
20517 Fix source for ECM error IVPR
20518
20519 The source vector for the ECM was being set to 2,
20520 but that's what the source vector for DDR was being
20521 set to. Change it to 1.
20522
20523 Signed-off-by: Andy Fleming <afleming@freescale.com>
20524
20525 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
20526 Author: Andy Fleming <afleming@freescale.com>
20527 Date: Wed Feb 27 14:29:58 2008 -0600
20528
20529 Invalidate INIT_RAM TLB mappings
20530
20531 Commit 0db37dc... (and some others) changed the INIT_RAM TLB
20532 mappings to be unguarded. This collided with an existing "bug"
20533 where the mappings for the INIT_RAM were being kept around.
20534 This meant that speculative loads to those addresses were
20535 succeeding in the TLB, and going out to the bus, where they
20536 were causing an exception (there's nothing at that address). The
20537 Flash code was coincidentally causing such a speculative load.
20538 Rather than go back to mapping the INIT RAM as guarded, we fix
20539 it so that the entries for the INIT_RAM are invalidated. Thus
20540 the speculative loads will fail in the TLB, and have no effect.
20541
20542 Signed-off-by: Andy Fleming <afleming@freescale.com>
20543
20544 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
20545 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20546 Date: Sun Feb 17 22:56:17 2008 +0100
20547
20548 sbc8548: Fix Revision reading and unused variable 'path'
20549
20550 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20551
20552 commit 495d162374c472f46454453553382ad0735dc725
20553 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20554 Date: Sun Feb 17 22:56:16 2008 +0100
20555
20556 sbc8548: Fix cfi flash bank declaration
20557
20558 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20559
20560 commit 4efbe9dbb129f857f27856936112c8c02f016be6
20561 Author: Marian Balakowicz <m8@semihalf.com>
20562 Date: Wed Feb 27 11:02:26 2008 +0100
20563
20564 [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
20565
20566 Dual format image code must properly handle all three FDT passing methods:
20567 - raw FDT blob passed
20568 - FDT blob embedded in the legacy uImage
20569 - FDT blob embedded in the new uImage
20570
20571 This patch enables proper raw FDT handling when no FIT imaeg support
20572 is compiled in. This is a bit tricky as we must dected FIT format even
20573 when FIT uImage handling is not enabled as both FIT uImages and raw FDT
20574 blobs use tha same low level format (libfdt).
20575
20576 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20577
20578 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
20579 Author: Marian Balakowicz <m8@semihalf.com>
20580 Date: Wed Feb 27 11:02:26 2008 +0100
20581
20582 [new uImage] POWERPC: Add image_get_fdt() routine
20583
20584 FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
20585 (3) or embedded in the new uImage. For the (2) case embedding image must be
20586 verified before we get FDT from it. This patch factors out legacy image
20587 specific verification routine to the separate helper routine.
20588
20589 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20590 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20591
20592 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
20593 Author: Marian Balakowicz <m8@semihalf.com>
20594 Date: Wed Feb 27 11:02:07 2008 +0100
20595
20596 [new uImage] Add image_get_kernel() routine
20597
20598 Legacy image specific verification is factored out to a separate helper
20599 routine to keep get_kernel() generic and simple.
20600
20601 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20602 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20603
20604 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
20605 Author: Marian Balakowicz <m8@semihalf.com>
20606 Date: Wed Feb 27 11:01:04 2008 +0100
20607
20608 [new uImage] Move image verify flag to bootm_headers structure
20609
20610 Do not pass image verification flag directly to related routines.
20611 Simplify argument passing and move it to the bootm_header structure which
20612 contains curently processed image specific data and is already being passed
20613 on the argument list.
20614
20615 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20616 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20617
20618 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
20619 Author: Marian Balakowicz <m8@semihalf.com>
20620 Date: Wed Feb 27 11:00:47 2008 +0100
20621
20622 [Makefile] Sort COBJS in lib_<arch> Makefiles
20623
20624 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20625
20626 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
20627 Author: Marian Balakowicz <m8@semihalf.com>
20628 Date: Wed Feb 27 11:00:47 2008 +0100
20629
20630 [new uImage] Optimize gen_get_image() flow control
20631
20632 When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
20633 to do, update its control flow to better reflect that simple case.
20634
20635 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20636 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20637
20638 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
20639 Author: Marian Balakowicz <m8@semihalf.com>
20640 Date: Mon Feb 4 08:28:17 2008 +0100
20641
20642 [new uImage] POWERPC: Split get_fdt() into get and relocate routines
20643
20644 PPC specific FDT blob handling code is divided into two separate routines:
20645
20646 get_fdt() - find and verify a FDT blob (either raw or image embedded)
20647 fdt_relocate() - move FDT blob to within BOOTMAP if needed
20648
20649 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20650 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20651
20652 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
20653 Author: Jon Loeliger <jdl@freescale.com>
20654 Date: Mon Feb 25 13:13:37 2008 -0600
20655
20656 86xx: Fix renamed GUR symbols in sbc8641d board.
20657
20658 Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
20659 (86xx: Fix GUR PCI config registers properly), we should have
20660 changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
20661 symbols in the sbc8641d board as well. Fix this oversight.
20662
20663 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20664
20665 commit 64cd594e623c39f73964d18787763e4533f791f7
20666 Author: Stefan Roese <sr@denx.de>
20667 Date: Mon Feb 25 16:50:48 2008 +0100
20668
20669 ppc4xx: Fix acadia_nand build problem
20670
20671 Don't include testdram() on NAND-booting target acadia_nand. This saves
20672 a few bytes and makes the target build clean again.
20673
20674 Signed-off-by: Stefan Roese <sr@denx.de>
20675
20676 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
20677 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20678 Date: Sun Feb 24 23:03:12 2008 +0000
20679
20680 mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
20681
20682 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20683
20684 commit 724902c8464e610642b3a170278b99710325888e
20685 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20686 Date: Sun Feb 24 23:03:11 2008 +0000
20687
20688 arm-imx: Fix registers definition
20689
20690 Sync registers definition with linux
20691
20692 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20693
20694 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
20695 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20696 Date: Sun Feb 24 23:03:10 2008 +0000
20697
20698 actua1/actua2/actua3: Fix multipleunused variable
20699
20700 - actua1:
20701 actux1.c: In function 'checkboard':
20702 actux1.c:92: warning: unused variable 'revision'
20703
20704 - actua2:
20705 actux2.c: In function 'checkboard':
20706 actux2.c:100: warning: unused variable 's'
20707 actux2.c:99: warning: unused variable 'revision'
20708 actux2.c: In function 'reset_phy':
20709 actux2.c:130: warning: unused variable 'i'
20710
20711 - actua3:
20712 actux3.c: In function 'checkboard':
20713 actux3.c:114: warning: unused variable 'revision'
20714
20715 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20716
20717 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
20718 Author: Marian Balakowicz <m8@semihalf.com>
20719 Date: Mon Feb 4 08:28:09 2008 +0100
20720
20721 [new uImage] Add dual format uImage support framework
20722
20723 This patch adds framework for dual format images. Format detection is added
20724 and the bootm controll flow is updated to include cases for new FIT format
20725 uImages.
20726
20727 When the legacy (image_header based) format is detected appropriate
20728 legacy specific handling is invoked. For the new (FIT based) format uImages
20729 dual boot framework has a minial support, that will only print out a
20730 corresponding debug messages. Implementation of the FIT specific handling will
20731 be added in following patches.
20732
20733 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20734
20735 commit b29661fc1151077776454288051bc9a488351ce8
20736 Author: Wolfgang Denk <wd@denx.de>
20737 Date: Sun Feb 24 15:21:36 2008 +0100
20738
20739 Coding style cleanup. Prepare v1.3.2-rc2 release candidate
20740
20741 Signed-off-by: Wolfgang Denk <wd@denx.de>
20742
20743 commit 00b48a48424894daa589d166d73277830b1c6ac4
20744 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20745 Date: Sat Feb 23 12:15:56 2008 +0100
20746
20747 ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
20748
20749 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20750
20751 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
20752 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20753 Date: Sat Feb 23 17:24:16 2008 +0900
20754
20755 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
20756
20757 ----------------------------------------------------------------
20758 Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
20759
20760 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
20761 32bit targets.
20762
20763 GCC can be made to warn about usage of long long types with ISO C90
20764 (-ansi), but only with -pedantic. You can write this in a way that even
20765 then it doesn't cause warnings, namely by:
20766
20767 #ifdef __GNUC__
20768 __extension__ typedef __signed__ long long __s64;
20769 __extension__ typedef unsigned long long __u64;
20770 #endif
20771
20772 The __extension__ keyword in front of this switches off any pedantic
20773 warnings for this expression.
20774
20775 Signed-off-by: Olaf Hering <olh@suse.de>
20776 Cc: <linux-arch@vger.kernel.org>
20777 Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
20778 Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
20779 ----------------------------------------------------------------
20780
20781 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20782
20783 commit 208acd112e6517b21fc30c420396902b103563ac
20784 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20785 Date: Sat Feb 23 17:07:57 2008 +0900
20786
20787 cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
20788
20789 This will reduce the build time.
20790
20791 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20792
20793 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
20794 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20795 Date: Sat Feb 23 17:05:00 2008 +0900
20796
20797 cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
20798
20799 This will reduce the build time.
20800
20801 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20802
20803 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
20804 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20805 Date: Sat Feb 23 16:58:41 2008 +0900
20806
20807 cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
20808
20809 This reduces the build time by ~10%. Here's the gth2_config example.
20810
20811 BEFORE AFTER
20812 real 0m31.441s 0m27.833s
20813 user 0m24.766s 0m23.045s
20814 sys 0m10.425s 0m7.468s
20815
20816 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20817
20818 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
20819 Author: Marcel Moolenaar <marcelm@juniper.net>
20820 Date: Fri Feb 22 10:48:07 2008 -0800
20821
20822 make define2mk.sed work on FreeBSD
20823
20824 In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
20825 the define2mk.sed script was identified as the source of the link
20826 failure on FreeBSD. The problem is that sed(1) does not always support
20827 the '+' operator. It isn't on FreeBSD. The attach patch implements the
20828 equivalent, using the '*' operator instead and should work everywhere.
20829
20830 Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
20831
20832 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
20833 Author: Detlev Zundel <dzu@denx.de>
20834 Date: Fri Feb 22 17:21:32 2008 +0100
20835
20836 Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
20837
20838 The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
20839 final traces of long-deprecated "ramdisk" kernel parm") makes these
20840 changes neccessary.
20841
20842 Signed-off-by: Detlev Zundel <dzu@denx.de>
20843
20844 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
20845 Author: Larry Johnson <lrj@acm.org>
20846 Date: Thu Feb 21 13:58:16 2008 -0500
20847
20848 LM75 bug fix for negative temperatures
20849
20850 When the LM75 temperature sensor measures a temperature below 0 C, the
20851 current driver does not perform sign extension, so the result returned is
20852 256 C too high. This patch fixes the problem.
20853
20854 Signed-off-by: Larry Johnson <lrj@acm.org>
20855
20856 commit 5a910c224b13e413bda41922379add6d75c32da3
20857 Author: Heiko Schocher <hs@denx.de>
20858 Date: Thu Feb 21 18:33:45 2008 +0100
20859
20860 IDS8247: update MAINTAINER entry.
20861
20862 Signed-off-by: Heiko Schocher <hs@denx.de>
20863
20864 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
20865 Author: Heiko Schocher <hs@denx.de>
20866 Date: Thu Feb 21 18:31:15 2008 +0100
20867
20868 Fix device tree for mgsuvd board.
20869
20870 Rename the "scc" node in "ethernet" for the mgsuvd board.
20871
20872 Signed-off-by: Heiko Schocher <hs@denx.de>
20873
20874 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
20875 Author: Yuri Tikhonov <yur@emcraft.com>
20876 Date: Thu Feb 21 14:23:42 2008 +0100
20877
20878 lwmon5: enable hardware watchdog
20879
20880 Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
20881 causing it to reboot the board if U-Boot does a long busy-wait with
20882 udelay(). Thus, for these boards we have to restart WD more
20883 frequently.
20884
20885 This patch splits the busy-wait udelay() into smaller, predefined,
20886 intervals, so that the watchdog timer may be resetted with the
20887 configurable (CONFIG_WD_PERIOD) interval.
20888
20889 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
20890
20891 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
20892 Author: Anatolij Gustschin <agust@denx.de>
20893 Date: Thu Feb 21 12:52:29 2008 +0100
20894
20895 ppc4xx: Support for ATI Radeon 9200 card on sequoia
20896
20897 Adds configuration option for ATI Radeon 9200 card
20898 support to sequoia config file. If CONFIG_VIDEO
20899 is enabled, TEXT_BASE should be changed to 0xFFF80000.
20900
20901 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20902
20903 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
20904 Author: Kumar Gala <galak@kernel.crashing.org>
20905 Date: Mon Feb 18 08:18:07 2008 -0600
20906
20907 Remove duplicate defines for ARRAY_SIZE
20908
20909 A few duplicate of the ARRAY_SIZE macro sneaked in since we put
20910 the define in common.h.
20911
20912 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20913
20914 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
20915 Author: Kumar Gala <galak@kernel.crashing.org>
20916 Date: Mon Feb 18 08:09:37 2008 -0600
20917
20918 ppc: Allow boards to specify effective amount of memory
20919
20920 For historical reasons we limited the stack to 256M because some boards
20921 could only map that much via BATS. However newer boards are capable of
20922 mapping more memory (for example 85xx is capable of doing up to 2G).
20923
20924 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20925
20926 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
20927 Author: Mike Frysinger <vapier@gentoo.org>
20928 Date: Mon Feb 18 05:24:13 2008 -0500
20929
20930 include autoconf.mk before any other .mk files
20931
20932 This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
20933 those .mk files can have make if statements based on the current config.
20934
20935 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20936
20937 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
20938 Author: Mike Frysinger <vapier@gentoo.org>
20939 Date: Mon Feb 18 05:10:07 2008 -0500
20940
20941 error check autoconf.mk generation
20942
20943 If any of the steps for generating autoconf.mk fail currently, they go
20944 unnoticed. To fix, we can simply add 'set -e' to the long list of commands.
20945 This is simpler and more robust than placing '|| exit $$?' after every line.
20946
20947 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20948
20949 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
20950 Author: Stefano Babic <sbabic@denx.de>
20951 Date: Mon Feb 18 08:03:51 2008 +0100
20952
20953 Fix bug in dependency checking
20954
20955 By adding VERSION_FILE to the PHONY targets the script
20956 /tools/setlocalversion is always called and version_autogenerated.h
20957 is replaced only if the script find a modified source file.
20958
20959 Signed-off-by: Stefano Babic <sbabic@denx.de>
20960
20961 commit 98ba144ccc912eee90dd42699f023c497ce774c6
20962 Author: Kyungmin Park <kmpark@infradead.org>
20963 Date: Mon Feb 18 14:35:43 2008 +0900
20964
20965 Fix GPMC CS2 memory setup at apollon
20966
20967 It disables the current map first
20968
20969 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20970
20971 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
20972 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20973 Date: Sun Feb 17 23:52:46 2008 +0100
20974
20975 uli526x: Fix multiple differ in signedness and parentheses around comparison
20976
20977 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20978
20979 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
20980 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20981 Date: Sun Feb 17 16:58:04 2008 +0100
20982
20983 MIPS: Fix CFG_NO_FLASH support
20984
20985 - Fix flash_init call when CFG_NO_FLASH is used
20986 - Remove no more needed flash.c for qemu-mips
20987
20988 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20989
20990 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
20991 Author: Mike Frysinger <vapier@gentoo.org>
20992 Date: Sat Feb 16 02:40:18 2008 -0500
20993
20994 easylogo: clean up some more and add -r (rgb) support
20995
20996 Michael Hennerich added support for outputting an image in RGB format rather
20997 than forcing YUYV all the time. This makes obvious sense if the display you
20998 have takes RGB input rather than YUYV.
20999
21000 Rather than hack in support for options, I've converted it to use getopt and
21001 cleaned up the argument parsing in the process.
21002
21003 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
21004 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21005
21006 commit f65c98129ccada3f7caf97d80395a95b84e911de
21007 Author: Mike Frysinger <vapier@gentoo.org>
21008 Date: Sat Feb 16 02:12:37 2008 -0500
21009
21010 Makefile: add target for $(LDSCRIPT)
21011
21012 If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
21013 then change into the board directory and try and create it. This allows you
21014 to generate the linker script on the fly based upon board defines (like the
21015 Blackfin boards do).
21016
21017 There should be no regressions due to this change as the normal case is to
21018 already have a u-boot.lds file. If that's the case, then there's nothing to
21019 generate, and so make will always exit. The fix here is that if the linker
21020 script does not exist, the implicit rules take over and attempt to guess how
21021 to generate the file.
21022
21023 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21024
21025 commit 5583cbf736474ef754e128a54fb78632f57b48fd
21026 Author: Marian Balakowicz <m8@semihalf.com>
21027 Date: Thu Feb 21 17:27:49 2008 +0100
21028
21029 [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
21030
21031 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21032
21033 commit 2242f5369822bc7780db95c47985bb408ea9157b
21034 Author: Marian Balakowicz <m8@semihalf.com>
21035 Date: Thu Feb 21 17:27:41 2008 +0100
21036
21037 [new uImage] Rename and move print_image_hdr() routine
21038
21039 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21040
21041 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
21042 Author: Marian Balakowicz <m8@semihalf.com>
21043 Date: Thu Feb 21 17:20:20 2008 +0100
21044
21045 [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
21046
21047 Introducing routines for parsing new uImage format bootm arguments:
21048 [<addr>]#<conf> - configuration specification
21049 [<addr>]:<subimg> - subimage specification
21050
21051 New format images can contain multiple subimages of the same type. For example
21052 a single new format image file can contain three kernels, two ramdisks and a
21053 couple of FDT blobs. Subimage and configuration specifications are extensions
21054 to bootm (and other image-related commands) arguments' syntax that allow to
21055 specify which particular subimage should be operated on.
21056
21057 Subimage specification is used to denote a particular subimage. Configurations
21058 are a bit more complex -- they are used to define a particualr booting setup,
21059 for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
21060 etc.
21061
21062 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21063
21064 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
21065 Author: Marian Balakowicz <m8@semihalf.com>
21066 Date: Thu Feb 21 17:20:19 2008 +0100
21067
21068 [new uImage] Add gen_get_image() routine
21069
21070 This routine assures that image (whether legacy or FIT) is not
21071 in a special dataflash storage.
21072
21073 If image address is a dataflash address image is moved to system RAM.
21074
21075 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21076
21077 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
21078 Author: Marian Balakowicz <m8@semihalf.com>
21079 Date: Thu Feb 21 17:20:18 2008 +0100
21080
21081 [new uImage] Pull in libfdt if CONFIG_FIT is enabled
21082
21083 New uImage format (Flattened Image Tree) requires libfdt
21084 functionality, print out error message if CONFIG_OF_LIBFDT
21085 is not defined.
21086
21087 New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
21088 This commit turns it on by default.
21089
21090 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21091
21092 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
21093 Author: Michael Schwingen <michael@schwingen.org>
21094 Date: Mon Feb 18 23:16:35 2008 +0100
21095
21096 CFI: Do not use uninitialized cmd_reset
21097
21098 Do not use uninitialized cmd_reset; issue both AMD and Intel reset
21099 commands instead
21100
21101 From a short test, it looks like AMD-style flash roms treat *any* unknown
21102 command write as a reset, at least when in CFI Query mode, so issuing the
21103 Intel reset command to AMD-style flashs seems safe (from the small sample I
21104 have), plus the 3-cycle magic sequence should kick the state machine into
21105 the right state even without a reset command. Since the AMD-style flashs
21106 require the unlock sequence for real operation, I chose to try the AMD reset
21107 command first, so that Intel flashs do no see an invalid command prior to
21108 the CFI query.
21109
21110 I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
21111 plus Intel StrataFlash.
21112
21113 Signed-off-by: Michael Schwingen <michael@schwingen.org>
21114 Signed-off-by: Stefan Roese <sr@denx.de>
21115
21116 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
21117 Author: Rafal Jaworowski <raj@semihalf.com>
21118 Date: Thu Feb 21 11:56:44 2008 +0100
21119
21120 API: Add (c) and licensing notice to the public API header.
21121
21122 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
21123
21124 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
21125 Author: Yuri Tikhonov <yur@emcraft.com>
21126 Date: Thu Feb 21 11:06:07 2008 +0100
21127
21128 Fix CPU POST test failure
21129
21130 The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
21131 ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
21132 by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
21133 This patch just saves the CR value before running the test code, so allowing
21134 it to do anything it wants with CR.
21135
21136 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21137 Acked-by: Yuri Tikhonov <yur@emcraft.com>
21138 --
21139
21140 commit d5908b093955415f3d340706378b991f911af671
21141 Author: Jon Loeliger <jdl@freescale.com>
21142 Date: Wed Feb 20 15:26:51 2008 -0600
21143
21144 8610HPCD: Document the flashbank selection switches.
21145
21146 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21147
21148 commit a551cee99ad1d1da20fd23ad265de47448852f56
21149 Author: Jon Loeliger <jdl@freescale.com>
21150 Date: Wed Feb 20 14:22:26 2008 -0600
21151
21152 86xx: Fix GUR PCI config registers properly.
21153
21154 Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
21155 I tried to "8610HPCD: Fix typos in two PCI setup registers", I
21156 botched it due to not realizing that 8610 and 8641 had different
21157 Global Utility Register defintions, one of which was like 85xx,
21158 and the other wasn't. Correct this problem by introducing two
21159 symbols, one for each 86xx SoC, but neither of which is named
21160 anything like 85xx.
21161
21162 My bad. Lovely Wednesday with git bisect. You know.
21163
21164 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21165
21166 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
21167 Author: Jon Loeliger <jdl@freescale.com>
21168 Date: Wed Feb 20 12:24:11 2008 -0600
21169
21170 8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
21171
21172 Without an actual supported video card hooked up, enabling
21173 the CONFIG_VIDEO by default just makes it look broken by
21174 routing all console output to the video card. Don't.
21175
21176 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21177
21178 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
21179 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
21180 Date: Wed Jan 30 15:08:15 2008 -0600
21181
21182 ColdFire: Fix missing code flash size for M5485EVB
21183
21184 Signed-off-by: James Mahan <kmahan@freescale.com>
21185 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21186
21187 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
21188 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
21189 Date: Wed Jan 30 15:04:42 2008 -0600
21190
21191 ColdFire: Fix 5282 and 5271 interrupt mask bit
21192
21193 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21194
21195 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
21196 Author: Jon Loeliger <jdl@freescale.com>
21197 Date: Tue Feb 19 12:31:08 2008 -0600
21198
21199 8610HPCD: Fix typos in two PCI setup registers.
21200
21201 The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
21202 were erroneously present as 85xx names and values, leftover from
21203 the clone wars. Fix this by removing the 85xx cruft from the
21204 86xx codebase.
21205
21206 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21207
21208 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
21209 Author: Jon Loeliger <jdl@freescale.com>
21210 Date: Mon Feb 18 14:01:56 2008 -0600
21211
21212 86xx: Convert sbc8641d to use libfdt.
21213
21214 This is the proper fix for a missing closing brace in the function
21215 ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
21216 The ft_cpu_setup() function in mpc8641hpcn.c should have been
21217 removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
21218 but was missed. Only, the sbc8641d was nominally still using it.
21219 It all got ripped out, and the funcality that was in ft_board_setup()
21220 was refactored to remove the CPU portions into the new file
21221 cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now.
21222
21223 Based loosely on an original patch from joe.hamman@embeddedspecialties.com
21224
21225 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21226
21227 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
21228 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21229 Date: Sun Feb 17 23:35:31 2008 +0100
21230
21231 mpc86xx: Fix unused variable 'config' and 'immap'
21232
21233 and remove useless CONFIG_DDR_INTERLEAVE
21234
21235 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21236
21237 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
21238 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21239 Date: Sun Feb 17 23:03:36 2008 +0100
21240
21241 mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
21242
21243 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21244
21245 commit b6f29c84c208a091f95a10cbc9852d729659ba20
21246 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21247 Date: Sun Feb 17 14:15:31 2008 +0100
21248
21249 s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
21250
21251 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21252
21253 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
21254 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21255 Date: Sun Feb 17 14:15:32 2008 +0100
21256
21257 pxa: fix assignment from incompatible pointer type
21258
21259 fix mmc_bread function prototype
21260
21261 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21262
21263 commit 64d792063fff90b8118179b092feee09fe5cae13
21264 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21265 Date: Sun Feb 17 14:15:30 2008 +0100
21266
21267 at91cap9adk: fix implicit declaration of function 'eth_init'
21268
21269 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21270
21271 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
21272 Author: Wolfgang Denk <wd@denx.de>
21273 Date: Sun Feb 17 15:43:44 2008 +0100
21274
21275 Remove files added by mistake, update CHANGELOG.
21276
21277 Signed-off-by: Wolfgang Denk <wd@denx.de>
21278
21279 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
21280 Author: Mike Nuss <mike@terascala.com>
21281 Date: Wed Feb 6 11:10:11 2008 -0500
21282
21283 PPC440EPx: Optionally enable second I2C bus
21284
21285 The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
21286 PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
21287 code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
21288
21289 Signed-off-by: Mike Nuss <mike@terascala.com>
21290 Cc: Stefan Roese <sr@denx.de>
21291
21292 commit ef5b4f221c22d05770878513951745f236b5b43f
21293 Author: Niklaus Giger <niklaus.giger@netstal.com>
21294 Date: Tue Feb 5 10:26:44 2008 +0100
21295
21296 ppc4xx: HCU4/5. Cleanup configs
21297
21298 - hcu4.h: Removed define of CONFIG_PPC405GPr
21299 - Corrected phy addresses
21300 - Fix boot variables
21301 - Respect line length of 80 chars
21302
21303 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21304
21305 commit 74973126d1be63ac75bdc192f46234dca3a7c421
21306 Author: Niklaus Giger <niklaus.giger@netstal.com>
21307 Date: Tue Feb 5 11:31:28 2008 +0100
21308
21309 ppc4xx: HCU4/5. Cleanups
21310
21311 - Fix some coding style violations.
21312 - Use in/out_u16/32 where appropriate.
21313 - Use register names from ppc405.h.
21314 - Fix trace useage for Lauterbach.
21315 - Remove obsolete generation HCU2.
21316 - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
21317
21318 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21319
21320 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
21321 Author: Niklaus Giger <niklaus.giger@netstal.com>
21322 Date: Tue Feb 5 10:26:41 2008 +0100
21323
21324 ppc4xx: PPC405GPr fix missing register definitions
21325
21326 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21327
21328 commit 214398d9cb22268d9d4f7563359edca0f78297a2
21329 Author: Larry Johnson <lrj@acm.org>
21330 Date: Fri Jan 18 21:49:05 2008 -0500
21331
21332 ppc4xx: Beautify configuration files for Sequoia and Korat boards
21333
21334 Signed-off-by: Larry Johnson <lrj@acm.org>
21335
21336 commit 30c6a241e88499f536e86d325759e29ba00ff67f
21337 Author: Anatolij Gustschin <agust@denx.de>
21338 Date: Fri Feb 15 20:09:01 2008 +0100
21339
21340 Wipe out assembler warnings while compiling x86 biosemu
21341
21342 This patch tries to get rid of some assembler warnings about
21343 changed .got2 section type while compiling x86 bios emulator
21344 code.
21345
21346 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21347
21348 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
21349 Author: Wolfgang Denk <wd@denx.de>
21350 Date: Fri Feb 15 00:57:09 2008 +0100
21351
21352 Prepare v1.3.2-rc1 release candidate
21353
21354 commit f33e9653c9c09868995d788511d573771c209fe5
21355 Author: Anatolij Gustschin <agust@denx.de>
21356 Date: Fri Feb 15 00:13:20 2008 +0100
21357
21358 Fix compile warning on lib_ppc/board.c
21359
21360 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21361
21362 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
21363 Author: Anatolij Gustschin <agust@denx.de>
21364 Date: Thu Feb 14 18:22:04 2008 +0100
21365
21366 Add Radeon Mobility 9200 pci device id to the radeon driver
21367
21368 This patch extends PCI device id table of the
21369 radeon driver so that the driver will also support
21370 Radeon Mobility 9200 (M9+) based boards.
21371
21372 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21373
21374 commit 1b8607e1f7143548c6062c28371449ec69588c00
21375 Author: Anatolij Gustschin <agust@denx.de>
21376 Date: Thu Feb 14 18:19:50 2008 +0100
21377
21378 Extend ATI Radeon driver to support more video modes
21379
21380 Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
21381 800x600, 640x480 at 24, 16 and 8 bpp.
21382
21383 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21384
21385 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
21386 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21387 Date: Sun Feb 10 17:05:20 2008 +0100
21388
21389 xsengine: fix typo and few coding style
21390
21391 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21392
21393 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
21394 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21395 Date: Fri Feb 8 21:25:58 2008 +0100
21396
21397 Fix wrong memory limit calculation in memory-test
21398
21399 If the length of the memory address range passed to the "mtest" command is
21400 not of the form 2^x - 1, not all address lines are tested. This bug is
21401 inherited from the original software at
21402 http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
21403 this.
21404
21405 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21406
21407 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
21408 Author: Wolfgang Denk <wd@denx.de>
21409 Date: Fri Feb 15 00:11:39 2008 +0100
21410
21411 Coding STyle cleanup.
21412
21413 Signed-off-by: Wolfgang Denk <wd@denx.de>
21414
21415 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
21416 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21417 Date: Tue Feb 5 13:30:43 2008 +0900
21418
21419 sh: Fix register address of SH7722
21420
21421 The address of SH7722 is wrong by old document.
21422 This patch fixes this problem.
21423
21424 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21425
21426 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
21427 Author: Mike Frysinger <vapier@gentoo.org>
21428 Date: Mon Feb 4 17:44:23 2008 -0500
21429
21430 only update version header as needed
21431
21432 Constantly rebuilding the version header will force useless relinking, so we
21433 simply need to compare the new header with the existing one before updating
21434 it.
21435
21436 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21437
21438 commit 208447f8e953f347425eb92c8e28d59e6d911363
21439 Author: Mike Frysinger <vapier@gentoo.org>
21440 Date: Mon Jan 28 05:56:19 2008 -0500
21441
21442 Do not specify a CROSS_COMPILE default when executing size
21443
21444 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21445
21446 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
21447 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21448 Date: Wed Feb 13 11:19:19 2008 +0100
21449
21450 Fix return value of mtest when CFG_ALT_MEMTEST set
21451
21452 Fix a missing return statement from a non-void function.
21453
21454 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21455
21456 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
21457 Author: Timur Tabi <timur@freescale.com>
21458 Date: Wed Jan 9 14:35:26 2008 -0600
21459
21460 85xx, 86xx: Determine I2C clock frequencies and store in global_data
21461
21462 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
21463
21464 Update the get_clocks() function in 85xx and 86xx to determine the I2C
21465 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
21466
21467 Signed-off-by: Timur Tabi <timur@freescale.com>
21468
21469 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
21470 Author: Wolfgang Denk <wd@denx.de>
21471 Date: Thu Feb 14 23:18:01 2008 +0100
21472
21473 TQM834x: clean up configuration
21474
21475 Get board name consistent with Linux and elsewhere;
21476 get rid of local network definitions etc.
21477
21478 Signed-off-by: Wolfgang Denk <wd@denx.de>
21479
21480 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
21481 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21482 Date: Thu Feb 14 08:02:12 2008 +0100
21483
21484 TFTP: fix search of ':' in BootFile
21485
21486 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21487
21488 commit 0bc9efada170096c6b273f19165e32936d330d80
21489 Author: Wolfgang Denk <wd@denx.de>
21490 Date: Thu Feb 14 22:46:55 2008 +0100
21491
21492 Coding style cleanup; update CHANGELOG.
21493
21494 Signed-off-by: Wolfgang Denk <wd@denx.de>
21495
21496 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
21497 Author: Wolfgang Denk <wd@denx.de>
21498 Date: Thu Feb 14 22:43:22 2008 +0100
21499
21500 PPC: Use r2 instead of r29 as global data pointer
21501
21502 R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
21503 will refuse to use load/store multiple insns; instead, it issues a
21504 list of simple load/store instructions upon function entry and exit,
21505 resulting in bigger code size, which in turn makes the build for a
21506 few boards fail.
21507
21508 Use r2 instead.
21509
21510 Signed-off-by: Wolfgang Denk <wd@denx.de>
21511
21512 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
21513 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
21514 Date: Wed Jan 30 09:08:49 2008 +0100
21515
21516 ARM: make the machid configurable via the environment
21517
21518 If the variable "machid" exists, let do_bootm_linux use that instead
21519 of bd->bi_arch_number.
21520
21521 Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
21522
21523 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
21524 Author: Vlad Lungu <vlad@comsys.ro>
21525 Date: Wed Jan 23 16:34:46 2008 +0200
21526
21527 Use #ifdef CONFIG_FSLDMAFEC
21528
21529 MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
21530 fails
21531
21532 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
21533
21534 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
21535 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21536 Date: Sat Jan 19 10:25:59 2008 +0900
21537
21538 common/miiphyutil.c: Cleanup MII_DEBUG and debug()
21539
21540 Current MII_DEBUG is confusing in two ways. One is useless define-then-
21541 undef at the top of the file. The other is there is only one debug() in
21542 this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
21543 While there are many useful printf()/puts() debug codes, but they are for
21544 DEBUG, not for MII_DEBUG.
21545
21546 This patch tries to put them all together into MII_DEBUG and debug().
21547
21548 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21549
21550 commit 751b9b5189f3274b03c809172631316d6b002c82
21551 Author: Kyungmin Park <kmpark@infradead.org>
21552 Date: Thu Jan 17 16:43:25 2008 +0900
21553
21554 OneNAND Initial Program Loader (IPL) support
21555
21556 This patch enables the OneNAND boot within U-Boot.
21557 Before this work, we used another OneNAND IPL called X-Loader based
21558 on open source. With this work, we can build the oneboot.bin image
21559 without other program.
21560
21561 The build sequence is simple.
21562 First, it compiles the u-boot.bin
21563 Second, it compiles OneNAND IPL
21564 Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
21565 The mechanism is similar with NAND boot except it boots from itself.
21566
21567 Another thing is that you can only use the OneNAND IPL only to work
21568 other bootloader such as RedBoot and so on.
21569
21570 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21571
21572 commit 21f6f9636f0e978397548751347425fbf8d42bb3
21573 Author: Andy Fleming <afleming@freescale.com>
21574 Date: Wed Jan 16 13:06:59 2008 -0600
21575
21576 Fix CONFIG_MMC usage in fat code
21577
21578 A #if statement in fat.c depended on CONFIG_MMC, instead of
21579 defined(CONFIG_MMC). This meant CONFIG_MMC needed to be defined
21580 as "1" rather than just defined. Now it's better.
21581
21582 Signed-off-by: Andy Fleming <afleming@freescale.com>
21583
21584 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
21585 Author: Rafal Jaworowski <raj@semihalf.com>
21586 Date: Tue Jan 15 12:52:31 2008 +0100
21587
21588 ppc: Refactor cache routines, so there is only one common set.
21589
21590 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
21591
21592 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
21593 Author: Jon Loeliger <jdl@jdl.com>
21594 Date: Wed Jan 23 15:55:02 2008 -0600
21595
21596 86xx: Fix compilation warning in sys_eprom.c
21597
21598 sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
21599
21600 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21601
21602 commit 65230107025733e89e28fd5e5cfd916d4953c28a
21603 Author: Haavard Skinnemoen <hskinnemoen at>
21604 Date: Fri Feb 22 11:40:50 2008 +0000
21605
21606 Move AT91RM9200DK board support under board/atmel
21607
21608 We already have a vendor subdir for Atmel, so we should use it.
21609
21610 Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
21611
21612 commit 6d0943a6be99977d6d853d51749e9963d68eb192
21613 Author: Andreas Engel <andreas.engel@ericsson.com>
21614 Date: Mon Jan 14 09:06:52 2008 +0000
21615
21616 ARM: cleanup duplicated exception handlingcode
21617
21618 Move duplicated exception handling code into lib_arm.
21619
21620 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
21621
21622 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
21623 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
21624 Date: Fri Feb 1 10:09:03 2008 +0000
21625
21626 Support for Artila M-501 starter kit
21627
21628 Kimmo Leppala / Sysart and
21629 Timo Tuunainen / Sysart
21630
21631 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
21632 Author: Stelian Pop <stelian@popies.net>
21633 Date: Mon Feb 11 10:50:19 2008 +0000
21634
21635 AT91CAP9 support
21636
21637 ---------------------------------
21638
21639 read_dataflash() takes a signed char pointer as a parameter. Silence a
21640 few warnings dues to incorrect parameter types in env_dataflash.c.
21641
21642 Signed-off-by: Stelian Pop <stelian@popies.net>
21643
21644 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
21645 Author: Stelian Pop <stelian@popies.net>
21646 Date: Thu Feb 7 09:42:57 2008 +0000
21647
21648 AT91CAP9 support : move board files to Atmel vendor directory.
21649
21650 AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
21651
21652 Signed-off-by: Stelian Pop <stelian@popies.net>
21653
21654 commit 7263ef191b87da94768f762c7093bedeb70db98f
21655 Author: Stelian Pop <stelian at>
21656 Date: Thu Jan 3 21:15:56 2008 +0000
21657
21658 AT91CAP9 support : MACB changes
21659
21660 Signed-off-by: Stelian Pop <stelian <at> popies.net>
21661 Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
21662
21663 commit 6afcabf11d7321850f4feaadfee841488ace54c5
21664 Author: Stelian Pop <stelian@popies.net>
21665 Date: Thu Feb 7 16:37:54 2008 +0000
21666
21667 AT91CAP9 support : board/ files
21668
21669 Signed-off-by: Stelian Pop <stelian@popies.net>
21670
21671 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
21672 Author: Stelian Pop <stelian at>
21673 Date: Wed Jan 30 21:15:54 2008 +0000
21674
21675 AT91CAP9 support : cpu/ files
21676
21677 Signed-off-by: Stelian Pop <stelian <at> popies.net>
21678
21679 commit fa506a926cec348805143576c941f8e61b333cc0
21680 Author: Stelian Pop <stelian@popies.net>
21681 Date: Thu Jan 31 21:15:53 2008 +0000
21682
21683 AT91CAP9 support : include/ files
21684
21685 Signed-off-by: Stelian Pop <stelian@popies.net>
21686
21687 commit 20b197c6f2799af399a68f96a1aff543a75621b8
21688 Author: Stelian Pop <stelian@popies.net>
21689 Date: Sun Jan 20 19:49:21 2008 +0000
21690
21691 AT91CAP9 support : build integration
21692
21693 Signed-off-by: Stelian Pop <stelian@popies.net>
21694
21695 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
21696 Author: Stelian Pop <stelian@popies.net>
21697 Date: Sun Jan 20 21:07:00 2008 +0000
21698
21699 Improve DataFlash CS definition.
21700
21701 Use a structure instead of the error prone unnamed array to
21702 define the possible dataflash banks.
21703
21704 Signed-off-by: Stelian Pop <stelian@popies.net>
21705
21706 commit a6cdd21b56014208706238712a853a9e9a0a2290
21707 Author: Stelian Pop <stelian@popies.net>
21708 Date: Sat Jan 19 21:09:35 2008 +0000
21709
21710 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
21711
21712 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
21713
21714 cpu/arm926ejs/start.o: In function `cpu_init_crit':
21715 .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
21716
21717 Signed-off-by: Stelian Pop <stelian@popies.net>
21718
21719 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
21720 Author: Peter Pearse <peter.pearse@arm.com>
21721 Date: Fri Feb 1 16:50:24 2008 +0000
21722
21723 Fix timer overflow in DaVinci
21724 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
21725
21726 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
21727 Author: Peter Pearse <peter.pearse@arm.com>
21728 Date: Fri Feb 1 16:49:08 2008 +0000
21729
21730 Update board NetStar
21731 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
21732
21733 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
21734 Author: Niklaus Giger <niklaus.giger@netstal.com>
21735 Date: Tue Feb 5 10:26:42 2008 +0100
21736
21737 ppc4xx: HCU4/5. Fix make O=../xx
21738
21739 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21740
21741 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
21742 Author: Larry Johnson <lrj@acm.org>
21743 Date: Tue Jan 22 08:51:59 2008 -0500
21744
21745 ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
21746
21747 Signed-off-by: Larry Johnson <lrj@acm.org>
21748
21749 commit fe891ecf4d187e9d11dde869ed4623af52b54451
21750 Author: Hiroshi Ito <ito@mlb.co.jp>
21751 Date: Thu Jan 31 18:35:04 2008 +0900
21752
21753 NFS Timeout with large files.
21754
21755 Retry to send NFS packet before reaching timeout.
21756
21757 Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
21758
21759 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
21760 Author: Johannes Stezenbach <js@sig21.net>
21761 Date: Tue Jan 29 00:11:25 2008 +0100
21762
21763 Add dependencies to avoid race conditions with parallel make.
21764
21765 Signed-off-by: Johannes Stezenbach <js@sig21.net>
21766
21767 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
21768 Author: Mike Frysinger <vapier@gentoo.org>
21769 Date: Mon Jan 28 05:46:01 2008 -0500
21770
21771 Mark board_init_[fr] as noreturn
21772
21773 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21774
21775 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
21776 Author: Mike Frysinger <vapier@gentoo.org>
21777 Date: Mon Jan 28 05:28:50 2008 -0500
21778
21779 Only use TEXT_BASE if defined by the board
21780
21781 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21782
21783 commit 1b769881750030f10743808b9d6013e11f559350
21784 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21785 Date: Fri Jan 25 07:54:47 2008 +0100
21786
21787 Fix remaining CONFIG_COMMANDS
21788
21789 update comments
21790 Fix coding style
21791
21792 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21793
21794 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
21795 Author: Niklaus Giger <niklaus.giger@netstal.com>
21796 Date: Mon Jan 21 16:46:00 2008 +0100
21797
21798 Add *~ to .gitignore
21799
21800 One should never add a backup file ending in with ~ to the git repository.
21801
21802 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21803
21804 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
21805 Author: Kumar Gala <galak@kernel.crashing.org>
21806 Date: Thu Jan 17 00:02:10 2008 -0600
21807
21808 Remove duplicate defines for ARRAY_SIZE
21809
21810 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21811
21812 commit c77ce474b1c57b13e9d36d9830f147966c143694
21813 Author: Stelian Pop <stelian@popies.net>
21814 Date: Mon Jan 14 22:08:14 2008 +0100
21815
21816 Fix incorrect address test in AT91F_DataflashSelect().
21817
21818 Signed-off-by: Stelian Pop <stelian@popies.net>
21819
21820 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
21821 Author: Kumar Gala <galak@kernel.crashing.org>
21822 Date: Wed Feb 13 15:09:58 2008 -0600
21823
21824 Fix building of fdt_support.c if DEBUG set
21825
21826 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21827
21828 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
21829 Author: Jon Loeliger <jdl@freescale.com>
21830 Date: Tue Feb 12 14:53:28 2008 -0600
21831
21832 Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
21833
21834 These replace direct structure references for IMMR sections.
21835
21836 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21837
21838 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
21839 Author: Wolfgang Denk <wd@denx.de>
21840 Date: Tue Feb 12 00:45:06 2008 +0100
21841
21842 Get rid of "#undef DEBUG" from board config files.
21843
21844 Signed-off-by: Wolfgang Denk <wd@denx.de>
21845
21846 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
21847 Author: Timur Tabi <timur@freescale.com>
21848 Date: Tue Jan 15 17:09:41 2008 -0600
21849
21850 Remove #undef DEBUG from MPC83xx board header files
21851
21852 Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
21853 The inclusion of this line makes it impossible to enable debug code in
21854 other source files, because "#define DEBUG" typically needs to be defined
21855 before any header files are included.
21856
21857 Signed-off-by: Timur Tabi <timur@freescale.com>
21858
21859 commit 69018ce2e086e9caf35b914d675b82bc4888f077
21860 Author: Kumar Gala <galak@kernel.crashing.org>
21861 Date: Thu Jan 17 08:25:45 2008 -0600
21862
21863 QE: Move FDT support into a common file
21864
21865 Move the flat device tree setup for QE related devices into
21866 a common file shared between 83xx & 85xx platforms that have QE's.
21867
21868 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21869
21870 commit 5cf746c303710329f8040d9c62ee354313e3e91f
21871 Author: Marian Balakowicz <m8@semihalf.com>
21872 Date: Thu Jan 31 13:59:09 2008 +0100
21873
21874 [new uImage] Move kernel data find code to get_kernel() routine
21875
21876 Verification of the kernel image (in old format) and finding kernel
21877 data is moved to a dedicated routine. The routine will also hold
21878 support for, to be added, new image format.
21879
21880 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21881
21882 commit 7b325454fd231d4273de3fe373850f777fb086bf
21883 Author: Marian Balakowicz <m8@semihalf.com>
21884 Date: Thu Jan 31 13:58:20 2008 +0100
21885
21886 [new uImage] Cleanup FDT handling in PPC do_boot_linux()
21887
21888 Move FDT blob finding and relocation to a dedicated
21889 get_fdt() routine. It increases code readability and
21890 will make adding support for new uImage format easier.
21891
21892 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21893
21894 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
21895 Author: Marian Balakowicz <m8@semihalf.com>
21896 Date: Thu Jan 31 13:58:13 2008 +0100
21897
21898 [new uImage] Cleanup do_botm_linux() boot allocations
21899
21900 This patch moves common pre-boot allocation steps shared between PPC
21901 and M68K to a helper routines:
21902
21903 common:
21904 - get_boot_sp_limit()
21905 - get_boot_cmline()
21906 - get_boot_kbd()
21907
21908 platform:
21909 - set_clocks_in_mhz()
21910
21911 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21912
21913 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
21914 Author: Marian Balakowicz <m8@semihalf.com>
21915 Date: Thu Jan 31 13:57:17 2008 +0100
21916
21917 [new uImage] Move ramdisk loading to a common routine
21918
21919 Ramdisk loading code, including initrd_high variable handling,
21920 was duplicated for PPC and M68K platforms. This patch creates
21921 common helper routine that is being called from both platform
21922 do_bootm_linux() routines.
21923
21924 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21925
21926 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
21927 Author: Marian Balakowicz <m8@semihalf.com>
21928 Date: Thu Jan 31 13:55:53 2008 +0100
21929
21930 [new uImage] Removed dead ramdisk code on microblaze architectures
21931
21932 Microblaze do_bootm_linux() includes ramdisk processing code but
21933 the ramdisk does not get used anywhere later on.
21934
21935 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21936
21937 commit 5ad03eb3854c162684222a718b44c0716ea0db03
21938 Author: Marian Balakowicz <m8@semihalf.com>
21939 Date: Thu Jan 31 13:55:39 2008 +0100
21940
21941 [new uImage] Factor out common image_get_ramdisk() routine
21942
21943 Architecture specific do_bootm_linux() routines share common
21944 ramdisk image processing code. Move this code to a common
21945 helper routine.
21946
21947 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21948
21949 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
21950 Author: Marian Balakowicz <m8@semihalf.com>
21951 Date: Thu Jan 31 13:20:08 2008 +0100
21952
21953 [new uImage] Move FDT error printing to common fdt_error() routine
21954
21955 FDT error handling in PPC do_bootm_linux() shares the same message format.
21956 This patch moves error message printing to a helper fdt_error() routine.
21957
21958 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21959 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
21960
21961 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
21962 Author: Marian Balakowicz <m8@semihalf.com>
21963 Date: Thu Jan 31 13:20:07 2008 +0100
21964
21965 [new uImage] Factor out common routines for getting os/arch/type/comp names
21966
21967 Move numeric-id to name translation for image os/arch/type/comp header
21968 fields to a helper routines: image_get_os_name(), image_get_arch_name(),
21969 image_get_type_name(), image_get_comp_name().
21970
21971 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21972
21973 commit e99c26694a384221d336f6448c06a57479c0baa4
21974 Author: Marian Balakowicz <m8@semihalf.com>
21975 Date: Thu Jan 31 13:20:07 2008 +0100
21976
21977 [new uImage] Remove standalone applications handling from boootm
21978
21979 Standalone applications are supposed to be run using the "go" command.
21980 This patch removes standalone images handling from the do_bootm().
21981
21982 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21983
21984 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
21985 Author: Marian Balakowicz <m8@semihalf.com>
21986 Date: Thu Jan 31 13:20:07 2008 +0100
21987
21988 [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
21989
21990 Support for OF_FLAT_TREE is to be obsoleted in the near future,
21991 remove related code from the bootm routines.
21992
21993 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21994
21995 commit 82850f3d32a2661868ec6876bed7a22c55cef718
21996 Author: Marian Balakowicz <m8@semihalf.com>
21997 Date: Thu Jan 31 13:20:06 2008 +0100
21998
21999 [new uImage] Use image API in SH do_bootm_linux() routine
22000
22001 Introduce image handling API for lately added Hitachi SH architecture.
22002
22003 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22004
22005 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
22006 Author: Marian Balakowicz <m8@semihalf.com>
22007 Date: Thu Jan 31 13:20:06 2008 +0100
22008
22009 [new uImage] Rename architecture specific bootm code files
22010
22011 Implementation of the do_bootm_linux() and other bootm helper routines is
22012 architecture specific code. As such it resides in lib_<arch> directories
22013 in files named <arch>_linux.c
22014
22015 This patch renames those files to a more clear and accurate
22016 lib_<arch>/bootm.c form.
22017
22018 List of the renamed files:
22019 lib_arm/armlinux.c -> lib_arm/bootm.c
22020 lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
22021 lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
22022 lib_i386/i386_linux.c -> lib_i386/bootm.c
22023 lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
22024 lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
22025 lib_mips/mips_linux.c -> lib_mips/bootm.c
22026 lib_nios/nios_linux.c -> lib_nios/bootm.c
22027 lib_nios2/nios_linux.c -> lib_nios2/bootm.c
22028 lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
22029 lib_sh/sh_linux.c -> lib_sh/bootm.c
22030
22031 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22032
22033 commit 7582438c285bf0cef82909d0f232de64ec567a8a
22034 Author: Marian Balakowicz <m8@semihalf.com>
22035 Date: Thu Jan 31 13:20:06 2008 +0100
22036
22037 [new uImage] Return error on image move/uncompress overwrites
22038
22039 Check for overwrites during image move/uncompress, return with error
22040 when the original image gets corrupted. Report clear message to the user
22041 and prevent further troubles when pointer to the corrupted images is passed
22042 to do_bootm_linux routine.
22043
22044 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22045
22046 commit f13e7b2e993c61fed1f607962501e051940d6e80
22047 Author: Marian Balakowicz <m8@semihalf.com>
22048 Date: Tue Jan 8 18:12:17 2008 +0100
22049
22050 [new uImage] Cleanup image header pointer use in bootm code
22051
22052 - use single image header pointer instead of a set of auxilliary variables.
22053 - add multi component image helper routines: get component size/data address
22054
22055 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22056
22057 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
22058 Author: Marian Balakowicz <m8@semihalf.com>
22059 Date: Tue Jan 8 18:17:10 2008 +0100
22060
22061 [new uImage] Cleanup cmd_bootm.c
22062
22063 - sort and cleanup headers, declarations, etc.
22064 - group related routines
22065 - cleanup indentation, white spaces
22066
22067 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22068
22069 commit af13cdbc01eaf88880978bfb4f603e012818ba24
22070 Author: Marian Balakowicz <m8@semihalf.com>
22071 Date: Tue Jan 8 18:11:45 2008 +0100
22072
22073 [new uImage] Add memmove_wd() common routine
22074
22075 Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
22076
22077 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22078
22079 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
22080 Author: Marian Balakowicz <m8@semihalf.com>
22081 Date: Tue Jan 8 18:11:44 2008 +0100
22082
22083 [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
22084
22085 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22086
22087 commit 15158971f49255ccef54f0979a942cfd3de2ae52
22088 Author: Marian Balakowicz <m8@semihalf.com>
22089 Date: Tue Jan 8 18:11:44 2008 +0100
22090
22091 [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
22092
22093 Use image header copy instead of a (possibly corrupted) pointer to
22094 a initial image location.
22095
22096 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22097
22098 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
22099 Author: Marian Balakowicz <m8@semihalf.com>
22100 Date: Tue Jan 8 18:11:44 2008 +0100
22101
22102 [new uImage] Remove I386 uImage fake_header() routine
22103
22104 I386 targets are not using a uImage format, instead fake header
22105 is added to ram image before it is further processed by bootm.
22106
22107 Remove this fixup and force proper uImage use for I386.
22108
22109 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22110
22111 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
22112 Author: Marian Balakowicz <m8@semihalf.com>
22113 Date: Tue Jan 8 18:11:44 2008 +0100
22114
22115 [new uImage] Move CHUNKSZ definition to image.h
22116
22117 CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
22118 move this definition to a common header.
22119
22120 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22121
22122 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
22123 Author: Marian Balakowicz <m8@semihalf.com>
22124 Date: Tue Jan 8 18:11:43 2008 +0100
22125
22126 [new uImage] Move gunzip() common code to common/gunzip.c
22127
22128 Move gunzip(), zalloc() and zfree() to a separate file.
22129 Share zalloc() and zfree() with cramfs uncompress routine.
22130
22131 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22132
22133 commit d45d5a18b6b36688f2365623f9d550566c664b5b
22134 Author: Marian Balakowicz <m8@semihalf.com>
22135 Date: Tue Jan 8 18:11:43 2008 +0100
22136
22137 [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
22138
22139 Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
22140 readable in PPC variant of do_bootm_linux() routine.
22141
22142 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22143
22144 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
22145 Author: Marian Balakowicz <m8@semihalf.com>
22146 Date: Tue Jan 8 18:11:43 2008 +0100
22147
22148 [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
22149
22150 PPC implementation of do_bootm_linux() routine is moved to
22151 a dedicated file lib_ppc/ppc_linux.c
22152
22153 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22154
22155 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
22156 Author: Marian Balakowicz <m8@semihalf.com>
22157 Date: Tue Jan 8 18:14:09 2008 +0100
22158
22159 [new uImage] Define a API for image handling operations
22160
22161 - Add inline helper macros for basic header processing
22162 - Move common non inline code common/image.c
22163 - Replace direct header access with the API routines
22164 - Rename IH_CPU_* to IH_ARCH_*
22165
22166 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22167
22168 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
22169 Author: Marian Balakowicz <m8@semihalf.com>
22170 Date: Thu Jan 31 13:19:58 2008 +0100
22171
22172 Add missing cmd_ximg.o to common/Makefile
22173
22174 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22175
22176 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
22177 Author: Grzegorz Bernacki <gjb@semihalf.com>
22178 Date: Mon Jan 28 10:15:02 2008 +0100
22179
22180 ADS5121e: DDR2 init/timing update.
22181
22182 Signed-off-by: John Rigby <jrigby@freescale.com>
22183 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
22184
22185 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
22186 Author: John Rigby <jrigby@freescale.com>
22187 Date: Wed Jan 30 13:36:57 2008 -0700
22188
22189 Device tree updates
22190
22191 Changes to match 5121 device tree going mainline in 2.6.25.
22192
22193 Change OF_SOC from "soc5121" to plain "soc".
22194 Remove unneeded "ref-frequency" fixups.
22195 Remove "address" enetaddr fixup.
22196
22197 Add bus-frequency fixup for old OF_SOC so old
22198 kernels with old device trees will work with new
22199 u-boot with 66MHz IPS clock
22200
22201 Signed-off-by: John Rigby <jrigby@freescale.com>
22202
22203 commit de55d18df3ff2ea614624e74793de7c43520e0e7
22204 Author: John Rigby <jrigby@freescale.com>
22205 Date: Wed Jan 30 13:36:56 2008 -0700
22206
22207 Change IPS freq to 66MHz
22208
22209 Recommended frequency is 66MHz
22210 Change divider from 4 to 3.
22211
22212 Signed-off-by: John Rigby <jrigby@freescale.com>
22213
22214 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
22215 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22216 Date: Mon Jan 14 22:38:55 2008 +0100
22217
22218 xsengine: rename board_post_init to board_late_init
22219
22220 missing migration from "Cleanup of some init functions"
22221 in c837dcb1a316745092567bfe4fb266d0941884ff
22222
22223 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22224
22225 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
22226 Author: Larry Johnson <lrj@acm.org>
22227 Date: Sat Jan 12 23:35:33 2008 -0500
22228
22229 Add attribute POST_PREREL to ECC memory POST
22230
22231 Signed-off-by: Larry Johnson <lrj@acm.org>
22232
22233 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
22234 Author: Kumar Gala <galak@kernel.crashing.org>
22235 Date: Thu Jan 17 08:25:45 2008 -0600
22236
22237 QE: Move FDT support into a common file
22238
22239 Move the flat device tree setup for QE related devices into
22240 a common file shared between 83xx & 85xx platforms that have QE's.
22241
22242 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22243
22244 commit d38da537943cd36356b9d3d9d9b60533554b81d8
22245 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22246 Date: Wed Jan 23 17:20:14 2008 +0100
22247
22248 AVR32: Make SDRAM refresh rate configurable
22249
22250 The existing code assumes the SDRAM row refresh period should always
22251 be 15.6 us. This is not always true, and indeed on the ATNGW100, the
22252 refresh rate should really be 7.81 us.
22253
22254 Add a refresh_period member to struct sdram_info and initialize it
22255 properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
22256 panic() until the refresh_period member is updated properly.
22257
22258 Big thanks to Gerhard Berghofer for pointing out this issue.
22259
22260 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22261
22262 commit 61151cccb660cdb06a07fb283de6089913d7bde0
22263 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22264 Date: Thu Apr 19 10:10:11 2007 +0200
22265
22266 ATSTK1000: Fix potential flash programming bug
22267
22268 The (now obsolete) atngw100 flash programming code was having problems
22269 programming the onboard at49bv642 chip. The atstk1000 flash
22270 programming code may have the same bug, so import fix for this problem
22271 from the AVR32 Linux BSP.
22272
22273 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22274
22275 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
22276 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22277 Date: Thu Nov 22 17:04:13 2007 +0100
22278
22279 ATSTK1004: Fix comment about default load address
22280
22281 The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
22282 wouldn't have worked anyway since the board can only access 4MB of
22283 SDRAM.
22284
22285 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22286
22287 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
22288 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22289 Date: Thu Nov 22 17:01:24 2007 +0100
22290
22291 ATSTK1002: Use SDRAM + 4MB as default load address
22292
22293 Many people run into problems when they compile a big kernel and load
22294 the uImage at the default SDRAM + 2MB address as the kernel will
22295 overwrite the uImage as it is being unpacked. Increase the default
22296 load address so that we can load a 4MB kernel image without any
22297 problems.
22298
22299 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22300
22301 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
22302 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22303 Date: Thu Nov 22 16:51:39 2007 +0100
22304
22305 ATNGW100: Fix default mtest range
22306
22307 Let mtest cover the whole SDRAM except the last megabyte, which is
22308 where u-boot lives.
22309
22310 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22311
22312 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
22313 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22314 Date: Tue Jan 22 15:31:56 2008 +0900
22315
22316 sh: Fix register address of SH7722.
22317
22318 The address of SH7722 is wrong by old document.
22319 This patch fixes this problem.
22320
22321 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22322
22323 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
22324 Author: Mike Frysinger <vapier@gentoo.org>
22325 Date: Mon Feb 4 19:26:57 2008 -0500
22326
22327 new command for displaying strings at specified memory locations
22328
22329 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22330
22331 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
22332 Author: Mike Frysinger <vapier@gentoo.org>
22333 Date: Mon Feb 4 19:26:57 2008 -0500
22334
22335 rewrite/cleanup Blackfin RTC driver
22336
22337 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22338
22339 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
22340 Author: Mike Frysinger <vapier@gentoo.org>
22341 Date: Mon Feb 4 19:26:57 2008 -0500
22342
22343 generate u-boot.ldr for Blackfin targets
22344
22345 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22346
22347 commit b779f7a59530436040f157f7841db7ab796542df
22348 Author: Mike Frysinger <vapier@gentoo.org>
22349 Date: Mon Feb 4 19:26:57 2008 -0500
22350
22351 scrub unused symbols
22352
22353 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22354
22355 commit cc2977acc3bbbb7850f16645dd1081f95335868d
22356 Author: Mike Frysinger <vapier@gentoo.org>
22357 Date: Mon Feb 4 19:26:57 2008 -0500
22358
22359 move Blackfin cpu object list to respective cpu directories
22360
22361 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22362
22363 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
22364 Author: Mike Frysinger <vapier@gentoo.org>
22365 Date: Mon Feb 4 19:26:57 2008 -0500
22366
22367 interface to Blackfin on-chip One-Time-Programmable memory
22368
22369 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22370
22371 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
22372 Author: Mike Frysinger <vapier@gentoo.org>
22373 Date: Mon Feb 4 19:26:56 2008 -0500
22374
22375 add support for memory commands with Blackfin L1 instruction memory
22376
22377 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22378
22379 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
22380 Author: Mike Frysinger <vapier@gentoo.org>
22381 Date: Mon Feb 4 19:26:56 2008 -0500
22382
22383 use C code rather than inline assembly
22384
22385 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22386
22387 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
22388 Author: Mike Frysinger <vapier@gentoo.org>
22389 Date: Mon Feb 4 19:26:56 2008 -0500
22390
22391 add Blackfin-specific reginfo command
22392
22393 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22394
22395 commit 0858b835e7ea501ea084d34cef75932f098342bb
22396 Author: Mike Frysinger <vapier@gentoo.org>
22397 Date: Mon Feb 4 19:26:55 2008 -0500
22398
22399 add support for Blackfin symbol prefixes to examples
22400
22401 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22402
22403 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
22404 Author: Mike Frysinger <vapier@gentoo.org>
22405 Date: Mon Feb 4 19:26:55 2008 -0500
22406
22407 add Blackfin-specific bdinfo command
22408
22409 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22410
22411 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
22412 Author: Mike Frysinger <vapier@gentoo.org>
22413 Date: Mon Feb 4 19:26:55 2008 -0500
22414
22415 move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
22416
22417 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22418
22419 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
22420 Author: Mike Frysinger <vapier@gentoo.org>
22421 Date: Mon Feb 4 19:26:55 2008 -0500
22422
22423 unify the Blackfin board targets
22424
22425 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22426
22427 commit d4d7730853e5d675f76ec666807da3028c91d592
22428 Author: Mike Frysinger <vapier@gentoo.org>
22429 Date: Mon Feb 4 19:26:55 2008 -0500
22430
22431 punt Blackfin VDSP headers and import sanitized/auto-generated ones
22432
22433 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22434
22435 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
22436 Author: Mike Frysinger <vapier@gentoo.org>
22437 Date: Mon Feb 4 19:26:54 2008 -0500
22438
22439 always pull in asm/blackfin.h for Blackfin ports
22440
22441 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22442
22443 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
22444 Author: Mike Frysinger <vapier@gentoo.org>
22445 Date: Mon Feb 4 19:26:54 2008 -0500
22446
22447 add missing __raw versions of Blackfin read/write io functions
22448
22449 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22450
22451 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
22452 Author: Mike Frysinger <vapier@gentoo.org>
22453 Date: Mon Feb 4 19:26:54 2008 -0500
22454
22455 add the default Blackfin logo used by Blackfin boards with splash screens
22456
22457 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22458
22459 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
22460 Author: Mike Frysinger <vapier@gentoo.org>
22461 Date: Mon Feb 4 19:26:54 2008 -0500
22462
22463 add some more Blackfin docs
22464
22465 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22466
22467 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
22468 Author: Mike Frysinger <vapier@gentoo.org>
22469 Date: Mon Feb 4 19:26:54 2008 -0500
22470
22471 make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
22472
22473 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22474
22475 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
22476 Author: Mike Frysinger <vapier@gentoo.org>
22477 Date: Mon Feb 4 19:26:54 2008 -0500
22478
22479 fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
22480
22481 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22482
22483 commit b45264ee85cbd92020640a32e02fb434fd557108
22484 Author: Mike Frysinger <vapier@gentoo.org>
22485 Date: Mon Feb 4 19:26:53 2008 -0500
22486
22487 add gitignores for Blackfin pieces
22488
22489 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22490
22491 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
22492 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22493 Date: Fri Jan 18 01:14:03 2008 +0100
22494
22495 TFTP: add host ip addr support
22496
22497 allow to use a different server as set in serverip
22498 add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
22499 if not defined the max length will be at 128
22500
22501 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22502
22503 commit e56b4b494cd92def577969f9678395aa22d34c9f
22504 Author: Timur Tabi <timur@freescale.com>
22505 Date: Wed Jan 9 14:35:26 2008 -0600
22506
22507 85xx,86xx: Determine I2C clock frequencies and store in global_data
22508
22509 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
22510
22511 Update the get_clocks() function in 85xx and 86xx to determine the I2C
22512 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
22513
22514 Signed-off-by: Timur Tabi <timur@freescale.com>
22515
22516 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
22517 Author: Wolfgang Denk <wd@denx.de>
22518 Date: Thu Dec 27 10:56:54 2007 +0100
22519
22520 OMAP5912: fix FIFO handling in UART driver
22521
22522 According to the OMAP5912 Serial Interfaces Reference Guide (see
22523 http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
22524 FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
22525 changed when the baud clock is not running, i. e. when both DLL and
22526 DLH are set to 0.
22527
22528 Thus make sure that DLL and DLH are 0 when writing the FCR.
22529
22530 Signed-off-by: Wolfgang Denk <wd@denx.de>
22531
22532 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
22533 Author: Harald Welte <laforge@openmoko.org>
22534 Date: Wed Dec 19 15:10:52 2007 +0100
22535
22536 ARM: S3C24x0 SoC NAND controller support
22537
22538 This patch adds NAND support to the S3C24x0 SoC code in u-boot
22539
22540 Signed-off-by: Harald Welte <laforge@openmoko.org>
22541
22542 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
22543 Author: Harald Welte <laforge@openmoko.org>
22544 Date: Wed Dec 19 14:24:40 2007 +0100
22545
22546 ARM: s3c24xx: Multiple serial port support
22547
22548 This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
22549
22550 Signed-off-by: Harald Welte <laforge@openmoko.org>
22551
22552 commit a25f72f1f73a11de68251fb88c89991e202e68fa
22553 Author: Harald Welte <laforge@openmoko.org>
22554 Date: Wed Dec 19 14:16:57 2007 +0100
22555
22556 ARM: arm920t: Allow use of 'gd' pointer from IRQ
22557
22558 This patch allows us to use the 'gd' pointer (and thus environment
22559 and everything else associated with it) from interrupt context on
22560 arm920t.
22561
22562 Signed-off-by: Harald Welte <laforge@openmoko.org>
22563
22564 commit be19bd5cd0f454b63298844a0b5377e029b2caad
22565 Author: Harald Welte <laforge@openmoko.org>
22566 Date: Wed Dec 19 14:19:38 2007 +0100
22567
22568 ARM: arm920/s3c24xx: IRQ demulitplexer callback
22569
22570 This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
22571 plus a stub implementation of it for the S3C2410.
22572
22573 The purpose is to allow arm920t implementations such as the s3c24x0 to
22574 implement interrupt handlers in u-boot without having to touch core
22575 arm920t code.
22576
22577 Signed-off-by: Harald Welte <laforge@openmoko.org>
22578
22579 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
22580 Author: Hebbar <gururajakr@sanyo.co.in>
22581 Date: Tue Dec 18 16:03:07 2007 -0800
22582
22583 ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
22584
22585 Add ifdef to bdinfo command to display ethernet information
22586 only if CONFIG_CMD_NET is defined for arm modules.
22587
22588 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
22589
22590 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
22591 Author: Hebbar <gururajakr@sanyo.co.in>
22592 Date: Tue Dec 18 16:00:54 2007 -0800
22593
22594 ARM: add I2C init function call in lib_arm/board.c
22595
22596 Adds I2C init func call to init sequence for ARM boards. This is
22597 present in ppc,blackfin and other processor init sequence.
22598
22599 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
22600
22601 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
22602 Author: Stefan Roese <sr@denx.de>
22603 Date: Fri Feb 1 09:38:29 2008 +0100
22604
22605 ppc4xx: Fix ndfc HW ECC byte order
22606
22607 The current ndfc HW ECC implementation swaps the first two ECC bytes.
22608 But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
22609 so this swapping in the HW ECC driver is bogus. This patch fixes this
22610 problem and now really uses the SMC ECC byte order.
22611
22612 Thanks to Sean MacLennan for pointing this out.
22613
22614 Signed-off-by: Stefan Roese <sr@denx.de>
22615
22616 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
22617 Author: Stefan Roese <sr@denx.de>
22618 Date: Wed Jan 30 15:35:50 2008 +0100
22619
22620 ppc4xx: Fix GPIO configuration for pcs440ep
22621
22622 The SRD0_PFC0 register was not configured correctly to enable the GPIO's
22623 49-63 for GPIO. They have been configured as trace signals. This patch
22624 fixes this by clearing the corresponding bit.
22625
22626 Signed-off-by: Stefan Roese <sr@denx.de>
22627
22628 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
22629 Author: Stefan Roese <sr@denx.de>
22630 Date: Wed Jan 30 14:48:28 2008 +0100
22631
22632 ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
22633
22634 Signed-off-by: Stefan Roese <sr@denx.de>
22635
22636 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
22637 Author: Ladislav Michl <ladis@linux-mips.org>
22638 Date: Fri Dec 7 00:42:32 2007 +0100
22639
22640 ARM: Board voiceblue update
22641
22642 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
22643
22644 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
22645 Author: Ladislav Michl <ladis@linux-mips.org>
22646 Date: Thu Dec 6 23:24:57 2007 +0100
22647
22648 ARM: AT91RM9200 based boards config cleanup
22649
22650 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
22651
22652 Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
22653 indentation.
22654
22655 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
22656 Author: Ladislav Michl <ladis@linux-mips.org>
22657 Date: Thu Dec 6 22:59:16 2007 +0100
22658
22659 ARM: Fix at91rm9200dk base address
22660
22661 Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
22662 renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
22663 with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
22664 However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
22665 CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
22666 I'm sending this patch 4th (!) time in hope it produces at least some
22667 reaction.
22668
22669 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
22670
22671 Fix at91rm9200dk base and environment address.
22672
22673 commit c95219fae2a7add7daa2f91aedca65b1698465c7
22674 Author: stefano babic <sbabic@denx.de>
22675 Date: Tue Nov 20 10:40:24 2007 +0100
22676
22677 MMC for PXA 27X (resubmit)
22678
22679 MMC support for X_Scale PXA is broken and does not work.
22680 Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
22681 There were already some patches around the world but none of them was
22682 merged into the official u-boot tree.
22683
22684 This patch makes order fixing this issue. Resubmit after code cleanup.
22685
22686 Applied and tested on PXA 270 (TrizepsIV module).
22687
22688 Signed-off-by: Stefano Babic <sbabic@denx.de>
22689
22690 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
22691 Author: stefano babic <sbabic@denx.de>
22692 Date: Tue Nov 20 10:37:04 2007 +0100
22693
22694 Fix gcc issues in pxa-regs.h
22695
22696 Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
22697 issues generates wrong code.
22698 (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
22699 This patch fixes the problem and solves the gcc-4 issues as the linux
22700 kernel does.
22701
22702 Signed-off-by: Stefano Babic <sbabic@denx.de>
22703 Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
22704
22705 commit 7047b388876e7b905b2ec4edb8010543e3641b85
22706 Author: Jens Gehrlein <sew_s@tqs.de>
22707 Date: Tue Jan 29 08:45:03 2008 +0100
22708
22709 TQM834x: enable DHCP
22710
22711 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
22712 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22713
22714 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
22715 Author: Jens Gehrlein <sew_s@tqs.de>
22716 Date: Tue Jan 29 08:45:02 2008 +0100
22717
22718 TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
22719
22720 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
22721 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22722
22723 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
22724 Author: Ben Warren <biggerbadderben@gmail.com>
22725 Date: Sat Jan 26 23:41:19 2008 -0500
22726
22727 Fix conditional compilation of mpx8xxx_spi driver
22728
22729 This driver should only compile if CONFIG_MPC8XXX_SPI is set
22730
22731 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22732 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22733
22734 commit 63f732d3d3880feb531f48af247c025bf01462b0
22735 Author: Rafal Jaworowski <raj@semihalf.com>
22736 Date: Tue Jan 29 17:00:34 2008 +0100
22737
22738 API: Provide dummy halt() in the glue layer.
22739
22740 This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
22741
22742 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
22743
22744 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
22745 Author: Rafal Jaworowski <raj@semihalf.com>
22746 Date: Tue Jan 29 16:57:38 2008 +0100
22747
22748 API: Convert conditional building to the new scheme.
22749
22750 This fixes a build breakage with CONFIG_API enabled, which appeared after
22751 the recent changes in the U-Boot build system.
22752
22753 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
22754
22755 commit 98b742489c09780be6a832eeaa4e5eff824792bb
22756 Author: Wolfgang Denk <wd@denx.de>
22757 Date: Fri Jan 25 09:56:17 2008 +0100
22758
22759 inka4x0: remove dead code
22760
22761 Signed-off-by: Wolfgang Denk <wd@denx.de>
22762
22763 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
22764 Author: Becky Bruce <becky.bruce@freescale.com>
22765 Date: Wed Jan 23 16:31:06 2008 -0600
22766
22767 86xx: Add reginfo command
22768
22769 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22770
22771 commit ddcebcb638715a6278da93b553d5016f99823816
22772 Author: Becky Bruce <becky.bruce@freescale.com>
22773 Date: Wed Jan 23 16:31:05 2008 -0600
22774
22775 86xx: Add print_laws function to fsl_law.c
22776
22777 This can be used for debug, and will be used by board code
22778 to help implement reginfo.
22779
22780 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22781
22782 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
22783 Author: Becky Bruce <becky.bruce@freescale.com>
22784 Date: Wed Jan 23 16:31:04 2008 -0600
22785
22786 86xx: Remove old-style law setup code
22787
22788 This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
22789
22790 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22791
22792 commit 713d8186649dae874613d495b0cecaa039a98b30
22793 Author: Becky Bruce <becky.bruce@freescale.com>
22794 Date: Wed Jan 23 16:31:03 2008 -0600
22795
22796 86xx: Convert sbc8641d to use new law setup code.
22797
22798 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22799
22800 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
22801 Author: Becky Bruce <becky.bruce@freescale.com>
22802 Date: Wed Jan 23 16:31:02 2008 -0600
22803
22804 86xx: Convert mpc8610hpcd to new law setup method.
22805
22806 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22807
22808 commit 4933b91f8a49e436681f163df3173beb91cac44a
22809 Author: Becky Bruce <becky.bruce@freescale.com>
22810 Date: Wed Jan 23 16:31:01 2008 -0600
22811
22812 86xx: Support new law setup method and convert mpc8641
22813
22814 Adds the support code in cpu/mpc86xx for the new law setup code
22815 recently created fsl_law.c, and changes the MPC8641HPCN config
22816 to use this code.
22817
22818 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22819
22820 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
22821 Author: Becky Bruce <becky.bruce@freescale.com>
22822 Date: Wed Jan 23 16:31:00 2008 -0600
22823
22824 86xx: Rearrange the sequence in start.S
22825
22826 * split the BAT initialization so that only 2 BATs (for the boot page
22827 and stack) are programmed very early on. The rest are initialized later.
22828 * Move other BAT setup, ccsrbar setup, and law setup later in the code
22829 after translation has been enabled.
22830
22831 These changes will facilitate the moving of law and BAT initialization
22832 to C code, and will aid with 36-bit physical addressing support.
22833
22834 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22835
22836 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
22837 Author: Wolfgang Denk <wd@denx.de>
22838 Date: Wed Jan 23 14:41:37 2008 +0100
22839
22840 Coding Style Cleanup; update CHANGELOG
22841
22842 Signed-off-by: Wolfgang Denk <wd@denx.de>
22843
22844 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
22845 Author: Wolfgang Denk <wd@denx.de>
22846 Date: Wed Jan 23 14:31:17 2008 +0100
22847
22848 Coding Style Cleanup; update CHANGELOG
22849
22850 Signed-off-by: Wolfgang Denk <wd@denx.de>
22851
22852 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
22853 Author: Dave Liu <r63238@freescale.com>
22854 Date: Fri Jan 18 10:07:04 2008 +0800
22855
22856 mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
22857
22858 The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
22859 cause the 83xx immap broken, so the DMA and PCI will
22860 be failed.
22861
22862 The patch fix the struct spi8xxx and rm struct spi83xx.
22863
22864 Signed-off-by: Dave Liu <daveliu@freescale.com>
22865 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22866
22867 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
22868 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22869 Date: Sat Apr 14 17:11:49 2007 +0200
22870
22871 AVR32: ATNGW100 board support
22872
22873 Add support for the ATNGW100 Network Gateway reference design,
22874 including flash, ethernet and MMC support.
22875
22876 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22877
22878 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
22879 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22880 Date: Sat Nov 24 18:15:31 2007 +0100
22881
22882 AVR32: Initialize ipaddr, loadaddr and bootfile at startup
22883
22884 I don't know why the relevant layers can't do this by itself, but this
22885 is what ppc does.
22886
22887 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22888
22889 commit 799891ef7b1b3432032ec23466df6b665a797fa4
22890 Author: Michael Schwingen <michael@schwingen.org>
22891 Date: Fri Jan 18 00:04:28 2008 +0100
22892
22893 Add AcTux board support
22894
22895 Hi,
22896
22897 The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
22898 files that
22899 contain changes for multiple boards, the board-specific files follow as
22900 separate patches.
22901
22902 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22903
22904 commit 66a4344a4d910a11125df7768899ad529719855e
22905 Author: Michael Schwingen <michael@schwingen.org>
22906 Date: Wed Jan 16 19:53:23 2008 +0100
22907
22908 add AcTux-4 board support
22909
22910 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22911
22912 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
22913 Author: Michael Schwingen <michael@schwingen.org>
22914 Date: Wed Jan 16 19:51:55 2008 +0100
22915
22916 add AcTux-3 board support
22917
22918 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22919
22920 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
22921 Author: Michael Schwingen <michael@schwingen.org>
22922 Date: Wed Jan 16 19:51:14 2008 +0100
22923
22924 add AcTux-2 board support
22925
22926 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22927
22928 commit ea99e8f05b7240fd657739e286664664ae160abe
22929 Author: Michael Schwingen <michael@schwingen.org>
22930 Date: Wed Jan 16 19:50:37 2008 +0100
22931
22932 add AcTux-1 board support
22933
22934 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22935
22936 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
22937 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22938 Date: Mon Jan 14 19:20:08 2008 +0100
22939
22940 ARM: remove useless function board_post_init
22941
22942 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22943
22944 commit 96bd462942022e4569b582c072a0ed26de1cd19b
22945 Author: Michael Schwingen <michael@schwingen.org>
22946 Date: Thu Jan 10 14:59:46 2008 +0100
22947
22948 IXP: enable RTS
22949
22950 enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
22951 No handshaking is done, but the active RTS signal allows to
22952 connect to the target using a PC which is using RTS/CTS
22953 handshake, and does no harm if the PC is set to ignore RTS.
22954
22955 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22956
22957 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
22958 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22959 Date: Mon Jan 7 08:41:34 2008 +0100
22960
22961 IXP: add dynamic microcode addr
22962
22963 allow to load the microde from flash or ram by download it through
22964 the serial or other.
22965
22966 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22967 Acked-by: Stefan Roese <sr@denx.de>
22968
22969 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
22970 Author: Michael Schwingen <michael@schwingen.org>
22971 Date: Sat Nov 10 15:44:12 2007 +0100
22972
22973 load ixp42x NPE firmware from separate flash block, remove dead code
22974
22975 Hi,
22976
22977 the following patch adds support to move the IXP42X NPE firmware to a
22978 separate flash block, whose start address is defined in
22979 CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
22980 NPE-enabled u-boot without copyright problems due to the NPE firmware.
22981
22982 I hope the patch applies, I get whitespace-related differences in the NPE
22983 files due to trailing whitespace in the original versions.
22984
22985 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22986 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22987
22988 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
22989 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22990 Date: Tue Jan 15 14:15:46 2008 -0600
22991
22992 ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
22993
22994 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22995 Signed-off by: John Rigby <jrigby@freescale.com>
22996
22997 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
22998 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22999 Date: Tue Jan 15 14:02:49 2008 -0600
23000
23001 ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
23002
23003 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23004 Signed-off by: John Rigby <jrigby@freescale.com>
23005
23006 commit 777d1abd9796f1c2e148417cc10657e847d318ce
23007 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23008 Date: Tue Jan 15 14:00:25 2008 -0600
23009
23010 ColdFire: Add MCF547x_8x FEC driver
23011
23012 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23013 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23014 Signed-off by: John Rigby <jrigby@freescale.com>
23015
23016 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
23017 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23018 Date: Tue Jan 15 13:54:09 2008 -0600
23019
23020 ColdFire: Add MCF547x_8x dma code and header files
23021
23022 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23023 Signed-off by: John Rigby <jrigby@freescale.com>
23024
23025 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
23026 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23027 Date: Tue Jan 15 13:52:03 2008 -0600
23028
23029 ColdFire: Add MCF547x_8x dma code - 2
23030
23031 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23032 Signed-off by: John Rigby <jrigby@freescale.com>
23033
23034 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
23035 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23036 Date: Tue Jan 15 13:48:52 2008 -0600
23037
23038 ColdFire: Add MCF547x_8x dma code - 1
23039
23040 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23041 Signed-off by: John Rigby <jrigby@freescale.com>
23042
23043 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
23044 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23045 Date: Tue Jan 15 13:39:44 2008 -0600
23046
23047 ColdFire: Add MCF547x_8x related header files
23048
23049 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23050 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23051 Signed-off by: John Rigby <jrigby@freescale.com>
23052
23053 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
23054 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23055 Date: Tue Jan 15 13:37:34 2008 -0600
23056
23057 ColdFire: Add MCF547x_8x cpu arch
23058
23059 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23060 Signed-off by: John Rigby <jrigby@freescale.com>
23061
23062 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
23063 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23064 Date: Mon Jan 14 17:47:23 2008 -0600
23065
23066 ColdFire: Add MCF5227x cpu and M52277EVB support-3
23067
23068 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23069 Signed-off by: John Rigby <jrigby@freescale.com>
23070
23071 commit c87581027994c148131b2f11aa75501f782ec19a
23072 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23073 Date: Mon Jan 14 17:46:19 2008 -0600
23074
23075 ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
23076
23077 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23078 Signed-off by: John Rigby <jrigby@freescale.com>
23079
23080 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
23081 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23082 Date: Mon Jan 14 17:43:33 2008 -0600
23083
23084 ColdFire: Add MCF5227x cpu and M52277EVB support-1
23085
23086 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23087 Signed-off by: John Rigby <jrigby@freescale.com>
23088
23089 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
23090 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23091 Date: Mon Jan 14 17:35:44 2008 -0600
23092
23093 ColdFire: Fix CFI Flash low level Read/Write macro
23094
23095 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23096 Signed-off by: John Rigby <jrigby@freescale.com>
23097
23098 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
23099 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23100 Date: Mon Jan 14 17:23:08 2008 -0600
23101
23102 ColdFire: Add M5373EVB platform support - 2
23103
23104 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23105 Signed-off by: John Rigby <jrigby@freescale.com>
23106
23107 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
23108 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23109 Date: Mon Jan 14 17:19:54 2008 -0600
23110
23111 ColdFire: Add M5373EVB platform support - 1
23112
23113 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23114 Signed-off by: John Rigby <jrigby@freescale.com>
23115
23116 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
23117 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23118 Date: Mon Jan 14 17:17:03 2008 -0600
23119
23120 ColdFire: Update FlexBus CS for MCF532x
23121
23122 Definition update and change from 16bit to 32bit
23123
23124 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23125 Signed-off by: John Rigby <jrigby@freescale.com>
23126
23127 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
23128 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23129 Date: Mon Jan 14 17:11:47 2008 -0600
23130
23131 ColdFire: PCI and misc updates for MCF5445x
23132
23133 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23134 Signed-off by: John Rigby <jrigby@freescale.com>
23135
23136 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
23137 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23138 Date: Mon Jan 14 17:06:55 2008 -0600
23139
23140 ColdFire: MCF5445x header files cleanup
23141
23142 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23143 Signed-off by: John Rigby <jrigby@freescale.com>
23144
23145 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
23146 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23147 Date: Mon Jan 14 16:59:42 2008 -0600
23148
23149 ColdFire: MCF532x header files cleanup
23150
23151 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23152 Signed-off by: John Rigby <jrigby@freescale.com>
23153
23154 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
23155 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23156 Date: Mon Jan 14 15:30:15 2008 -0600
23157
23158 ColdFire: Add modules header files
23159
23160 Add CF specific modules header files
23161
23162 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23163 Signed-off-by: John Rigby <jrigby@freescale.com>
23164
23165 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
23166 Author: Kim Phillips <kim.phillips@freescale.com>
23167 Date: Thu Jan 17 12:48:00 2008 -0600
23168
23169 codingstyle cleanup for spi driver
23170
23171 ..and rm unused CONFIG_FSL_SPI define
23172
23173 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23174
23175 commit d59feffb42c9f174116db7a82a311df98983dfce
23176 Author: Haiying Wang <Haiying.Wang@freescale.com>
23177 Date: Wed Jan 16 17:12:12 2008 -0500
23178
23179 FSL: Fix common EEPROM_data structure definition
23180
23181 - Fix EEPROM_data structure definition according to System EEPROM Data Format.
23182 - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
23183 bd->bi_ethaddr.
23184
23185 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23186
23187 commit 6bee764bd6da510a4aad614880300c968bc7318d
23188 Author: Timur Tabi <timur@freescale.com>
23189 Date: Wed Jan 16 15:48:12 2008 -0600
23190
23191 86xx: enable command-line editing
23192
23193 Enable command-line editing for all MPC86xx boards.
23194
23195 Signed-off-by: Timur Tabi <timur@freescale.com>
23196
23197 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
23198 Author: Ben Warren <biggerbadderben@gmail.com>
23199 Date: Wed Jan 16 22:37:42 2008 -0500
23200
23201 Implement hard SPI driver on MPC8349EMDS
23202
23203 This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
23204 This board has an ST M25P40 4Mbit EEPROM on its SPI bus
23205
23206 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23207 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23208
23209 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
23210 Author: Ben Warren <biggerbadderben@gmail.com>
23211 Date: Wed Jan 16 22:37:35 2008 -0500
23212
23213 Add support for a Freescale non-CPM SPI controller
23214
23215 This patch adds support for the SPI controller found on Freescale PowerPC
23216 processors such as the MCP834x family. Additionally, a new config option,
23217 CONFIG_HARD_SPI, is added for general purpose SPI controller use.
23218
23219 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23220 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23221
23222 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
23223 Author: Dave Liu <r63238@freescale.com>
23224 Date: Thu Jan 17 18:23:19 2008 +0800
23225
23226 mpc83xx: Fix the fatal conflict of merge
23227
23228 The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
23229 will cause the mpc8315erdb board can't boot up.
23230
23231 The patch fix that bug, and remove the duplicated #ifdef
23232 CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
23233 MPC8313E processor.
23234
23235 Signed-off-by: Dave Liu <daveliu@freescale.com>
23236 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23237
23238 commit 3259eeaa4148125a81417477f62c05bd67f60587
23239 Author: Larry Johnson <lrj@acm.org>
23240 Date: Thu Jan 17 08:50:09 2008 -0500
23241
23242 Merge Sequoia beautification into Korat code
23243
23244 Signed-off-by: Larry Johnson <lrj@acm.org>
23245
23246 commit e16925773211291b562e77187061e9dd1d757217
23247 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23248 Date: Thu Jan 17 07:45:05 2008 +0100
23249
23250 net: add 'ethrotate' environment variable
23251
23252 [PATCH] net: add 'ethrotate' environment variable
23253
23254 This patch replaces the buildtime configuration option
23255 CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
23256 configuration veriable. See README.
23257
23258 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23259 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23260
23261 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
23262 Author: Stefan Roese <sr@denx.de>
23263 Date: Thu Jan 17 14:29:04 2008 +0100
23264
23265 ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
23266
23267 Signed-off-by: Stefan Roese <sr@denx.de>
23268
23269 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
23270 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23271 Date: Thu Jan 17 18:07:32 2008 +0900
23272
23273 sh: Remove CONFIG_COMMANDS from MS7720SE config file
23274
23275 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23276
23277 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
23278 Author: Niklaus Giger <niklaus.giger@netstal.com>
23279 Date: Wed Jan 16 18:39:20 2008 +0100
23280
23281 ppc4xx: Netstal HCU4 board: added various fixes and POST
23282
23283 - Moved some common code to netstal/common/nm_bsp.c.
23284 - sdram initialisation goes go netstal/common/fixed_sdram.c.
23285 - Added support for POST.
23286 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
23287
23288 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23289
23290 commit 69b0634a4ee98c9791815600d43b99f626a952f3
23291 Author: Niklaus Giger <niklaus.giger@netstal.com>
23292 Date: Thu Jan 17 12:53:56 2008 +0100
23293
23294 ppc4xx: netstal/common define routines used by all boards
23295
23296 Added some routines used by all Netstal boards:
23297 - nm_bsp.c: - nm_show_print and
23298 - common_misc_init_r
23299 - set_params_for_sw_install. Very specific code to handle our SW
23300 installation procedure
23301 - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
23302 to handle sdram initialization.
23303 - nm.h: Common header
23304
23305 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23306
23307 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
23308 Author: Niklaus Giger <niklaus.giger@netstal.com>
23309 Date: Wed Jan 16 18:39:18 2008 +0100
23310
23311 ppc4xx: Netstal HCU5 board: added various fixes and POST
23312
23313 - Moved some common code to nestal/common/nm_bsp.c.
23314 - Added support for the vxWorks EDR.
23315 - Enable trace for Lauterbach, if present.
23316 - Added support for POST.
23317 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
23318
23319 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23320
23321 commit 4371090e5da77edc7bf9f296364db4801639d9c4
23322 Author: Niklaus Giger <niklaus.giger@netstal.com>
23323 Date: Wed Jan 16 18:39:08 2008 +0100
23324
23325 ppc4xx: Netstal HCU5 board. Added POST. Various fixes
23326
23327 - Various fixes
23328 - Reduced rom_size from 384 to 320 kB
23329 - Environment is now in flash
23330 - Added POST
23331 - Support for OF
23332
23333 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23334
23335 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
23336 Author: Niklaus Giger <niklaus.giger@netstal.com>
23337 Date: Wed Jan 16 18:37:50 2008 +0100
23338
23339 ppc4xx: Netstal HCU4 board. Added POST. Various fixes
23340
23341 - Various fixes
23342 - Reduced rom_size from 384 to 320 kB
23343 - Environment is now in flash
23344 - Added POST
23345 - Support for OF
23346
23347 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23348
23349 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
23350 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23351 Date: Thu Jan 17 10:53:08 2008 +0100
23352
23353 ppc4xx: Complete DU440 board support
23354
23355 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23356
23357 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
23358 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23359 Date: Thu Jan 17 10:52:30 2008 +0100
23360
23361 ppc4xx: Add DU440 board support
23362
23363 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23364
23365 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
23366 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23367 Date: Thu Jan 17 15:53:52 2008 +0900
23368
23369 sh: Update SuperH SCIF driver
23370
23371 This patch fixed wrong SH7720 CPU macro and changed macro that
23372 calculated value of SCBRR register.
23373
23374 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23375
23376 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
23377 Author: Grzegorz Bernacki <gjb@semihalf.com>
23378 Date: Wed Jan 16 15:12:47 2008 +0100
23379
23380 Set ips dividor to 1/4 of csb clock.
23381
23382 Previous setting cause ips clock to be out of spec. This bug was found by John
23383 Rigby from Freescale.
23384
23385 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
23386
23387 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
23388 Author: Kumar Gala <galak@kernel.crashing.org>
23389 Date: Thu Jan 17 02:19:18 2008 -0600
23390
23391 85xx: Get ride of old TLB setup code
23392
23393 Now that all boards have been converted, remove old config code and the
23394 config option for the new style.
23395
23396 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23397
23398 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
23399 Author: Kumar Gala <galak@kernel.crashing.org>
23400 Date: Thu Jan 17 02:02:10 2008 -0600
23401
23402 85xx: Convert TQM85xx to new TLB setup
23403
23404 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23405
23406 commit 74121b470c14f7eaf284ee838bffca6f9521069e
23407 Author: Kumar Gala <galak@kernel.crashing.org>
23408 Date: Thu Jan 17 01:56:32 2008 -0600
23409
23410 85xx: Convert STXGP3 & STXSSA to new TLB setup
23411
23412 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23413
23414 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
23415 Author: Kumar Gala <galak@kernel.crashing.org>
23416 Date: Thu Jan 17 01:44:34 2008 -0600
23417
23418 85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
23419
23420 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23421
23422 commit 818218bac6a11591e2542c344d2330e0f4e1968b
23423 Author: Kumar Gala <galak@kernel.crashing.org>
23424 Date: Thu Jan 17 01:31:34 2008 -0600
23425
23426 85xx: Convert PM854/PM856 to new TLB setup
23427
23428 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23429
23430 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
23431 Author: Kumar Gala <galak@kernel.crashing.org>
23432 Date: Thu Jan 17 01:25:33 2008 -0600
23433
23434 85xx: Convert MPC8540EVAL to new TLB setup
23435
23436 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23437
23438 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
23439 Author: Kumar Gala <galak@kernel.crashing.org>
23440 Date: Thu Jan 17 01:12:22 2008 -0600
23441
23442 85xx: Convert MPC8568 MDS to new TLB setup
23443
23444 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23445
23446 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
23447 Author: Kumar Gala <galak@kernel.crashing.org>
23448 Date: Thu Jan 17 01:01:09 2008 -0600
23449
23450 85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
23451
23452 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23453
23454 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
23455 Author: Kumar Gala <galak@kernel.crashing.org>
23456 Date: Thu Jan 17 00:52:29 2008 -0600
23457
23458 85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
23459
23460 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23461
23462 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
23463 Author: Kumar Gala <galak@kernel.crashing.org>
23464 Date: Thu Jan 17 00:32:17 2008 -0600
23465
23466 85xx: Convert ATUM8548 to new TLB setup
23467
23468 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23469
23470 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
23471 Author: Kumar Gala <galak@kernel.crashing.org>
23472 Date: Wed Jan 16 23:11:57 2008 -0600
23473
23474 85xx: Convert MPC8544 DS to new TLB setup
23475
23476 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23477
23478 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
23479 Author: Kumar Gala <galak@kernel.crashing.org>
23480 Date: Wed Jan 16 22:38:34 2008 -0600
23481
23482 85xx: Reworked initial processor init
23483
23484 Reworked the initial processor initialzation sequence:
23485 * introduced cpu_early_init_f that is run in address space 1 (AS=1)
23486 * Moved TLB/LAW and CCSR init into cpu_early_init_f()
23487 * Reworked initial asm code to do most of the core init before TLBs
23488
23489 The main reasons for these changes are to allow handling of 36-bit phys
23490 addresses in the future and some of the issues that will exist when we
23491 do that.
23492
23493 There are a few caveats on what can be initialized via the LAW and TLB
23494 static tables:
23495 * TLB entry 14/15 can't be initialized via the TLB table
23496 * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
23497 the code that is currently executing.
23498
23499 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23500
23501 commit 44a23cfd6360a68eaa41f945190618a55519eac3
23502 Author: Kumar Gala <galak@kernel.crashing.org>
23503 Date: Wed Jan 16 22:33:22 2008 -0600
23504
23505 85xx: Introduce new tlb API
23506
23507 Add a set of functions to manipulate TLB entries:
23508 * set_tlb() - write a tlb entry
23509 * invalidate_tlb() - invalidate a tlb array
23510 * disable_tlb() - disable a variable size tlb entry
23511 * init_tlbs() - setup initial tlbs based on static table
23512
23513 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23514
23515 commit be88b1699863c262818f3af7f60173b4d48df8fc
23516 Author: Stefan Roese <sr@denx.de>
23517 Date: Thu Jan 17 07:50:17 2008 +0100
23518
23519 ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
23520
23521 Signed-off-by: Stefan Roese <sr@denx.de>
23522
23523 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
23524 Author: Kumar Gala <galak@kernel.crashing.org>
23525 Date: Wed Jan 16 10:04:42 2008 -0600
23526
23527 85xx: Use proper defines for PCI addresses
23528
23529 We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
23530 While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
23531 be used for configuring the PCI ATMU.
23532
23533 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23534
23535 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
23536 Author: Kumar Gala <galak@kernel.crashing.org>
23537 Date: Wed Jan 16 09:22:29 2008 -0600
23538
23539 85xx: Remove old style of LAW init
23540
23541 All boards are now using the new fsl_law code so we can drop the old version.
23542
23543 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23544
23545 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
23546 Author: Kumar Gala <galak@kernel.crashing.org>
23547 Date: Wed Jan 16 09:15:29 2008 -0600
23548
23549 85xx: convert remaining 85xx boards over to use new LAW init code
23550
23551 Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
23552 to use new LAW init code.
23553
23554 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23555
23556 commit 572b13afc42710f2957c382a710360429c0e099b
23557 Author: Kumar Gala <galak@kernel.crashing.org>
23558 Date: Wed Jan 16 09:11:53 2008 -0600
23559
23560 85xx: convert STXGP3/STXSSA over to use new LAW init code
23561
23562 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23563
23564 commit 45f2166ac0233a9263058378f39612bd11f61196
23565 Author: Kumar Gala <galak@kernel.crashing.org>
23566 Date: Wed Jan 16 09:06:48 2008 -0600
23567
23568 85xx: convert PM854/PM856 over to use new LAW init code
23569
23570 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23571
23572 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
23573 Author: Kumar Gala <galak@kernel.crashing.org>
23574 Date: Wed Jan 16 09:05:27 2008 -0600
23575
23576 85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
23577
23578 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23579
23580 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
23581 Author: Kumar Gala <galak@kernel.crashing.org>
23582 Date: Wed Jan 16 01:45:10 2008 -0600
23583
23584 85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
23585
23586 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23587
23588 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
23589 Author: Kumar Gala <galak@kernel.crashing.org>
23590 Date: Wed Jan 16 01:32:06 2008 -0600
23591
23592 85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
23593
23594 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23595
23596 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
23597 Author: Kumar Gala <galak@kernel.crashing.org>
23598 Date: Wed Jan 16 01:16:16 2008 -0600
23599
23600 85xx: convert MPC8544 DS over to use new LAW init code
23601
23602 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23603
23604 commit 83d40dfd79fe868796275802f60116d84b9e4395
23605 Author: Kumar Gala <galak@kernel.crashing.org>
23606 Date: Wed Jan 16 01:13:58 2008 -0600
23607
23608 85xx: Move LAW init code into C
23609
23610 Move the initialization of the LAWs into C code and provide an API
23611 to allow modification of LAWs after init.
23612
23613 Board code is responsible to provide a law_table and num_law_entries.
23614
23615 We should be able to use the same code on 86xx as well.
23616
23617 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23618
23619 commit bed8ce838a609aaab136d43b25e6df2a520bc854
23620 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23621 Date: Sat Dec 22 15:03:12 2007 +0100
23622
23623 qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
23624
23625 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23626
23627 commit 0764c164fed6277d359cf132d55187ea34290114
23628 Author: Vlad Lungu <vlad@comsys.ro>
23629 Date: Wed Jan 16 19:27:51 2008 +0200
23630
23631 MIPS:Target support for qemu -M mips
23632
23633 With serial, NE2000, IDE support. Tested in big-endian mode.
23634 Memory size hard-coded to 128M for now, so don't play with
23635 the -m option.
23636
23637 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
23638
23639 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
23640 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23641 Date: Fri Jan 11 00:01:37 2008 +0100
23642
23643 Fix nfs command help to reflect that the serverip is optional
23644
23645 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23646 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23647
23648 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
23649 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23650 Date: Mon Dec 10 22:32:14 2007 +0100
23651
23652 bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
23653
23654 and move is_valid_ether_addr board file
23655
23656 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23657 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23658
23659 commit c2f896b8fc4722e36915903e1942e138e68ce804
23660 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23661 Date: Wed Jan 16 16:13:31 2008 +0900
23662
23663 drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
23664
23665 rx_status on the memory is basically in LE, but needs to be handled in CPU
23666 endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
23667 it'll work fine.
23668
23669 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23670 Cc: Masami Komiya <mkomiya@sonare.it>
23671 Cc: Lucas Jin <lucasjin@gmail.com>
23672 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23673
23674 commit 96a236746fe6a7b84802afb4ed31536696d34812
23675 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23676 Date: Wed Jan 16 16:12:26 2008 +0900
23677
23678 drivers/net/rtl8139.c: Fix cache coherency issues
23679
23680 Current driver is meant for cache coherent systems. This patch adds
23681 flush_cache() routines to support cache non-coherent systems.
23682
23683 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23684 Cc: Masami Komiya <mkomiya@sonare.it>
23685 Cc: Lucas Jin <lucasjin@gmail.com>
23686 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23687
23688 commit d1276c76c1e2b5035296689280ba1acb2c425104
23689 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23690 Date: Wed Jan 16 16:11:14 2008 +0900
23691
23692 drivers/net/rtl8139.c: Fix tx timeout
23693
23694 "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
23695 does, the condition "(currticks() < to)" becomes invalid and immediately
23696 leads to tx timeout error. This patch introduces the fine-graded udely(10)
23697 loops to ease the impact of wrapping around.
23698
23699 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23700 Cc: Masami Komiya <mkomiya@sonare.it>
23701 Cc: Lucas Jin <lucasjin@gmail.com>
23702 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23703
23704 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
23705 Author: Dave Liu <r63238@freescale.com>
23706 Date: Fri Jan 11 18:45:28 2008 +0800
23707
23708 TSEC: Add the support for RealTek RTL8211B PHY
23709
23710 Add the support of RealTek RTL8211B PHY, the RTL8211B
23711 PHY only supports RGMII and MII mode.
23712
23713 Signed-off-by: Dave Liu <daveliu@freescale.com>
23714 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23715
23716 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
23717 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
23718 Date: Wed Jan 16 09:40:41 2008 +0100
23719
23720 Remove annoying debug printout for PHY less boards.
23721
23722 PHY less board prints out lots of "read wrong ...":
23723 read wrong value : mii_id 3,mii_reg 2, base e0102320
23724 read wrong value : mii_id 3,mii_reg 3, base e0102320
23725 UEC: PHY is Generic MII (ffffffff)
23726 read wrong value : mii_id 3,mii_reg 4, base e0102320
23727 read wrong value : mii_id 3,mii_reg 0, base e0102320
23728 read wrong value : mii_id 3,mii_reg 1, base e0102320
23729 read wrong value : mii_id 3,mii_reg 1, base e0102320
23730 read wrong value : mii_id 3,mii_reg 5, base e0102320
23731 read wrong value : mii_id 3,mii_reg 1, base e0102320
23732 read wrong value : mii_id 3,mii_reg 1, base e0102320
23733 read wrong value : mii_id 3,mii_reg 5, base e0102320
23734 FSL UEC0: Full Duplex
23735 FSL UEC0: Speed 100BT
23736 FSL UEC0: Link is up
23737 Using FSL UEC0 device
23738
23739 Make this printout depend on UEC_VERBOSE_DEBUG and
23740 remove its definition in uec_phy.c
23741
23742 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
23743 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23744
23745 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
23746 Author: Kim Phillips <kim.phillips@freescale.com>
23747 Date: Tue Jan 15 14:11:00 2008 -0600
23748
23749 net: reduce boot latency on QE UEC based boards
23750
23751 actually polling for PHY autonegotiation to finish enables us to remove the
23752 5 second boot prompt latency present on QE based boards.
23753
23754 call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
23755 uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
23756 code shamelessly stolen from tsec driver.
23757
23758 also rm unused CONFIG_RMII_MODE code.
23759
23760 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23761 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
23762 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23763
23764 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
23765 Author: michael.firth@bt.com <michael.firth@bt.com>
23766 Date: Wed Jan 16 11:40:51 2008 +0000
23767
23768 TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
23769
23770 The current TSEC driver limits MDIO access to the devices that have been configured as attached
23771 to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
23772
23773 Signed-off-by: Michael Firth <michael.firth@bt.com>
23774 Acked-by: Andy Fleming <afleming@freescale.com>
23775 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23776
23777 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
23778 Author: Kim Phillips <kim.phillips@freescale.com>
23779 Date: Wed Jan 16 00:38:05 2008 -0600
23780
23781 Add support for the MPC837xERDB
23782
23783 MPC837xERDB board support includes:
23784 * DDR2 330MHz hardcoded (soldered on the board)
23785 * Local Bus NOR Flash
23786 * I2C, UART and RTC
23787 * eTSEC RGMII (TSEC0 - RTL8211B with MII;
23788 * TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
23789 * load)
23790
23791 Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
23792 Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
23793 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23794
23795 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
23796 Author: Kim Phillips <kim.phillips@freescale.com>
23797 Date: Wed Jan 16 12:06:16 2008 -0600
23798
23799 mpc83xx: add support for more system clock performance controls
23800
23801 System registers that are modified are the Arbiter Configuration
23802 Register (ACR), the System Priority Control Register (SPCR), and the
23803 System Clock Configuration Register (SCCR).
23804
23805 Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
23806 Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
23807 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23808
23809 commit 16c3cde050e2d243e62b37486f1558570787beb8
23810 Author: James Yang <james.yang@freescale.com>
23811 Date: Wed Jan 16 11:58:08 2008 -0600
23812
23813 FSL: Generalize PIXIS reset command parsing.
23814
23815 Before, the order of arguments to the pixis_reset
23816 command needed to be supplied in a hard-coded order.
23817 Generalize the command parsing to allow any order.
23818
23819 Signed-off-by: James Yang <james.yang@freescale.com>
23820 Acked-by: Jon Loeliger <jdl@freescale.com>
23821
23822 commit ad8f8687b78c3e917b173f038926695383c55555
23823 Author: Jon Loeliger <jdl@freescale.com>
23824 Date: Tue Jan 15 13:42:41 2008 -0600
23825
23826 FSL: Convert board/freescale/common/Makefile to use CONFIG_
23827
23828 Convert the board/freescale/common/Makefile to use
23829 CONFIG_* options to select which files to conditionally
23830 compile into the board/freescale/common library rather
23831 than conditionally compiling entire files.
23832
23833 Now handles::
23834 CONFIG_FSL_PIXIS
23835 CONFIG_FSL_DIU_FB
23836 CONFIG_PQ_MDS_PIB
23837
23838 CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
23839
23840 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23841
23842 commit 7c2221eb230372a9e537c4f6636b147b0909325f
23843 Author: Roy Zang <tie-fei.zang@freescale.com>
23844 Date: Tue Jan 15 16:38:38 2008 +0800
23845
23846 Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
23847
23848 Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
23849 Remove unused ethernet CONFIG_ options.
23850
23851 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
23852 Acked-by: Jon Loeliger <jdl@freescale.com>
23853
23854 commit 711a7946277d2e29af481011e8635e9975c54e45
23855 Author: Kim Phillips <kim.phillips@freescale.com>
23856 Date: Tue Jan 15 14:05:14 2008 -0600
23857
23858 mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
23859
23860 continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
23861
23862 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23863
23864 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
23865 Author: Kim Phillips <kim.phillips@freescale.com>
23866 Date: Tue Jan 15 09:51:12 2008 -0600
23867
23868 mpc83xx: clean up mpc8360emds.c warnings
23869
23870 mpc8360emds.c: In function 'ft_board_setup':
23871 mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
23872 mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
23873 mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
23874 mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
23875 mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
23876 mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
23877
23878 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23879
23880 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
23881 Author: Kim Phillips <kim.phillips@freescale.com>
23882 Date: Mon Jan 14 16:14:46 2008 -0600
23883
23884 mpc83xx: fix phy-connection-type fixup code
23885
23886 use tree passed to us in local blob, not global fdt.
23887
23888 Also use fdt_path_offset to convert to relative offset, since absolute
23889 reference is needed to check for rgmii-id mode string value.
23890
23891 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23892
23893 commit 2b4c952be7c4357a13e839d48df80853820c33eb
23894 Author: Kumar Gala <galak@kernel.crashing.org>
23895 Date: Mon Jan 14 09:01:40 2008 -0600
23896
23897 mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
23898
23899 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23900 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23901
23902 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
23903 Author: Poonam Aggrwal <b10812@freescale.com>
23904 Date: Mon Jan 14 09:41:14 2008 +0530
23905
23906 Changes in uboot DDR configuration for MPC8313eRDB
23907
23908 These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
23909 DDR configuration in u-boot code. Some are related to performance, some
23910 affect stability and some correct few basic errors in the current
23911 configuration.
23912
23913 The changes have been tested and found to give better memory latency
23914 figures on MPC8313eRDB.LMBench figures prove it.
23915
23916 The changes are:
23917
23918 - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
23919 (this may improve performance for application with many read
23920 or write to open pages).
23921 - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
23922 001 (activating all the CS when only one is used may cause
23923 unwanted noise on the system)
23924
23925 - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
23926 Tras=45ns)
23927 - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
23928
23929 - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
23930 comply with the 3 ODT clk requirements)
23931 - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
23932 - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
23933
23934 - DDR_SDRAM_MODE[AL]changed from 0 to 1.
23935 - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
23936
23937 - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
23938 - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
23939
23940 The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
23941 The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
23942
23943 Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
23944 Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
23945 Cc: Razzaz Mazyar <MRazzaz@freescale.com>
23946 Cc: Josep P J <PJ.Joseph@freescale.com>
23947 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23948
23949 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
23950 Author: Jerry Van Baren <gvb.uboot@gmail.com>
23951 Date: Sat Jan 12 13:24:14 2008 -0500
23952
23953 Enable the isdram command on the MPC8360EMDS board
23954
23955 The isdram command prints out decoded information the "serial presence
23956 detect" (SPD) chip on the SDRAM SIMMs. This can be very helpful when
23957 debugging memory configuration problems.
23958
23959 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
23960 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23961
23962 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
23963 Author: Dave Liu <r63238@freescale.com>
23964 Date: Fri Jan 11 18:48:24 2008 +0800
23965
23966 mpc83xx: Add the support for MPC8315ERDB board
23967
23968 The features list:
23969 - Boot from NOR Flash
23970 - DDR2 266MHz hardcoded configuration
23971 - Local bus NOR Flash R/W operation
23972 - I2C, UART, MII and RTC
23973 - eTSEC0/1 support
23974 - PCI host
23975
23976 Signed-off-by: Dave Liu <daveliu@freescale.com>
23977 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23978
23979 commit b05884efa614e4d8a9413158fc228e0dc02ab704
23980 Author: Dave Liu <r63238@freescale.com>
23981 Date: Fri Jan 11 18:46:50 2008 +0800
23982
23983 mpc83xx: Add config of eTSEC emergency priority in SPCR
23984
23985 The TSEC emergency priority definition of 831x/837x
23986 is different than the definition of 834x in SPCR register.
23987
23988 Add the other config of TSEC emergency priority into
23989 cpu_init.c
23990
23991 Signed-off-by: Dave Liu <daveliu@freescale.com>
23992 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23993
23994 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
23995 Author: Dave Liu <r63238@freescale.com>
23996 Date: Fri Jan 11 18:42:19 2008 +0800
23997
23998 mpc83xx: Remove cache config from MPC8360ERDK.h
23999
24000 The MPC8360ERDK board support patch is added before
24001 the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
24002 so, miss clean up it.
24003
24004 The patch clean up the miss cache config.
24005
24006 Signed-off-by: Dave Liu <daveliu@freescale.com>
24007 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24008
24009 commit cd9d23053d435c08fc8695017b5cb9003fcda786
24010 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24011 Date: Mon Jan 14 23:09:32 2008 +0300
24012
24013 nand: FSL UPM NAND driver
24014
24015 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24016
24017 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
24018 Author: Kyungmin Park <kmpark@infradead.org>
24019 Date: Tue Jan 15 08:59:44 2008 +0900
24020
24021 OneNAND: Separate U-Boot dependent code from OneNAND
24022
24023 OneNAND: Separate U-Boot dependent code from OneNAND
24024
24025 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
24026
24027 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
24028 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24029 Date: Wed Jan 16 10:33:46 2008 +0100
24030
24031 ppc4xx: Sequoia coding style cleanup and beautification
24032
24033 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24034
24035 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
24036 Author: Larry Johnson <lrj@acm.org>
24037 Date: Tue Jan 15 14:35:58 2008 -0500
24038
24039 ppc4xx: Refactor ECC POST for AMCC Denali core
24040
24041 The ECC POST reported intermittent failures running after power-up on
24042 the Korat PPC440EPx board. Even when the test passed, the debugging
24043 output occasionally reported additional unexpected ECC errors.
24044
24045 This refactoring has three main objectives: (1) minimize the code
24046 executed with ECC enabled during the tests, (2) add more checking of the
24047 results so any unexpected ECC errors would cause the test to fail, and
24048 (3) use synchronization (only) where required by the processor.
24049
24050 Signed-off-by: Larry Johnson <lrj@acm.org>
24051
24052 commit 2465665b73ac2f688af945b1ed510752afa816a4
24053 Author: David Saada <David.Saada@ecitele.com>
24054 Date: Tue Jan 15 10:40:24 2008 +0200
24055
24056 QE UEC: Extend number of supported UECs to 4
24057
24058 This patch extends the number of supported UECs to 4. Note that the
24059 problem of QE thread resources exhaustion is resolved by setting the
24060 correct number of QE threads according to Ethernet type (GBE or FE).
24061
24062 Signed-off-by: David Saada <david.saada@ecitele.com>
24063 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24064
24065 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
24066 Author: Wolfgang Denk <wd@denx.de>
24067 Date: Wed Jan 16 00:01:01 2008 +0100
24068
24069 LWMON5: enable hush shell as command line parser
24070
24071 Signed-off-by: Wolfgang Denk <wd@denx.de>
24072
24073 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
24074 Author: Wolfgang Denk <wd@denx.de>
24075 Date: Tue Jan 15 17:22:28 2008 +0100
24076
24077 ADS5121: disable watchdog; enable image timestamps
24078
24079 Signed-off-by: Wolfgang Denk <wd@denx.de>
24080
24081 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
24082 Author: Wolfgang Denk <wd@denx.de>
24083 Date: Tue Jan 15 17:21:28 2008 +0100
24084
24085 TK885D: fixes for bigger flash sector sizes on new modules;
24086 adjust default environment;
24087 disable SCC ethernet (not used on this board).
24088
24089 Signed-off-by: Wolfgang Denk <wd@denx.de>
24090
24091 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
24092 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24093 Date: Tue Jan 15 17:48:13 2008 +0900
24094
24095 pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
24096
24097 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24098
24099 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
24100 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24101 Date: Tue Jan 15 23:25:25 2008 +0900
24102
24103 sh: Add support SH7710/SH7712
24104
24105 SH7710/SH7712 of SH3 CPU are supported.
24106 SH771X is called SH-Ether, and has the Ether controller in CPU.
24107 The driver of Ether is not included in this patch.
24108
24109 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24110
24111 commit 63a11be68306870e04d3851ed9fa41955cdf4894
24112 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24113 Date: Tue Jan 15 23:06:17 2008 +0900
24114
24115 sh: Add support of map_physmem() and unmap_physmem() to SuperH
24116
24117 This patch add the support of map_physmem() and unmap_physmem()
24118 used with Common Flash Interface(CFI) driver.
24119
24120 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24121
24122 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
24123 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24124 Date: Wed Jan 9 14:42:27 2008 +0900
24125
24126 sh: Add maintainer of MS7720SE to the MAINTAINER file
24127
24128 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24129
24130 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
24131 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24132 Date: Wed Jan 9 14:39:58 2008 +0900
24133
24134 sh: Fix board name in MS7720SE's config.mk
24135
24136 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24137
24138 commit c0a04d93734d768b39dbb72fb501b65614c8615d
24139 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24140 Date: Wed Jan 9 14:37:36 2008 +0900
24141
24142 sh: Add MS7720SE to MAKEALL
24143
24144 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24145
24146 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
24147 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24148 Date: Mon Dec 3 22:58:50 2007 +0900
24149
24150 sh: Add support for MS7720RP02 board
24151
24152 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24153 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24154 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24155
24156 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
24157 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24158 Date: Wed Jan 9 14:30:02 2008 +0900
24159
24160 sh: Add support for SH7720 in serial_sh driver.
24161
24162 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24163 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24164 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24165
24166 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
24167 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24168 Date: Mon Dec 3 22:58:45 2007 +0900
24169
24170 sh: Add support SH3 and SH7720
24171
24172 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24173 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24174 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24175
24176 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
24177 Author: Stefan Roese <sr@denx.de>
24178 Date: Tue Jan 15 10:11:02 2008 +0100
24179
24180 ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
24181
24182 Signed-off-by: Stefan Roese <sr@denx.de>
24183
24184 commit 17bef68097ab3692500a36fb31115bff7910aa99
24185 Author: Niklaus Giger <niklausgiger@gmx.ch>
24186 Date: Mon Jan 14 14:04:42 2008 +0100
24187
24188 ppc_4xx: Fix post spr.c for PPC405
24189
24190 post/cpu/ppc4xx/spr.c contained a few checks for registers only present
24191 for PPC440 and derivates processor.
24192
24193 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24194
24195 commit 06c428bcd4413014b43236e77765022071424fa6
24196 Author: Dave Liu <r63238@freescale.com>
24197 Date: Mon Jan 14 11:12:01 2008 +0800
24198
24199 QE: fix compile warning
24200
24201 qe.c: In function 'qe_upload_firmware':
24202 qe.c:390: warning: pointer targets in passing argument 2
24203 uec.c: In function 'uec_initialize':
24204 uec.c:1236: warning: 'uec_info' may be used uninitialized
24205
24206 Signed-off-by: Dave Liu <daveliu@freescale.com>
24207
24208 commit a0dd99d51efa55fe023e19c97ead92683725eb11
24209 Author: Stefan Roese <sr@denx.de>
24210 Date: Mon Jan 14 10:05:05 2008 +0100
24211
24212 ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
24213
24214 Now that bit 29 is the USB PHY reset bit, update the Kilauea port
24215 to remove the USB PHY reset after powerup. The CPLD will keep the
24216 USB PHY in reset (active low) until the bit is set to 1 in
24217 board_early_init_f().
24218
24219 Signed-off-by: Stefan Roese <sr@denx.de>
24220
24221 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
24222 Author: Wolfgang Denk <wd@denx.de>
24223 Date: Sun Jan 13 23:26:45 2008 +0100
24224
24225 ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
24226
24227 Signed-off-by: Wolfgang Denk <wd@denx.de>
24228
24229 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
24230 Author: Wolfgang Denk <wd@denx.de>
24231 Date: Sun Jan 13 23:37:50 2008 +0100
24232
24233 ADS5121: Fix typo in ads5121.c, adjust default environment
24234
24235 Signed-off-by: Wolfgang Denk <wd@denx.de>
24236
24237 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
24238 Author: John Rigby <jrigby@freescale.com>
24239 Date: Fri Aug 24 18:18:43 2007 -0600
24240
24241 ADS5121: MAX slew rate for PATA pins
24242
24243 Signed-off-by: John Rigby <jrigby@freescale.com>
24244
24245 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
24246 Author: Wolfgang Denk <wd@denx.de>
24247 Date: Sun Jan 13 21:05:52 2008 +0100
24248
24249 Fix Makefile dependency problem with parallel builds.
24250
24251 Signed-off-by: Wolfgang Denk <wd@denx.de>
24252
24253 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
24254 Author: Wolfgang Denk <wd@denx.de>
24255 Date: Sun Jan 13 19:51:39 2008 +0100
24256
24257 MPC8544DS: fix board Makefile for silent build (with -s)
24258
24259 Signed-off-by: Wolfgang Denk <wd@denx.de>
24260
24261 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
24262 Author: Wolfgang Denk <wd@denx.de>
24263 Date: Sun Jan 13 16:44:08 2008 +0100
24264
24265 PMC440 board: fix board Makefile for out-of-tree building
24266
24267 Signed-off-by: Wolfgang Denk <wd@denx.de>
24268
24269 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
24270 Author: Wolfgang Denk <wd@denx.de>
24271 Date: Sun Jan 13 16:07:44 2008 +0100
24272
24273 Makalu: fix compile warning
24274
24275 Signed-off-by: Wolfgang Denk <wd@denx.de>
24276
24277 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
24278 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24279 Date: Sun Jan 13 12:36:12 2008 +0100
24280
24281 cmd_nand : fix compiler warning.
24282
24283 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24284
24285 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
24286 Author: Michael Schwingen <rincewind@discworld.dascon.de>
24287 Date: Sat Jan 12 20:29:47 2008 +0100
24288
24289 CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
24290
24291 Signed-off-by: Michael Schwingen <michael@schwingen.org>
24292 Acked-by: Stefan Roese <sr@denx.de>
24293
24294 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
24295 Author: Wolfgang Denk <wd@denx.de>
24296 Date: Sun Jan 13 02:19:44 2008 +0100
24297
24298 MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
24299
24300 Signed-off-by: Wolfgang Denk <wd@denx.de>
24301
24302 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
24303 Author: Wolfgang Denk <wd@denx.de>
24304 Date: Sun Jan 13 02:19:13 2008 +0100
24305
24306 MPC8xx FEC driver: fix compiler warning.
24307
24308 Signed-off-by: Wolfgang Denk <wd@denx.de>
24309
24310 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
24311 Author: Wolfgang Denk <wd@denx.de>
24312 Date: Sun Jan 13 00:59:21 2008 +0100
24313
24314 Fix Makefile dependencies issues; allow silent build
24315
24316 - get rid of "version" target whichdidn't really work
24317 - make autoconf.mk depend on version_autogenerated.h to make sure
24318 to rebuild files as needed
24319 - add XECHO macro to allow for silent build using "make -s"
24320
24321 Signed-off-by: Wolfgang Denk <wd@denx.de>
24322
24323 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
24324 Author: Wolfgang Denk <wd@denx.de>
24325 Date: Sun Jan 13 00:55:47 2008 +0100
24326
24327 ADS5121e: fix compile warning
24328
24329 Signed-off-by: Wolfgang Denk <wd@denx.de>
24330
24331 commit f2b6f4610627fe3d607620e25082916a01538875
24332 Author: Wolfgang Denk <wd@denx.de>
24333 Date: Sun Jan 13 00:55:18 2008 +0100
24334
24335 MUNICes: fix board Makefile for remote build directory
24336
24337 Signed-off-by: Wolfgang Denk <wd@denx.de>
24338
24339 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
24340 Author: Oliver Weber <almoeli@gmx.de>
24341 Date: Wed Jan 9 17:04:38 2008 +0100
24342
24343 MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
24344
24345 Signed-off-by: Oliver Weber <almoeli@gmx.de>
24346
24347 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
24348 Author: Andreas Engel <andreas.engel@ericsson.com>
24349 Date: Wed Jan 9 17:10:56 2008 +0100
24350
24351 Make bootretry work when command line editing is enabled
24352
24353 Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
24354 This patch fixes the problem.
24355
24356 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
24357
24358 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
24359 Author: Larry Johnson <lrj@acm.org>
24360 Date: Fri Jan 11 23:26:18 2008 -0500
24361
24362 Refactor code for "i2c sdram" command
24363
24364 Signed-off-by: Larry Johnson <lrj@acm.org>
24365
24366 commit 0df6b8446c4721b91ce311548114891130371083
24367 Author: Larry Johnson <lrj@acm.org>
24368 Date: Thu Jan 10 22:23:39 2008 -0500
24369
24370 Fix "i2c sdram" command for DDR2 DIMMs
24371
24372 Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
24373 "i2c sdram" command. This patch provides correct alternative
24374 interpretations when DDR2 memory is detected.
24375
24376 Signed-off-by: Larry Johnson <lrj@acm.org>
24377
24378 commit 64134f011254123618798ff77c42ba196b2ec485
24379 Author: Wolfgang Denk <wd@denx.de>
24380 Date: Sat Jan 12 20:31:39 2008 +0100
24381
24382 Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
24383
24384 With recent toolchain versions, some boards would not build because
24385 or errors like this one (here for ocotea board when building with
24386 ELDK 4.2 beta):
24387 ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
24388
24389 For many boards, the .bss section is big enough that it wraps around
24390 at the end of the address space (0xFFFFFFFF), so the problem will not
24391 be visible unless you use a 64 bit tool chain for development. On
24392 some boards however, changes to the code size (due to different
24393 optimizations) we bail out with section overlaps like above.
24394
24395 The fix is to add the NOLOAD attribute to the .bss and .sbss
24396 sections, telling the linker that .bss does not consume any space in
24397 the image.
24398
24399 Signed-off-by: Wolfgang Denk <wd@denx.de>
24400
24401 commit 3afac79ec27b91df185f090b31dad9620779f440
24402 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24403 Date: Fri Jan 11 20:42:58 2008 -0600
24404
24405 USB: Add Philips 1561 PCI-OHCI ids
24406 (needed for M5475EVB)
24407
24408 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
24409
24410 commit 5e8def6731cd7bec74bff42a16b139de04010353
24411 Author: Wolfgang Denk <wd@denx.de>
24412 Date: Sat Jan 12 15:51:34 2008 +0100
24413
24414 Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
24415 boards.
24416
24417 Signed-off-by: Heiko Schocher <hs@denx.de>
24418 Signed-off-by: Wolfgang Denk <wd@denx.de>
24419
24420 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
24421 Author: Grzegorz Bernacki <gjb@semihalf.com>
24422 Date: Fri Jan 11 12:03:43 2008 +0100
24423
24424 MPC512X: Cleanup bus clock names.
24425
24426 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
24427
24428 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
24429 Author: Grzegorz Bernacki <gjb@semihalf.com>
24430 Date: Tue Jan 8 17:16:59 2008 +0100
24431
24432 MPC512X: Fixed typo in macro name.
24433
24434 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
24435
24436 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
24437 Author: Grzegorz Bernacki <gjb@semihalf.com>
24438 Date: Tue Jan 8 17:16:15 2008 +0100
24439
24440 ads5121: Added support for FDT.
24441
24442 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
24443
24444 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
24445 Author: Wolfgang Denk <wd@denx.de>
24446 Date: Sat Jan 12 01:05:50 2008 +0100
24447
24448 Coding Style cleanup; update CHANGELOG.
24449
24450 Signed-off-by: Wolfgang Denk <wd@denx.de>
24451
24452 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
24453 Author: Heiko Schocher <hs@denx.de>
24454 Date: Fri Jan 11 15:15:17 2008 +0100
24455
24456 Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
24457
24458 Signed-off-by: Timur Tabi <timur@freescale.com>
24459 Signed-off-by: Heiko Schocher <hs@denx.de>
24460
24461 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
24462 Author: Heiko Schocher <hs@denx.de>
24463 Date: Fri Jan 11 15:15:16 2008 +0100
24464
24465 MUNICes: Set the right CFG_DEFAULT_MBAR value.
24466
24467 Signed-off-by: Heiko Schocher <hs@denx.de>
24468
24469 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
24470 Author: Heiko Schocher <hs@denx.de>
24471 Date: Fri Jan 11 15:15:15 2008 +0100
24472
24473 added the config File for the MUNICes board.
24474
24475 Signed-off-by: Heiko Schocher <hs@denx.de>
24476
24477 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
24478 Author: Heiko Schocher <hs@denx.de>
24479 Date: Fri Jan 11 15:15:14 2008 +0100
24480
24481 added basic support for the MUNICes board.
24482
24483 Signed-off-by: Heiko Schocher <hs@denx.de>
24484
24485 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
24486 Author: Wolfgang Denk <wd@denx.de>
24487 Date: Sat Jan 12 00:39:37 2008 +0100
24488
24489 Update CHANGELOG and MAINTAINERS files.
24490
24491 Signed-off-by: Wolfgang Denk <wd@denx.de>
24492
24493 commit 5ba7390c3cb579172be66888a371707b47b5be4e
24494 Author: Anatolij Gustschin <agust@denx.de>
24495 Date: Fri Jan 11 02:15:02 2008 +0100
24496
24497 Fix compilation problem in common/cmd_bmp.c
24498
24499 common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
24500 isn't defined. This patch fix this.
24501
24502 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24503
24504 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
24505 Author: Heiko Schocher <hs@denx.de>
24506 Date: Fri Jan 11 01:12:09 2008 +0100
24507
24508 Fix defaultconfig for the mgcoge board.
24509
24510 Signed-off-by: Heiko Schocher <hs@denx.de>
24511
24512 commit ac9db066b26935f31bff15c98168b19faeb603f3
24513 Author: Heiko Schocher <hs@denx.de>
24514 Date: Fri Jan 11 01:12:08 2008 +0100
24515
24516 Added support for the mgcoge board from keymile.
24517
24518 Signed-off-by: Heiko Schocher <hs@denx.de>
24519
24520 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
24521 Author: Heiko Schocher <hs@denx.de>
24522 Date: Fri Jan 11 01:12:07 2008 +0100
24523
24524 Enable SMC microcode relocation patch for SMC1.
24525
24526 Signed-off-by: Heiko Schocher <hs@denx.de>
24527
24528 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
24529 Author: Heiko Schocher <hs@denx.de>
24530 Date: Fri Jan 11 01:12:06 2008 +0100
24531
24532 Added support for the mgsuvd board from keymile.
24533
24534 Signed-off-by: Heiko Schocher <hs@denx.de>
24535
24536 commit bf05293973b348f6946c9df92cd3c65ece42d0be
24537 Author: James Yang <james.yang@freescale.com>
24538 Date: Thu Jan 10 16:02:07 2008 -0600
24539
24540 Fix 64-bit vsprintf.
24541
24542 There were some size and unsigned problems.
24543 Also add support for "ll" size modifier in format string like glibc
24544
24545 Signed-off-by: James Yang <James.Yang@freescale.com>
24546 Acked-by: Jon Loeliger <jdl@freescale.com>
24547
24548 commit 92fa37eac530860643afa26ae347af3d23d67309
24549 Author: Larry Johnson <lrj@acm.org>
24550 Date: Wed Jan 9 12:42:35 2008 -0500
24551
24552 Remove superfluous preprocessor conditionals from LM73 driver
24553
24554 (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
24555
24556 (2) Use conditional Makefile.o.
24557
24558 Signed-off-by: Larry Johnson <lrj@acm.org>
24559
24560 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
24561 Author: Guennadi Liakhovetski <lg@denx.de>
24562 Date: Thu Jan 10 17:59:07 2008 +0100
24563
24564 Add support for the TK885D baseboard from TELE-DATA
24565
24566 The TK885D board uses a TQM885D module from TQ, this port adds an
24567 own configuration file and adds a last_stage_init() method to
24568 configure the two PHYs, depending on the phy_auto_nego environment
24569 variable.
24570
24571 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24572
24573 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
24574 Author: Kumar Gala <galak@kernel.crashing.org>
24575 Date: Thu Jan 10 02:22:05 2008 -0600
24576
24577 Fix compiler warning
24578
24579 main.c: In function 'readline_into_buffer':
24580 main.c:927: warning: unused variable 'p_buf'
24581
24582 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24583
24584 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
24585 Author: Anatolij Gustschin <agust@denx.de>
24586 Date: Fri Jan 11 14:30:01 2008 +0100
24587
24588 Add Fujitsu CoralP/Lime video driver
24589
24590 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24591 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
24592
24593 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
24594 Author: Anatolij Gustschin <agust@denx.de>
24595 Date: Fri Jan 11 02:39:47 2008 +0100
24596
24597 Fix video console newline and carriage return handling
24598
24599 Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
24600 are not displayed correctly. This is an attempt to fix
24601 this issue. Also add carriage return handling.
24602
24603 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24604 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
24605
24606 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
24607 Author: Stefan Roese <sr@denx.de>
24608 Date: Fri Jan 11 15:53:58 2008 +0100
24609
24610 ppc4xx: Fix sdram init on Sequoia boards
24611
24612 Clear possible errors in MCSR resulting from data-eye-search.
24613 If not done, then we could get an interrupt later on when
24614 exceptions are enabled.
24615
24616 Signed-off-by: Stefan Roese <sr@denx.de>
24617
24618 commit d610a60730b7464f6f659db49d264d89a7c71061
24619 Author: Anatolij Gustschin <agust@denx.de>
24620 Date: Fri Jan 11 15:31:09 2008 +0100
24621
24622 ppc4xx: Rework Lime support for lwmon5
24623
24624 Rework Lime support for lwmon5 using new video driver
24625
24626 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24627
24628 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
24629 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24630 Date: Fri Jan 11 14:55:16 2008 +0100
24631
24632 ppc4xx: Update PMC440 config file
24633
24634 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24635
24636 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
24637 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24638 Date: Fri Jan 11 14:55:08 2008 +0100
24639
24640 ppx4xx: Fix sdram init on PMC440 boards
24641
24642 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24643
24644 commit 061aad4d320dddce26247699dcf2875ee2ea1366
24645 Author: Dave Liu <r63238@freescale.com>
24646 Date: Thu Jan 10 23:09:33 2008 +0800
24647
24648 mpc83xx: Fix the bug of 266MHz data rate DDR
24649
24650 The DDR doesn't work on the 266MHz data rate,
24651 the patch fix the bug.
24652
24653 Signed-off-by: Dave Liu <daveliu@freescale.com>
24654 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24655
24656 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
24657 Author: Dave Liu <r63238@freescale.com>
24658 Date: Thu Jan 10 23:08:26 2008 +0800
24659
24660 mpc83xx: Make the code more readable
24661
24662 Format the code, make it more readable
24663
24664 Signed-off-by: Dave Liu <daveliu@freescale.com>
24665 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24666
24667 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
24668 Author: Dave Liu <r63238@freescale.com>
24669 Date: Thu Jan 10 23:07:23 2008 +0800
24670
24671 mpc83xx: Reduce the latency of DDR
24672
24673 Reduce the AL from 2 to 1 clock to improve the performance.
24674
24675 Signed-off-by: Dave Liu <daveliu@freescale.com>
24676 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24677
24678 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
24679 Author: Dave Liu <r63238@freescale.com>
24680 Date: Thu Jan 10 23:06:05 2008 +0800
24681
24682 mpc83xx: Fix the wrong definition of MPC8315E
24683
24684 According to the latest user manual of MPC8315E,
24685 1) The SVCOD of HRCWL is different than 837x
24686 2) The SCCR has changes
24687
24688 Signed-off-by: Dave Liu <daveliu@freescale.com>
24689 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24690
24691 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
24692 Author: Dave Liu <r63238@freescale.com>
24693 Date: Thu Jan 10 23:05:00 2008 +0800
24694
24695 mpc83xx: Fix the typo in mpc83xx.h
24696
24697 The SPCR about TSEC priority is wrong.
24698
24699 Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
24700 Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
24701 Signed-off-by: Dave Liu <daveliu@freescale.com>
24702 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24703
24704 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
24705 Author: Dave Liu <r63238@freescale.com>
24706 Date: Thu Jan 10 23:04:13 2008 +0800
24707
24708 mpc83xx: Fix the typo in global data struct
24709
24710 Fix the typo in global_data.h
24711
24712 Signed-off-by: Dave Liu <daveliu@freescale.com>
24713 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24714
24715 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
24716 Author: Dave Liu <r63238@freescale.com>
24717 Date: Thu Jan 10 23:03:03 2008 +0800
24718
24719 mpc83xx: Remove cache config from config.h
24720
24721 clean up the cache config from configs.h of board
24722
24723 Signed-off-by: Dave Liu <daveliu@freescale.com>
24724 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24725
24726 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
24727 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24728 Date: Wed Jan 9 20:57:47 2008 +0300
24729
24730 mpc83xx: add support for the MPC8360E-RDK
24731
24732 This is MPC8360E based board with:
24733 - 256MB fixed SDRAM;
24734 - 8MB Intel Strata NOR flash;
24735 - StMICRO 64MiB NAND flash;
24736 - two 10/100/1000 ethernet ports connected via Broadcom
24737 BCM5481 PHYs;
24738 - two 10/100 ethernet ports connected via National
24739 DP83848 PHYs;
24740 - one PCI and one miniPCI slots;
24741 - four serial ports (two NS16550-compatible, two UCCs);
24742 - four USB ports working through MPC8360E "FHCI" USB controller;
24743 - Fujitsu MB86277 graphics controller;
24744 - Analog to Digital Converter/Touchscreen controller, AD7843
24745 connected to SPI.
24746
24747 Features not supported in this patch are:
24748 - StMICRO 64MiB NAND flash (patch sent);
24749 - MINT framebuffer initialization (patch is pending);
24750 - Fetching production information from the EEPROM via I2C;
24751 - FHCI USB;
24752 - Two slow UCCs used as RS-485 UARTs.
24753
24754 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24755 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24756
24757 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
24758 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24759 Date: Wed Jan 9 20:57:40 2008 +0300
24760
24761 mpc83xx: add "fsl, qe" compatible fixups
24762
24763 New device trees will use "fsl,qe" compatible properties.
24764
24765 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24766 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24767
24768 commit 977b57583a7c34010e566a09a679ec3c1836f996
24769 Author: Kim Phillips <kim.phillips@freescale.com>
24770 Date: Wed Jan 9 15:24:06 2008 -0600
24771
24772 mpc83xx: add missing CONFIG_HAS_ETH0 defines
24773
24774 the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
24775 is defined; add the define to the missing board configs.
24776
24777 Thanks to Emilian Medve for finding this.
24778
24779 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24780
24781 commit b830b7f1635984ba607219fcbd78597c28eeb529
24782 Author: Becky Bruce <bgill@freescale.com>
24783 Date: Thu Jan 10 14:00:28 2008 -0600
24784
24785 86xx: Support 2GB DIMMs
24786
24787 Configure the number of bits used to address the banks inside the SDRAM
24788 device. The default register value of 0 means 2 bits to address 4 banks.
24789 Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
24790
24791 Signed-off-by: Becky Bruce <bgill@freescale.com>
24792
24793 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
24794 Author: Niklaus Giger <niklausgiger@gmx.ch>
24795 Date: Thu Jan 10 18:50:33 2008 +0100
24796
24797 ppc4xx: Make Sequoia boot vxWorks
24798
24799 vxWorks expects in
24800 TLB 0 a entry for the Machine Check interrupt
24801 TLB 1 a entry for the RAM
24802 TLB 2 a entry for the EBC
24803 TLB 3 a entry for the boot flash
24804
24805 After changing the baudrate to 9600 I had no problems to boot the
24806 vxWorks image as distributed by WindRiver (Revision 2.0/1 from
24807 June 18, 2007)
24808
24809 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24810
24811 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
24812 Author: Larry Johnson <lrj@arlinx.com>
24813 Date: Wed Jan 9 23:10:27 2008 -0500
24814
24815 ppc4xx: Fix dflush() to restore DVLIM register
24816
24817 Signed-off-by: Larry Johnson <lrj@acm.org>
24818
24819 commit 252f60b068d1f94190b5bcfda169db582387e15e
24820 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24821 Date: Thu Jan 10 03:52:44 2008 -0500
24822
24823 Nios2: remove common/cmd_bdinfo.c unused variable.
24824
24825 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24826 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
24827
24828 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
24829 Author: Ben Warren <biggerbadderben@gmail.com>
24830 Date: Wed Jan 9 18:15:53 2008 -0500
24831
24832 Fix Ethernet init() return codes
24833
24834 Change return values of init() functions in all Ethernet drivers to conform
24835 to the following:
24836
24837 >=0: Success
24838 <0: Failure
24839
24840 All drivers going forward should return 0 on success. Current drivers that
24841 return 1 on success were left as-is to minimize changes.
24842
24843 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24844 Acked-by: Stefan Roese <sr@denx.de>
24845 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24846 Acked-by: Kim Phillips <kim.phillips@freescale.com>
24847 Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
24848 Acked-By: Timur Tabi <timur@freescale.com>
24849
24850 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
24851 Author: Wolfgang Denk <wd@denx.de>
24852 Date: Thu Jan 10 00:55:14 2008 +0100
24853
24854 Coding Style cleanup; update CHANGELOG
24855
24856 Signed-off-by: Wolfgang Denk <wd@denx.de>
24857
24858 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
24859 Author: Kim Phillips <kim.phillips@freescale.com>
24860 Date: Wed Jan 9 16:56:54 2008 -0600
24861
24862 Add QE brg freq and correct qe bus freq fdt update code
24863
24864 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24865 Signed-off-by: Andy Fleming <afleming@freescale.com>
24866
24867 commit 890dfef06c2d169a3356359596890754dfb8ee1c
24868 Author: Andy Fleming <afleming@freescale.com>
24869 Date: Wed Jan 9 16:34:51 2008 -0600
24870
24871 Remove cache config from ATUM8548 and sbc8548 configs
24872
24873 These boards weren't updated by Kumar's config patch because they
24874 weren't in the tree, yet.
24875
24876 Signed-off-by: Andy Fleming <afleming@freescale.com>
24877
24878 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
24879 Author: Timur Tabi <timur@freescale.com>
24880 Date: Mon Jan 7 13:31:19 2008 -0600
24881
24882 85xx: add ability to upload QE firmware
24883
24884 Define the layout of a binary blob that contains a QE firmware and instructions
24885 on how to upload it. Add function qe_upload_firmware() to parse the blob and
24886 perform the actual upload. Add command-line command "qe fw" to take a firmware
24887 blob in memory and upload it. Update ft_cpu_setup() on 85xx to create the
24888 'firmware' device tree node if U-Boot has uploaded a firmware. Fully define
24889 'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
24890
24891 Signed-off-by: Timur Tabi <timur@freescale.com>
24892
24893 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
24894 Author: Kumar Gala <galak@kernel.crashing.org>
24895 Date: Tue Jan 8 01:22:21 2008 -0600
24896
24897 85xx: Remove cache config from configs.h
24898
24899 Either use the standard defines in asm/cache.h or grab the information
24900 at runtime from the L1CFG SPR.
24901
24902 Also, minor cleanup in cache.h to make the code a bit more readable.
24903
24904 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24905
24906 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
24907 Author: robert lazarski <robertlazarski@gmail.com>
24908 Date: Fri Dec 21 10:39:27 2007 -0500
24909
24910 mpc85xx: Add support for ATUM8548 (updated)
24911
24912 Add support for Instituto Atlantico's ATUM8548 board
24913
24914 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
24915 Signed-off-by: Andy Fleming <afleming@freescale.com>
24916
24917 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
24918 Author: robert lazarski <robertlazarski@gmail.com>
24919 Date: Fri Dec 21 10:36:37 2007 -0500
24920
24921 mpc85xx: Add support for ATUM8548 (updated)
24922
24923 Add support for Instituto Atlantico's ATUM8548 board
24924
24925 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
24926
24927 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
24928 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
24929 Date: Thu Dec 13 06:45:14 2007 -0600
24930
24931 mpc85xx: Add support for SBC8548 (updated)
24932
24933 Add support for Wind River's SBC8548 reference board.
24934
24935 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
24936
24937 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
24938 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
24939 Date: Thu Dec 13 06:45:08 2007 -0600
24940
24941 mpc85xx: Add support for SBC8548 (updated)
24942
24943 Add support for Wind River's SBC8548 reference board.
24944
24945 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
24946 Signed-off by: Andy Fleming <afleming@freescale.com>
24947
24948 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
24949 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24950 Date: Mon Oct 22 19:58:19 2007 +0400
24951
24952 MPC8568E-MDS: set up QE pario for UART1
24953
24954 To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
24955 be set up appropriately.
24956
24957 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24958
24959 commit ad162249cb371e9e38971676f09be791e5f3cf4a
24960 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24961 Date: Mon Oct 22 18:12:46 2007 +0400
24962
24963 MPC8568E-MDS: reset UCCs to use them reliably
24964
24965 In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
24966 UCCs.
24967
24968 p.s Similar code exists in the Linux kernel board file (for capability
24969 reasons with older U-Boots), but should be removed some day.
24970
24971 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24972
24973 commit 2146cf56821c3364786ca94a7306008c5824b238
24974 Author: Kumar Gala <galak@kernel.crashing.org>
24975 Date: Wed Dec 19 01:18:15 2007 -0600
24976
24977 Reworked FSL Book-E TLB macros to be more readable
24978
24979 The old macros made it difficult to know what WIMGE and perm bits
24980 were set for a TLB entry. Actually use the bit masks for these items
24981 since they are only a single bit.
24982
24983 Also moved the macros into mmu.h out of e500.h since they aren't specific
24984 to e500.
24985
24986 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24987
24988 commit 1d47273d46925929f8f2c1913cd96d7257aade88
24989 Author: Kumar Gala <galak@kernel.crashing.org>
24990 Date: Tue Dec 18 23:21:51 2007 -0600
24991
24992 Use FSL Book-E MMU macros from Linux Kernel
24993
24994 Grab the FSL Book-E MAS register macros from Linux. Also added
24995 defines for page sizes up to 4TB and removed SHAREN since it doesnt
24996 really exist.
24997
24998 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24999
25000 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
25001 Author: Andy Fleming <afleming@freescale.com>
25002 Date: Wed Jan 9 13:51:32 2008 -0600
25003
25004 Fix my own merge stupidity
25005
25006 Way back in August I merged Heiko's patch:
25007 566a494f592: [PCS440EP] upgrade the PCS440EP board
25008
25009 with Jon's CONFIG_COMMANDS patches.
25010
25011 This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
25012
25013 However, in the process, I left out some of Heiko's good changes.
25014
25015 Now Heiko's and Jon's patches are properly merged in fat_register_device()
25016
25017 Signed-off-by: Andy Fleming <afleming@freescale.com>
25018
25019 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
25020 Author: James Yang <James.Yang@freescale.com>
25021 Date: Wed Jan 9 11:17:49 2008 -0600
25022
25023 Expose parse_line() globally.
25024
25025 Add new function readline_into_buffer() that allows the
25026 output of readline to be put into a pointer to char buffer.
25027
25028 This refactoring allows other functions besides the
25029 main command loop to also use the same input mechanism.
25030
25031 Signed-off-by: James Yang <James.Yang@freescale.com>
25032 Acked-by: Jon Loeliger <jdl@freescale.com>
25033
25034 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
25035 Author: Guennadi Liakhovetski <lg@denx.de>
25036 Date: Wed Jan 9 01:15:25 2008 +0100
25037
25038 trivial: fix consequences of a bad merge
25039
25040 Fix what looks like a merge artifact.
25041
25042 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25043
25044 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
25045 Author: Zhang Wei <wei.zhang@freescale.com>
25046 Date: Thu Jan 3 10:51:15 2008 +0800
25047
25048 Add Ctrl combo key support to usb keyboard driver.
25049
25050 Ctrl combo key support is added, which is very useful to input Ctrl-C
25051 for interrupt current job.
25052 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
25053 key input when tstc() is called.
25054
25055 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
25056
25057 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
25058 Author: Marcel Ziswiler <marcel@ziswiler.com>
25059 Date: Sun Dec 30 03:30:56 2007 +0100
25060
25061 fix various comments
25062
25063 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
25064
25065 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
25066 Author: Marcel Ziswiler <marcel@ziswiler.com>
25067 Date: Sun Dec 30 03:30:46 2007 +0100
25068
25069 fix comments with new drivers organization
25070
25071 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
25072
25073 commit a9b410dc7d2a4721c408b13abfc037988150f145
25074 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
25075 Date: Fri Dec 28 12:50:59 2007 +0900
25076
25077 Remove the obsolete terse version of do_mii()
25078
25079 We now have more useful version of do_mii() and everybody use it.
25080 Gerald Van Baren says:
25081
25082 > When I originally wrote the mii command 6(!) years ago, I wrote a
25083 > verbose version that printed human readable decomposition of the flags,
25084 > etc., and a terse one that didn't print as much stuff and thus had a
25085 > smaller memory footprint.
25086 >
25087 > It sounds like the terse version has withered and died, apparently
25088 > people are only using the verbose version (which is very understandable,
25089 > I do myself).
25090
25091 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
25092 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25093
25094 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
25095 Author: Mike Frysinger <vapier@gentoo.org>
25096 Date: Thu Dec 27 13:42:56 2007 -0500
25097
25098 Do not reference sha1.c when building mkimage.
25099
25100 remove sha1.o from mkimage linking since it isn't actually used.
25101
25102 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
25103
25104 commit b9173af73e524d37c812f210173cf83385c5171a
25105 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
25106 Date: Thu Dec 27 15:39:54 2007 +0900
25107
25108 common/cmd_mii.c: Add sanity argc check
25109
25110 If type mii command without arguments, we suffer from uninitialized argv[]
25111 entries; for example we MIPS get stuck by TLB error.
25112
25113 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
25114
25115 commit 500856eb1707ed17d9204baa61dd59948d3b2899
25116 Author: Rafal Jaworowski <raj@semihalf.com>
25117 Date: Wed Jan 9 19:39:36 2008 +0100
25118
25119 API for external applications.
25120
25121 This is an API for external (standalone) applications running on top of
25122 U-Boot, and is meant to be more extensible and robust than the existing
25123 jumptable mechanism. It is similar to UNIX syscall approach. See api/README
25124 for more details.
25125
25126 Included is the demo application using this new framework (api_examples).
25127
25128 Please note this is still an experimental feature, and is turned off by
25129 default.
25130
25131 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
25132
25133 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
25134 Author: Jon Loeliger <jdl@freescale.com>
25135 Date: Wed Jan 9 12:14:55 2008 -0600
25136
25137 86xx: Remove cache config from configs.h
25138
25139 Just use the standard defines in asm/cache.h.
25140
25141 Signed-off-by: Jon Loeliger <jdl@freescale.com>
25142
25143 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
25144 Author: Rafal Jaworowski <raj@semihalf.com>
25145 Date: Wed Jan 9 18:05:27 2008 +0100
25146
25147 Globalize envmatch()
25148
25149 The newly introduced API (routines related to env vars) will need to call
25150 it.
25151
25152 Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
25153
25154 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
25155 Author: Jon Loeliger <jdl@freescale.com>
25156 Date: Fri Jan 4 12:07:27 2008 -0600
25157
25158 Convert MPC8610HPCD to use libfdt.
25159
25160 Assumes the presence of the aliases node in the DTS to
25161 locate the pci and serial nodes for fixups.
25162
25163 Use consistent fdtaddr and fdtfile in environment variables.
25164
25165 Signed-off-by: Jon Loeliger <jdl@freescale.com>
25166
25167 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
25168 Author: Jon Loeliger <jdl@freescale.com>
25169 Date: Fri Jan 4 11:58:23 2008 -0600
25170
25171 8610: Fix lingering compile warnings.
25172
25173 Turn off DEBUG.
25174
25175 Signed-off-by: Jon Loeliger <jdl@freescale.com>
25176
25177 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
25178 Author: Wolfgang Denk <wd@denx.de>
25179 Date: Wed Jan 9 15:14:46 2008 +0100
25180
25181 Coding Style cleanup, update CHANGELOG
25182
25183 Signed-off-by: Wolfgang Denk <wd@denx.de>
25184
25185 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
25186 Author: Mike Frysinger <vapier@gentoo.org>
25187 Date: Tue Dec 18 04:29:55 2007 -0500
25188
25189 fix easylogo on big endian dev systems
25190
25191 didnt realize how out of shape easylogo actually was until i tried using it.
25192 this patch does byte swapping as need be on the input tga header since the tga
25193 is in little endian but the host could just as well be big endian. i didnt
25194 bother using bswap macros or such stuff from system headers as nothing in
25195 POSIX dictates byte swapping functionality.
25196
25197 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
25198
25199 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
25200 Author: Mike Frysinger <vapier@gentoo.org>
25201 Date: Tue Dec 18 03:23:25 2007 -0500
25202
25203 cleanup easylogo
25204
25205 - make the Makefile not suck
25206 - include proper headers for prototypes
25207 - fix obvious broken handling of strchr() when handling '.' in filenames
25208
25209 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
25210
25211 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
25212 Author: raptorbrino@aim.com <raptorbrino@aim.com>
25213 Date: Thu Dec 13 21:23:28 2007 -0500
25214
25215 Fix build problems under Cygwin
25216
25217 This patch allows u-boot to build without error in a cygwin
25218 environment. Cygwin does not define __u64 in it's
25219 include/asm/types.h file. The -idirafter flag in the u-boot
25220 build causes the inclusion of the cygwin types.h file as opposed
25221 to u-bot/include/asm/types.h file which does define __u64.
25222 Subsequently, sha1.c compile fails due to unknown symbol.
25223
25224 Signed-off-by: Brian Miller <raptorbrino@netscape.net>
25225
25226 commit 43ef1c381f9195504a2488f5cb909227eb97d475
25227 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
25228 Date: Fri Nov 30 17:29:59 2007 +0100
25229
25230 cmd_bmp: Add support for displaying gzip compressed bmps
25231
25232 The existing code can show information about a gzip compressed BMP
25233 image, but can't actually display it.
25234
25235 Therefore, move the decompression code out of bmp_info() and use it in
25236 bmp_display() as well in order to display a compressed BMP image.
25237
25238 Also, clean things up a bit and fix a memory leak while we're at it.
25239
25240 [hskinnemoen@atmel.com: a bit of refactoring]
25241 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
25242
25243 commit d197ffd8172c6fdef38733424640a9a47295d6e9
25244 Author: Guennadi Liakhovetski <lg@denx.de>
25245 Date: Thu Nov 29 21:15:56 2007 +0100
25246
25247 Fix and optimize MII operations on FEC (MPC8xx) controllers
25248
25249 This patch fixes several issues at least on a MPC885 based system with two
25250 FEC interfaces used in MII mode.
25251
25252 1. PHY discovery should first read PHY_PHYIDR2 register and only then
25253 PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
25254 otherwise the values read are wrong. Also notice, that PHY discovery
25255 cannot work on MPC88x / MPC87x in setups with both FECs active at all
25256 in its present form, because for both interfaces the registers from FEC
25257 1 are used to communicate over MII.
25258
25259 2. Remove code duplication for resetting the FEC by isolating it into a
25260 separate function.
25261
25262 3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
25263
25264 4. Optimize mii_init() to only reset the FEC 1 controller once.
25265
25266 5. Fix a typo in mii_init() using index i instead of j thus potentially
25267 leading to unpredictable results.
25268
25269 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25270
25271 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
25272 Author: Guennadi Liakhovetski <lg@denx.de>
25273 Date: Tue Nov 20 13:14:20 2007 +0100
25274
25275 Fix endianness conversions in rtl8169 driver
25276
25277 It is unclear on what platforms this driver has been tested, since
25278 noone up to now defines CONFIG_RTL8169 in the board configuration
25279 header. Now it has been fixed for a big-endian mpc8241 based
25280 linkstation platform. This patch presents the necessary endianness
25281 conversion fixes.
25282
25283 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25284
25285 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
25286 Author: Zhang Wei <wei.zhang@freescale.com>
25287 Date: Thu Jan 3 10:51:15 2008 +0800
25288
25289 Add Ctrl combo key support to usb keyboard driver.
25290
25291 Ctrl combo key support is added, which is very useful to input Ctrl-C
25292 for interrupt current job.
25293 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
25294 key input when tstc() is called.
25295
25296 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
25297 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25298
25299 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
25300 Author: Wolfgang Denk <wd@denx.de>
25301 Date: Wed Jan 9 13:43:38 2008 +0100
25302
25303 Coding Style clenaup; update CHANGELOG
25304
25305 Signed-off-by: Wolfgang Denk <wd@denx.de>
25306
25307 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
25308 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25309 Date: Thu Dec 27 17:13:11 2007 +0100
25310
25311 Remove bit swapping in Xilinx Spartan bitfile loading
25312
25313 This patch removes the unnecessary bit swapping when
25314 booting .bit files with the 'fpga loadb' command.
25315
25316 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25317
25318 commit 437fc7327f0611f82937858f2d80e4cd61b40984
25319 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25320 Date: Thu Dec 27 17:13:05 2007 +0100
25321
25322 Fix MSB check in Xilinx Spartan slave serial mode
25323
25324 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25325
25326 commit 3bff4ffa33729a42645e328a21e8d16488872958
25327 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25328 Date: Thu Dec 27 17:12:56 2007 +0100
25329
25330 Add new Xilinx Spartan FPGA types
25331
25332 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25333
25334 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
25335 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25336 Date: Thu Dec 27 17:12:43 2007 +0100
25337
25338 Add pre and post configuration callbacks for Spartan FPGAs
25339
25340 This patch adds a post configuration callback for Spartan2/3 FPGAs.
25341 pre and post configuration callback are now optional and
25342 not called when the function pointer is set to NULL.
25343
25344 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25345
25346 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
25347 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25348 Date: Thu Dec 27 17:12:34 2007 +0100
25349
25350 Improve configuration of FPGA subsystem
25351
25352 This patch removes the FPGA subsystem configuration through
25353 the CONFIG_FPGA bitmask configuration option.
25354
25355 See README for the new options:
25356
25357 CONFIG_FPGA,
25358 CONFIG_FPGA_<vendor>,
25359 CONFIG_FPGA_<family>
25360
25361 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25362
25363 commit 95c6bc7d4a3588b452baca610f8c795a83630477
25364 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25365 Date: Thu Dec 27 16:55:17 2007 +0100
25366
25367 Add Epson RX8025 RTC support
25368
25369 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25370
25371 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
25372 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25373 Date: Thu Dec 27 16:57:23 2007 +0100
25374
25375 serial: Make default_serial_console() a weak function
25376
25377 With this patch it is possible to reimplement default_serial_console()
25378 in board specific code. This will be done in the upcomming PMC440
25379 U-Boot port. This also allows the lwmon board maintainer to
25380 remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
25381
25382 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25383
25384 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
25385 Author: Harald Welte <laforge@openmoko.org>
25386 Date: Wed Dec 19 14:14:47 2007 +0100
25387
25388 add 'terminal program' functionality
25389
25390 This patch adds a 'cu' like serial terminal command to u-boot
25391 using which you can access other serial ports from the system console.
25392
25393 OpenMoko uses this in their Neo1973 phones to get access to the GSM
25394 Modem and GPS chip from the bootloader.
25395
25396 Signed-off-by: Harald Welte <laforge@openmoko.org>
25397
25398 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
25399 Author: Harald Welte <laforge@openmoko.org>
25400 Date: Wed Dec 19 14:12:53 2007 +0100
25401
25402 Re-introduce the 'nand read.oob' and 'nand write.oob' commands
25403 that used to exist with the legacy NAND code
25404
25405 Signed-off-by: Harald Welte <laforge@openmoko.org>
25406
25407 commit f540c42d9564854b19ce9bbb70affe172529fe70
25408 Author: Harald Welte <laforge@openmoko.org>
25409 Date: Wed Dec 19 14:09:58 2007 +0100
25410
25411 Fix building with CRAMFS but not JFFS2 support
25412
25413 Signed-off-by: Harald Welte <laforge@openmoko.org>
25414
25415 commit 23d0baf967fecdaf1804f045f6339337c5607eec
25416 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25417 Date: Sat Dec 22 15:52:58 2007 +0100
25418
25419 Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
25420
25421 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25422 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25423
25424 commit 23776ff292966a85d811126933830bed48211826
25425 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25426 Date: Tue Dec 11 10:53:12 2007 +0100
25427
25428 ARM: support board-specific ethernet PHY init
25429
25430 Add until the new phylib will be arrived
25431
25432 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25433
25434 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
25435 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25436 Date: Sat Dec 8 16:34:08 2007 +0100
25437
25438 IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
25439
25440 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25441
25442 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
25443 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25444 Date: Sun Dec 9 11:01:10 2007 +0100
25445
25446 Add missing file in gitignore and comments
25447
25448 based on Linux source tree's .gitignore files
25449
25450 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25451
25452 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
25453 Author: Wolfgang Denk <wd@denx.de>
25454 Date: Wed Jan 9 11:36:21 2008 +0100
25455
25456 Coding Style cleanup, update CHANGELOG
25457
25458 Signed-off-by: Wolfgang Denk <wd@denx.de>
25459
25460 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
25461 Author: Stefan Roese <sr@denx.de>
25462 Date: Wed Jan 9 10:38:58 2008 +0100
25463
25464 POST: Execute SPR test after relocation
25465
25466 On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
25467 self modifying code and this doesn't work with stack in d-cache, since
25468 I can't move the code from d-cache to i-cache. We move the SPR test to
25469 be executed a little later, after relocation. Then stack is located in
25470 SDRAM and this self-modifying code is no problem anymore.
25471
25472 Signed-off-by: Stefan Roese <sr@denx.de>
25473
25474 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
25475 Author: Stefan Roese <sr@denx.de>
25476 Date: Wed Jan 9 10:28:20 2008 +0100
25477
25478 ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
25479
25480 This patch configures the LWMON5 port to use d-cache as init-ram and
25481 the unused GPT0_COMP6 as POST WORD storage.
25482
25483 Signed-off-by: Stefan Roese <sr@denx.de>
25484
25485 commit 1754f50b710194f886b6f2831803d8960171a14d
25486 Author: Stefan Roese <sr@denx.de>
25487 Date: Wed Jan 9 10:25:46 2008 +0100
25488
25489 ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
25490
25491 The privious 4xx POST implementation only supported storing the POST
25492 WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
25493 we need to store the POST WORD in some other non volatile location.
25494 This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
25495 a location.
25496
25497 Signed-off-by: Stefan Roese <sr@denx.de>
25498
25499 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
25500 Author: Stefan Roese <sr@denx.de>
25501 Date: Wed Jan 9 10:23:16 2008 +0100
25502
25503 ppc4xx: Add 44x cache locking to better support init-ram in d-cache
25504
25505 This patch adds support for locking the init-ram/stack in d-cache,
25506 so that other regions may use d-cache as well
25507
25508 Note, that this current implementation locks exactly 4k of d-cache,
25509 so please make sure that you don't define a bigger init-ram area. Take
25510 a look at the lwmon5 440EPx implementation as a reference.
25511
25512 Signed-off-by: Stefan Roese <sr@denx.de>
25513
25514 commit 0ddb89601a8d29e808db450366752ffdc6267c53
25515 Author: Wolfgang Denk <wd@denx.de>
25516 Date: Wed Jan 9 10:16:33 2008 +0100
25517
25518 Fix memset bug in ext2fs_read_file()
25519
25520 ext2fs_read_file() had the function arguments swapped.
25521
25522 Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
25523
25524 Signed-off-by: Wolfgang Denk <wd@denx.de>
25525
25526 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
25527 Author: Markus Klotzbücher <mk@denx.de>
25528 Date: Tue Jan 5 08:17:15 1988 +0100
25529
25530 Fix problems with usb storage devices on MPC5200 /TQM5200
25531
25532 The MPC5200 OHCI controller operates in big endian, so
25533 CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
25534
25535 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25536
25537 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
25538 Author: Wolfgang Denk <wd@denx.de>
25539 Date: Tue Jan 8 22:58:27 2008 +0100
25540
25541 Fix compile problem with new env code.
25542
25543 Signed-off-by: Wolfgang Denk <wd@denx.de>
25544
25545 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
25546 Author: Markus Klotzbücher <mk@denx.de>
25547 Date: Tue Nov 27 10:23:20 2007 +0100
25548
25549 tools: fix fw_printenv tool to compile again
25550
25551 This patch updates the fw_printenv/fw_setenv userspace tool to include
25552 the correct MTD header in order to compile against current kernel
25553 headers. Backward compatibility is preserved by introducing an option
25554 MTD_VERSION which can be set to "old" for compilation using the old MTD
25555 headers. Along with this a number of warnings are fixed.
25556
25557 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25558
25559 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
25560 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25561 Date: Tue Jan 8 15:40:09 2008 +0100
25562
25563 ppc4xx: assign PCI interrupts on seuqoia boards
25564
25565 Some operating systems rely on assigned PCI interrupts.
25566
25567 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25568
25569 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
25570 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25571 Date: Tue Jan 8 15:50:49 2008 +0100
25572
25573 ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
25574
25575 This patch allows the use of 4xx interrupt vector number defines
25576 in board specific code outside cpu/ppc4xx.
25577
25578 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25579
25580 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
25581 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25582 Date: Tue Jan 8 15:39:01 2008 +0100
25583
25584 ppc4xx: Fix UIC2 vector number base
25585
25586 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25587
25588 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
25589 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25590 Date: Tue Jan 8 12:49:58 2008 +0100
25591
25592 ppc4xx: Update PLB/PCI divider for PMC440 board
25593
25594 This patch updates the PLB/PCI divider when running at
25595 400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
25596
25597 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25598
25599 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
25600 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25601 Date: Tue Jan 8 11:13:09 2008 +0100
25602
25603 ppc4xx: Disable error message when no NAND chip is installed on PMC440
25604
25605 Add CFG_NAND_QUIET_TEST option to disable error message when
25606 no NAND chip is installed on PMC440 boards.
25607
25608 Disable a couple of config defines that are only used for NAND_U_BOOT.
25609
25610 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25611
25612 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
25613 Author: Wolfgang Denk <wd@denx.de>
25614 Date: Tue Jan 8 22:58:27 2008 +0100
25615
25616 Fix compile problem with new env code.
25617
25618 Signed-off-by: Wolfgang Denk <wd@denx.de>
25619
25620 commit 6de66b35426312a21174a9bf0576a094e2904bea
25621 Author: Markus Klotzbücher <mk@denx.de>
25622 Date: Tue Nov 27 10:23:20 2007 +0100
25623
25624 tools: fix fw_printenv tool to compile again
25625
25626 This patch updates the fw_printenv/fw_setenv userspace tool to include
25627 the correct MTD header in order to compile against current kernel
25628 headers. Backward compatibility is preserved by introducing an option
25629 MTD_VERSION which can be set to "old" for compilation using the old MTD
25630 headers. Along with this a number of warnings are fixed.
25631
25632 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25633
25634 commit ad3006fe7e84667021753b74247b0bafd97ba35f
25635 Author: Gerald Van Baren <vanbaren@cideas.com>
25636 Date: Mon Jan 7 23:47:32 2008 -0500
25637
25638 LIBFDT: use memmove() instead of memcpy()
25639
25640 This is partial patch from the DTC/libfdt
25641 commit 67b6b33b9b413a450a72135b5dc59c0a1e33e647
25642 Author: David Gibson <david@gibson.dropbear.id.au>
25643 Date: Wed Nov 21 11:56:14 2007 +1100
25644
25645 The patch also fixes one genuine bug caught by valgrind -
25646 _packblocks() in fdt_rw.c was using memcpy() where it should have been
25647 using memmove().
25648
25649 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25650
25651 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
25652 Author: David Gibson <david@gibson.dropbear.id.au>
25653 Date: Mon Dec 17 14:42:07 2007 +1100
25654
25655 libfdt: Add more documentation (patch the seventh)
25656
25657 This patch adds more documenting comments to libfdt.h. Specifically,
25658 these document the read/write functions (not including fdt_open_into()
25659 and fdt_pack(), for now).
25660
25661 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25662
25663 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
25664 Author: David Gibson <david@gibson.dropbear.id.au>
25665 Date: Mon Dec 17 14:41:52 2007 +1100
25666
25667 libfdt: Add more documentation (patch the sixth)
25668
25669 This patch adds some more documenting comments to libfdt.h.
25670 Specifically this documents all the write-in-place functions.
25671
25672 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25673
25674 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
25675 Author: Gerald Van Baren <vanbaren@cideas.com>
25676 Date: Sat Dec 29 22:45:27 2007 -0500
25677
25678 Fine grained per property /chosen updating.
25679
25680 Implement a suggestion by Scott Wood to make the /chosen handling fine
25681 grained. Don't overwrite pre-existing properties on a per-property basis,
25682 so if /chosen exists but a necessary /chosen/property doesn't, it gets
25683 created. If a /chosen property exists, it is NOT overwritten unless the
25684 "force" flag is true.
25685
25686 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25687
25688 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
25689 Author: Gerald Van Baren <vanbaren@cideas.com>
25690 Date: Sat Jan 5 15:33:29 2008 -0500
25691
25692 Improve the FDT help message.
25693
25694 Add a note that "fdt copy" makes the new address active.
25695 Remove most of the extra hints at the end of the fdt help.
25696
25697 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25698
25699 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
25700 Author: Gerald Van Baren <vanbaren@cideas.com>
25701 Date: Sat Jan 5 14:52:04 2008 -0500
25702
25703 Support setting FDT properties with optional values.
25704
25705 Fix a bug found and documented by Bartlomiej Sieka where the optional
25706 value on "fdt set <path> <prop> [<val>]" wasn't optional.
25707
25708 => fdt mknode / testnode
25709 => fdt print /testnode
25710 testnode {
25711 };
25712 => fdt set /testnode testprop
25713 => fdt print /testnode
25714 testnode {
25715 testprop;
25716 };
25717
25718 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25719
25720 commit 22fb2246df91bfc840d87f0c5910818bad55577a
25721 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25722 Date: Fri Dec 28 11:56:30 2007 +0100
25723
25724 Add fdt_find_and_setprop() to fdt_support.h
25725
25726 fdt_find_and_setprop() is used by several 4xx boards and it's
25727 missing in the appropriate header. This patch eliminates a
25728 warning when building U-Boot for such boards.
25729
25730 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25731 Acked-by: Stefan Roese <sr@denx.de>
25732
25733 commit 802b769bac17b0560d3535a42c502469ee190cd1
25734 Author: Stefan Roese <sr@denx.de>
25735 Date: Tue Jan 8 18:39:30 2008 +0100
25736
25737 ppc4xx: Return 0 on success in 4xx ethernet driver
25738
25739 Signed-off-by: Stefan Roese <sr@denx.de>
25740
25741 commit 6775c68683a53c7abc778774641aac6f833a2cbf
25742 Author: Kim Phillips <kim.phillips@freescale.com>
25743 Date: Tue Jan 8 09:59:49 2008 -0600
25744
25745 mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
25746
25747 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25748
25749 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
25750 Author: Kim Phillips <kim.phillips@freescale.com>
25751 Date: Thu Dec 20 16:28:34 2007 -0600
25752
25753 mpc83xx: rm remaining FLAT_TREE code
25754
25755 ..in board pci.c files
25756
25757 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25758
25759 commit b3458d2cd55d01732e30a76d898afd99e871cd67
25760 Author: Kim Phillips <kim.phillips@freescale.com>
25761 Date: Thu Dec 20 15:57:28 2007 -0600
25762
25763 mpc83xx: remove FLAT_TREE code
25764
25765 need to rm it from pci code, too!
25766
25767 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25768
25769 commit 5b8bc606c61456566af6912f818a153b6b06f242
25770 Author: Kim Phillips <kim.phillips@freescale.com>
25771 Date: Thu Dec 20 14:09:22 2007 -0600
25772
25773 mpc83xx: convert to using do_fixup_*()
25774
25775 convert to using simpler mpc85xx style fdt update code; streamline by
25776 eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
25777 the old school FLAT_TREE code from 83xx (since the sbc8349 was just
25778 converted over to using libfdt).
25779
25780 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25781
25782 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
25783 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
25784 Date: Thu Dec 20 12:58:51 2007 -0500
25785
25786 sbc8349: enable libfdt by default on WRS SBC8349 board.
25787
25788 Make libfdt the default for the WRS SBC8349 board.
25789 Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
25790 done for the other 83xx based boards. Also fix a typo in CONFIG_PCI.
25791
25792 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
25793
25794 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
25795 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
25796 Date: Thu Dec 20 12:58:16 2007 -0500
25797
25798 sbc8349: migrate board to libfdt
25799
25800 This adds libfdt support code for the Wind River sbc8349 board.
25801
25802 Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
25803 the other Freescale 83xx boards.
25804
25805 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
25806
25807 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
25808 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
25809 Date: Thu Dec 20 12:56:19 2007 -0500
25810
25811 sbc8349: Remove board specific ECC code
25812
25813 ECC code is now shared for all 83xx boards, so remove board specific one.
25814 See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
25815
25816 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
25817
25818 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
25819 Author: Kim Phillips <kim.phillips@freescale.com>
25820 Date: Thu Dec 20 01:30:48 2007 -0600
25821
25822 mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
25823
25824 continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
25825
25826 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25827
25828 commit ccf21c311e68d48399eff1e72936052885f6e3f7
25829 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
25830 Date: Thu Dec 6 16:43:40 2007 +0100
25831
25832 Add support CONFIG_UEC_ETH3 in MPC83xx
25833
25834 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
25835
25836 commit e6af9932d31171e35db880e7b2f29f903b1b7660
25837 Author: Kumar Gala <galak@kernel.crashing.org>
25838 Date: Mon Nov 26 11:00:54 2007 -0600
25839
25840 Remove CONFIG options related to OF that we dont use
25841
25842 The MPC8360E MDS config defined:
25843 CONFIG_OF_HAS_BD_T
25844 CONFIG_OF_HAS_UBOOT_ENV
25845
25846 Which we don't use or ever needed. This seems like copy-paste feature creep.
25847
25848 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25849
25850 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
25851 Author: Kim Phillips <kim.phillips@freescale.com>
25852 Date: Mon Dec 10 14:16:22 2007 -0600
25853
25854 mpc83xx: supress compiler warning
25855
25856 mpc8360emds.c: In function ‘ft_board_setup’:
25857 mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
25858 mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
25859
25860 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25861
25862 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
25863 Author: Kim Phillips <kim.phillips@freescale.com>
25864 Date: Tue Nov 27 14:17:29 2007 -0600
25865
25866 mpc83xx: fix remaining fdt_find_node_by_path references
25867
25868 rename to fdt_path_offset
25869
25870 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25871
25872 commit 921d4b19ad1be704df58725485d9292dc0414adf
25873 Author: Kim Phillips <kim.phillips@freescale.com>
25874 Date: Mon Nov 19 12:30:09 2007 -0600
25875
25876 mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
25877
25878 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
25879 This change guarantees that the environment will be located on the
25880 first flash sector after the U-Boot image.
25881
25882 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25883
25884 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
25885 Author: Kim Phillips <kim.phillips@freescale.com>
25886 Date: Fri Nov 9 14:28:08 2007 -0600
25887
25888 mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
25889
25890 u-boot itself uses GMII mode on the 8360. Fix up UCC phy-connection-type
25891 properties in the device tree so the PHY gets configured for internal delay on
25892 RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
25893
25894 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25895
25896 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
25897 Author: Dave Liu <r63238@freescale.com>
25898 Date: Tue Sep 18 12:41:15 2007 +0800
25899
25900 mpc83xx: update the CREDITS and MAINTAINERS
25901
25902 update the CREDITS and MAINTAINERS.
25903
25904 Signed-off-by: Dave Liu <daveliu@freescale.com>
25905
25906 commit b21add4b42af7b767448251b599b91066a160e0d
25907 Author: Dave Liu <r63238@freescale.com>
25908 Date: Tue Sep 18 12:40:21 2007 +0800
25909
25910 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
25911
25912 Add the MAINTAINER and MAKEALL entries for mpc837xemds
25913
25914 Signed-off-by: Dave Liu <daveliu@freescale.com>
25915
25916 commit f8900ce9094c462355eb792eea264ff16ac8fd16
25917 Author: Dave Liu <r63238@freescale.com>
25918 Date: Tue Sep 18 12:38:53 2007 +0800
25919
25920 mpc83xx: Add the MPC837xEMDS board readme
25921
25922 Add the README.mpc837xemds to /doc
25923
25924 Signed-off-by: Dave Liu <daveliu@freescale.com>
25925
25926 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
25927 Author: Dave Liu <r63238@freescale.com>
25928 Date: Tue Sep 18 12:37:57 2007 +0800
25929
25930 mpc83xx: Add the support of MPC837xEMDS board
25931
25932 The MPC837xEMDS board support:
25933 * DDR2 400MHz hardcoded and SPD init
25934 * Local bus NOR Flash
25935 * I2C, UART, MII and RTC
25936 * eTSEC RGMII
25937 * PCI host
25938
25939 Signed-off-by: Dave Liu <daveliu@freescale.com>
25940
25941 commit 555da61702771fe0f76f3de23b4e7590f3704161
25942 Author: Dave Liu <r63238@freescale.com>
25943 Date: Tue Sep 18 12:36:58 2007 +0800
25944
25945 mpc83xx: Add the support of MPC8315E SoC
25946
25947 The MPC8315E SoC including e300c3 core and new IP blocks,
25948 such as TDM, PCI Express and SATA controller.
25949
25950 Signed-off-by: Dave Liu <daveliu@freescale.com>
25951
25952 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
25953 Author: Dave Liu <r63238@freescale.com>
25954 Date: Tue Sep 18 12:36:11 2007 +0800
25955
25956 mpc83xx: Add the support of MPC837x SoC
25957
25958 The MPC837x SoC including e300c4 core and new IP blocks,
25959 such as SDHC, PCI Express and SATA controller.
25960
25961 Signed-off-by: Dave Liu <daveliu@freescale.com>
25962
25963 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
25964 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25965 Date: Wed Nov 14 18:54:53 2007 +0300
25966
25967 MPC8360E-MDS: configure and enable second UART
25968
25969 Despite user manual, BCSR9.7 is negated (high) on HRST, so
25970 UART2 is disabled. Fix that and configure QE pins properly.
25971
25972 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25973
25974 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
25975 Author: Timur Tabi <timur@freescale.com>
25976 Date: Mon Nov 5 09:34:06 2007 -0600
25977
25978 83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
25979
25980 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
25981 currently-defined 83xx boards. This change guarantees that the environment
25982 will be located on the first flash sector after the U-Boot image.
25983
25984 Signed-off-by: Timur Tabi <timur@freescale.com>
25985 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25986
25987 commit e05329516a13616b53240cd85b739217c2bf87f1
25988 Author: Larry Johnson <lrj@acm.org>
25989 Date: Fri Jan 4 13:27:02 2008 -0500
25990
25991 ppc4xx: Remove weak binding from common Denali data-eye search code
25992
25993 Now that there are no board-specific versions of
25994 "denali_core_search_data_eye()", the weak binding on the common version
25995 can be removed.
25996
25997 Signed-off-by: Larry Johnson <lrj@acm.org>
25998
25999 commit 5ba576c01602fd328800a427964c36a0a05c5dce
26000 Author: Stefan Roese <sr@denx.de>
26001 Date: Sat Jan 5 09:13:46 2008 +0100
26002
26003 ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
26004
26005 Signed-off-by: Stefan Roese <sr@denx.de>
26006
26007 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
26008 Author: Stefan Roese <sr@denx.de>
26009 Date: Sat Jan 5 09:12:41 2008 +0100
26010
26011 ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
26012
26013 On Katmai the complete auto-calibration somehow doesn't seem to
26014 produce the best results, meaning optimal values for RQFD/RFFD.
26015 This was discovered by GDA using a high bandwidth scope,
26016 analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
26017 so now on Katmai "only" RFFD is auto-calibrated.
26018
26019 This patch also adds RDCC calibration as mentioned on page 7 of
26020 the AMCC PowerPC440SP/SPe DDR2 application note:
26021 "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
26022
26023 Signed-off-by: Stefan Roese <sr@denx.de>
26024
26025 commit 49db47b8ae6afff2b898be312948ff501357dc80
26026 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26027 Date: Wed Jan 2 16:48:42 2008 +0100
26028
26029 ppc4xx: Remove sdram.h from PMC440 board
26030
26031 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26032
26033 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
26034 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26035 Date: Wed Jan 2 16:48:34 2008 +0100
26036
26037 ppc4xx: use common denali core defines and data eye search code for PMC440
26038
26039 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26040
26041 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
26042 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26043 Date: Wed Jan 2 12:05:14 2008 +0100
26044
26045 ppc4xx: More cleanup for esd's LCD code
26046
26047 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26048
26049 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
26050 Author: Stefan Roese <sr@denx.de>
26051 Date: Fri Jan 4 12:00:01 2008 +0100
26052
26053 ppc4xx: Fix Sequoia NAND booting target
26054
26055 The Sequoia NAND booting target now uses the recently extracted
26056 cpu/ppc4xx/denali_data_eye.c file too.
26057
26058 Signed-off-by: Stefan Roese <sr@denx.de>
26059
26060 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
26061 Author: Lawrence R. Johnson <lrj@acm.org>
26062 Date: Thu Jan 3 15:02:02 2008 -0500
26063
26064 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
26065
26066 Signed-off-by: Larry Johnson <lrj@acm.org>
26067
26068 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
26069 Author: Lawrence R. Johnson <lrj@acm.org>
26070 Date: Fri Jan 4 02:11:56 2008 -0500
26071
26072 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
26073
26074 Note: this patch changes the configuration of some GPIO registers:
26075
26076 Register Old Value New Value
26077 --------------- ---------- ----------
26078 DCR GPIO0_TCR 0x0000000F 0x0000F0CF
26079 DCR GPIO0_TSRH 0x55005000 0x00000000
26080 DCR GPIO1_TCR 0xC2000000 0xE2000000
26081 DCR GPIO1_TSRL 0x0C000000 0x00200000
26082 DCR GPIO1_ISR2L 0x00050000 0x00110000
26083
26084 Signed-off-by: Larry Johnson <lrj@acm.org>
26085
26086 commit 5ab884b254ca2e707ab50545cd705f30108cf491
26087 Author: Lawrence R. Johnson <lrj@acm.org>
26088 Date: Thu Jan 3 18:54:00 2008 -0500
26089
26090 ppc4xx: Add functionality to GPIO support
26091
26092 This patch makes two additions to GPIO support:
26093
26094 First, it adds function gpio_read_in_bit() to read the a bit from the
26095 GPIO Input Register (GPIOx_IR) in the same way that function
26096 gpio_read_out_bit() reads a bit from the GPIO Output Register
26097 (GPIOx_OR).
26098
26099 Second, it modifies function gpio_set_chip_configuration() to provide
26100 an additional option for configuring the GPIO from the
26101 "CFG_4xx_GPIO_TABLE".
26102
26103 According to the 440EPx User's Manual, when an alternate output is used,
26104 the three-state control is configured in one of two ways, depending on
26105 the particular output. The first option is to select the corresponding
26106 alternate three-state control in the GPIOx_TRSH/L registers. The second
26107 option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
26108 the GPIOx_TRSH/L registers, and set the corresponding bit in the
26109 GPIOx_TCR register to enable the output. For example, the Manual
26110 specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
26111 the alternate three-state control (first option), and specifies
26112 configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
26113 enabled in the GPIOx_TCR register (second option).
26114
26115 Currently, gpio_set_chip_configuration() configures all alternate signal
26116 outputs to use the first option. This patch allow the second option to
26117 be selected by setting the "out_val" element in the table entry to
26118 "GPIO_OUT_1". The first option is used when the "out_val" element is
26119 set to "GPIO_OUT_0". Because "out_val" is not currently used when an
26120 alternate signal is selected, and because all current GPIO tables set
26121 "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
26122 not change any existing configurations.
26123
26124 Signed-off-by: Larry Johnson <lrj@acm.org>
26125
26126 commit 196404cdc1de495d6182e84731c200fc5748df15
26127 Author: Larry Johnson <lrj@arlinx.com>
26128 Date: Sun Dec 30 01:01:54 2007 -0500
26129
26130 PPC4xx: Remove sdram.h from board/lwmon5
26131
26132 These definitions are now in "include/ppc440.h".
26133
26134 Signed-off-by: Larry Johnson <lrj@acm.org>
26135
26136 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
26137 Author: Larry Johnson <lrj@arlinx.com>
26138 Date: Sun Dec 30 01:01:32 2007 -0500
26139
26140 PPC4xx: Use common code for LWMON5 board SDRAM support
26141
26142 This patch also modifies the functionality of the code so that the data-eye
26143 search is now done with with the cache disabled.
26144
26145 Signed-off-by: Larry Johnson <lrj@acm.org>
26146
26147 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
26148 Author: Larry Johnson <lrj@arlinx.com>
26149 Date: Sun Dec 30 01:01:14 2007 -0500
26150
26151 PPC4xx: Remove sdram.h from board/amcc/sequoia
26152
26153 These definitions are now in "include/ppc440.h".
26154
26155 Signed-off-by: Larry Johnson <lrj@acm.org>
26156
26157 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
26158 Author: Larry Johnson <lrj@arlinx.com>
26159 Date: Sun Dec 30 01:00:50 2007 -0500
26160
26161 PPC4xx: Use common code for Sequoia board SDRAM support
26162
26163 Signed-off-by: Larry Johnson <lrj@acm.org>
26164
26165 commit 8b0c5c127690335758100c25eaec2b84db97c101
26166 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26167 Date: Thu Dec 27 16:58:41 2007 +0100
26168
26169 net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
26170
26171 When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
26172 networking stack does not automatically switch to
26173 another interface. This patch does not touch the default
26174 behavior.
26175
26176 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26177 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26178
26179 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
26180 Author: Upakul Barkakaty <upakul@gmail.com>
26181 Date: Thu Nov 29 12:16:13 2007 +0530
26182
26183 NET: Proper return code handling in eth_init() function in file eth.c
26184
26185 This patch modifies the return code handling in the eth_init()
26186 function, to be compatible with the handling of the return codes in
26187 the other network stack files. It now returns a 0 on Success and -1 on
26188 error.
26189
26190 Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
26191 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26192
26193 commit 5ca2d0953e4579a80810966cca2077e20d912c97
26194 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26195 Date: Mon Nov 19 20:27:04 2007 +0900
26196
26197 net/eth.c: Fix env_enetaddr signed overflow
26198
26199 Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
26200 warned as below:
26201
26202 U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
26203
26204 DRAM: 256 MB
26205 Flash: 32 MB
26206 In: serial
26207 Out: serial
26208 Err: serial
26209 Net: NEC-Candy
26210 Warning: NEC-Candy MAC addresses don't match:
26211 Address in SROM is 00:00:4C:80:92:A2
26212 Address in environment is FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
26213
26214 This patch changes env_enetaddr type from `char' to `unsigned char'.
26215
26216 Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
26217 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26218 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26219
26220 commit f85b60710571b37293d2233933b76e2aa3db5635
26221 Author: Rafal Jaworowski <raj@semihalf.com>
26222 Date: Thu Dec 27 18:19:02 2007 +0100
26223
26224 Introduce new eth_receive routine
26225
26226 The purpose of this routine is receiving a single network frame, outside of
26227 U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
26228 U-Boot will let them utilise networking facilities. For sending a raw frame
26229 the already existing eth_send() can be used.
26230
26231 The direct consumer of this routine is the newly introduced API layer for
26232 external applications (enabled with CONFIG_API).
26233
26234 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
26235 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
26236 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26237
26238 commit 5c740711f0ea5b51414b341b71597c4a0751be74
26239 Author: Jon Loeliger <jdl@freescale.com>
26240 Date: Thu Jan 3 10:41:04 2008 -0600
26241
26242 8610: Move include of config.h earlier.
26243
26244 Include config.h earlier in the set of #includes
26245 so as to avoid a incidental and duplicate definition
26246 of CFG_CACHELINE_SIZE.
26247
26248 Signed-off-by: Jon Loeliger
26249
26250 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
26251 Author: Jon Loeliger <jdl@freescale.com>
26252 Date: Tue Dec 4 10:53:34 2007 -0600
26253
26254 Don't slam #undef DEBUG in the 8641HPCN config file.
26255
26256 Doing so prevents it from being individually set
26257 and useful in other files.
26258
26259 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26260
26261 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
26262 Author: Jon Loeliger <jdl@freescale.com>
26263 Date: Wed Nov 28 14:47:18 2007 -0600
26264
26265 Convert MPC8641HPCN to use libfdt.
26266
26267 Assumes the presence of the aliases node in the DTS to
26268 locate the ethernet, pci and serial nodes for fixups.
26269
26270 Use consistent fdtaddr and fdtfile in environment variables.
26271
26272 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26273
26274 commit ce37422d0002e10490e268392e0c4e3028e52cec
26275 Author: Stefan Roese <sr@denx.de>
26276 Date: Wed Jan 2 14:06:26 2008 +0100
26277
26278 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
26279
26280 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
26281 flash chips connected to a 32bit wide port.
26282
26283 Signed-off-by: Stefan Roese <sr@denx.de>
26284
26285 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
26286 Author: Wolfgang Denk <wd@denx.de>
26287 Date: Wed Jan 2 15:58:44 2008 +0100
26288
26289 Fix compile problem introduced by "cleanup" commit 3dfd708c
26290
26291 Signed-off-by: Wolfgang Denk <wd@denx.de>
26292
26293 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
26294 Author: Wolfgang Denk <wd@denx.de>
26295 Date: Wed Jan 2 15:54:45 2008 +0100
26296
26297 Make scripts and Makefiles POSIX compliant
26298
26299 The bash builtin versions of the "test" (resp. "[") command allow
26300 using "==" for string comparisons, but POSIX compatible implemen-
26301 tations (like /usr/bin/test) insist on using "=" only. On such systems
26302 you will see:
26303
26304 $ /usr/bin/test a == a && echo OK
26305 /usr/bin/test: ==: binary operator expected
26306
26307 This patch fixes Makefiles and scripts to use POSIX style.
26308
26309 Signed-off-by: Wolfgang Denk <wd@denx.de>
26310
26311 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
26312 Author: Stefan Roese <sr@denx.de>
26313 Date: Wed Jan 2 14:05:37 2008 +0100
26314
26315 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
26316
26317 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
26318 flash chips connected to a 32bit wide port.
26319
26320 Signed-off-by: Stefan Roese <sr@denx.de>
26321
26322 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
26323 Author: Wolfgang Denk <wd@denx.de>
26324 Date: Wed Jan 2 12:38:43 2008 +0100
26325
26326 Minor coding style cleanup.
26327
26328 Signed-off-by: Wolfgang Denk <wd@denx.de>
26329
26330 commit e174ac34adf5d5653df12bc3cf19c52063a71269
26331 Author: Stefan Roese <sr@denx.de>
26332 Date: Fri Dec 28 17:29:56 2007 +0100
26333
26334 ppc4xx: Coding style cleanup
26335
26336 Signed-off-by: Stefan Roese <sr@denx.de>
26337
26338 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
26339 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26340 Date: Fri Dec 28 17:07:24 2007 +0100
26341
26342 ppc4xx: Complete PMC440 board support
26343
26344 This patch brings the PMC440 board configuration file.
26345 Finally it enables the PMC440 board support.
26346
26347 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26348
26349 commit 407843a582560fc5231299561ab3c2b6b6cd3397
26350 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26351 Date: Fri Dec 28 17:07:18 2007 +0100
26352
26353 ppc4xx: Add FPGA support and BSP commands for PMC440 boards
26354
26355 This patch adds some BSP commands and FPGA booting support
26356 for esd's PMC440 boards.
26357
26358 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26359
26360 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
26361 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26362 Date: Fri Dec 28 17:07:14 2007 +0100
26363
26364 ppc4xx: Add initial esd PMC440 board files
26365
26366 This patch adds the first files for the new esd PMC440 boards.
26367 The next two patches will complete the PMC440 board support.
26368
26369 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26370
26371 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
26372 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26373 Date: Fri Dec 28 17:10:36 2007 +0100
26374
26375 ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
26376
26377 - add EEPROM write protection for esd PLU405 boards.
26378 - initialize NAND GPIOs
26379 - use correct io accessors
26380 - cleanup
26381
26382 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26383
26384 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
26385 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26386 Date: Fri Dec 28 17:10:44 2007 +0100
26387
26388 ppc4xx: use correct io accessors for esd's LCD code
26389
26390 This patch fixes esd's LCD dectection code to work correctly with
26391 newer gcc versions.
26392
26393 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26394
26395 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
26396 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26397 Date: Fri Dec 28 17:10:42 2007 +0100
26398
26399 ppc4xx: Maintenance patch for VOH405 boards
26400
26401 - add EEPROM write protection
26402 - initialize NAND GPIOs
26403 - use correct io accessors
26404 - slow down I2C clock to 100kHz
26405 - enable ext. I2C bus
26406 - cleanup
26407
26408 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26409
26410 commit c05569066dbcba3fdf36d4d1943df265dc316a86
26411 Author: Stefan Roese <sr@denx.de>
26412 Date: Fri Dec 28 16:08:08 2007 +0100
26413
26414 ppc4xx: Enable 405EP PCI arbiter per default on all boards
26415
26416 In an attmemt to clean up the 4xx start.S file, I removed the enabling
26417 of the internal 405EP PCI arbiter. This is needed for multiple other
26418 405EP platforms, like most of the esd 405EP. Now the internal PCI
26419 arbiter is enabled again per default as it has been before.
26420
26421 Signed-off-by: Stefan Roese <sr@denx.de>
26422 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26423
26424 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
26425 Author: Stefan Roese <sr@denx.de>
26426 Date: Fri Dec 28 15:53:46 2007 +0100
26427
26428 ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
26429
26430 Signed-off-by: Stefan Roese <sr@denx.de>
26431 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26432
26433 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
26434 Author: Stefan Roese <sr@denx.de>
26435 Date: Fri Dec 28 06:06:04 2007 +0100
26436
26437 ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
26438
26439 Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
26440 platforms mentioned above.
26441
26442 Signed-off-by: Stefan Roese <sr@denx.de>
26443
26444 commit b568fd25574181a3b12ae3d66b2913903442cb83
26445 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26446 Date: Thu Dec 27 17:03:46 2007 +0100
26447
26448 Remove CPCI440 board
26449
26450 This board never left prototyping state and it
26451 became a millstone round my neck. So remove it.
26452
26453 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26454
26455 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
26456 Author: Larry Johnson <lrj@arlinx.com>
26457 Date: Thu Dec 27 11:28:51 2007 -0500
26458
26459 Add support for Korat PPC440EPx board
26460
26461 These patches add support for the PPC440EPx-based "Korat" board to
26462 U-Boot. They are based primarily on support for the Sequoia board.
26463
26464 Signed-off-by: Larry Johnson <lrj@acm.org>
26465
26466 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
26467 Author: Larry Johnson <lrj@arlinx.com>
26468 Date: Sat Dec 22 15:16:25 2007 -0500
26469
26470 Add configuration file for Korat board
26471
26472 This patch supplies the configuration file for the Korat PPC440EPx-
26473 processor board.
26474
26475 Signed-off-by: Larry Johnson <lrj@acm.org>
26476
26477 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
26478 Author: Larry Johnson <lrj@arlinx.com>
26479 Date: Sat Dec 22 15:16:11 2007 -0500
26480
26481 Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
26482
26483 Signed-off-by: Larry Johnson <lrj@acm.org>
26484
26485 commit aba19604d848b2838cfb9ebe818909e6a216058e
26486 Author: Larry Johnson <lrj@arlinx.com>
26487 Date: Thu Dec 27 10:54:48 2007 -0500
26488
26489 Add 440EPx DDR2 SPD DIMM support
26490
26491 This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
26492 controller. It should also work on the 440GRx. It is based on the DDR2
26493 SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
26494
26495 This code has been tested on prototype Korat boards with three Kingston
26496 DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
26497 (two ranks). The Korat board has a single DIMM socket, but support has
26498 been provided (though not tested) for boards with two DIMM sockets.
26499
26500 Signed-off-by: Larry Johnson <lrj@acm.org>
26501
26502 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
26503 Author: Larry Johnson <lrj@arlinx.com>
26504 Date: Sat Dec 22 15:15:30 2007 -0500
26505
26506 Copy 440EPx/GRx SDRAM data-eye search to common directory
26507
26508 This patch creates a non-board-specific file for performing the SDRAM
26509 data-eye search. It also adds ECC error checking to the test of valid
26510 data on readback when ECC is enabled.
26511
26512 Signed-off-by: Larry Johnson <lrj@acm.org>
26513
26514 commit c46f53333b22b1f9098676bea8884fc7db820cf3
26515 Author: Larry Johnson <lrj@arlinx.com>
26516 Date: Sat Dec 22 15:15:13 2007 -0500
26517
26518 Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
26519
26520 This patch adds the Denali SDRAM controller definitions to "ppc440.h".
26521 It also fixes two typos in the definitions, so the board-specific
26522 "sdram.h" files containing these definitions are also fixed to avoid
26523 compiler warnings.
26524
26525 Signed-off-by: Larry Johnson <lrj@acm.org>
26526
26527 commit c348578bf612d0c56d8d376d23cae16defbd86af
26528 Author: Larry Johnson <lrj@arlinx.com>
26529 Date: Thu Dec 27 10:50:55 2007 -0500
26530
26531 Add Ethernet 1000BASE-X support for PPC4xx
26532
26533 This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG". When this symbol
26534 is defined, the PHY will advertise it's capabilities for autonegotiation
26535 based on the capabilities shown in the PHY's status registers, including
26536 1000BASE-X. When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
26537 advertise hard-coded capabilities, as before.
26538
26539 Signed-off-by: Larry Johnson <lrj@acm.org>
26540
26541 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
26542 Author: Larry Johnson <lrj@arlinx.com>
26543 Date: Thu Dec 27 09:52:17 2007 -0500
26544
26545 Add driver for National Semiconductor LM73 temperature sensor
26546
26547 This driver is based on the driver for the LM75.
26548
26549 Signed-off-by: Larry Johnson <lrj@acm.org>
26550
26551 commit 12618278688ea9b3d76536960a5ad2e3790fac40
26552 Author: Larry Johnson <lrj@arlinx.com>
26553 Date: Sat Dec 22 15:14:00 2007 -0500
26554
26555 Add driver for STMicroelectronics M41T60 RTC
26556
26557 This driver is based on the driver for the M41T11. In the intended
26558 application, the RTC will be powered by a large capacitor, rather than a
26559 battery. The driver therefore checks to see whether the RTC has lost
26560 power. The chip's OUT bit is normally reset from its power-up state. If
26561 the OUT bit is read as set, or if the date and time are not valid, then the
26562 RTC is assumed to have lost power, and its date and time are reset to
26563 1900-01-01 00:00:00.
26564
26565 Support for adjusting the speed of the clock to improve accuracy is
26566 provided through an environment variable.
26567
26568 Signed-off-by: Larry Johnson <lrj@acm.org>
26569
26570 commit d3471173e14b7544bb60339eda8d3d3906694b0a
26571 Author: Larry Johnson <lrj@arlinx.com>
26572 Date: Sat Dec 22 15:34:39 2007 -0500
26573
26574 Use out_be32() and friends to access memory-mapped registers in sequoia.c
26575
26576 Signed-off-by: Larry Johnson <lrj@acm.org>
26577
26578 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
26579 Author: Larry Johnson <lrj@arlinx.com>
26580 Date: Sat Dec 22 15:34:20 2007 -0500
26581
26582 Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
26583
26584 Signed-off-by: Larry Johnson <lrj@acm.org>
26585
26586 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
26587 Author: Larry Johnson <lrj@arlinx.com>
26588 Date: Sat Dec 22 15:23:50 2007 -0500
26589
26590 Cosmetic changes to ECC POST for AMCC Denali core
26591
26592 Signed-off-by: Larry Johnson <lrj@acm.org>
26593
26594 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
26595 Author: Stefan Roese <sr@denx.de>
26596 Date: Wed Dec 26 20:20:19 2007 +0100
26597
26598 ppc4xx: Fix compilation problem in 405 cache POST test
26599
26600 Signed-off-by: Stefan Roese <sr@denx.de>
26601
26602 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
26603 Author: Stefan Roese <sr@denx.de>
26604 Date: Sat Dec 22 12:20:09 2007 +0100
26605
26606 ppc4xx: Move virtual address of POST cache test to bigger address
26607
26608 On Sequoia & LWMON5 the virtual address of the POST cache test is now
26609 moved to a bigger address. This enables usage of more memory on those
26610 boards.
26611
26612 Signed-off-by: Stefan Roese <sr@denx.de>
26613
26614 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
26615 Author: Stefan Roese <sr@denx.de>
26616 Date: Sat Dec 22 12:18:26 2007 +0100
26617
26618 ppc4xx: Fix problem in 44x cache POST routine
26619
26620 As repoted by Larry Johnson, running "diag run cache" caused a crash
26621 in U-Boot. This problem was introduced by a patch that removed the
26622 TLB entry for the cache test after the test has completed. Since this
26623 TLB was only setup once, a 2nd attempt to run this cache test
26624 failed with a crash. Now this TLB entry is created every time the
26625 routine is called.
26626
26627 Signed-off-by: Stefan Roese <sr@denx.de>
26628
26629 commit b0265b576bb8fa9465f99e99c323768b562fadc2
26630 Author: Stefan Roese <sr@denx.de>
26631 Date: Fri Dec 21 07:51:29 2007 +0100
26632
26633 ppc4xx: Update Makalu fdt support
26634
26635 Signed-off-by: Stefan Roese <sr@denx.de>
26636
26637 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
26638 Author: Stefan Roese <sr@denx.de>
26639 Date: Wed Dec 19 09:05:40 2007 +0100
26640
26641 ppc4xx: Add fdt support to AMCC Katmai eval board
26642
26643 Signed-off-by: Stefan Roese <sr@denx.de>
26644
26645 commit 328a340392a5df9aaf00792be989df73e750859e
26646 Author: Stefan Roese <sr@denx.de>
26647 Date: Tue Dec 18 08:44:51 2007 +0100
26648
26649 ppc4xx: fdt: Cleanup setup of cpu node setup
26650
26651 Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
26652 without using the absolute path to the cpu node. This makes it possible
26653 to use this U-Boot version with both versions of cpu-node naming
26654 "cpu@0" and the former "PowerPC,440EPx@0".
26655
26656 Signed-off-by: Stefan Roese <sr@denx.de>
26657
26658 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
26659 Author: Stefan Roese <sr@denx.de>
26660 Date: Mon Dec 17 17:26:21 2007 +0100
26661
26662 ppc4xx: Fix lwmon5 compilation problem
26663
26664 Now that the 440EPx ECC test is not board specific anymore
26665 remove this Makefile.
26666
26667 Signed-off-by: Stefan Roese <sr@denx.de>
26668
26669 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
26670 Author: Anatolij Gustschin <agustschin@t-online.de>
26671 Date: Wed Dec 5 17:43:20 2007 +0100
26672
26673 Fix ppc4xx clear_bss() code
26674
26675 ppc4xx clear_bss() fails if BSS segment size is not
26676 divisible by 4 without remainder. This patch provides
26677 fix for this problem.
26678
26679 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26680
26681 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
26682 Author: Niklaus Giger <niklausgiger@gmx.ch>
26683 Date: Fri Nov 30 18:35:11 2007 +0100
26684
26685 PPC4xx: Minimal changes to add vxWorks support
26686
26687 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26688
26689 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
26690 Author: Markus Klotzbücher <mk@denx.de>
26691 Date: Fri Nov 23 13:09:18 2007 +0100
26692
26693 ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
26694
26695 When using dhcp/bootp the "netmask" environment variable is not
26696 set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
26697 desireable, so the following patch adds this this option to the board
26698 config.
26699
26700 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
26701 Signed-off-by: Stefan Roese <sr@denx.de>
26702
26703 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
26704 Author: Larry Johnson <lrj@arlinx.com>
26705 Date: Sat Oct 27 12:48:15 2007 -0400
26706
26707 Fix/enhance ECC POST for 440EPx/GRx
26708
26709 This patch allows the ECC POST to be used for different boards with the
26710 PPC440 Denali SDRAM controller. Modifications include skipping the test
26711 if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
26712 to prevent timing errors.
26713
26714 Signed-off-by: Larry Johnson <lrj@acm.org>
26715
26716 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
26717 Author: Larry Johnson <lrj@arlinx.com>
26718 Date: Sat Oct 27 12:48:05 2007 -0400
26719
26720 PPC4xx: Move/rename ECC POST for 440EPx/GRx
26721
26722 Signed-off-by: Larry Johnson <lrj@acm.org>
26723
26724 commit c29d2d3680046d430022c55e50fcb27f5866517e
26725 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26726 Date: Fri Dec 14 11:20:33 2007 +0100
26727
26728 ppc4xx: use correct io accessors for 4xx ethernet POST
26729
26730 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26731
26732 commit ba79fde58a48c0a6ff8e2a96caba951594142203
26733 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26734 Date: Fri Dec 14 11:19:56 2007 +0100
26735
26736 ppc4xx: fix flush + invalidate_dcache_range arguments
26737
26738 flush + invalidate_dcache_range() expect the start and stop+1 address.
26739 So the stop address is the first address behind (!) the range.
26740
26741 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26742
26743 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
26744 Author: Stefan Roese <sr@denx.de>
26745 Date: Fri Dec 14 08:41:29 2007 +0100
26746
26747 ppc4xx: fdt: use fdt_fixup_ethernet()
26748
26749 By using aliases in the dts file, the ethernet node fixup is
26750 much easier with the recently added functions.
26751
26752 Please note that the dts file needs the aliases for this to work.
26753
26754 Signed-off-by: Stefan Roese <sr@denx.de>
26755
26756 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
26757 Author: Stefan Roese <sr@denx.de>
26758 Date: Thu Dec 13 14:52:53 2007 +0100
26759
26760 ppc4xx: Bring 4xx fdt support up-to-date
26761
26762 This patch update the 4xx fdt support. It enabled fdt booting
26763 on the AMCC Kilauea and Sequoia for now. More can follow later
26764 quite easily.
26765
26766 Signed-off-by: Stefan Roese <sr@denx.de>
26767
26768 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
26769 Author: Stefan Roese <sr@denx.de>
26770 Date: Thu Dec 27 07:50:54 2007 +0100
26771
26772 cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
26773
26774 The check for an sufficiently erased destination was missing in the
26775 buffered write function of the cfi flash driver (when
26776 CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
26777 writing to such a region will fail with the currect error message.
26778
26779 Signed-off-by: Stefan Roese <sr@denx.de>
26780
26781 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
26782 Author: Martin Krause <martin.krause@tqs.de>
26783 Date: Mon Nov 12 10:56:17 2007 +0100
26784
26785 Some configuration updates for the TQM5200 based TB5200 board:
26786
26787 - enable command line history
26788 - increase malloc space (because of bigger flash sectors)
26789
26790 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26791
26792 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
26793 Author: Martin Krause <martin.krause@tqs.de>
26794 Date: Thu Sep 27 11:10:08 2007 +0200
26795
26796 TQM8xx: use the CFI flash driver on all TQM8xx boards
26797
26798 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26799
26800 commit 11d9eec479b470eab9242ab937fca70a876d9376
26801 Author: Martin Krause <martin.krause@tqs.de>
26802 Date: Wed Sep 26 17:55:56 2007 +0200
26803
26804 TQM885D: adjust for doubled flash sector size + some minor fixes
26805
26806 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26807
26808 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
26809 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
26810 Date: Wed Sep 26 17:55:54 2007 +0200
26811
26812 TQM885D: Exchanged SDRAM timing by a more relaxed timing.
26813
26814 CAS-Latency=2, Write Recovery Time tWR=2
26815 The max. supported bus frequency is 66 MHz. Therefore, changed
26816 threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
26817
26818 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26819
26820 commit b988b8cd443989be65161888eea0127ad03f846f
26821 Author: Martin Krause <martin.krause@tqs.de>
26822 Date: Wed Sep 26 17:55:56 2007 +0200
26823
26824 TQM885D: use calculated cpuclk instead of measuring it
26825
26826 On the TQM885D the measurement of cpuclk with the PIT reference
26827 timer ist not necessary. Since all module variants use the same
26828 external 10 MHz oscillator, the cpuclk only depends on the PLL
26829 configuration - which is readable by software.
26830
26831 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26832
26833 commit 492c7049869348d31168de8dad89651315e468e0
26834 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
26835 Date: Thu Sep 27 14:54:46 2007 +0200
26836
26837 TQM885D: fix SDRAM refresh
26838
26839 At 133 MHz the current SDRAM refresh rate is too fast
26840 (measured 4 * 1.17 us).
26841 CFG_MAMR_PTA changes from 39 to 128. This result
26842 in a refresh rate of 4 * 7.8 us at the default clock
26843 66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
26844 This is a compromise until a new method is found to
26845 adjust the refresh rate.
26846
26847 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26848
26849 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
26850 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
26851 Date: Thu Sep 27 14:54:46 2007 +0200
26852
26853 TQM860M: Support for 10col SDRAMs, max. 128 MiB
26854
26855 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26856
26857 commit 61fb15c516fef5631e305f1976d7b3a679725856
26858 Author: Wolfgang Denk <wd@denx.de>
26859 Date: Thu Dec 27 01:52:50 2007 +0100
26860
26861 Fix coding style issues; update CHANGELOG.
26862
26863 Signed-off-by: Wolfgang Denk <wd@denx.de>
26864
26865 commit 467bcee11fe26ad422f2de971aa70866079870f2
26866 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26867 Date: Fri Dec 14 15:36:18 2007 +0100
26868
26869 cfi_flash: Add manufacturer-specific fixups
26870
26871 Run fixups based on the JEDEC manufacturer ID independent of the
26872 command set ID.
26873
26874 This changes current behaviour: Previously, geometry reversal for AMD
26875 chips were done based on the command set ID, while they are now done
26876 based on the JEDEC manufacturer and device ID.
26877
26878 Also add fixup for top-boot Atmel chips. A fixup is needed for
26879 AT49BV6416(T) too, but since u-boot currently only reads the low byte
26880 of the device ID, there's no way to tell it apart from AT49BV642D,
26881 which should not have this fixup. Since AT49BV642D support is
26882 necessary to get ATNGW100 board support into mainline, I've commented
26883 out the fixup for now.
26884
26885 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26886
26887 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
26888 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26889 Date: Fri Dec 14 15:36:17 2007 +0100
26890
26891 cfi_flash: Add cmdset-specific init functions
26892
26893 Move things like reading JEDEC IDs and fixing up geometry reversal
26894 into separate functions. The geometry reversal fixup is now performed
26895 by altering the qry structure directly, which makes the sector init
26896 code slightly cleaner.
26897
26898 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26899
26900 commit e23741f4a6d8047520ef0d4971762749b3587d32
26901 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26902 Date: Fri Dec 14 15:36:16 2007 +0100
26903
26904 cfi_flash: Read whole QRY structure in one go
26905
26906 Read out the whole CFI Standard Query structure after successful cfi
26907 identification. This allows subsequent code to access this information
26908 directly without having to go through flash_read_uchar() and friends.
26909
26910 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26911
26912 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
26913 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26914 Date: Mon Dec 17 11:02:44 2007 +0100
26915
26916 AVR32: Fix logic inversion in disable_interrupts()
26917
26918 disable_interrupts() should return nonzero if interrupts were
26919 _enabled_ before, not disabled.
26920
26921 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26922
26923 commit acac475212cbedb17b321a363a1c878e2b47b37f
26924 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26925 Date: Fri Dec 14 16:51:22 2007 +0100
26926
26927 AVR32: Enable interrupts at bootup
26928
26929 The timer code depends on the timer interrupt to keep track of the
26930 upper 32 bits of the cycle counter. This obviously doesn't work when
26931 interrupts are disabled the whole time.
26932
26933 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26934
26935 commit 9570bcd87f4db255514f43b6701746c412f8fef0
26936 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26937 Date: Thu Nov 15 10:03:45 2007 +0100
26938
26939 AVR32: Fix wrong pin setup for USART3
26940
26941 As reported by Gerhard Berghofer:
26942
26943 in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
26944 instead of PB18 and PB19.
26945
26946 which is obviously correct. There's currently no code that uses
26947 USART3, but custom boards may run into problems.
26948
26949 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26950
26951 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
26952 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26953 Date: Thu Nov 1 12:44:20 2007 +0100
26954
26955 README: Remove ATSTK1000 daughterboard list
26956
26957 As noted by Kim Phillips, these lists tend to become out of date.
26958
26959 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26960
26961 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
26962 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26963 Date: Tue Oct 30 14:56:36 2007 +0100
26964
26965 Add ATSTK100[234] to MAINTAINERS
26966
26967 Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
26968 "mother". Also update the entry for ATSTK1000 to be not only about the
26969 AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
26970
26971 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26972
26973 commit 64ff2357b1727213803591813dbc779c924bf772
26974 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26975 Date: Mon Oct 29 13:02:54 2007 +0100
26976
26977 AVR32: Add support for the ATSTK1004 board
26978
26979 ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
26980 which is a derivative of AT32AP7000.
26981
26982 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26983
26984 commit 667568db157f374b85abd7e03596ddd1f0b25681
26985 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26986 Date: Mon Oct 29 13:02:54 2007 +0100
26987
26988 AVR32: Add support for the ATSTK1003 board
26989
26990 ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
26991 which is a derivative of AT32AP7000.
26992
26993 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26994
26995 commit 5fee84a794a51ec830548cda485a770efb018b92
26996 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26997 Date: Mon Oct 29 13:23:33 2007 +0100
26998
26999 AVR32: Make some AT32AP700x peripherals optional
27000
27001 Add a chip-features file providing definitions of the form
27002
27003 AT32AP700x_CHIP_HAS_<peripheral>
27004
27005 to indicate the availability of the given peripheral on the currently
27006 selected chip.
27007
27008 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27009
27010 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
27011 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27012 Date: Mon Oct 29 13:09:56 2007 +0100
27013
27014 AVR32: Rename at32ap7000 -> at32ap700x
27015
27016 The SoC-specific code for all the AT32AP700x CPUs is practically
27017 identical; the only difference is that some chips have less features
27018 than others. By doing this rename, we can add support for the AP7000
27019 derivatives simply by making some features conditional.
27020
27021 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27022
27023 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
27024 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27025 Date: Fri Jun 29 18:22:34 2007 +0200
27026
27027 atmel_mci: Show SR when block read fails
27028
27029 Show controller status as well as card status when an error occurs
27030 during block read.
27031
27032 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27033
27034 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
27035 Author: Stefan Roese <sr@denx.de>
27036 Date: Thu Dec 13 14:52:53 2007 +0100
27037
27038 ppc4xx: Bring 4xx fdt support up-to-date
27039
27040 This patch update the 4xx fdt support. It enabled fdt booting
27041 on the AMCC Kilauea and Sequoia for now. More can follow later
27042 quite easily.
27043
27044 Signed-off-by: Stefan Roese <sr@denx.de>
27045
27046 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
27047 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27048 Date: Thu Dec 13 12:56:34 2007 +0100
27049
27050 cfi_flash: Use map_physmem() and unmap_physmem()
27051
27052 Use map_physmem() and unmap_physmem() to convert from physical to
27053 virtual addresses. This gives the arch a chance to provide an uncached
27054 mapping for flash accesses.
27055
27056 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27057
27058 commit 4d7d6936eb29af7cca330937808312aa5f61454d
27059 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27060 Date: Thu Dec 13 12:56:33 2007 +0100
27061
27062 Introduce map_physmem() and unmap_physmem()
27063
27064 map_physmem() returns a virtual address which can be used to access a
27065 given physical address without involving the cache. unmap_physmem()
27066 should be called when the virtual address returned by map_physmem() is
27067 no longer needed.
27068
27069 This patch adds a stub implementation which simply returns the
27070 physical address cast to a uchar * for all architectures except AVR32,
27071 which converts the physical address to an uncached virtual mapping.
27072 unmap_physmem() is a no-op on all architectures, but if any
27073 architecture needs to do such mappings through the TLB, this is the
27074 hook where those TLB entries can be invalidated.
27075
27076 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27077
27078 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
27079 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27080 Date: Thu Dec 13 12:56:32 2007 +0100
27081
27082 cfi_flash: Introduce read and write accessors
27083
27084 Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
27085 them to access the flash memory. This makes it clearer when the flash
27086 is actually being accessed; merely dereferencing a volatile pointer
27087 looks just like any other kind of access.
27088
27089 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27090
27091 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
27092 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27093 Date: Thu Dec 13 12:56:31 2007 +0100
27094
27095 Implement __raw_{read,write}[bwl] on all architectures
27096
27097 This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
27098 m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
27099 from Linux.
27100
27101 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27102
27103 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
27104 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27105 Date: Sat Oct 6 18:55:36 2007 +0200
27106
27107 cfi_flash: Reorder functions and eliminate extra prototypes
27108
27109 Reorder the functions in cfi_flash.c so that each function only uses
27110 functions that have been defined before it. This allows the static
27111 prototype declarations near the top to be eliminated and might allow
27112 gcc to do a better job inlining functions.
27113
27114 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27115
27116 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
27117 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27118 Date: Thu Dec 13 12:56:29 2007 +0100
27119
27120 cfi_flash: Make some needlessly global functions static
27121
27122 Make functions not declared in any header file static.
27123
27124 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27125
27126 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
27127 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27128 Date: Thu Dec 13 12:56:28 2007 +0100
27129
27130 cfi_flash: Break long lines
27131
27132 This patch tries to keep all lines in the cfi_flash driver below 80
27133 columns. There are a few lines left which don't fit this requirement
27134 because I couldn't find any trivial way to break them (i.e. it would
27135 take some restructuring, which I intend to do in a later patch.)
27136
27137 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27138
27139 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
27140 Author: Bartlomiej Sieka <tur@semihalf.com>
27141 Date: Tue Dec 11 13:59:57 2007 +0100
27142
27143 CFI: synchronize command offsets with Linux CFI driver
27144
27145 Fixes non-working CFI Flash on the Inka4x0 board.
27146
27147 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
27148
27149 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
27150 Author: Kumar Gala <galak@kernel.crashing.org>
27151 Date: Fri Dec 7 12:17:34 2007 -0600
27152
27153 Handle MPC85xx PCIe reset errata (PCI-Ex 38)
27154
27155 On the MPC85xx boards that have PCIe enable the PCIe errata fix.
27156 (MPC8544DS, MPC8548CDS, MPC8568MDS).
27157
27158 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27159
27160 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
27161 Author: Kumar Gala <galak@kernel.crashing.org>
27162 Date: Fri Dec 7 12:04:30 2007 -0600
27163
27164 Update Freescale MPC85xx ADS/CDS/MDS board config
27165
27166 * Enabled CONFIG_CMD_ELF
27167
27168 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27169
27170 commit d435793229ce29a42797c1edc39f5b34f987f91a
27171 Author: Kumar Gala <galak@kernel.crashing.org>
27172 Date: Fri Dec 7 04:59:26 2007 -0600
27173
27174 Handle Asynchronous DDR clock on 85xx
27175
27176 The MPC8572 introduces the concept of an asynchronous DDR clock with
27177 regards to the platform clock.
27178
27179 Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
27180 mode.
27181
27182 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27183
27184 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
27185 Author: Kumar Gala <galak@kernel.crashing.org>
27186 Date: Thu Nov 29 10:34:28 2007 -0600
27187
27188 Update Freescale MPC85xx ADS/CDS/MDS board config
27189
27190 * Removed some misc environment setup
27191 * Enabled CONFIG_CMDLINE_EDITING
27192
27193 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27194
27195 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
27196 Author: Kumar Gala <galak@kernel.crashing.org>
27197 Date: Thu Nov 29 10:47:44 2007 -0600
27198
27199 Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
27200
27201 Minor path corrections needed to ensure buildability.
27202
27203 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27204
27205 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
27206 Author: Kumar Gala <galak@kernel.crashing.org>
27207 Date: Thu Nov 29 10:16:18 2007 -0600
27208
27209 Move the MPC8540 ADS board under board/freescale.
27210
27211 Minor path corrections needed to ensure buildability.
27212
27213 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27214
27215 commit 870ceac5b3a3486c109396e005af81ae762b5710
27216 Author: Kumar Gala <galak@kernel.crashing.org>
27217 Date: Thu Nov 29 10:14:50 2007 -0600
27218
27219 Move the MPC8560 ADS board under board/freescale.
27220
27221 Minor path corrections needed to ensure buildability.
27222
27223 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27224
27225 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
27226 Author: Kumar Gala <galak@kernel.crashing.org>
27227 Date: Thu Nov 29 10:13:47 2007 -0600
27228
27229 Move the MPC8568 MDS board under board/freescale.
27230
27231 Minor path corrections needed to ensure buildability.
27232
27233 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27234
27235 commit a853d56c59b33415304531443633808736acfc6e
27236 Author: Kumar Gala <galak@kernel.crashing.org>
27237 Date: Thu Nov 29 02:18:59 2007 -0600
27238
27239 Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
27240
27241 We already had defines for LAWAR_TRGT_IF_* that we should use
27242 rather than creating new ones. Also, added some missing defines for
27243 PCIE targets.
27244
27245 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27246
27247 commit 04db400892da37b76a585e332a0c137954ad2015
27248 Author: Kumar Gala <galak@kernel.crashing.org>
27249 Date: Thu Nov 29 02:10:09 2007 -0600
27250
27251 Stop using immap_t on 85xx
27252
27253 In the future the offsets to various blocks may not be in same location.
27254 Move to using CFG_MPC85xx_*_ADDR as the base of the registers
27255 instead of getting it via &immap.
27256
27257 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27258
27259 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
27260 Author: Kumar Gala <galak@kernel.crashing.org>
27261 Date: Thu Nov 29 01:23:09 2007 -0600
27262
27263 Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
27264
27265 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27266
27267 commit c480861bf000156e6a3e932c258db59ff2212dd3
27268 Author: Kumar Gala <galak@kernel.crashing.org>
27269 Date: Thu Nov 29 01:06:19 2007 -0600
27270
27271 Update MPC8568 MDS to use libfdt
27272
27273 Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
27274 ethernet, pci, and serial for the various fixups that are done.
27275
27276 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27277
27278 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
27279 Author: Haiying Wang <Haiying.Wang@freescale.com>
27280 Date: Wed Nov 14 15:52:06 2007 -0500
27281
27282 Add PCI Express support on MPC8568MDS
27283
27284 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27285 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27286
27287 commit b90d25497625b90ffa3f2911a0895ca237556ff5
27288 Author: Kumar Gala <galak@kernel.crashing.org>
27289 Date: Thu Nov 29 00:11:44 2007 -0600
27290
27291 Update MPC85xx CDS to use libfdt
27292
27293 Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
27294 ethernet, pci, and serial for the various fixups that are done.
27295
27296 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27297
27298 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
27299 Author: Kumar Gala <galak@kernel.crashing.org>
27300 Date: Wed Nov 28 22:54:27 2007 -0600
27301
27302 Update MPC8540 ADS to use libfdt
27303
27304 Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
27305 ethernet, pci, and serial for the various fixups that are done.
27306
27307 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27308
27309 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
27310 Author: Kumar Gala <galak@kernel.crashing.org>
27311 Date: Wed Nov 28 22:40:31 2007 -0600
27312
27313 Update MPC8560 ADS to use libfdt
27314
27315 Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
27316 ethernet, pci, and serial for the various fixups that are done.
27317
27318 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27319
27320 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
27321 Author: Kumar Gala <galak@kernel.crashing.org>
27322 Date: Wed Nov 28 00:36:33 2007 -0600
27323
27324 Stop using immap_t for cpm offset on 85xx
27325
27326 In the future the offsets to various blocks may not be in same location.
27327 Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
27328 instead of getting it via &immap->im_cpm.
27329
27330 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27331
27332 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
27333 Author: Kumar Gala <galak@kernel.crashing.org>
27334 Date: Tue Nov 27 23:25:02 2007 -0600
27335
27336 Stop using immap_t for guts offset on 85xx
27337
27338 In the future the offsets to various blocks may not be in same location.
27339 Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
27340 instead of getting it via &immap->im_gur.
27341
27342 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27343
27344 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
27345 Author: Kumar Gala <galak@kernel.crashing.org>
27346 Date: Tue Nov 27 22:42:34 2007 -0600
27347
27348 Update MPC8544 DS config
27349
27350 * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
27351 * Removed some misc environment setup
27352 * Moved to using fdtfile & fdtaddr as fdt env var names
27353 * Enabled CONFIG_CMDLINE_EDITING
27354
27355 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27356
27357 commit addce57e2e4c49e77ffb2020a84690713bb18b47
27358 Author: Kumar Gala <galak@kernel.crashing.org>
27359 Date: Mon Nov 26 17:12:24 2007 -0600
27360
27361 Update MPC8544DS to use libfdt
27362
27363 Updated the MPC8544DS config to use libfdt and assume use of aliases for
27364 ethernet, pci, and serial for the various fixups that are done.
27365
27366 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27367
27368 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
27369 Author: Kumar Gala <galak@kernel.crashing.org>
27370 Date: Thu Nov 29 00:15:30 2007 -0600
27371
27372 Add libfdt based ft_cpu_setup for mpc85xx
27373
27374 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27375
27376 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
27377 Author: Stefan Roese <sr@denx.de>
27378 Date: Tue Dec 11 13:38:19 2007 +0100
27379
27380 ppc4xx: Correct GPIO offset in gpio_config()
27381
27382 Thanks to Gary Jennejohn for pointing this out.
27383
27384 Signed-off-by: Stefan Roese <sr@denx.de>
27385
27386 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
27387 Author: Stefan Roese <sr@denx.de>
27388 Date: Tue Dec 11 11:46:01 2007 +0100
27389
27390 rtc: Fix merging problem
27391
27392 Signed-off-by: Stefan Roese <sr@denx.de>
27393
27394 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
27395 Author: Stefan Roese <sr@denx.de>
27396 Date: Sat Dec 8 14:47:34 2007 +0100
27397
27398 ppc4xx: 405EX: Correctly enable USB pins
27399
27400 This patch selects the USB data pins in the 405EX GPIO and MFC (multi
27401 function control) registers. This is done for the AMCC Kilauea and
27402 Makalu eval boards.
27403
27404 Signed-off-by: Stefan Roese <sr@denx.de>
27405
27406 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
27407 Author: Stefan Roese <sr@denx.de>
27408 Date: Sat Dec 8 08:25:09 2007 +0100
27409
27410 CFI: Coding style cleanup
27411
27412 Signed-off-by: Stefan Roese <sr@denx.de>
27413
27414 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
27415 Author: Michael Schwingen <michael@schwingen.org>
27416 Date: Fri Dec 7 23:35:02 2007 +0100
27417
27418 CFI: support JEDEC flash roms in CFI-flash framework
27419
27420 The following patch adds support for non-CFI flash ROMS, by hooking into the
27421 CFI flash code and using most of its code, as recently discussed here in the
27422 thread "Mixing CFI and non-CFI flashs".
27423
27424 Signed-off-by: Michael Schwingen <michael@schwingen.org>
27425 Signed-off-by: Stefan Roese <sr@denx.de>
27426
27427 commit c01b17dd856fa120b2970f50d9598546a4927ec3
27428 Author: Gerald Van Baren <vanbaren@cideas.com>
27429 Date: Wed Nov 28 21:24:50 2007 -0500
27430
27431 Conditionally compile fdt_fixup_ethernet()
27432
27433 Fix compiler warnings: On boards that don't have ethernets defined,
27434 don't compile fdt_fixup_ethernet().
27435
27436 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
27437 Author: Kumar Gala <galak@kernel.crashing.org>
27438 Date: Tue Nov 27 21:59:46 2007 -0600
27439
27440 Convert boards that set memory node to use fdt_fixup_memory()
27441
27442 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27443
27444 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
27445 Author: Kumar Gala <galak@kernel.crashing.org>
27446 Date: Mon Nov 26 17:06:15 2007 -0600
27447
27448 Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
27449
27450 We use a combination of the serialN alias and CONFIG_CONS_INDEX to
27451 determine which serial alias we should set linux,stdout-path to.
27452
27453 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27454
27455 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
27456 Author: Kumar Gala <galak@kernel.crashing.org>
27457 Date: Mon Nov 26 14:57:45 2007 -0600
27458
27459 Add common memory fixup function
27460
27461 Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
27462
27463 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27464
27465 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
27466 Author: Kumar Gala <galak@kernel.crashing.org>
27467 Date: Mon Nov 26 11:19:12 2007 -0600
27468
27469 Conditionally compile fdt_support.c
27470
27471 Modify common/Makefile to conditionally compile fdt_support.c based
27472 on CONFIG_OF_LIBFDT.
27473
27474 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27475
27476 commit d88e7ba0980773479e1a64badb293116071b7ef0
27477 Author: Kumar Gala <galak@kernel.crashing.org>
27478 Date: Mon Nov 26 10:41:40 2007 -0600
27479
27480 Fix build breakage due to libfdt import
27481
27482 The IDS8247 got lost in the update and need an API update
27483 do to rename of functions in libfdt.
27484
27485 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27486
27487 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
27488 Author: Gerald Van Baren <vanbaren@cideas.com>
27489 Date: Fri Nov 23 19:43:20 2007 -0500
27490
27491 Add spaces around the = in the fdt print format.
27492
27493 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27494
27495 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
27496 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27497 Date: Fri Dec 7 01:25:38 2007 +0900
27498
27499 sh: Moved driver of the SuperH dependence
27500
27501 The composition of the directory in the drivers/ changed.
27502 I moved SuperH serial driver and marubun PCMCIA driver.
27503
27504 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27505
27506 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
27507 Author: Wolfgang Denk <wd@denx.de>
27508 Date: Thu Dec 6 10:21:19 2007 +0100
27509
27510 Release v1.3.1
27511
27512 Signed-off-by: Wolfgang Denk <wd@denx.de>
27513
27514 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
27515 Author: Wolfgang Denk <wd@denx.de>
27516 Date: Thu Dec 6 10:21:03 2007 +0100
27517
27518 ADS5121 Board: fix compile problem.
27519
27520 Signed-off-by: Wolfgang Denk <wd@denx.de>
27521
27522 commit a27044b14a9e93678a82d7b35f202b93e7687abc
27523 Author: Stefan Roese <sr@denx.de>
27524 Date: Thu Dec 6 05:58:43 2007 +0100
27525
27526 ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
27527
27528 This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
27529 setting the FIXD bit in the SDR0_MFR register. Here a description of the
27530 symptoms:
27531
27532 Problem Description
27533 ------------------------------
27534 If a DMA is performed between memory and PCI with the DMA 1 Controller
27535 using prefetch, and as a result uses a special purpose buffer selected by
27536 the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
27537 the first part of the transfer sequence is performed twice. The
27538 PPC440SPe PCI Controller requests more data than was needed such that in
27539 the case of enforce memory protection, a host CPU exception can occur.
27540 No data is corrupted, because data transfer is stopped in the PCI
27541 Controller. Prefetch enable is specified by setting DMA Configuration
27542 Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
27543
27544 Behavior that may be observed in a running system
27545 ---------------------------------------------------------------------------
27546
27547 1. DMA performance is decreased because of the double access on the PCI bus
27548 interface.
27549 2. If an illegal access to some address on the PCI bus is detected at the
27550 system level, a machine check or similar system error may occur.
27551
27552 Workarounds Available
27553 ----------------------------------
27554
27555 1. Do not program prefetch. Note that a prefetch command cannot be programmed
27556 without selecting a special purpose buffer.
27557 2. To avoid crossing a physical boundary of the PCI slave device, add 512
27558 bytes of address to the PCI address range.
27559
27560 This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
27561 from AMCC and slighly changed.
27562
27563 Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
27564 Signed-off-by: Stefan Roese <sr@denx.de>
27565
27566 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
27567 Author: Stefan Roese <sr@denx.de>
27568 Date: Tue Dec 4 16:29:48 2007 +0100
27569
27570 ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
27571
27572 Signed-off-by: Stefan Roese <sr@denx.de>
27573
27574 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
27575 Author: Wolfgang Denk <wd@denx.de>
27576 Date: Mon Dec 3 00:15:28 2007 +0100
27577
27578 Prepare for 1.3.1-rc1
27579
27580 Signed-off-by: Wolfgang Denk <wd@denx.de>
27581
27582 commit e15e33433e7c05111968dc9b434a52fd42cbd221
27583 Author: Stefan Roese <sr@denx.de>
27584 Date: Fri Nov 30 07:15:41 2007 +0100
27585
27586 ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
27587
27588 This manual PCIe reset triggering solves the problem seen with the
27589 Intel EPRO/1000 card, which was not detected (link not established)
27590 upon power-up reset.
27591
27592 Signed-off-by: Stefan Roese <sr@denx.de>
27593
27594 commit 260eea5676ca46903a335686cc020b29c4ca46fe
27595 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27596 Date: Thu Nov 29 01:21:54 2007 +0900
27597
27598 sh: Add SuperH boards maintainer to MAINTAINERS file
27599
27600 Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
27601
27602 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27603
27604 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
27605 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27606 Date: Thu Nov 29 00:13:04 2007 +0900
27607
27608 sh: Add ms7750se support in MAKEALL
27609
27610 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27611
27612 commit c7144373427a178332bf9754131c8c34c52c200a
27613 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27614 Date: Tue Nov 27 09:44:53 2007 +0100
27615
27616 sh: Add sh3 and sh4 support in MAKEALL
27617
27618 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27619 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27620
27621 commit 130080874a3d28450098481a262c5f7c855e908d
27622 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27623 Date: Sun Nov 25 02:51:17 2007 +0900
27624
27625 sh: Add document for SuperH.
27626
27627 This document is a summary of information concerning SuperH of U-Boot.
27628
27629 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27630
27631 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
27632 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27633 Date: Sun Nov 25 02:39:31 2007 +0900
27634
27635 sh: Add marubun's pcmcia driver
27636
27637 Marubun pcmcia is a chip for PCMCIA used with SuperH.
27638 Of course, this can be used even by other architectures.
27639 When use this driver, came to be able to use CompactFlash
27640 and Ethernet.
27641
27642 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27643
27644 commit febd86b969b975289ed948f1ac0eb9722da41ced
27645 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27646 Date: Sun Nov 25 02:32:13 2007 +0900
27647
27648 sh: Update SuperH SCIF driver
27649
27650 - Changed volatile unsigned to vu_.
27651 - Changed Makefile for kconfig.
27652
27653 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27654
27655 commit 8be760903645af09871be50ad0a6f9ebb62b311d
27656 Author: Stefan Roese <sr@denx.de>
27657 Date: Tue Nov 27 11:57:35 2007 +0100
27658
27659 ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
27660
27661 After an error in the AMCC 405EX users manual now correctly configure
27662 IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
27663 usage.
27664
27665 Signed-off-by: Stefan Roese <sr@denx.de>
27666
27667 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
27668 Author: Wolfgang Denk <wd@denx.de>
27669 Date: Mon Nov 26 19:18:21 2007 +0100
27670
27671 Cleanup coding style; update CHANGELOG
27672
27673 Signed-off-by: Wolfgang Denk <wd@denx.de>
27674
27675 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
27676 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27677 Date: Sun Nov 25 22:39:25 2007 +0100
27678
27679 MAKEALL: add missing 512x boards in ppc
27680
27681 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27682
27683 commit a340c325e668ca7386c2276387681720be9c3757
27684 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27685 Date: Sun Nov 25 18:45:47 2007 +0100
27686
27687 Makefile : fix tags ctags etags with new drivers organization
27688
27689 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27690
27691 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
27692 Author: Stefan Roese <sr@denx.de>
27693 Date: Mon Nov 26 15:06:14 2007 +0100
27694
27695 ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
27696
27697 As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
27698 operation.
27699
27700 Signed-off-by: Stefan Roese <sr@denx.de>
27701
27702 commit ca1ce226287270bb01e25b8e3674c701f12edf19
27703 Author: Stefan Roese <sr@denx.de>
27704 Date: Mon Nov 26 15:01:45 2007 +0100
27705
27706 ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
27707
27708 Signed-off-by: Stefan Roese <sr@denx.de>
27709
27710 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
27711 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27712 Date: Sun Nov 25 18:45:47 2007 +0100
27713
27714 Makefile : fix tags ctags etags with new drivers organization
27715
27716 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27717
27718 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
27719 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27720 Date: Sat Nov 24 21:26:56 2007 +0100
27721
27722 drivers/mtd : move mtd drivers to drivers/mtd
27723
27724 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27725
27726 commit 318c0b90431f2648552e5ade78833f42652ce859
27727 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27728 Date: Sat Nov 24 21:17:55 2007 +0100
27729
27730 drivers/misc : move misc drivers to drivers/misc
27731
27732 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27733
27734 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
27735 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27736 Date: Sat Nov 24 21:13:59 2007 +0100
27737
27738 drivers/block : move block drivers to drivers/block
27739
27740 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27741
27742 commit 0c698dcaa70275eb8814f665b545547cee013892
27743 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27744 Date: Sat Nov 24 20:59:50 2007 +0100
27745
27746 drivers/rtc : move rtc drivers to drivers/rtc
27747
27748 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27749
27750 commit f868cc5a50757d94f36c312395481cb0f187d9e6
27751 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27752 Date: Sat Nov 24 20:14:44 2007 +0100
27753
27754 drivers/hwmon : move hardware monitor drviers to drivers/hwmon
27755
27756 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27757
27758 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
27759 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27760 Date: Sat Nov 24 19:46:45 2007 +0100
27761
27762 drivers/input : move input drivers to drivers/input
27763
27764 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27765
27766 commit e4558666293364fc3af1c1d9381ca933fa0f1275
27767 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27768 Date: Sat Nov 24 19:40:11 2007 +0100
27769
27770 drivers/usb : move usb drivers to drivers/usb
27771
27772 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27773
27774 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
27775 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27776 Date: Sat Nov 24 19:33:38 2007 +0100
27777
27778 drivers/serial : move serial drivers to drivers/serial
27779
27780 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27781
27782 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
27783 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27784 Date: Wed Nov 21 21:19:24 2007 +0100
27785
27786 drivers/net : move net drivers to drivers/net
27787
27788 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27789
27790 commit 352d259130b349fe9593b8dada641bd78a9659e5
27791 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27792 Date: Tue Nov 20 20:41:48 2007 +0100
27793
27794 drivers/video : move video drivers to drivers/video
27795
27796 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27797
27798 commit 73646217186aa17afc8e305c5f06f06dd335eaad
27799 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27800 Date: Tue Nov 20 20:33:09 2007 +0100
27801
27802 drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
27803
27804 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27805
27806 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
27807 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27808 Date: Tue Nov 20 20:28:09 2007 +0100
27809
27810 drivers/pci : move pci drivers to drivers/pci
27811
27812 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27813
27814 commit 9162352817579840d7802da6d85872b3ca003c97
27815 Author: Gerald Van Baren <vanbaren@cideas.com>
27816 Date: Thu Nov 22 17:23:23 2007 -0500
27817
27818 Fix fdt printing for updated libfdt
27819
27820 Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
27821
27822 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27823
27824 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
27825 Author: Kumar Gala <galak@kernel.crashing.org>
27826 Date: Wed Nov 21 13:30:15 2007 -0600
27827
27828 Add additional fdt fixup helper functions
27829
27830 Added the following fdt fixup helpers:
27831 * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
27832 * do_fixup_by_compat{_u32} - Find matching nodes by compat
27833
27834 The _u32 variants work the same only the property they are setting
27835 is know to be a 32-bit integer instead of a byte buffer.
27836
27837 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27838
27839 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
27840 Author: Kumar Gala <galak@kernel.crashing.org>
27841 Date: Wed Nov 21 11:11:03 2007 -0600
27842
27843 Add fdt_fixup_ethernet helper to set mac addresses
27844
27845 Added a fixup helper that uses aliases to set mac addresses
27846 in the device tree based on the bd_t
27847
27848 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27849
27850 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
27851 Author: Kumar Gala <galak@kernel.crashing.org>
27852 Date: Wed Nov 21 14:07:46 2007 -0600
27853
27854 Fix warnings from import of libfdt
27855
27856 cmd_fdt.c: In function fdt_print:
27857 cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
27858 cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
27859 cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
27860 cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
27861
27862 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27863
27864 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
27865 Author: Kumar Gala <galak@kernel.crashing.org>
27866 Date: Wed Oct 24 11:04:22 2007 -0500
27867
27868 Update libfdt from device tree compiler (dtc)
27869
27870 Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
27871 the device tree compiler (dtc) project.
27872
27873 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27874
27875 commit e93becf80d732b64aef81b23e8b6ece02c40533d
27876 Author: Kumar Gala <galak@kernel.crashing.org>
27877 Date: Sat Nov 3 19:46:28 2007 -0500
27878
27879 Move do_fixup* for libfdt into common code
27880
27881 Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
27882 into common/fdt_support.c and renamed:
27883
27884 do_fixup() -> do_fixup_by_path()
27885 do_fixup_u32() -> do_fixup_by_path_u32()
27886
27887 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27888
27889 commit f738b4a75998f42a7408defadc9baac7a31c92db
27890 Author: Kumar Gala <galak@kernel.crashing.org>
27891 Date: Thu Oct 25 16:15:07 2007 -0500
27892
27893 Make no options to fdt print default to '/'
27894
27895 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27896
27897 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
27898 Author: Kumar Gala <galak@kernel.crashing.org>
27899 Date: Wed Oct 24 10:21:57 2007 -0500
27900
27901 Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
27902
27903 Removed:
27904 fdt_node_is_compatible
27905 fdt_find_node_by_type
27906 fdt_find_compatible_node
27907
27908 To ease merge of newer libfdt as we aren't using them anywhere at this time.
27909
27910 Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
27911 reason.
27912
27913 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27914
27915 commit 98e2867cc85409b919f862e6c16026461ec955df
27916 Author: Grant Likely <grant.likely@secretlab.ca>
27917 Date: Wed Nov 21 09:19:37 2007 -0700
27918
27919 [BUILD] Remove libraries when updating autoconf.mk
27920
27921 Fix library problems caused by conditional compilation. Using
27922 autoconf.mk to decide which files to compile has caused a problem when
27923 changing configuration from one board to another without clearing out
27924 the library (*.a) files.
27925
27926 It used to be that the linker was always passed the same list of .o
27927 files when building the .a files. However, that is not longer true
27928 with conditional compilation. Now, a different board config will have
27929 a different file list passed to the linker. The problem occurs when
27930 a library has already been built and the board config is changed.
27931
27932 Since the linker will update instead of replace a preexisting library,
27933 then if the file list changes to remove some object files the old
27934 objects will still exist in the library.
27935
27936 The solution is to remove all old library files when autoconf.mk is
27937 made.
27938
27939 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
27940
27941 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
27942 Author: Kumar Gala <galak@kernel.crashing.org>
27943 Date: Wed Nov 21 08:49:50 2007 -0600
27944
27945 [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
27946
27947 Modify libfdt/Makefile to conditionally compile the *.c files based
27948 on the board config.
27949
27950 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27951
27952 commit 4a43719a7738712811d822ca8125427b27a55cdc
27953 Author: Grant Likely <grant.likely@secretlab.ca>
27954 Date: Mon Sep 24 09:05:31 2007 -0600
27955
27956 [BUILD] conditionally compile common/cmd_*.c in common/Makefile
27957
27958 Modify common/Makefile to conditionally compile the cmd_*.c files based
27959 on the board config.
27960
27961 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
27962
27963 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
27964 Author: Grant Likely <grant.likely@secretlab.ca>
27965 Date: Mon Sep 24 09:05:31 2007 -0600
27966
27967 [BUILD] Generate include/autoconf.mk from board config files
27968
27969 Use cpp and sed to postprocess config.h and import the defined values
27970 into include/autoconf.mk. autoconf.mk is then included by config.mk to
27971 give 'make' access to the board configuration.
27972
27973 Doing this enables conditional compilation at the Makefile level instead
27974 of by wrapping every .c file with #ifdef/#endif wrappers.
27975
27976 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
27977
27978 commit 68b88999da87ab88e71e1306192905be3450198e
27979 Author: Jon Loeliger <jdl@freescale.com>
27980 Date: Tue Nov 20 15:02:26 2007 -0600
27981
27982 8610HPCD: Enable the 8610 Display Interface Unit
27983
27984 Signed-off-by: Jon Loeliger <jdl@freescale.com>
27985
27986 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
27987 Author: Jon Loeliger <jdl@freescale.com>
27988 Date: Tue Nov 20 15:00:53 2007 -0600
27989
27990 Move 8610 DIU interface structure definitions to header file.
27991
27992 These two structures are still needed during the
27993 initialization and setup of the DIU hardware.
27994 So move them to the fsl_diu_fb.h file for now.
27995 Official "blah".
27996
27997 Noticed-by: York Sun <yorksun@freescale.com>
27998 Signed-off-by: Jon Loeliger <jdl@freescale.com>
27999
28000 commit 080c646dbf474a109c3f85718fb01ce042a38c45
28001 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28002 Date: Tue Nov 20 20:14:18 2007 +0100
28003
28004 drivers/i2c : move i2c drivers to drivers/i2c
28005
28006 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28007
28008 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
28009 Author: Wolfgang Denk <wd@denx.de>
28010 Date: Mon Nov 19 22:20:24 2007 +0100
28011
28012 Prepare for 1.3.0 release.
28013
28014 Signed-off-by: Wolfgang Denk <wd@denx.de>
28015
28016 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
28017 Author: Haiying Wang <Haiying.Wang@freescale.com>
28018 Date: Mon Nov 19 10:02:13 2007 -0500
28019
28020 Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
28021
28022 CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
28023
28024 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
28025
28026 commit f8c320609366176b31104d9bf5e295232e1c7f1d
28027 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28028 Date: Mon Nov 19 11:14:16 2007 +0900
28029
28030 [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
28031
28032 lowlevel_init.S: Assembler messages:
28033 lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
28034
28035 Looking at codes, the `memtest' and `clearmem' are intentional mixed
28036 use of `global symbols' and `label' for debugging purpose. To make it
28037 build, just disable global-symbols-use for now. As a result `memtest'
28038 still remains as unused, but leave it be...
28039
28040 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28041
28042 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
28043 Author: Wolfgang Denk <wd@denx.de>
28044 Date: Mon Nov 19 12:59:14 2007 +0100
28045
28046 Fix build problems with mp2usb board
28047
28048 Signed-off-by: Wolfgang Denk <wd@denx.de>
28049
28050 commit 6bf4c686afca1e86e1c384d59218f914605713bf
28051 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28052 Date: Sun Nov 18 18:36:11 2007 +0100
28053
28054 s3c24x0: Fix usb_ohci.c missing in Makefile
28055 and usb_ohci.c warning differ in signedness
28056
28057 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28058
28059 commit 6073f61e078da5ddb521b56256bcc36508589883
28060 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28061 Date: Sun Nov 18 12:55:02 2007 +0100
28062
28063 pb1x00 board: Fix u16 status declaration when PCMCIA is defined
28064
28065 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28066
28067 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
28068 Author: Wolfgang Denk <wd@denx.de>
28069 Date: Sun Nov 18 17:11:09 2007 +0100
28070
28071 Fix compiler warnings for ARM systems.
28072
28073 Signed-off-by: Wolfgang Denk <wd@denx.de>
28074
28075 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
28076 Author: Wolfgang Denk <wd@denx.de>
28077 Date: Sun Nov 18 16:36:27 2007 +0100
28078
28079 Fix compiler warnings for PPC systems. Update CHANGELOG.
28080
28081 Signed-off-by: Wolfgang Denk <wd@denx.de>
28082
28083 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
28084 Author: Stefan Roese <sr@denx.de>
28085 Date: Sun Nov 18 14:44:44 2007 +0100
28086
28087 ppc4xx: Correct 405EX PCIe UTL register mapping
28088
28089 Map 4k mem space for UTL registers for each port.
28090
28091 Signed-off-by: Stefan Roese <sr@denx.de>
28092
28093 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
28094 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28095 Date: Sat Nov 17 11:31:10 2007 +0100
28096
28097 Fix warning differ in signedness in net/net.c and net/nfs.c
28098
28099 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
28100 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28101 Date: Sat Nov 17 20:42:45 2007 +0900
28102
28103 gth2.c: Fix a warning on gth2 build.
28104
28105 gth2.c: In function 'misc_init_r':
28106 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
28107
28108 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28109
28110 commit 2309c130aa4c84b91bd874a41269c923eb61b555
28111 Author: Stefan Roese <sr@denx.de>
28112 Date: Sat Nov 17 07:58:25 2007 +0100
28113
28114 Fix warning differ in signedness in common/cmd_scsi.c
28115
28116 Signed-off-by: Stefan Roese <sr@denx.de>
28117
28118 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
28119 Author: Stefan Roese <sr@denx.de>
28120 Date: Sat Nov 17 14:52:29 2007 +0100
28121
28122 ppc4xx: Update AMCC Kilauea config file
28123
28124 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
28125
28126 Signed-off-by: Stefan Roese <sr@denx.de>
28127
28128 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
28129 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28130 Date: Sat Nov 17 20:05:26 2007 +0900
28131
28132 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
28133
28134 Current trick to pick up GNU assembler minor version does not work with the
28135 latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
28136 "(GNU Binutils) ".
28137
28138 $ sde-as --version |grep "GNU assembler"
28139 GNU assembler 2.15.94 mipssde-6.02.02-20050602
28140 $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
28141 2.15.94
28142 $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
28143 15
28144 $
28145
28146 $ mips-linux-as --version |grep "GNU assembler"
28147 GNU assembler (GNU Binutils) 2.18
28148 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
28149 (GNU
28150 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
28151 (no output)
28152 $
28153
28154 As a result of above, you'll see many noises with such binutils:
28155
28156 make -C cpu/mips/
28157 /bin/sh: line 0: [: : integer expression expected
28158 /bin/sh: line 0: [: : integer expression expected
28159 make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
28160 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
28161 /bin/sh: line 0: [: : integer expression expected
28162 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
28163 /bin/sh: line 0: [: : integer expression expected
28164 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
28165 /bin/sh: line 0: [: : integer expression expected
28166
28167 This patch simplifies the trick and makes it work with both versions of gas.
28168 I also replace an expensive `awk (or gawk)' with `cut'.
28169
28170 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28171
28172 commit 16664f72850846e645616da1c0fa5afcd6d15f15
28173 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28174 Date: Sat Nov 17 20:05:26 2007 +0900
28175
28176 [MIPS] Remove useless instructions for initializing $gp.
28177
28178 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28179
28180 commit 03c031d5660ea946c39af6e2e16267da857c609f
28181 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28182 Date: Sat Oct 27 15:27:06 2007 +0900
28183
28184 [MIPS] MIPS 4K core: Coding style cleanups
28185
28186 No logical changes.
28187
28188 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28189
28190 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
28191 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28192 Date: Sat Nov 17 20:05:20 2007 +0900
28193
28194 [MIPS] gth2.c: Fix a warning on gth2 build.
28195
28196 gth2.c: In function 'misc_init_r':
28197 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
28198
28199 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28200
28201 commit 4fbd0741b2b6441da10be93e10267122581b7079
28202 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28203 Date: Sat Oct 27 15:22:33 2007 +0900
28204
28205 [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
28206
28207 au1x00_eth.c: In function 'au1x00_miiphy_write':
28208 au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
28209
28210 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28211
28212 commit f01320459736f156707425cf8112f98606301aa4
28213 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28214 Date: Sat Oct 27 15:00:25 2007 +0900
28215
28216 [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
28217
28218 au1x00_eth.c: In function 'au1x00_enet_initialize':
28219 au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
28220 au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
28221 au1x00_eth.c:246: error: for each function it appears in.)
28222 au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
28223 au1x00_eth.c: In function 'au1x00_miiphy_write':
28224 au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
28225 make[1]: *** [au1x00_eth.o] Error 1
28226
28227 Fixed by moving these two functions forward.
28228
28229 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28230
28231 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
28232 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28233 Date: Sat Oct 27 15:00:25 2007 +0900
28234
28235 MAKEALL: Added missing pb1000 board
28236
28237 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28238
28239 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
28240 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28241 Date: Sat Oct 27 15:00:24 2007 +0900
28242
28243 [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
28244
28245 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28246
28247 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
28248 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28249 Date: Sat Oct 27 15:00:24 2007 +0900
28250
28251 [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
28252
28253 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28254
28255 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
28256 Author: Wolfgang Denk <wd@denx.de>
28257 Date: Sat Nov 17 02:34:38 2007 +0100
28258
28259 Update CHANGELOIG, prepare for -rc4
28260
28261 Signed-off-by: Wolfgang Denk <wd@denx.de>
28262
28263 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
28264 Author: Luotao Fu <l.fu@pengutronix.de>
28265 Date: Wed Nov 14 18:58:33 2007 +0100
28266
28267 Fix the i2c frequency and default address in rsdproto board
28268
28269 rsdproto board support has wrong I2C frequency and wrong return value
28270 handling.
28271
28272 Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
28273
28274 commit 429c180edad038f91c989cb14b478228092e7054
28275 Author: Wolfgang Denk <wd@denx.de>
28276 Date: Sat Nov 17 01:45:38 2007 +0100
28277
28278 powerpc: Backout relocation changes for MPC5121, too.
28279
28280 Apply Grant Likely's backout to MPC5121 code, too.
28281
28282 Pointed out by Rafal Jaworowski <raj@semihalf.com>
28283
28284 Signed-off-by: Wolfgang Denk <wd@denx.de>
28285
28286 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
28287 Author: Grant Likely <grant.likely@secretlab.ca>
28288 Date: Tue Nov 13 22:18:33 2007 -0700
28289
28290 powerpc: Backout relocation changes.
28291
28292 Ugh. I *hate* to back this change out, but these compiler flags don't
28293 work for relocation on all versions of GCC. I've not been able to
28294 reproduce the environment in my setup (and hence, not been able to
28295 find a combination that *does* work), so I've got no choice but to go
28296 back to the old gcc flags and linker script.
28297
28298 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28299
28300 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
28301 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28302 Date: Tue Nov 13 09:11:05 2007 +0100
28303
28304 Fixed mips_io_port_base build errors.
28305
28306 This patch has been sent on:
28307 - 29 Sep 2007
28308
28309 Although mips_io_port_base is currently a part of IDE command, it is quite
28310 fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
28311 it to MIPS general part, and introduce `set_io_port_base()' from Linux.
28312
28313 This patch is triggered by multiple definition of `mips_io_port_base' build
28314 error on gth2 (and tb0229 also needs this fix.)
28315
28316 board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
28317 /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
28318 common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
28319 make: *** [u-boot] Error 1
28320
28321 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28322 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28323
28324 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
28325 Author: Wolfgang Denk <wd@denx.de>
28326 Date: Sat Nov 17 01:30:40 2007 +0100
28327
28328 Fix a bug in the slave serial programming mode for the Xilinx
28329 Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
28330 the most significant bit was set, which did not work on any
28331 architecture where "char" defaulted to be an unsigned type.
28332
28333 Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
28334
28335 Signed-off-by: Wolfgang Denk <wd@denx.de>
28336
28337 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
28338 Author: Jon Loeliger <jdl@freescale.com>
28339 Date: Thu Nov 1 12:23:29 2007 -0500
28340
28341 86xx: Fix broken variable reference when #def DEBUGing.
28342
28343 Sometimes you can't reference the DDR2 controller variables.
28344
28345 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28346
28347 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
28348 Author: Jason Jin <Jason.jin@freescale.com>
28349 Date: Fri Oct 26 18:32:00 2007 +0800
28350
28351 make 8610 board use pixis reset
28352
28353 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28354
28355 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
28356 Author: Jason Jin <Jason.jin@freescale.com>
28357 Date: Mon Oct 29 19:26:21 2007 +0800
28358
28359 Unify pixis_reset altbank across board families
28360
28361 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
28362 into the separate board config files.
28363
28364 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28365 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28366
28367 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
28368 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28369 Date: Wed Nov 7 08:19:21 2007 +0100
28370
28371 Fix warning: pointer targets in assignment differ in signedness
28372
28373 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28374
28375 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
28376 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28377 Date: Wed Nov 7 08:19:19 2007 +0100
28378
28379 Fix warning differ in signedness in common/cmd_ide.c
28380
28381 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28382
28383 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
28384 Author: Stefan Roese <sr@denx.de>
28385 Date: Fri Nov 16 14:16:54 2007 +0100
28386
28387 ppc4xx: Enable 405EX PCIe UTL register configuration
28388
28389 Till now the UTL registers on 405EX were not initialized but left with
28390 their default values. This patch new initializes some of the UTL
28391 registers on 405EX.
28392
28393 Signed-off-by: Stefan Roese <sr@denx.de>
28394
28395 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
28396 Author: Stefan Roese <sr@denx.de>
28397 Date: Fri Nov 16 14:00:59 2007 +0100
28398
28399 ppc4xx: Update AMCC Makalu for board rev 1.1
28400
28401 This patch adds changes needed for Makalu rev 1.1:
28402
28403 - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
28404 - Enable 2nd ethernet port EMAC1
28405 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
28406 - Reset PCIe ports via GPIO upon bootup
28407
28408 Signed-off-by: Stefan Roese <sr@denx.de>
28409
28410 commit 4d4faae65e115e327425cd514c1a35146a85166b
28411 Author: Grant Likely <grant.likely@secretlab.ca>
28412 Date: Mon Sep 24 09:05:31 2007 -0600
28413
28414 Group PCI and PCMCIA drivers in drivers/Makefile
28415
28416 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28417
28418 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
28419 Author: Grant Likely <grant.likely@secretlab.ca>
28420 Date: Mon Sep 24 09:05:31 2007 -0600
28421
28422 Group block/flash drivers in drivers/Makefile
28423
28424 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28425
28426 commit df58c81551700f058b44cacf55a7997fa63bfe0a
28427 Author: Grant Likely <grant.likely@secretlab.ca>
28428 Date: Mon Sep 24 09:05:31 2007 -0600
28429
28430 Group USB drivers in drivers/Makefile
28431
28432 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28433
28434 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
28435 Author: Grant Likely <grant.likely@secretlab.ca>
28436 Date: Mon Sep 24 09:05:30 2007 -0600
28437
28438 Group i2c drivers in drivers/Makefile
28439
28440 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28441
28442 commit ec00c76de0e5971273905998d62d6bb119324218
28443 Author: Grant Likely <grant.likely@secretlab.ca>
28444 Date: Mon Sep 24 09:05:30 2007 -0600
28445
28446 Group console drivers in drivers/Makefile
28447
28448 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28449
28450 commit 754f230aa01b8c789fc31f8013c2487954073300
28451 Author: Grant Likely <grant.likely@secretlab.ca>
28452 Date: Mon Sep 24 09:05:30 2007 -0600
28453
28454 Group network drivers in drivers/Makefile
28455
28456 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28457
28458 commit f0037c56b0d12cd46215124667b9f83d60ef9391
28459 Author: Grant Likely <grant.likely@secretlab.ca>
28460 Date: Mon Sep 24 09:05:30 2007 -0600
28461
28462 Build: split COBJS value into multiple lines
28463
28464 This change is in preparation for condtitionial compile support in the
28465 build system. By spliting them all into seperate lines now, subsequent
28466 patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
28467 be less invasive and easier to review
28468
28469 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28470
28471 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
28472 Author: Grant Likely <grant.likely@secretlab.ca>
28473 Date: Mon Sep 24 09:05:30 2007 -0600
28474
28475 Add .gitignore files
28476
28477 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28478 Acked-by: Kim Phillips <kim.phillips@freescale.com>
28479
28480 commit 955413f35f054a82e40042f1dbcf501c6a05719b
28481 Author: Grant Likely <grant.likely@secretlab.ca>
28482 Date: Thu Nov 15 08:27:52 2007 -0700
28483
28484 Revert "Correct relocation fixup for mpc5xx"
28485
28486 This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
28487 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28488
28489 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
28490 Author: Grant Likely <grant.likely@secretlab.ca>
28491 Date: Thu Nov 15 08:24:32 2007 -0700
28492
28493 Revert "Correct fixup relocation for MPC5xxx"
28494
28495 This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
28496 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28497
28498 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
28499 Author: Grant Likely <grant.likely@secretlab.ca>
28500 Date: Thu Nov 15 08:21:04 2007 -0700
28501
28502 Revert "Correct fixup relocation for mpc8220"
28503
28504 This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
28505 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28506
28507 commit 70922342369e5e39b286fe21e768a239ca07a514
28508 Author: Grant Likely <grant.likely@secretlab.ca>
28509 Date: Thu Nov 15 08:20:57 2007 -0700
28510
28511 Revert "Correct fixup relocation for mpc824x"
28512
28513 This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
28514 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28515
28516 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
28517 Author: Grant Likely <grant.likely@secretlab.ca>
28518 Date: Thu Nov 15 08:20:50 2007 -0700
28519
28520 Revert "Correct fixup relocation for mpc8260"
28521
28522 This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
28523 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28524
28525 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
28526 Author: Grant Likely <grant.likely@secretlab.ca>
28527 Date: Thu Nov 15 08:20:43 2007 -0700
28528
28529 Revert "Correct fixup relocation for mpc83xx"
28530
28531 This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
28532 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28533
28534 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
28535 Author: Grant Likely <grant.likely@secretlab.ca>
28536 Date: Thu Nov 15 08:20:25 2007 -0700
28537
28538 Revert "[MPC512x] Correct fixup relocation"
28539
28540 This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
28541 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28542
28543 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
28544 Author: Stefan Roese <sr@denx.de>
28545 Date: Thu Nov 15 14:25:09 2007 +0100
28546
28547 ppc4xx: Small AMCC Kilauea cleanup
28548
28549 Remove not needed pci_target_init() function.
28550
28551 Signed-off-by: Stefan Roese <sr@denx.de>
28552
28553 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
28554 Author: Stefan Roese <sr@denx.de>
28555 Date: Thu Nov 15 14:23:55 2007 +0100
28556
28557 ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
28558
28559 - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
28560 - Cleanup of the 4xx GPIO functions
28561 - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
28562
28563 Signed-off-by: Stefan Roese <sr@denx.de>
28564
28565 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
28566 Author: Stefan Roese <sr@denx.de>
28567 Date: Thu Nov 15 14:20:08 2007 +0100
28568
28569 ppc4xx: AMCC Taihu board config file cleanup
28570
28571 This patch makes the AMCC Taihu a little more compatible to the other
28572 AMCC eval boards.
28573
28574 Signed-off-by: Stefan Roese <sr@denx.de>
28575
28576 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
28577 Author: Marian Balakowicz <m8@semihalf.com>
28578 Date: Thu Nov 15 13:37:28 2007 +0100
28579
28580 [INKA4x0] NG hardware: flash support
28581
28582 Disabled and remove inka4x0 custom flash driver, use CFI flash
28583 driver instead.
28584
28585 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28586
28587 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
28588 Author: Marian Balakowicz <m8@semihalf.com>
28589 Date: Thu Nov 15 13:29:55 2007 +0100
28590
28591 [INKA4x0] NG hardware: SDRAM support
28592
28593 Add support for three new DDR chips that may be present on a NG
28594 INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
28595
28596 Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
28597
28598 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28599
28600 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
28601 Author: Marian Balakowicz <m8@semihalf.com>
28602 Date: Thu Nov 15 13:24:43 2007 +0100
28603
28604 [INKA4x0] NG hardware: platform code update
28605
28606 - Cleanup compile warnings.
28607 - Add missing '\0' in default environment.
28608 - Increase CFG_MONITOR_LEN to 256 KiB.
28609 - Add required CFG_USE_PPCENV.
28610
28611 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28612
28613 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
28614 Author: Peter Pearse <peter.pearse@arm.com>
28615 Date: Thu Nov 15 08:58:00 2007 +0000
28616
28617 Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
28618 Remove warnings re onenand_read() & write()
28619
28620 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
28621 Author: Peter Pearse <peter.pearse@arm.com>
28622 Date: Thu Nov 15 08:45:13 2007 +0000
28623
28624 Correction patch
28625
28626 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
28627 Author: Roy Zang <tie-fei.zang@freescale.com>
28628 Date: Thu Sep 13 18:52:28 2007 +0800
28629
28630 Enable ULi1575 Ethernet support in 8610HPCD config
28631
28632 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
28633 Acked-by: Jon Loeliger <jdl@freescale.com>
28634
28635 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
28636 Author: Stefan Roese <sr@denx.de>
28637 Date: Tue Nov 13 08:18:20 2007 +0100
28638
28639 ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
28640
28641 Signed-off-by: Stefan Roese <sr@denx.de>
28642
28643 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
28644 Author: Stefan Roese <sr@denx.de>
28645 Date: Tue Nov 13 08:06:11 2007 +0100
28646
28647 ppc4xx: Fix 405EX PCIe UTLSET register setup
28648
28649 Signed-off-by: Stefan Roese <sr@denx.de>
28650
28651 commit 1ce55151c85d068f70317a8d65c61058b891afb4
28652 Author: Heiko Schocher <hs@denx.de>
28653 Date: Tue Nov 13 07:50:29 2007 +0100
28654
28655 [UC101] SRAM now with 2 MB working.
28656
28657 Signed-off-by: Heiko Schocher <hs@denx.de>
28658
28659 commit 2d14684341109a69616e4d6016cd61402d55086f
28660 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28661 Date: Fri Nov 9 15:37:53 2007 +0100
28662
28663 ppc4xx: Use generic usb-ohci driver for sequoia board
28664
28665 This patch makes the sequoia board use the generic usb-ohci driver
28666 instead of cpu/ppc4xx/usb_ohci.c.
28667
28668 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28669 Signed-off-by: Stefan Roese <sr@denx.de>
28670
28671 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
28672 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28673 Date: Fri Nov 9 15:37:23 2007 +0100
28674
28675 ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
28676
28677 This patch disables the 44x d-cache on 'usb start' and
28678 reenables it on 'usb stop'. This should be seen as a
28679 temporary fix until the generic usb-ohci driver can
28680 life with d-cache enabled.
28681
28682 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28683 Signed-off-by: Stefan Roese <sr@denx.de>
28684
28685 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
28686 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28687 Date: Fri Nov 9 15:36:44 2007 +0100
28688
28689 ppc4xx: Remove redundant code from 4xx network driver
28690
28691 This patch removes some redundant code and decrements the end
28692 address of cache flush and invalidate by 1.
28693
28694 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28695 Signed-off-by: Stefan Roese <sr@denx.de>
28696
28697 commit 5ca9881aad8c413ac2a82868a5e3719178254502
28698 Author: Peter Pearse <peter.pearse@arm.com>
28699 Date: Fri Nov 9 15:24:26 2007 +0000
28700
28701 Add apollon board support
28702 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
28703
28704 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
28705 Author: Stefan Roese <sr@denx.de>
28706 Date: Fri Nov 9 12:19:58 2007 +0100
28707
28708 ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
28709
28710 Signed-off-by: Stefan Roese <sr@denx.de>
28711
28712 commit c7f69c340277935a6c19a956421852da944a365f
28713 Author: Stefan Roese <sr@denx.de>
28714 Date: Fri Nov 9 12:18:54 2007 +0100
28715
28716 ppc4xx: Make output a little shorter on I2C bootrom detection
28717
28718 Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
28719 already print a line with the information which I2C bootrom is
28720 used for bootstrap configuration. So we don't need this extra line
28721 with "I2C boot EEPROM en-/dis-abled".
28722
28723 This patch also has a little code cleanup integrated.
28724
28725 Signed-off-by: Stefan Roese <sr@denx.de>
28726
28727 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
28728 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28729 Date: Thu Nov 8 12:50:18 2007 -0600
28730
28731 ColdFire: MCF5329 - Remove reset registers from CCM
28732
28733 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28734
28735 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
28736 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28737 Date: Thu Nov 8 12:31:11 2007 -0600
28738
28739 ColdFire: MCF5329 - Add Reset structure to immap_5329.h
28740
28741 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28742
28743 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
28744 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28745 Date: Thu Nov 8 12:19:01 2007 -0600
28746
28747 ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
28748
28749 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28750
28751 commit 225a24b5e062ad94627424508ae814f51dbe1a34
28752 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28753 Date: Wed Nov 7 18:00:54 2007 -0600
28754
28755 ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
28756
28757 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28758
28759 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
28760 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28761 Date: Wed Nov 7 17:56:15 2007 -0600
28762
28763 ColdFire: MCF532x - Update do_reset() using core reset
28764
28765 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28766
28767 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
28768 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28769 Date: Wed Nov 7 17:51:00 2007 -0600
28770
28771 ColdFire: Update cpu flag for 4.2-xx compiler
28772
28773 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28774
28775 commit 070ba56115b4da63b46e974287fa4550d4023386
28776 Author: York Sun <yorksun@freescale.com>
28777 Date: Wed Oct 31 14:59:04 2007 -0500
28778
28779 8610: Add console frame buffer support to FSL 8610 DIU driver.
28780
28781 Add cfb console support to FSL 8610 DIU driver.
28782 Inspect board version from PIXIS to obtain correct pixel format.
28783
28784 Use #define CONFIG_VIDEO in config file to enable fb console.
28785
28786 To switch monitor, set monitor variable to
28787 0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
28788 followed by "diufb init".
28789
28790 Preserve logo bitmap at the top of the fb console.
28791
28792 Signed-off-by: York Sun <yorksun@freescale.com>
28793 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28794
28795 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
28796 Author: York Sun <yorksun@freescale.com>
28797 Date: Mon Oct 29 13:58:39 2007 -0500
28798
28799 8610: Add 8610 DIU display driver
28800
28801 1280x1024 and 1024x768 @ 32 bpp are supported now.
28802 DVI, Single-link LVDS, Double-link LVDS are all supported.
28803
28804 Environmental variable "monitor" is used to specify monitor port.
28805
28806 A new command "diufb" is introduced to reinitialize monitor
28807 and display a BMP file in the memory. So far, 1-bit, 4-bit,
28808 8-bit and 24-bit BMP formats are supported.
28809
28810 diufb init
28811 - initialize the diu driver
28812 Enable the port specified in the environmental variable "monitor"
28813
28814 diufb addr
28815 - display bmp file in memory.
28816 The bmp image should be no bigger than the resolution, 1280x1024
28817 for DVI and double-link LVDS, 1024x768 for single-link LVDS.
28818
28819 Note, this driver allocate memory but doesn't free it after use
28820 It is written on purpose -- to avoid a failure of reallocation
28821 due to memory fragement.
28822
28823 ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
28824
28825 Signed-off-by: York Sun <yorksun@freescale.com>
28826 Signed-off-by: Jon loeliger <jdl@freescale.com>
28827
28828 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
28829 Author: York Sun <yorksun@freescale.com>
28830 Date: Wed Oct 31 10:43:59 2007 -0500
28831
28832 FSL: Add a freescale bitmap logo.
28833
28834 This Freescale logo is a 340 x 128 x 4bpp BMP file
28835 that can be displayed by the DIU Framebuffer driver.
28836
28837 Signed-off-by: York Sun <yorksun@freescale.com>
28838 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28839
28840 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
28841 Author: York Sun <yorksun@freescale.com>
28842 Date: Mon Oct 29 13:57:53 2007 -0500
28843
28844 8610: Make some extra debug environment variables conditional.
28845
28846 One may #define ENV_DEBUG to get them back again.
28847
28848 Signed-off-by: York Sun <yorksun@freescale.com>
28849
28850 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
28851 Author: Jason Jin <Jason.jin@freescale.com>
28852 Date: Mon Oct 29 19:26:21 2007 +0800
28853
28854 8610: Actually enable pixis_reset CONFIGs
28855
28856 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28857
28858 commit f3bceaab230b4748d0afc4109b6837308f018b40
28859 Author: Jason Jin <Jason.jin@freescale.com>
28860 Date: Fri Oct 26 18:31:59 2007 +0800
28861
28862 Fix the BAT definition of PCI IO on 8610 board
28863
28864 The address in the BAT register is aligned with the BAT size.
28865 The original definition actually did not define BAT for PCIE2 IO.
28866 This patch fix this.
28867
28868 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28869
28870 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
28871 Author: Jason Jin <Jason.jin@freescale.com>
28872 Date: Mon Oct 29 19:26:21 2007 +0800
28873
28874 Unify pixis_reset altbank across board families
28875
28876 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
28877 into the separate board config files.
28878
28879 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28880 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28881
28882 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
28883 Author: Jason Jin <Jason.jin@freescale.com>
28884 Date: Fri Oct 26 18:32:00 2007 +0800
28885
28886 make 8610 board use pixis reset
28887
28888 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28889
28890 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
28891 Author: Jon Loeliger <jdl@freescale.com>
28892 Date: Thu Nov 1 12:23:29 2007 -0500
28893
28894 86xx: Fix broken variable reference when #def DEBUGing.
28895
28896 Sometimes you can't reference the DDR2 controller variables.
28897
28898 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28899
28900 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
28901 Author: Roy Zang <tie-fei.zang@freescale.com>
28902 Date: Mon Nov 5 17:39:24 2007 +0800
28903
28904 Implement general ULi 526x Ethernet driver support in U-boot
28905
28906 This patch implements general ULi 526x Ethernet driver.
28907 Until now, it is the only native Ethernet port on
28908 MPC8610HPCD board, but it could be used on other boards
28909 with ULi 526x Ethernet port as well.
28910
28911 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
28912 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
28913 Acked-by: Jon Loeliger <jdl@freescale.com>
28914 Signed-off-by: Ben Warren <bwarren@qstreams.com>
28915
28916 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
28917 Author: Larry Johnson <lrj@arlinx.com>
28918 Date: Thu Nov 1 08:46:50 2007 -0500
28919
28920 NET: Add Ethernet 1000BASE-X support for PPC4xx
28921
28922 This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
28923 "miiphy_duplex()". It also adds function "miiphy_is_1000base_x ()", which
28924 returns non-zero iff the PHY registers are configured for 1000BASE-X. The
28925 "mii info" command is modified to distinguish between 1000BASE-T and -X.
28926
28927 Signed-off-by: Larry Johnson <lrj@acm.org>
28928 Signed-off-by: Ben Warren <bwarren@qstreams.com>
28929
28930 commit 298035df4948b113d29ac0e694717d34b95bc5dc
28931 Author: Larry Johnson <lrj@arlinx.com>
28932 Date: Wed Oct 31 11:21:29 2007 -0500
28933
28934 NET: Cosmetic changes
28935
28936 Signed-off-by: Larry Johnson <lrj@acm.org>
28937 Signed-off-by: Ben Warren <bwarren@qstreams.com>
28938
28939 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
28940 Author: Stefan Roese <sr@denx.de>
28941 Date: Mon Nov 5 07:43:05 2007 +0100
28942
28943 ppc4xx: Make output a little shorter on PCIe detection
28944
28945 Now not max 3 lines but 2 lines are printed per PCIe port.
28946
28947 Signed-off-by: Stefan Roese <sr@denx.de>
28948
28949 commit 992742a5b09d9040adbd156fb90756af66ade310
28950 Author: Wolfgang Denk <wd@denx.de>
28951 Date: Sat Nov 3 23:09:27 2007 +0100
28952
28953 Cleanup coding style; update CHANGELOG
28954
28955 Signed-off-by: Wolfgang Denk <wd@denx.de>
28956
28957 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
28958 Author: Bruce Adler <bruce.adler@ccpu.com>
28959 Date: Fri Nov 2 13:15:42 2007 -0700
28960
28961 fix wording in README
28962
28963 Changed the wording to properly describe the shadowing
28964 of the environment from ROM to RAM
28965
28966 Signed-off-by: Bruce Adler <bruce.adler@acm.org>
28967
28968 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
28969 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28970 Date: Wed Oct 31 02:18:15 2007 +0900
28971
28972 blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
28973
28974 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28975
28976 commit ec22755799466c8a103664bb3a5e647bf9c238f4
28977 Author: Vlad Lungu <vlad@comsys.ro>
28978 Date: Thu Oct 25 16:08:14 2007 +0300
28979
28980 Trimmed some variables in ne2000.c
28981
28982 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
28983
28984 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
28985 Author: Zhang Wei <wei.zhang@freescale.com>
28986 Date: Thu Oct 25 17:51:27 2007 +0800
28987
28988 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
28989
28990 The scan code of the key 'z' is 0x1d, which should be handled.
28991
28992 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
28993 controller.
28994
28995 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
28996
28997 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
28998 Author: Zhang Wei <wei.zhang@freescale.com>
28999 Date: Thu Oct 25 17:30:04 2007 +0800
29000
29001 Fix USB support issue for MPC8641HPCN board.
29002
29003 The configuration file has already enabled USB, but it
29004 missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
29005 on MPC8641HPCN can not work because of the wrong USB
29006 register endian.
29007
29008 And add the USB command to U-Boot commands list.
29009
29010 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
29011
29012 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
29013 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29014 Date: Wed Oct 24 18:16:01 2007 +0200
29015
29016 Use config_cmd_default.h instead of config_cmd_all.h
29017
29018 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29019
29020 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
29021 Author: Marian Balakowicz <m8@semihalf.com>
29022 Date: Wed Oct 24 01:37:36 2007 +0200
29023
29024 TQM5200: Call usb_cpu_init() during board init
29025
29026 usb_cpu_init() configures GPS USB pins, clocks, etc. and
29027 is required for proper operation of kernel USB subsystem.
29028 This setup was previously done in the kernel by the fixup
29029 code which is being removed, thus low level init must be
29030 done by U-boot now.
29031
29032 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29033
29034 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
29035 Author: Guennadi Liakhovetski <lg@denx.de>
29036 Date: Tue Oct 23 16:25:50 2007 +0200
29037
29038 Fix typo in nfs.c
29039
29040 An obvious typo. Originally fixed in linkstation u-boot port.
29041
29042 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29043
29044 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
29045 Author: Guennadi Liakhovetski <lg@denx.de>
29046 Date: Tue Oct 23 14:35:05 2007 +0200
29047
29048 Fix a typo in cpu/mpc824x/interrupts.c
29049
29050 Since December 2003 the timer_interrupt_cpu() function in
29051 cpu/mpc824x/interrupts.c contains what seems to be a superfluous
29052 parameter. Remove it.
29053
29054 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29055
29056 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
29057 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
29058 Date: Wed Oct 17 11:13:51 2007 +0200
29059
29060 add ft_cpu_setup(..) on mpc8260
29061
29062 Add ft_cpu_setup(..)-function to adapt it for use with libfdt
29063 based on code from mpc5xxx
29064
29065 Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
29066 --
29067
29068 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
29069 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
29070 Date: Wed Oct 17 11:18:42 2007 +0200
29071
29072 changes for IDS8247 board support
29073
29074 To get the IDS8247 board working following are done:
29075 - FCC2 is deactivated
29076 - FCC1 is activated
29077 - I2C is activated
29078 - CFI driver is activated
29079 - Adapted for use with LIBFDT
29080
29081 Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
29082 --
29083
29084 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
29085 Author: Stefan Roese <sr@denx.de>
29086 Date: Sat Nov 3 12:08:28 2007 +0100
29087
29088 ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
29089
29090 This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
29091 Again, only one image supports both targets.
29092
29093 Signed-off-by: Stefan Roese <sr@denx.de>
29094
29095 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
29096 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29097 Date: Wed Oct 24 15:48:37 2007 +0200
29098
29099 ATSTK1002: Remove default ethernet addresses
29100
29101 Wolfgang is right: It's not a good idea to set up default initial
29102 ethernet addresses for a board, even though they belong to the local
29103 range.
29104
29105 This will change the failure mode from "IT manager screams at you for
29106 using duplicate ethernet addresses" to a nice error message explaining
29107 that the ethernet address hasn't been set properly.
29108
29109 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29110
29111 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
29112 Author: Justin Flammia <jflammia@savantav.com>
29113 Date: Mon Oct 29 17:40:35 2007 -0400
29114
29115 DHCP Client Fix
29116
29117 This is a multi-part message in MIME format.
29118
29119 commit e6e505eae94ed721e123e177489291fc4544b7b8
29120 Author: Justin Flammia <jflammia@savantav.com>
29121 Date: Mon Oct 29 17:19:03 2007 -0400
29122
29123 Found a bug in the way the DHCP Request packet is built, where the IP address
29124 that is offered by the server is bound to prematurely. This patch is a fix of
29125 that bug where the IP address offered by the DHCP server is not used until
29126 after the DHCP ACK from the server is received.
29127
29128 Signed-off-by: Justin Flammia <jflammia@savantav.com>
29129 Signed-off-by: Ben Warren <bwarren@qstreams.com>
29130
29131 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
29132 Author: Stefan Roese <sr@denx.de>
29133 Date: Wed Oct 31 20:58:34 2007 +0100
29134
29135 ppc4xx: Fix acadia_nand build problem
29136
29137 Since the cache handling functions were moved from start.S into cache.S
29138 the acadia NAND booting Makfile needs to be adapted accordingly.
29139
29140 Signed-off-by: Stefan Roese <sr@denx.de>
29141
29142 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
29143 Author: Stefan Roese <sr@denx.de>
29144 Date: Wed Oct 31 20:57:11 2007 +0100
29145
29146 ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
29147
29148 This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
29149 and to the Sequoia TLB init code. Now the cache can be enabled on 44x
29150 boards by defining CONFIG_4xx_DCACHE in the board config file. This
29151 option will disappear, when more boards use is successfully and no
29152 more known problems exist.
29153
29154 This is tested successfully on Sequoia and Katmai. The only problem that
29155 needs to be fixed is, that USB is not working on Sequoia right now, since
29156 it will need some cache handling code too, similar to the 4xx EMAC driver.
29157
29158 Signed-off-by: Stefan Roese <sr@denx.de>
29159
29160 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
29161 Author: Stefan Roese <sr@denx.de>
29162 Date: Wed Oct 31 20:51:10 2007 +0100
29163
29164 ppc4xx: Enable CPU POST test for 4xx with dcache enabled
29165
29166 Now with caches enabled (i- and d-cache) on 44x, we need a chance to
29167 disable the cache for the CPU POST tests, since these tests consist
29168 of self modifying code. This is done via the new change_tlb() function.
29169
29170 Signed-off-by: Stefan Roese <sr@denx.de>
29171
29172 commit f71b2888b4b3c870909a0341427b2a914246f81f
29173 Author: Stefan Roese <sr@denx.de>
29174 Date: Wed Oct 31 20:47:26 2007 +0100
29175
29176 ppc4xx: Change 4xx POST ethernet test to handle cached memory too
29177
29178 This patch enables the 4xx EMAC POST driver to work too, when dcache is
29179 enabled.
29180
29181 Signed-off-by: Stefan Roese <sr@denx.de>
29182
29183 commit a2685904061b35a17583d65fe47cdc2686a69eaa
29184 Author: Stefan Roese <sr@denx.de>
29185 Date: Wed Oct 31 20:45:53 2007 +0100
29186
29187 ppc4xx: Remove temporary TLB entry in POST cache test only for 440
29188
29189 Signed-off-by: Stefan Roese <sr@denx.de>
29190
29191 commit ff768cb168d8157c24a25016dbfbeb465e47f420
29192 Author: Stefan Roese <sr@denx.de>
29193 Date: Wed Oct 31 18:01:24 2007 +0100
29194
29195 ppc4xx: Change 4xx ethernet driver to handle cached memory too
29196
29197 This patch enables the 4xx EMAC driver to work too, when dcache is
29198 enabled.
29199
29200 Signed-off-by: Stefan Roese <sr@denx.de>
29201
29202 commit 483e09a223c666269ef81d3573a6591b1046b0ef
29203 Author: Stefan Roese <sr@denx.de>
29204 Date: Wed Oct 31 17:59:22 2007 +0100
29205
29206 ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
29207
29208 This function is used to either turn cache on or off in a specific
29209 memory area.
29210
29211 Signed-off-by: Stefan Roese <sr@denx.de>
29212
29213 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
29214 Author: Stefan Roese <sr@denx.de>
29215 Date: Wed Oct 31 17:57:52 2007 +0100
29216
29217 ppc4xx: Remove cache definition from 4xx board config files
29218
29219 All 4xx board config files don't need the cache definitions anymore.
29220 These are now defined in common headers.
29221
29222 Signed-off-by: Stefan Roese <sr@denx.de>
29223
29224 commit 9b94ac61d2176185c30adf0793e079ec30e68687
29225 Author: Stefan Roese <sr@denx.de>
29226 Date: Wed Oct 31 17:55:58 2007 +0100
29227
29228 ppc4xx: Rework 4xx cache support
29229
29230 New cache handling functions added and all existing functions
29231 moved from start.S into seperate cache.S.
29232
29233 Signed-off-by: Stefan Roese <sr@denx.de>
29234
29235 commit 06713773da4ac3d390c63d82641eb553224b27c2
29236 Author: Stefan Roese <sr@denx.de>
29237 Date: Tue Oct 23 18:03:12 2007 +0200
29238
29239 ppc4xx: Remove compiler warning from previous commit
29240
29241 Signed-off-by: Stefan Roese <sr@denx.de>
29242
29243 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
29244 Author: Stefan Roese <sr@denx.de>
29245 Date: Tue Oct 23 14:40:30 2007 +0200
29246
29247 ppc4xx: Remove temporary TLB entry in POST cache test
29248
29249 Signed-off-by: Stefan Roese <sr@denx.de>
29250
29251 commit 1338e6a81834099ba19733b69aafd8ef5f098094
29252 Author: Stefan Roese <sr@denx.de>
29253 Date: Tue Oct 23 14:05:08 2007 +0200
29254
29255 ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
29256
29257 I lately noticed, that newer 4xx board with GBit support sometimes don't
29258 finish link autonegotiation in 4 seconds. Changing this timeout to 5
29259 seconds seems fine here.
29260
29261 Signed-off-by: Stefan Roese <sr@denx.de>
29262
29263 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
29264 Author: Stefan Roese <sr@denx.de>
29265 Date: Tue Oct 23 14:03:17 2007 +0200
29266
29267 ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
29268
29269 This patch changes all in32/out32 calls to use the recommended in_be32/
29270 out_be32 macros instead.
29271
29272 Signed-off-by: Stefan Roese <sr@denx.de>
29273
29274 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
29275 Author: Stefan Roese <sr@denx.de>
29276 Date: Thu Oct 25 12:24:59 2007 +0200
29277
29278 ppc4xx: Fix POST ethernet test for Haleakala
29279
29280 The POST ethernet test needed to be changed to dynamically determine
29281 the count of ethernet devices. This code is cloned from the 4xx
29282 ethernet driver.
29283
29284 Signed-off-by: Stefan Roese <sr@denx.de>
29285
29286 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
29287 Author: Stefan Roese <sr@denx.de>
29288 Date: Tue Oct 23 11:31:05 2007 +0200
29289
29290 ppc4xx: Correct UART input clock calculation and passing to fdt
29291
29292 We now use a value in the gd (global data) structure for the UART input
29293 frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
29294 in get_sys_info().
29295
29296 Signed-off-by: Stefan Roese <sr@denx.de>
29297
29298 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
29299 Author: Stefan Roese <sr@denx.de>
29300 Date: Tue Oct 23 10:10:08 2007 +0200
29301
29302 ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
29303
29304 The Haleakala is nearly identical with the Kilauea eval board. The only
29305 difference is that the 405EXr only supports one EMAC and one PCIe
29306 interface. This patch adds support for the Haleakala board by using
29307 the identical image for Kilauea and Haleakala. The distinction is done
29308 by comparing the PVR.
29309
29310 Signed-off-by: Stefan Roese <sr@denx.de>
29311
29312 commit 9f798766aa85e62eb8fa8c721e148df609b78137
29313 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
29314 Date: Tue Oct 23 08:29:10 2007 +0200
29315
29316 ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
29317
29318 This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
29319
29320 Note:
29321 As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
29322 DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
29323 modules are still plugged in. So it is recommended to remove the DIMM
29324 modules while using the NAND booting code with the fixed SDRAM setup!
29325
29326 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
29327 Signed-off-by: Stefan Roese <sr@denx.de>
29328
29329 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
29330 Author: Stefan Roese <sr@denx.de>
29331 Date: Mon Oct 22 16:24:44 2007 +0200
29332
29333 ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
29334
29335 Signed-off-by: Stefan Roese <sr@denx.de>
29336
29337 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
29338 Author: Stefan Roese <sr@denx.de>
29339 Date: Mon Oct 22 16:22:40 2007 +0200
29340
29341 ppc4xx: Rework of 4xx serial driver (4)
29342
29343 Change 4xx_uart.c:
29344
29345 - Use in_8/out_8 macros instead of in8/out8
29346 - No need for UART_BASE marco anymore, now really handled via function
29347 parameter
29348 - serial_init_common() introduced
29349 - Further coding style cleanup
29350
29351 Signed-off-by: Stefan Roese <sr@denx.de>
29352
29353 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
29354 Author: Stefan Roese <sr@denx.de>
29355 Date: Mon Oct 22 15:45:49 2007 +0200
29356
29357 ppc4xx: Rework of 4xx serial driver (3)
29358
29359 Change all linker scripts to reference the changed driver name iop480_uart.o.
29360
29361 Signed-off-by: Stefan Roese <sr@denx.de>
29362
29363 commit 882ae41274921f9016131806bdeb27e19606f47a
29364 Author: Stefan Roese <sr@denx.de>
29365 Date: Mon Oct 22 15:44:39 2007 +0200
29366
29367 ppc4xx: Rework of 4xx serial driver (2)
29368
29369 Change all linker scripts to reference the changed driver name 4xx_uart.o.
29370
29371 Note: In most cased all these explicit referencing of these object files
29372 in the linker scripts is not neccessary. Only for manually embedded
29373 environment into the U-Boot image, which is not done is most cases.
29374
29375 Signed-off-by: Stefan Roese <sr@denx.de>
29376
29377 commit ad31e40bed042cb670d0036fea96435007afb838
29378 Author: Stefan Roese <sr@denx.de>
29379 Date: Mon Oct 22 15:09:59 2007 +0200
29380
29381 ppc4xx: Rework of 4xx serial driver (1)
29382
29383 This patch starts the rework of the PPC4xx serial driver. First we split
29384 the file into two seperate files, one 4xx_uart.c with the 405/440 UART
29385 handling code and the other one iop480_uart.c with the UART code for the
29386 PLX-Tech IOP480 PPC (PPC403 based).
29387
29388 Signed-off-by: Stefan Roese <sr@denx.de>
29389
29390 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
29391 Author: Stefan Roese <sr@denx.de>
29392 Date: Mon Oct 22 10:30:38 2007 +0200
29393
29394 ppc4xx: Correct UART input clock calculation and passing to fdt
29395
29396 Signed-off-by: Stefan Roese <sr@denx.de>
29397
29398 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
29399 Author: Stefan Roese <sr@denx.de>
29400 Date: Mon Oct 22 07:34:34 2007 +0200
29401
29402 ppc4xx: Add initial AMCC Makalu 405EX support
29403
29404 Signed-off-by: Stefan Roese <sr@denx.de>
29405
29406 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
29407 Author: Stefan Roese <sr@denx.de>
29408 Date: Mon Oct 22 07:33:52 2007 +0200
29409
29410 ppc4xx: Add freqUART to CPU speed detection
29411
29412 This value is needed later for the device tree configuration of
29413 the uart clock.
29414
29415 Signed-off-by: Stefan Roese <sr@denx.de>
29416
29417 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
29418 Author: Stefan Roese <sr@denx.de>
29419 Date: Sun Oct 21 14:26:29 2007 +0200
29420
29421 ppc: Small Kilauea cleanup of config file
29422
29423 Signed-off-by: Stefan Roese <sr@denx.de>
29424
29425 commit 758c037aeead34b49631b8da3a90b1bba14c0410
29426 Author: Stefan Roese <sr@denx.de>
29427 Date: Sun Oct 21 08:16:12 2007 +0200
29428
29429 rtc: Add Xicor/Intersil X1205 RTC support
29430
29431 This patch adds support for the Xicor/Intersil X1205 RTC used on the
29432 AMCC Makalu eval board. This driver is basically cloned from the Linux
29433 driver version (2.6.23).
29434
29435 This patch also introduces the Linux bcd.h header for the BCD2BIN/
29436 BIN2BCD conversions. In the future some of the other U-Boot RTC driver
29437 should be converted to also use this header instead of implementing
29438 their own local copy of these functions/macros.
29439
29440 Signed-off-by: Stefan Roese <sr@denx.de>
29441
29442 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
29443 Author: Stefan Roese <sr@denx.de>
29444 Date: Sun Oct 21 08:12:41 2007 +0200
29445
29446 ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
29447
29448 This patch moves some common 4xx macros and the PPC405_SYS_INFO/
29449 PPC440_SYS_INFO structure into the common ppc4xx.h header.
29450
29451 Lot's of other macros are good candidates to be consolidated this way
29452 in the future.
29453
29454 Signed-off-by: Stefan Roese <sr@denx.de>
29455
29456 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
29457 Author: Stefan Roese <sr@denx.de>
29458 Date: Sun Oct 21 08:05:18 2007 +0200
29459
29460 ppc4xx: Fix size setup in Kilauea DDR2 init routine
29461
29462 The size was initilized wrong. Instead of 256MB, the DDR2 controller
29463 was setup to 512MB. Now the correct values is used.
29464
29465 This patch also does a little cleanup and adds a comment here.
29466
29467 Signed-off-by: Stefan Roese <sr@denx.de>
29468
29469 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
29470 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
29471 Date: Thu Oct 18 17:29:04 2007 +0200
29472
29473 ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
29474
29475 CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
29476 number is used to access system registers.
29477
29478 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
29479 Signed-off-by: Stefan Roese <sr@denx.de>
29480
29481 commit c36c68160333ac5fe41ec3db12a728b7075b3912
29482 Author: Stefan Roese <sr@denx.de>
29483 Date: Thu Oct 18 07:42:27 2007 +0200
29484
29485 ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
29486
29487 On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
29488 is the internal SRAM. Since I now ported and tested this endpoint mode
29489 on Kilauea successfully to map to 0 (SDRAM), I also changed this for
29490 Katmai.
29491
29492 Yucca will stay at internal SRAM for now. Not sure if somebody relies on
29493 this setup.
29494
29495 Signed-off-by: Stefan Roese <sr@denx.de>
29496
29497 commit 5cb4af4791f61843432155142b6cfac901f66c10
29498 Author: Stefan Roese <sr@denx.de>
29499 Date: Thu Oct 18 07:39:38 2007 +0200
29500
29501 ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
29502
29503 This patch adds endpoint support for the AMCC Kilauea eval board. It can
29504 be tested by connecting a reworked PCIe cable (only 1x lane singles
29505 connected) to another root-complex.
29506
29507 In this test setup, a 64MB inbound window is configured at BAR0 which maps
29508 to 0 on the PLB side. So accessing this BAR0 from the root-complex will
29509 access the first 64MB of the SDRAM on the PPC side.
29510
29511 Signed-off-by: Stefan Roese <sr@denx.de>
29512
29513 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
29514 Author: Stefan Roese <sr@denx.de>
29515 Date: Sat Oct 13 16:43:23 2007 +0200
29516
29517 ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
29518
29519 This patch adds support for dynamic configuration of PCIe ports for the
29520 AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
29521 boards Yucca & Katmai and the 405EX board Kilauea.
29522
29523 This dynamic configuration is done via the "pcie_mode" environement
29524 variable. This variable can be set to "EP" or "RP" for endpoint or
29525 rootpoint mode. Multiple values can be joined via the ":" delimiter.
29526 Here an example:
29527
29528 pcie_mode=RP:EP:EP
29529
29530 This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
29531 as endpoint.
29532
29533 Per default Yucca will be configured as:
29534 pcie_mode=RP:EP:EP
29535
29536 Per default Katmai will be configured as:
29537 pcie_mode=RP:RP:REP
29538
29539 Per default Kilauea will be configured as:
29540 pcie_mode=RP:RP
29541
29542 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
29543 Signed-off-by: Stefan Roese <sr@denx.de>
29544
29545 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
29546 Author: Stefan Roese <sr@denx.de>
29547 Date: Thu Oct 11 11:15:59 2007 +0200
29548
29549 ppc4xx: Enable device tree support (fdt) on Kilauea per default
29550
29551 This patch enables the fdt support on the AMCC Kilauea eval board.
29552 Additionally now EBC ranges fdt fixup is included to support NOR
29553 FLASH mapping via the Linux physmap_of driver.
29554
29555 This Kilauea port now support booting arch/ppc and arch/powerpc
29556 Linux kernels. The default environment "net_nfs" is for arch/ppc
29557 and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
29558 support will be removed.
29559
29560 Signed-off-by: Stefan Roese <sr@denx.de>
29561
29562 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
29563 Author: Stefan Roese <sr@denx.de>
29564 Date: Thu Oct 11 11:11:45 2007 +0200
29565
29566 ppc4xx: Add additional debug info to 4xx fdt support
29567
29568 Signed-off-by: Stefan Roese <sr@denx.de>
29569
29570 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
29571 Author: Stefan Roese <sr@denx.de>
29572 Date: Fri Oct 5 21:28:58 2007 +0200
29573
29574 ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
29575
29576 Signed-off-by: Stefan Roese <sr@denx.de>
29577
29578 commit 1941cce71b1ae975602854045061e82f94ecd012
29579 Author: Stefan Roese <sr@denx.de>
29580 Date: Fri Oct 5 17:35:10 2007 +0200
29581
29582 ppc4xx: Fix small merge problem in 4xx_enet.c
29583
29584 Signed-off-by: Stefan Roese <sr@denx.de>
29585
29586 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
29587 Author: Stefan Roese <sr@denx.de>
29588 Date: Fri Oct 5 17:11:30 2007 +0200
29589
29590 ppc4xx: Add initial AMCC Kilauea 405EX support
29591
29592 Signed-off-by: Stefan Roese <sr@denx.de>
29593
29594 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
29595 Author: Stefan Roese <sr@denx.de>
29596 Date: Fri Oct 5 17:10:59 2007 +0200
29597
29598 ppc4xx: Add PPC405EX support
29599
29600 Signed-off-by: Stefan Roese <sr@denx.de>
29601
29602 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
29603 Author: Stefan Roese <sr@denx.de>
29604 Date: Fri Oct 5 17:09:36 2007 +0200
29605
29606 ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
29607
29608 Signed-off-by: Stefan Roese <sr@denx.de>
29609
29610 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
29611 Author: Stefan Roese <sr@denx.de>
29612 Date: Fri Oct 5 17:07:50 2007 +0200
29613
29614 ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
29615
29616 Signed-off-by: Stefan Roese <sr@denx.de>
29617
29618 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
29619 Author: Stefan Roese <sr@denx.de>
29620 Date: Fri Oct 5 17:04:57 2007 +0200
29621
29622 POST: Add 405EX support to 4xx UART POST test
29623
29624 Signed-off-by: Stefan Roese <sr@denx.de>
29625
29626 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
29627 Author: Stefan Roese <sr@denx.de>
29628 Date: Fri Oct 5 15:10:02 2007 +0200
29629
29630 DTT: Prepare DS1775 driver for use of different I2C addresses
29631
29632 Signed-off-by: Stefan Roese <sr@denx.de>
29633
29634 commit 19e93b1e16d267220440d827b920fbad8abfa70f
29635 Author: Stefan Roese <sr@denx.de>
29636 Date: Fri Oct 5 14:23:43 2007 +0200
29637
29638 ppc4xx: 4xx_pcie: Change PCIe status output to match common style
29639
29640 Signed-off-by: Stefan Roese <sr@denx.de>
29641
29642 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
29643 Author: Stefan Roese <sr@denx.de>
29644 Date: Fri Oct 5 09:22:33 2007 +0200
29645
29646 ppc4xx: 4xx_pcie: Disable debug output as default
29647
29648 Signed-off-by: Stefan Roese <sr@denx.de>
29649
29650 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
29651 Author: Stefan Roese <sr@denx.de>
29652 Date: Fri Oct 5 09:18:23 2007 +0200
29653
29654 ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
29655
29656 Signed-off-by: Stefan Roese <sr@denx.de>
29657
29658 commit 4dbee8a90df613eb517aadbecebd70f168913d30
29659 Author: Stefan Roese <sr@denx.de>
29660 Date: Fri Oct 5 07:57:20 2007 +0200
29661
29662 ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
29663
29664 128MB seems to be the smallest possible value for the memory size
29665 for on PCIe port. With this change now the BAR's of the PCIe cards
29666 are accessible under U-Boot.
29667
29668 One big note: This only works for PCIe port 0 & 1. For port 2 this
29669 currently doesn't work, since the base address is now 0xc0000000
29670 (0xb0000000 + 2 * 0x08000000), and this is already occupied by
29671 CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
29672 to change the base addresses completely and this change would have
29673 too much impact right now.
29674
29675 This patch adds debug output to the 4xx pcie driver too.
29676
29677 Signed-off-by: Stefan Roese <sr@denx.de>
29678
29679 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
29680 Author: Stefan Roese <sr@denx.de>
29681 Date: Wed Oct 3 21:16:32 2007 +0200
29682
29683 ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
29684
29685 Signed-off-by: Stefan Roese <sr@denx.de>
29686
29687 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
29688 Author: Stefan Roese <sr@denx.de>
29689 Date: Wed Oct 3 15:01:02 2007 +0200
29690
29691 ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
29692
29693 These files were introduced with the IBM 405GP but are currently used on all
29694 4xx PPC platforms. So the name doesn't match the content anymore. This patch
29695 renames the files to 4xx_pci.c/h.
29696
29697 Signed-off-by: Stefan Roese <sr@denx.de>
29698
29699 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
29700 Author: Stefan Roese <sr@denx.de>
29701 Date: Wed Oct 3 14:14:58 2007 +0200
29702
29703 ppc4xx: Add a comment for 405EX PCIe endpoint configuration
29704
29705 Signed-off-by: Stefan Roese <sr@denx.de>
29706
29707 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
29708 Author: Stefan Roese <sr@denx.de>
29709 Date: Wed Oct 3 10:38:09 2007 +0200
29710
29711 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
29712
29713 (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
29714 the SDR registers of the PCIe ports. This makes the overall design
29715 clearer, since it removed a lot of switch statements which are not
29716 needed anymore.
29717
29718 Also, the functions ppc4xx_init_pcie_rootport() and
29719 ppc4xx_init_pcie_entport() are merged into a single function
29720 ppc4xx_init_pcie_port(), since most of the code was duplicated.
29721 This makes maintainance and porting to other 4xx platforms
29722 easier.
29723
29724 Signed-off-by: Stefan Roese <sr@denx.de>
29725
29726 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
29727 Author: Stefan Roese <sr@denx.de>
29728 Date: Wed Oct 3 07:48:09 2007 +0200
29729
29730 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
29731
29732 This patch is the first patch of a series to make the 440SPe PCIe code
29733 usable on different 4xx PPC platforms. In preperation for the new 405EX
29734 which is also equipped with PCIe interfaces.
29735
29736 (2) This patch renames the functions from 440spe_ to 4xx_ with a
29737 little additional cleanup
29738
29739 Signed-off-by: Stefan Roese <sr@denx.de>
29740
29741 commit c7c6da23028f146d912514b95aefa3da7cf37699
29742 Author: Stefan Roese <sr@denx.de>
29743 Date: Wed Oct 3 07:34:10 2007 +0200
29744
29745 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
29746
29747 This patch is the first patch of a series to make the 440SPe PCIe code
29748 usable on different 4xx PPC platforms. In preperation for the new 405EX
29749 which is also equipped with PCIe interfaces.
29750
29751 (1) This patch renames the files from 440spe_pcie to 4xx_pcie
29752
29753 Signed-off-by: Stefan Roese <sr@denx.de>
29754
29755 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
29756 Author: Marian Balakowicz <m8@semihalf.com>
29757 Date: Wed Oct 24 01:37:36 2007 +0200
29758
29759 TQM5200: Call usb_cpu_init() during board init
29760
29761 usb_cpu_init() configures GPS USB pins, clocks, etc. and
29762 is required for proper operation of kernel USB subsystem.
29763 This setup was previously done in the kernel by the fixup
29764 code which is being removed, thus low level init must be
29765 done by U-boot now.
29766
29767 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29768 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29769
29770 commit b5af773f8d92677e06f3295b45557c9d0a487c24
29771 Author: Zhang Wei <wei.zhang@freescale.com>
29772 Date: Thu Oct 25 17:51:27 2007 +0800
29773
29774 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
29775
29776 The scan code of the key 'z' is 0x1d, which should be handled.
29777
29778 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
29779 controller.
29780
29781 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
29782 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29783
29784 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
29785 Author: Rodolfo Giometti <giometti@enneenne.com>
29786 Date: Mon Oct 15 11:59:17 2007 +0200
29787
29788 PXA USB OHCI: "usb stop" implementation.
29789
29790 Some USB keys need to be switched off before loading the kernel
29791 otherwise they can remain in an undefined status which prevents them
29792 to be correctly recognized by the kernel.
29793
29794 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
29795 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29796
29797 commit 31548249decf18a6b877a18436b6139dd483fe4a
29798 Author: Justin Flammia <jflammia@savantav.com>
29799 Date: Mon Oct 29 17:40:35 2007 -0400
29800
29801 DHCP Client Fix
29802
29803 This is a multi-part message in MIME format.
29804
29805 commit e6e505eae94ed721e123e177489291fc4544b7b8
29806 Author: Justin Flammia <jflammia@savantav.com>
29807 Date: Mon Oct 29 17:19:03 2007 -0400
29808
29809 Found a bug in the way the DHCP Request packet is built, where the IP address
29810 that is offered by the server is bound to prematurely. This patch is a fix of
29811 that bug where the IP address offered by the DHCP server is not used until
29812 after the DHCP ACK from the server is received.
29813
29814 Signed-off-by: Justin Flammia <jflammia@savantav.com>
29815 Signed-off-by: Ben Warren <bwarren@qstreams.com>
29816
29817 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
29818 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29819 Date: Thu Oct 25 17:16:22 2007 -0500
29820
29821 ColdFire 54455: Fix correct boot location for atmel and intel
29822
29823 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29824
29825 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
29826 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29827 Date: Thu Oct 25 17:14:00 2007 -0500
29828
29829 ColdFire: Fix build error when CONFIG_WATCHDOG is defined
29830
29831 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29832
29833 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
29834 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29835 Date: Thu Oct 25 17:12:36 2007 -0500
29836
29837 ColdFire 5329: Assign correct SDRAM size and fix cache
29838
29839 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29840
29841 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
29842 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29843 Date: Thu Oct 25 17:10:23 2007 -0500
29844
29845 ColdFire 5253: Assign correct SDRAM size
29846
29847 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29848
29849 commit 2acefa72ee0026f862ab65597ca687428f63a973
29850 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29851 Date: Thu Oct 25 17:09:17 2007 -0500
29852
29853 ColdFire 5282: Fix external flash boot and return dramsize
29854
29855 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29856
29857 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
29858 Author: Bartlomiej Sieka <tur@semihalf.com>
29859 Date: Thu Oct 25 17:20:01 2007 +0200
29860
29861 TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
29862
29863 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29864
29865 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
29866 Author: Martin Krause <martin.krause@tqs.de>
29867 Date: Wed Oct 24 08:42:25 2007 +0200
29868
29869 TQM5200: fix spurious characters on second serial interface
29870
29871 With this patch PSC3 is configured as UART. This is done, because if
29872 the pins of PSC3 are not configured at all (-> all pins are GPI),
29873 due to crosstalk, spurious characters may be send over the RX232_2_TXD
29874 signal line.
29875
29876 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29877 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
29878
29879 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
29880 Author: Martin Krause <martin.krause@tqs.de>
29881 Date: Wed Oct 24 08:41:27 2007 +0200
29882
29883 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
29884
29885 Some commands for the STK52xx base board try to access the SM501 grafic
29886 controller. But the TQM5200S has no grafic controller (only the TQM5200
29887 and the TQM5200B have). This patch deactivates the commands accessing
29888 the SM501 for the TQM5200S.
29889
29890 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29891 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
29892
29893 commit b31f64343ead9482cd439b1adbe4c34026a641b1
29894 Author: Martin Krause <martin.krause@tqs.de>
29895 Date: Mon Oct 22 16:45:53 2007 +0200
29896
29897 TQM5200: fix spurious characters on second serial interface
29898
29899 With this patch PSC3 is configured as UART. This is done, because if
29900 the pins of PSC3 are not configured at all (-> all pins are GPI),
29901 due to crosstalk, spurious characters may be send over the RX232_2_TXD
29902 signal line.
29903
29904 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29905
29906 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
29907 Author: Martin Krause <martin.krause@tqs.de>
29908 Date: Mon Oct 22 16:40:06 2007 +0200
29909
29910 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
29911
29912 Some commands for the STK52xx base board try to access the SM501 grafic
29913 controller. But the TQM5200S has no grafic controller (only the TQM5200
29914 and the TQM5200B have). This patch deactivates the commands accessing
29915 the SM501 for the TQM5200S.
29916
29917 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29918
29919 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
29920 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29921 Date: Sun Oct 21 09:14:28 2007 +0200
29922
29923 Mips: Fix string functions differ prototype declaration
29924
29925 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29926
29927 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
29928 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
29929 Date: Fri Oct 19 17:51:40 2007 -0500
29930
29931 fsl_pci_init enable COMMAND_MEMORY if inbound window
29932
29933 Patch 16e23c3f removed PCSRBAR allocation. But passing zero windows
29934 to pciauto_setup_device has the side effect of not getting
29935 COMMAND_MEMORY set.
29936
29937 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
29938
29939 commit e9d0d527992566ebef9826962ff1745b2f082b92
29940 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29941 Date: Fri Oct 19 10:55:24 2007 +0200
29942
29943 delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
29944
29945 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29946
29947 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
29948 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29949 Date: Fri Oct 19 08:10:15 2007 +0200
29950
29951 fix warning: no return statement in function returning non-void
29952
29953 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29954
29955 commit e78220f6e514206757acfe247297fc9a328a881f
29956 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29957 Date: Fri Oct 19 06:33:45 2007 +0200
29958
29959 xsengine: Fix no partition type specified, use DOS as default
29960
29961 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29962
29963 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
29964 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29965 Date: Fri Oct 19 00:24:59 2007 +0200
29966
29967 lubbock: Fix no partition type specified, use DOS as default
29968
29969 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29970
29971 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
29972 Author: Wolfgang Denk <wd@denx.de>
29973 Date: Tue Oct 23 16:50:03 2007 +0200
29974
29975 Coding style: keep lists sorted; update CHANGELOG
29976
29977 Signed-off-by: Wolfgang Denk <wd@denx.de>
29978
29979 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
29980 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29981 Date: Fri Oct 19 00:09:05 2007 +0200
29982
29983 Fix missing drivers makefile entries ds1722.c mw_eeprom.c
29984
29985 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29986
29987 commit 96455bfebc9887837095c9051d216f53c61b5f10
29988 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29989 Date: Fri Oct 19 00:07:39 2007 +0200
29990
29991 Fix warning differ in signedness in board/innokom/innokom.c
29992
29993 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29994
29995 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
29996 Author: Marcel Ziswiler <marcel@ziswiler.com>
29997 Date: Fri Oct 19 00:25:33 2007 +0200
29998
29999 fix pxa255_idp board
30000
30001 The pxa255_idp being an old unmaintained board showed several issues:
30002 1. CONFIG_INIT_CRITICAL was still defined.
30003 2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
30004 3. Symbol flash_addr was undeclared.
30005 4. The boards lowlevel_init function was still called memsetup.
30006 5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
30007 6. Using -march=armv5 instead of -march=armv5te resulted in lots of
30008 'target CPU does not support interworking' warnings on recent compilers.
30009 7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
30010 indexes rather than the register definitions from the pxa-regs header
30011 file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
30012 avoid any ambiguities.
30013 8. There were several redefinition warnings concerning ICMR, OSMR3,
30014 OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
30015 9. The board configuration file was rather outdated.
30016 10. The part header file defined the vendor, product and revision arrays
30017 as unsigned chars instead of just chars in the block_dev_desc_t
30018 structure.
30019
30020 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
30021
30022 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
30023 Author: Rune Torgersen <runet@innovsys.com>
30024 Date: Wed Oct 17 11:56:31 2007 -0500
30025
30026 Make MPC8266ADS command selection more robust
30027
30028 Fix MPC8266 command line definition so it won't break when new commands
30029 are added to u-boot.
30030 Signed-off-by Rune Torgersen <runet@innovsys.com>
30031
30032 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
30033 Author: Bartlomiej Sieka <tur@semihalf.com>
30034 Date: Tue Oct 23 13:14:10 2007 +0200
30035
30036 Motion-PRO: Update configuration to accomodate next generation board.
30037
30038 New board has faster oscillator and a different Flash chip. This affects:
30039 - CFG_MPC5XXX_CLKIN
30040 - SDRAM timings
30041 - Flash CS configuration (timings)
30042 - Flash sector size, and thus MTD partition layout
30043 - malloc() arena size (due to bigger Flash sectors)
30044 - smaller memory test range (due to bigger malloc() arena)
30045
30046 This patch also enables more extensive memory testing via "mtest".
30047
30048 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30049
30050 commit eff501904df2bf1724a750062628ba2c51dbb1f8
30051 Author: Bartlomiej Sieka <tur@semihalf.com>
30052 Date: Tue Oct 23 11:36:07 2007 +0200
30053
30054 Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
30055
30056 Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
30057 register must be written a value of 0x00000004 as the first step of the
30058 SDRAM contorller configuration.
30059
30060 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30061
30062 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
30063 Author: Peter Pearse <peter.pearse@arm.com>
30064 Date: Tue Oct 23 10:22:16 2007 +0100
30065
30066 Move PL01* serial drivers to drivers/serial and adjust Makefiles.
30067
30068 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
30069 Author: Stefan Roese <sr@denx.de>
30070 Date: Tue Oct 23 10:17:42 2007 +0200
30071
30072 ppc4xx: lwmon5: Some further GPIO config changes
30073
30074 Signed-off-by: Stefan Roese <sr@denx.de>
30075
30076 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
30077 Author: Vlad Lungu <vlad@comsys.ro>
30078 Date: Sun Oct 21 22:10:10 2007 +0900
30079
30080 [MIPS] Fix UNCACHED_SDRAM
30081
30082 PHYSADDR is for physical address, KSEG1ADDR is for uncached.
30083
30084 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
30085 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30086
30087 commit 00101dd7a32d12f698150123e47e4b3420279f86
30088 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30089 Date: Sun Oct 21 21:30:42 2007 +0900
30090
30091 [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
30092
30093 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30094
30095 commit eb700636db017d310edaeb559b13d82588560674
30096 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30097 Date: Sun Oct 21 10:55:37 2007 +0900
30098
30099 [MIPS] u-boot.lds: Define _gp in a standard manner
30100
30101 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30102
30103 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
30104 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30105 Date: Sun Oct 21 10:55:36 2007 +0900
30106
30107 [MIPS] Fix $gp usage
30108
30109 Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
30110 As a general principle, we should use _gp for $gp.
30111
30112 Thanks to linker script's help we fortunately have _gp which equals to
30113 _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
30114 be able to access to GOT entires, global variables and procedure entry
30115 points. The right thing to do is to use _gp.
30116
30117 This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
30118 which holds the offset from _gp. When updating GOT entries, we use this
30119 offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
30120
30121 This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
30122 I made some change to leave over num_got_entries.
30123
30124 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30125 Cc: Vlad Lungu <vlad@comsys.ro>
30126
30127 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
30128 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30129 Date: Sun Oct 21 10:55:36 2007 +0900
30130
30131 [MIPS] u-boot.lds: Fix __got_start and __got_end
30132
30133 Ensure that __got_start points to top of the `.got', and __got_end points
30134 to bottom as well, so that we never fail to count num_got_entries.
30135
30136 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30137
30138 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
30139 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30140 Date: Sun Oct 21 10:55:36 2007 +0900
30141
30142 [MIPS] u-boot.lds: Remove duplicated .sdata section
30143
30144 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30145
30146 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
30147 Author: Wolfgang Denk <wd@denx.de>
30148 Date: Sun Oct 21 01:01:17 2007 +0200
30149
30150 Minor coding style cleanup; update CHANGELOG
30151
30152 Signed-off-by: Wolfgang Denk <wd@denx.de>
30153
30154 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
30155 Author: Vlad Lungu <vlad@comsys.ro>
30156 Date: Thu Oct 4 20:47:10 2007 +0300
30157
30158 Fix NE2000 driver:
30159
30160 Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
30161 to do anything in eth_stop() if eth_init() was not called.
30162 Simplified RX path in order to avoid timeouts on really really
30163 fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
30164 clever enough to cope with 1 packet per eth_rx().
30165
30166 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
30167
30168 commit df90968b48fb34fa9072fab150db2ac89678f537
30169 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
30170 Date: Mon Sep 24 13:32:13 2007 -0400
30171
30172 Setting MSR[DE] in do_reset
30173
30174 Hello,
30175 This patch ensures the soft reset of the board for the 85xx boards
30176 by setting the MSR[DE] in the do_reset function.
30177
30178 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
30179
30180 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
30181 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
30182 Date: Mon Sep 24 13:36:01 2007 -0400
30183
30184 MSR overwrite fix
30185
30186 Hello,
30187 This patch fixes the MSR overwrite in the start.S when moving out of
30188 the last 4K page.
30189
30190 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
30191
30192 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
30193 Author: Dan Wilson <dwilson@fulcrummicro.com>
30194 Date: Fri Oct 19 11:33:48 2007 -0500
30195
30196 tsec driver should clear RHALT on startup
30197
30198 This was causing problems for some people.
30199
30200 Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
30201 Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
30202 Signed-off-by: Andy Fleming <afleming@freescale.com>
30203
30204 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
30205 Author: Kumar Gala <galak@kernel.crashing.org>
30206 Date: Thu Oct 11 00:29:18 2007 -0500
30207
30208 Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
30209
30210 On the MPC85xx CDS we have two issues:
30211
30212 1. The device tree fixup code did not check to see if the property we are
30213 trying to update is actually found. Its possible that it would update
30214 random memory starting at 0.
30215
30216 2. Newer Linux kernel's have moved the location of the PCI nodes to be
30217 sibilings of the soc node and not children. The explicit PATH to the PCI
30218 node would not be found for these device trees. Add the ability to handle
30219 both paths. In the future we shouldn't handle such fixups by explicit path.
30220
30221 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30222
30223 commit a3063eec775719b7e91023bbec3f64b3118791df
30224 Author: Kumar Gala <galak@kernel.crashing.org>
30225 Date: Thu Oct 11 00:18:48 2007 -0500
30226
30227 Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
30228
30229 On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
30230 console. Make it so we match that config what we tell Linux as the early
30231 STDOUT console.
30232
30233 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30234
30235 commit e1ce3cb617bb06f91f82f98915391175addf3e82
30236 Author: Kumar Gala <galak@kernel.crashing.org>
30237 Date: Tue Oct 2 11:12:27 2007 -0500
30238
30239 Remove magic numbers from cache related operations for mpc85xx
30240
30241 The mpc85xx start code uses some magic numbers that we actually
30242 have #defines for in <config.h> so use those instead.
30243
30244 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30245
30246 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
30247 Author: Detlev Zundel <dzu@denx.de>
30248 Date: Fri Oct 19 16:47:26 2007 +0200
30249
30250 Fix two typos.
30251
30252 Signed-off-by: Detlev Zundel <dzu@denx.de>
30253
30254 commit 281df457c1aa50d2752165d0c5c3282d4027b974
30255 Author: Tony Li <tony.li@freescale.com>
30256 Date: Thu Oct 18 17:47:19 2007 +0800
30257
30258 mpc83xx: Add configure entry for MPC83xx ATM support
30259
30260 Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
30261 Makfile and MAKEALL
30262
30263 Signed-off-by: Tony Li <tony.li@freescale.com>
30264 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30265
30266 commit d2646554f529a9577515eceb0ec5eceee18244ba
30267 Author: Tony Li <tony.li@freescale.com>
30268 Date: Thu Oct 18 17:44:38 2007 +0800
30269
30270 mpc83xx: pq-mds-pib.c typo error
30271
30272 Correct to val8 from val.
30273
30274 Signed-off-by: Tony Li <tony.li@freescale.com>
30275 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30276
30277 commit 3e11ae80fec1ee12194940955431186abf6009c2
30278 Author: Stefan Roese <sr@denx.de>
30279 Date: Wed Oct 17 15:40:19 2007 +0200
30280
30281 ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
30282
30283 Signed-off-by: Stefan Roese <sr@denx.de>
30284
30285 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
30286 Author: Jon Loeliger <jdl@freescale.com>
30287 Date: Tue Oct 16 15:27:43 2007 -0500
30288
30289 Initial mpc8610hpcd Makefile files.
30290
30291 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30292 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
30293 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30294 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30295
30296 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
30297 Author: Jon Loeliger <jdl@freescale.com>
30298 Date: Tue Oct 16 15:26:51 2007 -0500
30299
30300 Initial mpc8610hpcd cpu/, README and include/ files.
30301
30302 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30303 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
30304 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30305 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30306
30307 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
30308 Author: Jon Loeliger <jdl@freescale.com>
30309 Date: Tue Oct 16 13:54:01 2007 -0500
30310
30311 Initial mpc8610hpcd board files.
30312
30313 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30314 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
30315 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30316 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30317
30318 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
30319 Author: runet@innovsys.com <runet@innovsys.com>
30320 Date: Tue Oct 16 14:50:40 2007 -0500
30321
30322 Make MPC8266ADS board compile again.
30323
30324 Signed-off-by: Runet Torgersen <runet@innovsys.com>
30325
30326 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
30327 Author: Jon Loeliger <jdl@freescale.com>
30328 Date: Mon Aug 27 12:41:03 2007 -0500
30329
30330 86xx: Allow for fewer DDR slots per memory controller.
30331
30332 As a direct correlation exists between DDR DIMM slots
30333 and SPD EEPROM addresses used to configure them, use
30334 the individually defined SPD_EEPROM_ADDRESS* values to
30335 determine if a DDR DIMM slot should have its SPD
30336 configuration read or not.
30337
30338 Effectively, this now allows for 1 or 2 DIMM slots
30339 per memory controller.
30340
30341 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30342
30343 commit 4d4a945e189a2f384c66432316da2788a0ac1607
30344 Author: Rodolfo Giometti <giometti@enneenne.com>
30345 Date: Mon Oct 15 11:59:17 2007 +0200
30346
30347 PXA USB OHCI: "usb stop" implementation.
30348
30349 Some USB keys need to be switched off before loading the kernel
30350 otherwise they can remain in an undefined status which prevents them
30351 to be correctly recognized by the kernel.
30352
30353 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
30354
30355 commit e2e93442e558cf1500e92861f99713b2f045ea22
30356 Author: Stefan Roese <sr@denx.de>
30357 Date: Mon Oct 15 11:39:00 2007 +0200
30358
30359 ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
30360
30361 The I2C bootstrap values that can be setup via the "bootstrap" command,
30362 were setup incorrect regarding the generation of the internal sync PCI
30363 clock. The values for PLB clock == 133MHz were slighly incorrect and the
30364 values for PLB clock == 166MHz were totally incorrect. This could
30365 lead to a hangup upon booting while PCI configuration scan.
30366
30367 This patch fixes this issue and configures valid PCI divisor values
30368 for the sync PCI clock, with respect to the provided external async
30369 PCI frequency.
30370
30371 Here the values of the formula in the chapter 14.2 "PCI clocking"
30372 from the 440EPx users manual:
30373
30374 AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
30375
30376 33MHz async PCI frequency:
30377 PLB = 133:
30378 => 32 <= 44.3 <= 65 (div = 3)
30379
30380 PLB = 166:
30381 => 32 <= 55.3 <= 65 (div = 3)
30382
30383 66MHz async PCI frequency:
30384 PLB = 133:
30385 => 65 <= 66.5 <= 132 (div = 2)
30386
30387 PLB = 166:
30388 => 65 <= 83 <= 132 (div = 2)
30389
30390 Signed-off-by: Stefan Roese <sr@denx.de>
30391
30392 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
30393 Author: Stefan Roese <sr@denx.de>
30394 Date: Mon Oct 15 11:29:33 2007 +0200
30395
30396 ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
30397
30398 The BCSR status bit for the 66MHz PCI operation was correctly
30399 addressed (MSB/LSB problem). Now the correct currently setup
30400 PCI frequency is displayed upon bootup.
30401
30402 This patch also fixes this problem on Rainier & Yellowstone, since these
30403 boards use the same souce code as Sequoia & Yosemite do.
30404
30405 Signed-off-by: Stefan Roese <sr@denx.de>
30406
30407 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
30408 Author: Martin Krause <martin.krause@tqs.de>
30409 Date: Wed Sep 26 17:55:56 2007 +0200
30410
30411 TQM860M: adjust for doubled flash sector size.
30412
30413 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
30414 doubled sector size.
30415
30416 Signed-off-by: Martin Krause <martin.krause@tqs.de>
30417
30418 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
30419 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
30420 Date: Wed Sep 26 17:55:54 2007 +0200
30421
30422 TQM8xx: Fix CAN timing.
30423
30424 Signed-off-by: Martin Krause <martin.krause@tqs.de>
30425
30426 commit d43e489baf02afae49077791fb22332d240d8656
30427 Author: Martin Krause <martin.krause@tqs.de>
30428 Date: Thu Sep 27 14:54:36 2007 +0200
30429
30430 TQM866M: fix SDRAM refresh
30431
30432 At 133 MHz the current SDRAM refresh rate is too fast
30433 (measured 4 * 1.17 us).
30434 CFG_MAMR_PTA changes from 39 to 97. This result
30435 in a refresh rate of 4 * 7.8 us at the default clock
30436 50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
30437 This is a compromise until a new method is found to
30438 adjust the refresh rate.
30439
30440 Signed-off-by: Martin Krause <martin.krause@tqs.de>
30441
30442 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
30443 Author: Martin Krause <martin.krause@tqs.de>
30444 Date: Wed Sep 26 17:55:55 2007 +0200
30445
30446 TQM866M: adjust for doubled flash sector size.
30447
30448 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
30449 doubled sector size.
30450
30451 Signed-off-by: Martin Krause <martin.krause@tqs.de>
30452
30453 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
30454 Author: Michal Simek <monstr@monstr.eu>
30455 Date: Sun Oct 14 16:12:29 2007 +0200
30456
30457 [FIX] XUPV2P change command handling
30458 and remove code violation
30459
30460 commit 636400198228d96983c06657b17f760f5989958e
30461 Author: Wolfgang Denk <wd@denx.de>
30462 Date: Sun Oct 14 00:13:19 2007 +0200
30463
30464 Prepare for 1.3.0-rc3 release
30465
30466 Signed-off-by: Wolfgang Denk <wd@denx.de>
30467
30468 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
30469 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30470 Date: Sat Sep 29 13:41:37 2007 +0200
30471
30472 Fix warning differ in signedness in cpu/pxa/mmc.c
30473
30474 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30475
30476 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
30477 Author: Wolfgang Denk <wd@denx.de>
30478 Date: Sat Oct 13 23:51:14 2007 +0200
30479
30480 Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
30481
30482 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30483 Signed-off-by: Wolfgang Denk <wd@denx.de>
30484
30485 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
30486 Author: Wolfgang Denk <wd@denx.de>
30487 Date: Sat Oct 13 21:15:39 2007 +0200
30488
30489 Coding Style cleanup.
30490
30491 Signed-off-by: Wolfgang Denk <wd@denx.de>
30492
30493 commit e1893815b0999410d7a327589611c7b38e95299e
30494 Author: Wolfgang Denk <wd@denx.de>
30495 Date: Fri Oct 12 15:49:39 2007 +0200
30496
30497 GP3 SSA: enable RTC
30498
30499 Signed-off-by: Wolfgang Denk <wd@denx.de>
30500
30501 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
30502 Author: Grzegorz Bernacki <gjb@semihalf.com>
30503 Date: Tue Oct 9 13:58:24 2007 +0200
30504
30505 [ads5121] EEPROM support added.
30506
30507 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
30508
30509 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
30510 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
30511 Date: Sat Oct 6 18:55:35 2007 +0200
30512
30513 AVR32: Initialize bi_flash* in board_init_r
30514
30515 The ATSTK1000-specific flash driver intializes bi_flashstart,
30516 bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
30517 driver, don't.
30518
30519 Initialize these in board_init_r instead so that things will still be
30520 set up correctly when we switch to the CFI driver.
30521
30522 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30523
30524 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
30525 Author: Marian Balakowicz <m8@semihalf.com>
30526 Date: Fri Oct 5 10:40:54 2007 +0200
30527
30528 tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
30529
30530 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30531
30532 commit 92869195ef8210758d2176230c0a36897afd50ed
30533 Author: Bartlomiej Sieka <tur@semihalf.com>
30534 Date: Fri Oct 5 09:46:06 2007 +0200
30535
30536 CM5200: Fix missing null-termination in hostname manipulation code
30537
30538 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30539
30540 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
30541 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
30542 Date: Tue Oct 2 19:09:01 2007 +0200
30543
30544 Fix memtest breakage
30545
30546 CFG_MEMTEST_START uses weird magic involving gd, which fails to
30547 compile. Use hardcoded values instead (we actually know how much RAM
30548 we have on board.)
30549
30550 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30551
30552 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
30553 Author: Stefan Roese <sr@denx.de>
30554 Date: Tue Oct 2 11:44:46 2007 +0200
30555
30556 ppc4xx: Coding style cleanup
30557
30558 Signed-off-by: Stefan Roese <sr@denx.de>
30559
30560 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
30561 Author: Stefan Roese <sr@denx.de>
30562 Date: Tue Oct 2 11:44:19 2007 +0200
30563
30564 ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
30565
30566 Signed-off-by: Stefan Roese <sr@denx.de>
30567
30568 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
30569 Author: Grzegorz Bernacki <gjb@semihalf.com>
30570 Date: Mon Oct 1 09:51:50 2007 +0200
30571
30572 Program EPLD to force full duplex mode for PHY.
30573
30574 EPLD forces modes of PHY operation. By default full duplex is turned off.
30575 This fix turns it on.
30576
30577 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
30578
30579 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
30580 Author: Timo Ketola <timo.ketola@exertus.fi>
30581 Date: Mon Sep 24 14:50:32 2007 +0300
30582
30583 Bugfix: Use only one PTD for one endpoint
30584
30585 Original isp116x-hcd code prepared multiple PTDs for longer than 16
30586 byte transfers for one endpoint. That is unnecessary because the
30587 ISP116x is able to split long data from one PTD into multiple
30588 transactions based on the buffer size of the endpoint. It also caused
30589 serious problems if the endpoint NAKed some of the transactions. In
30590 that case ISP116x wouldn't notice that the other PTDs were for the same
30591 endpoint and would try the other PTDs possibly out of order. That would
30592 break the whole transfer.
30593
30594 This patch makes isp116x_submit_job to use one PTD for one transfer.
30595
30596 Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
30597 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30598
30599 commit 86ec86c04326c3913178a7679aa910de071da75d
30600 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30601 Date: Thu Sep 27 23:27:47 2007 +0200
30602
30603 Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
30604
30605 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30606
30607 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
30608 Author: Stefan Roese <sr@denx.de>
30609 Date: Tue Sep 11 14:12:55 2007 +0200
30610
30611 ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
30612
30613 Signed-off-by: Stefan Roese <sr@denx.de>
30614
30615 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
30616 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
30617 Date: Wed Sep 26 16:35:54 2007 -0500
30618
30619 85xx io out functions need sync after write.
30620
30621 This fixes the mc146818 rtc_read/write functions for 85xx.
30622
30623 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30624
30625 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
30626 Author: Grant Likely <grant.likely@secretlab.ca>
30627 Date: Tue Sep 25 15:48:05 2007 -0600
30628
30629 Fpga: fix incorrect test of CFG_FPGA_XILINX macro
30630
30631 CFG_FPGA_XILINX is a bit value used to test against the value in
30632 CONFIG_FPGA. Testing for a value will always return TRUE. I don't
30633 think that is the intention in this code.
30634
30635 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30636
30637 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
30638 Author: Michal Simek <monstr@monstr.eu>
30639 Date: Mon Sep 24 00:41:30 2007 +0200
30640
30641 [FIX] change command handling and removing code violation
30642
30643 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
30644 Author: Michal Simek <monstr@monstr.eu>
30645 Date: Mon Sep 24 00:36:06 2007 +0200
30646
30647 [FIX] change sets of commands
30648 because changing of command handling brings
30649 compilation problems
30650
30651 commit cb1bc63b75a232571eb69aa2c8aa919321655845
30652 Author: Michal Simek <monstr@monstr.eu>
30653 Date: Mon Sep 24 00:30:42 2007 +0200
30654
30655 [FIX] Email reparation & Copyright
30656 Both codes are written by myself without any
30657 support from CTU
30658
30659 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
30660 Author: Michal Simek <monstr@monstr.eu>
30661 Date: Mon Sep 24 00:25:11 2007 +0200
30662
30663 [PATCH] Change macro name for UartLite
30664 because PowerPC 405 can use UartLite as console
30665
30666 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
30667 Author: Michal Simek <monstr@monstr.eu>
30668 Date: Mon Sep 24 00:21:19 2007 +0200
30669
30670 [PATCH] Add support for design without interrupt controller
30671 Polling timer
30672
30673 commit 0731933ec8ec45d02ba89b52df673d526873cdde
30674 Author: Michal Simek <monstr@monstr.eu>
30675 Date: Mon Sep 24 00:19:48 2007 +0200
30676
30677 [FIX] resolve problem with cpu without barrel shifter
30678
30679 commit db14d77995ce515b728b178b63f82babe60e3d56
30680 Author: Michal Simek <monstr@monstr.eu>
30681 Date: Mon Sep 24 00:18:46 2007 +0200
30682
30683 [FIX] repair email address
30684
30685 commit 481d4328618804add1f818a6c96296121cd0528e
30686 Author: Michal Simek <monstr@monstr.eu>
30687 Date: Mon Sep 24 00:17:42 2007 +0200
30688
30689 [FIX] repair MFSL commands
30690
30691 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
30692 Author: Michal Simek <monstr@monstr.eu>
30693 Date: Mon Sep 24 00:08:37 2007 +0200
30694
30695 synchronizition with mainline
30696
30697 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
30698 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30699 Date: Sun Sep 23 02:42:38 2007 +0900
30700
30701 sh: Add support command of ide with sh
30702
30703 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30704
30705 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
30706 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30707 Date: Sun Sep 23 02:38:42 2007 +0900
30708
30709 sh: Update Makefile
30710
30711 Add support MS7722SE01 to Makefile.
30712
30713 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30714
30715 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
30716 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30717 Date: Sun Sep 23 02:31:13 2007 +0900
30718
30719 sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
30720
30721 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30722
30723 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
30724 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30725 Date: Sun Sep 23 02:19:24 2007 +0900
30726
30727 sh: Update MS7750SE01 platform
30728
30729 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30730
30731 commit 516ad760db3553766267ada01b7d5d727faa4bbd
30732 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30733 Date: Sun Sep 23 02:17:08 2007 +0900
30734
30735 sh: Remove comment out code from include/asm-sh/cpu_sh4.h
30736
30737 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30738
30739 commit b02bad128669e567fce87d8df823b06a0144b8db
30740 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30741 Date: Sun Sep 23 02:12:30 2007 +0900
30742
30743 sh: Update core code of SuperH.
30744
30745 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30746
30747 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
30748 Author: Wolfgang Denk <wd@denx.de>
30749 Date: Thu Sep 20 00:04:14 2007 +0200
30750
30751 v1.3.0-rc2
30752
30753 Signed-off-by: Wolfgang Denk <wd@denx.de>
30754
30755 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
30756 Author: Wolfgang Denk <wd@denx.de>
30757 Date: Tue Sep 18 21:36:35 2007 +0200
30758
30759 Avoid compiler warning.
30760
30761 Signed-off-by: Wolfgang Denk <wd@denx.de>
30762
30763 commit 8a783a65851bc7421ab69f442261215e21b8891a
30764 Author: Grant Likely <grant.likely@secretlab.ca>
30765 Date: Tue Sep 18 12:24:57 2007 -0600
30766
30767 Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
30768
30769 /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
30770 nulls in a string differently. For example, the following statement:
30771 echo "this is a string\0" > afile
30772 Will produce the following with /bin/bash:
30773 "this is a string\0"
30774 But with /bin/dash, will produce:
30775 "this is a string
30776
30777 Bug fixed by moving the embedded null out of the makefile and into the
30778 config header. Also renamed the macro to avoid usage colision with the same
30779 macro used by other board ports.
30780
30781 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30782
30783 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
30784 Author: Wolfgang Denk <wd@denx.de>
30785 Date: Tue Sep 18 17:40:27 2007 +0200
30786
30787 MCC200: fix build warning
30788
30789 The MCC200 board config file includes version.h for some customer-
30790 specific setting, which causes warnings with "make depend"; build
30791 version.h before depend.
30792
30793 Signed-off-by: Wolfgang Denk <wd@denx.de>
30794
30795 commit bd86220f58b99d6896198c385fda132f0c980915
30796 Author: Peter Pearse <peter.pearse@arm.com>
30797 Date: Tue Sep 18 13:07:54 2007 +0100
30798
30799 Move coloured led API to status_led.h
30800 Improve indentation in drivers/at45.c
30801
30802 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
30803 Author: Eirik Aanonsen <eaa@wprmedical.com>
30804 Date: Tue Sep 18 08:47:20 2007 +0200
30805
30806 Update atstk1002 bootargs.
30807
30808 Updates to atstk1002 U-Boot header file:
30809 - Changed bootargs:
30810 * Set the bootargs for at1002 to point to the SD-card partition instead
30811 * ... of the boot flash.
30812 * Removing the rootfstype since that argument are not needed.
30813
30814 Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
30815 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30816
30817 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
30818 Author: Eirik Aanonsen <eaa@wprmedical.com>
30819 Date: Wed Sep 12 13:32:37 2007 +0200
30820
30821 Add some comments to clocks in atstk1002.h
30822
30823 This patch applies some clarifying comments to how the different
30824 clocks are setup according to atstk1002.h Some of the previous
30825 comments where stating wrongful information.
30826
30827 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30828
30829 commit 97213f32416ead885deafea86774e912ffd60ad0
30830 Author: David Saada <David.Saada@ecitele.com>
30831 Date: Mon Sep 17 17:04:47 2007 +0200
30832
30833 Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
30834
30835 Signed-off-by: David Saada <david.saada@ecitele.com>
30836
30837 commit 30363e98fa470fbecea5e8bc0f1443352754f303
30838 Author: Stefan Roese <sr@denx.de>
30839 Date: Mon Sep 17 08:20:47 2007 +0200
30840
30841 Small whitespace cleanup of OneNAND patch
30842
30843 Signed-off-by: Stefan Roese <sr@denx.de>
30844
30845 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
30846 Author: Kyungmin Park <kmpark@infradead.org>
30847 Date: Mon Sep 10 17:15:14 2007 +0900
30848
30849 OneNAND support (take #2)
30850
30851 [PATCH 3/3] OneNAND support (take #2)
30852
30853 OneNAND support at U-Boot
30854
30855 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30856
30857 commit 17aa2800457df0c06b41516f46f126712c196219
30858 Author: Kyungmin Park <kmpark@infradead.org>
30859 Date: Mon Sep 10 17:14:34 2007 +0900
30860
30861 OneNAND support (take #2)
30862
30863 [PATCH 2/3] OneNAND support (take #2)
30864
30865 OneNAND support at U-Boot
30866
30867 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30868
30869 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
30870 Author: Kyungmin Park <kmpark@infradead.org>
30871 Date: Mon Sep 10 17:13:49 2007 +0900
30872
30873 OneNAND support (take #2)
30874
30875 [PATCH 1/3] OneNAND support (take #2)
30876
30877 OneNAND support at U-Boot
30878
30879 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30880
30881 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
30882 Author: Michal Simek <monstr@monstr.eu>
30883 Date: Sun Sep 16 20:51:57 2007 +0200
30884
30885 [FIX] remove files form repository
30886
30887 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
30888 Author: Wolfgang Denk <wd@denx.de>
30889 Date: Sun Sep 16 17:10:04 2007 +0200
30890
30891 TQM8xx[LM]: Fix broken environment alignment.
30892
30893 With recent toolchains, the environment sectors were no longer aligned to
30894 sector boundaries. The reason was a combination of two bugs:
30895
30896 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
30897 for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
30898 this gets defined, is not included here (and cannot be included
30899 without causing lots of problems).
30900
30901 Added a new #define CFG_USE_PPCENV for all boards which really
30902 want to put the environment is a ".ppcenv" section.
30903
30904 2) The linker scripts just include environment.o, silently assuming
30905 that the objects in that file are really in the order in which
30906 they are coded in the C file, i. e. "environment" first, then
30907 "redundand_environment", and "env_size" last. However, current
30908 toolchains (GCC-4.x) reorder the objects, causing the environment
30909 data not to start on a flash sector boundary:
30910
30911 Instead of: we got:
30912
30913 40008000 T environment 40008000 T env_size
30914 4000c000 T redundand_environment 40008004 T redundand_environment
30915 40010000 T env_size 4000c004 T environment
30916
30917 Note: this patch fixes just the first part, and cures the alignment
30918 problem by making sure that "env_size" gets placed correctly. However,
30919 we still have a potential issue because primary and redundant
30920 environment sectors are actually swapped, i. e. we have now:
30921
30922 40008000 T redundand_environment
30923 4000c000 T environment
30924 40010000 T env_size
30925
30926 This shall be fixed in the next version.
30927
30928 Signed-off-by: Wolfgang Denk <wd@denx.de>
30929
30930 commit eb6da8050797c204c9d010548424186c7ce32fc1
30931 Author: Wolfgang Denk <wd@denx.de>
30932 Date: Sun Sep 16 02:39:35 2007 +0200
30933
30934 TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
30935
30936 Signed-off-by: Wolfgang Denk <wd@denx.de>
30937
30938 commit cd2d1602c54cc6957bdef3872272a4b264893960
30939 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
30940 Date: Mon Sep 10 14:54:56 2007 -0400
30941
30942 Typo fix in tsec.c
30943
30944 Fixup for the break statement in wrong place.
30945
30946 [Patch by urwithsughosh@gmail.com]
30947 Acked-by: Andy Fleming <afleming@freescale.com>
30948 Signed-off-by: Wolfgang Denk <wd@denx.de>
30949
30950 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
30951 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30952 Date: Tue Sep 11 17:04:00 2007 +0200
30953
30954 Fix do_div() usage in nand process output
30955
30956 Fix usage of do_div() in nand erase|read|write process output.
30957
30958 The last patch to nand_util.c introduced do_div() instead of libgcc's
30959 implementation. But do_div() returns the quotient in its first
30960 macro parameter and not as result.
30961
30962 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30963
30964 commit c750d2e6692a000a82f29de7bf24e3dc21239161
30965 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30966 Date: Wed Sep 12 12:36:53 2007 +0200
30967
30968 NAND: Add CFG_NAND_QUIET option
30969
30970 This config option sets the default for the progress information
30971 output behavior that can also be configured through the 'quiet'
30972 environment variable.
30973
30974 The legacy NAND code does not print the current progress info
30975 on the console. So this option is for backward compatibility for
30976 units that are in the field and where setting the quiet variable
30977 is not an option. With CFG_NAND_QUIET set to '1' the console
30978 progress info is turned off. This can still be overwritten
30979 through the environment variable.
30980
30981 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30982
30983 commit dcb88630290d2bcd803386dd4c2be73142994c4f
30984 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
30985 Date: Thu Sep 13 16:06:05 2007 -0700
30986
30987 ColdFire: fix build error becasue of bad type of mii_init()
30988
30989 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30990
30991 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
30992 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
30993 Date: Thu Sep 13 16:04:05 2007 -0700
30994
30995 ColdFire: Fix build error caused by pixis.c
30996
30997 Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
30998
30999 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31000
31001 commit e21659e30660a1377c42af135a6114efe39801d9
31002 Author: Sam Sparks <SSparks@twacs.com>
31003 Date: Fri Sep 14 11:14:42 2007 -0600
31004
31005 Update MPC8349ITX*_config to place config.tmp in right place.
31006
31007 MPC834ITX*_config does not store config.tmp at the correct locatation,
31008 causing MPC8349ITXGP to have the wrong TEXT_BASE.
31009
31010 Signed-off-by: Sam Sparks <SSparks@twacs.com>
31011 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31012
31013 commit 1218abf1b5817a39a82399b4b928b00750575bda
31014 Author: Wolfgang Denk <wd@denx.de>
31015 Date: Sat Sep 15 20:48:41 2007 +0200
31016
31017 Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
31018
31019 Signed-off-by: Wolfgang Denk <wd@denx.de>
31020
31021 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
31022 Author: Dirk Behme <dirk.behme@googlemail.com>
31023 Date: Sat Sep 15 11:55:42 2007 +0200
31024
31025 Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
31026
31027 As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
31028 function local.
31029
31030 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
31031
31032 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
31033
31034 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
31035 Author: Michal Simek <monstr@monstr.eu>
31036 Date: Sat Sep 15 00:03:35 2007 +0200
31037
31038 Synchronize with U-BOOT mainline
31039
31040 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
31041 Author: Sam Sparks <SSparks@twacs.com>
31042 Date: Fri Sep 14 11:14:42 2007 -0600
31043
31044 Update MPC8349ITX*_config to place config.tmp in right place.
31045
31046 MPC834ITX*_config does not store config.tmp at the correct locatation,
31047 causing MPC8349ITXGP to have the wrong TEXT_BASE.
31048
31049 Signed-off-by: Sam Sparks <SSparks@twacs.com>
31050 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31051 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31052
31053 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
31054 Author: Bartlomiej Sieka <tur@semihalf.com>
31055 Date: Thu Sep 13 18:21:48 2007 +0200
31056
31057 cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
31058
31059 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31060
31061 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
31062 Author: Bartlomiej Sieka <tur@semihalf.com>
31063 Date: Thu Sep 13 16:33:59 2007 +0200
31064
31065 tqm5200: Restore customary env. variable boot commands for powerpc kernels
31066
31067 - update default definitions of kernel_addr and fdt_addr env. variables
31068 - make arch/powerpc booting the default scenario
31069 - update MTD partition layout to match the above
31070
31071 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31072
31073 commit f34024d4a328e6edd906456da98d2c537155c4f7
31074 Author: Wolfgang Denk <wd@denx.de>
31075 Date: Wed Sep 12 00:48:57 2007 +0200
31076
31077 Fix memory corruption problem on STX GP3 SSA Board.
31078
31079 Signed-off-by: Wolfgang Denk <wd@denx.de>
31080
31081 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
31082 Author: Peter Pearse <peter.pearse@arm.com>
31083 Date: Tue Sep 11 15:35:01 2007 +0100
31084
31085 Final tidy
31086
31087 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
31088 Author: Grzegorz Bernacki <gjb@semihalf.com>
31089 Date: Tue Sep 11 15:42:11 2007 +0200
31090
31091 [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
31092 scan on second pci bus.
31093
31094 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31095
31096 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
31097 Author: Grzegorz Bernacki <gjb@semihalf.com>
31098 Date: Tue Sep 11 12:57:52 2007 +0200
31099
31100 [ppc4xx] Individual handling of sdram.c for bamboo_nand build
31101
31102 Bamboo has a file sdram.c which needs special treatment when building in
31103 separate directory. It has to be linked to build directory otherwise it is
31104 not seen.
31105
31106 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31107
31108 commit d45963854eff39d575124d859419bb4953ce2c87
31109 Author: Michal Simek <monstr@monstr.eu>
31110 Date: Tue Sep 11 00:37:04 2007 +0200
31111
31112 [FIX] Microblaze ML401 - repare FLASH handling
31113
31114 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
31115 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
31116 Date: Mon Sep 10 16:55:59 2007 +0100
31117
31118 Allocate CPU Architecture Code for STMicroelectronics' ST200.
31119
31120 Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
31121 ---------------------------------------------------
31122
31123 commit 754bac48156f8958d8f6a53a51eda88ab5758929
31124 Author: Wolfgang Denk <wd@denx.de>
31125 Date: Mon Sep 10 20:42:31 2007 +0200
31126
31127 Update version to match current state.
31128
31129 Signed-off-by: Wolfgang Denk <wd@denx.de>
31130
31131 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
31132 Author: Grzegorz Bernacki <gjb@semihalf.com>
31133 Date: Mon Sep 10 17:39:08 2007 +0200
31134
31135 [MPC512x] Streamline frame handling in the FEC driver
31136
31137 - convert frame size settings to be derived from a single base
31138 - set frame size to the recommended default value
31139
31140 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31141
31142 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
31143 Author: Kyungmin Park <kmpark@infradead.org>
31144 Date: Mon Sep 10 11:34:00 2007 +0900
31145
31146 Remove compiler warning: target CPU does not support interworking
31147
31148 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31149
31150 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
31151 Author: Wolfgang Denk <wd@denx.de>
31152 Date: Sun Sep 9 21:21:33 2007 +0200
31153
31154 Fix compile error in spc1920 config.
31155
31156 Signed-off-by: Markus Klotzbücher <mk@denx.de>
31157 Signed-off-by: Wolfgang Denk <wd@denx.de>
31158
31159 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
31160 Author: Grant Likely <grant.likely@secretlab.ca>
31161 Date: Fri Sep 7 09:25:07 2007 -0600
31162
31163 Bugfix: make bootm+libfdt compile on boards with no flash
31164
31165 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31166
31167 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
31168 Author: Grzegorz Bernacki <gjb@semihalf.com>
31169 Date: Fri Sep 7 18:35:37 2007 +0200
31170
31171 [PPC440SPe] PCIe environment settings for Katmai and Yucca
31172
31173 - 'pciconfighost' is set by default in order to be able to scan bridges
31174 behind the primary host/PCIe
31175
31176 - 'pciscandelay' env variable is recognized to allow for user-controlled
31177 delay before the PCIe bus enumeration; some peripheral devices require a
31178 significant delay before they can be scanned (e.g. LSI8408E); without the
31179 delay they are not detected
31180
31181 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31182
31183 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
31184 Author: Grzegorz Bernacki <gjb@semihalf.com>
31185 Date: Fri Sep 7 18:20:23 2007 +0200
31186
31187 [PPC440SPe] Improve PCIe configuration space access
31188
31189 - correct configuration space mapping
31190 - correct bus numbering
31191 - better access to config space
31192
31193 Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
31194 first device on the first bus. We now allow to configure up to 16 buses;
31195 also, scanning for devices behind the PCIe-PCIe bridge is supported, so
31196 peripheral devices farther in hierarchy can be identified.
31197
31198 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31199
31200 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
31201 Author: Grzegorz Bernacki <gjb@semihalf.com>
31202 Date: Fri Sep 7 17:46:18 2007 +0200
31203
31204 [PPC440SPe] Convert machine check exceptions handling
31205
31206 Convert using fixup mechanism to suppressing MCK for the duration of config
31207 read/write transaction: while fixups work fine with the case of a precise
31208 exception, we identified a major drawback with this approach when there's
31209 an imprecise case. In this scenario there is the following race condition:
31210 the fixup is (by design) set to catch the instruction following the one
31211 actually causing the exception; if an interrupt (e.g. decrementer) happens
31212 between those two instructions, the ISR code is executed before the fixup
31213 handler the machine check is no longer protected by the fixup handler as it
31214 appears as within the ISR code. In consequence the fixup approach is being
31215 phased out and replaced with explicit suppressing of MCK during a PCIe
31216 config read/write cycle.
31217
31218 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31219
31220 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
31221 Author: Wolfgang Denk <wd@denx.de>
31222 Date: Fri Sep 7 17:43:36 2007 +0200
31223
31224 Fix typo in MAKEALL script.
31225
31226 Signed-off-by: Wolfgang Denk <wd@denx.de>
31227
31228 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
31229 Author: Grzegorz Bernacki <gjb@semihalf.com>
31230 Date: Fri Sep 7 17:09:21 2007 +0200
31231
31232 [MPC512x] Proper handling of larger frames in the FEC driver
31233
31234 When frame larger than local RX buffer is received, it is split and handled
31235 by two buffer descriptors. Prior to this patch the FEC driver discarded
31236 contents of a buffer descriptor without the 'LAST' bit set, so the first
31237 part of the frame was lost in case of larger frames. This fix allows to
31238 safely combine the two pieces into the whole frame.
31239
31240 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31241
31242 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
31243 Author: Rafal Jaworowski <raj@semihalf.com>
31244 Date: Fri Sep 7 17:05:36 2007 +0200
31245
31246 [MPC512x] Correct fixup relocation
31247
31248 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
31249
31250 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
31251 Author: Wolfgang Denk <wd@denx.de>
31252 Date: Fri Sep 7 01:21:25 2007 +0200
31253
31254 Update CHANGELOG, minor coding style cleanup.
31255
31256 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
31257 Author: stefano babic <sbabic@denx.de>
31258 Date: Thu Aug 30 23:01:49 2007 +0200
31259
31260 PXA270: Added support for TrizepsIV board.
31261
31262 This patch add support for the Trizeps IV module (520Mhz).
31263
31264 Signed-off-by: Stefano Babic <sbabic@denx.de>
31265
31266 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
31267 Author: stefano babic <sbabic@denx.de>
31268 Date: Thu Aug 30 22:57:04 2007 +0200
31269
31270 PXA270: Add support for multiple serial ports.
31271
31272 This patch adds support for multiple serial ports to the PXA target.
31273 FFUART, BTUART and STUART are supported.
31274
31275 Signed-off-by: Stefano Babic <sbabic@denx.de>
31276
31277 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
31278 Author: stefano babic <sbabic@denx.de>
31279 Date: Thu Aug 30 22:48:47 2007 +0200
31280
31281 PXA270: fix compile issue (invalid lvalue)
31282
31283 Code is broken for PXA270 due to "invalid lvalue in assignment".
31284
31285 This patch fix it in pxa-regs.h
31286
31287 Signed-off-by: Stefano Babic <sbabic@denx.de>
31288
31289 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
31290 Author: Jason Jin <Jason.jin@freescale.com>
31291 Date: Thu Aug 30 18:19:05 2007 +0800
31292
31293 Add BUILD_DIR support for bios emulator.
31294
31295 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
31296
31297 commit b4d8a55145442f136982634862341a3e02002bda
31298 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31299 Date: Fri Aug 31 14:41:51 2007 +0900
31300
31301 [MIPS] Remove inline asm string functions
31302
31303 Stop using inline string functions on MIPS as other ARCHs do so,
31304 since the optimized inline asm versions are not small.
31305
31306 This change is triggered by a following MIPS build error:
31307 common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
31308 common/exports.c:32: undefined reference to `strcmp'
31309 make: *** [u-boot] Error 1
31310
31311 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31312
31313 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
31314 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31315 Date: Fri Aug 31 14:41:45 2007 +0900
31316
31317 [MIPS] Update asm string header
31318
31319 This patches contains several bugfixes and cleanups in the latest upstream:
31320
31321 - Don't include linux/config.h
31322 - Remove buggy inline version of memscan.
31323 - Merge with Linux 2.6.11-rc3.
31324 - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
31325 - Goodbye mips64. 31704 lines of code bite the dust.
31326 - Replace extern inline with static inline.
31327 - Fix return value of strncpy.
31328 - Remove a bunch more "$1" clobbers.
31329
31330 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31331
31332 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
31333 Author: Bartlomiej Sieka <tur@semihalf.com>
31334 Date: Tue Sep 4 17:31:22 2007 +0200
31335
31336 Fix do_bootm_linux() so that multi-file images with FDT blob boot.
31337
31338 Fix incorrect blob address calculation in do_bootm_linux() that prevents
31339 booting the kernel from a multi-file image (kernel + initrd + blob).
31340
31341 Also, make minor updates to the U-Boot's output and to the coding style.
31342
31343 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31344
31345 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
31346 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
31347 Date: Fri Aug 31 14:29:04 2007 +0200
31348
31349 Add support for Sil680 IDE controller.
31350
31351 o add drivers/sil680.c to support the Sil680 IDE-controller.
31352 o drivers/Makefile: add sil680.o.
31353
31354 Signed-off-by: Gary Jennejohn <garyj@denx.de>
31355
31356 commit e79021223bc339df655e360645a52c457a74b067
31357 Author: Grant Likely <grant.likely@secretlab.ca>
31358 Date: Thu Sep 6 09:47:40 2007 -0600
31359
31360 bootm/fdt: Only process the fdt if an fdt address was provided
31361
31362 Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
31363 kernels using the board info structure (instead of passing a device tree)
31364 This change allows the old style booting to be used if the fdt argument
31365 was not passed to 'bootm'.
31366
31367 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31368 Acked-by: Kim Phillips <kim.phillips@freescale.com>
31369
31370 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
31371 Author: Grant Likely <grant.likely@secretlab.ca>
31372 Date: Thu Sep 6 09:46:23 2007 -0600
31373
31374 Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
31375
31376 Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
31377
31378 Tested on: lite5200b
31379
31380 Note: the fixup functions have not been moved to a common place. This
31381 patch is targeted for immediate merging as in solves a build issue, but
31382 the final name/location of the fixups is still subject to debate. I
31383 propose to merge this now, and move the fixups in the next merge window
31384 to be usable by all targets.
31385
31386 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31387
31388 commit 41bb76e941929f54a73206fb132f7a4c275543a3
31389 Author: Grant Likely <grant.likely@secretlab.ca>
31390 Date: Thu Sep 6 09:46:17 2007 -0600
31391
31392 libfdt: add convenience function fdt_find_and_setprop()
31393
31394 Given the path to a node, fdt_find_and_setprop() allows a property value
31395 to be set directly.
31396
31397 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31398
31399 commit 80767a6cead9990d9e77e62be947843c2c72f469
31400 Author: Peter Pearse <peter.pearse@arm.com>
31401 Date: Wed Sep 5 16:04:41 2007 +0100
31402
31403 Changed API name to coloured_led.h
31404 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
31405 Tidied other cpu/arm920t/start.S code
31406
31407 commit 56a9270521baaa00e12639a978302a67f61ef060
31408 Author: Kumar Gala <galak@kernel.crashing.org>
31409 Date: Thu Aug 30 16:18:18 2007 -0500
31410
31411 Fix ULI RTC support on MPC8544 DS
31412
31413 The RTC on the M1575 ULI chipset requires a dummy read before
31414 we are able to talk to the RTC. We accomplish this by adding a
31415 second memory region to the PHB the ULI is on and read from it.
31416
31417 The second region is added to maintain compatiabilty with Linux's
31418 view of the PCI memory map.
31419
31420 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31421
31422 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
31423 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
31424 Date: Thu Aug 30 01:58:48 2007 -0500
31425
31426 ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
31427
31428 pcie is now differentiated from pci. Add 8641 bus-range updates.
31429
31430 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
31431
31432 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
31433 Author: Peter Pearse <peter.pearse@arm.com>
31434 Date: Tue Sep 4 16:18:38 2007 +0100
31435
31436 Add coloured led interface for ARM boards.
31437 Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
31438
31439 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
31440 Author: Peter Pearse <peter.pearse@arm.com>
31441 Date: Tue Sep 4 14:49:28 2007 +0100
31442
31443 Move include/led.h to board/at91rm9200dk
31444
31445 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
31446 Author: Peter Pearse <peter.pearse@arm.com>
31447 Date: Tue Sep 4 14:25:51 2007 +0100
31448
31449 Ran Lindent on drivers/at45.c
31450
31451 commit 557ab89d294f08dd532f21d19861b40093200a33
31452 Author: Peter Pearse <peter.pearse@arm.com>
31453 Date: Tue Sep 4 14:23:50 2007 +0100
31454
31455 Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
31456
31457 commit 81b73dec16fd1227369a191e725e10044a9d56b8
31458 Author: Gary Jennejohn <garyj@denx.de>
31459 Date: Fri Aug 31 15:21:46 2007 +0200
31460
31461 ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
31462
31463 The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
31464 set to non-zero, because it doesn't support MRM (memory-read-
31465 multiple) correctly. We now added the possibility to configure
31466 this register in the board config file, so that the default value
31467 of 8 can be overridden.
31468
31469 Here the details of this patch:
31470
31471 o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
31472 board-specific settings. As an example the sequoia board requires 0.
31473 Idea from Stefan Roese <sr@denx.de>.
31474 o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
31475 PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
31476 o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
31477 CFG_PCI_CACHE_LINE_SIZE to 0.
31478
31479 Signed-off-by: Gary Jennejohn <garyj@denx.de>
31480 Signed-off-by: Stefan Roese <sr@denx.de>
31481
31482 commit 60174746c668b309378a91488dded898e9553eae
31483 Author: Wolfgang Denk <wd@denx.de>
31484 Date: Fri Aug 31 10:01:51 2007 +0200
31485
31486 Fix TFTP OACK code for short packets.
31487
31488 The old code had a loop limit overflow bug which caused a semi-
31489 infinite loop for small packets, because in "i<len-8", "i" was signed,
31490 but "len" was unsigned, and "len-8" became a huge number for small
31491 values of "len".
31492
31493 This is a workaround which replaces broken commit 8f1bc284.
31494
31495 Signed-off-by: Wolfgang Denk <wd@denx.de>
31496
31497 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
31498 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
31499 Date: Thu Aug 30 15:03:05 2007 +0200
31500
31501 Reduce BOOTDELAY variable to 1 second by default for STK1002
31502
31503 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
31504 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
31505
31506 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
31507 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
31508 Date: Thu Aug 30 15:03:04 2007 +0200
31509
31510 Remove double quotation marks around MAC address for STK1002
31511
31512 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
31513 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
31514
31515 commit ff13ac8c7bbebb238e339592de765c546dba1073
31516 Author: Wolfgang Denk <wd@denx.de>
31517 Date: Thu Aug 30 14:42:15 2007 +0200
31518
31519 Backout commit 8f1bc284 as it causes TFTP to fail.
31520
31521 Signed-off-by: Wolfgang Denk <wd@denx.de>
31522
31523 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
31524 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
31525 Date: Thu Aug 30 02:26:17 2007 -0500
31526
31527 Revert "Fix MPC8544DS PCIe3 scsi."
31528
31529 This reverts commit 9468e680.
31530 Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
31531
31532 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
31533
31534 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
31535 Author: Grant Likely <grant.likely@secretlab.ca>
31536 Date: Wed Aug 29 18:26:24 2007 -0600
31537
31538 tftp: don't implicity trust the format of recevied packets
31539
31540 The TFTP OACK code trusts that the incoming packet is formated as
31541 ASCII text and can be processed by string functions. It also has a
31542 loop limit overflow bug where if the packet length is less than 8, it
31543 ends up looping over *all* of memory to find the 'blksize' string.
31544
31545 This patch solves the problem by forcing the packet to be null
31546 terminated and using strstr() to search for the sub string.
31547
31548 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31549
31550 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
31551 Author: Stefan Roese <sr@denx.de>
31552 Date: Wed Aug 29 16:31:18 2007 +0200
31553
31554 ppc4xx: Change lwmon5 default environment to support Linux RTC
31555
31556 The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
31557 to supply the RTC I2C address as bootline parameter. This patch
31558 adds support for this rtc probing parameter to the bootargs:
31559
31560 "rtc-pcf8563.probe=0,0x51"
31561
31562 Signed-off-by: Stefan Roese <sr@denx.de>
31563
31564 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
31565 Author: Kim Phillips <kim.phillips@freescale.com>
31566 Date: Wed Aug 29 09:06:05 2007 -0500
31567
31568 sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
31569
31570 this had slipped through the cracks, since the sbc board was added
31571 after I wrote the original patch to remove all these symbols, and
31572 before it was merged.
31573
31574 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31575
31576 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
31577 Author: Wolfgang Denk <wd@denx.de>
31578 Date: Wed Aug 29 14:05:30 2007 +0200
31579
31580 Add mii_init() prototype
31581
31582 to get rid of a *lot* of compiler warnings.
31583
31584 Signed-off-by: Wolfgang Denk <wd@denx.de>
31585
31586 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
31587 Author: Wolfgang Denk <wd@denx.de>
31588 Date: Wed Aug 29 13:35:03 2007 +0200
31589
31590 Disable network support on cmi_mpc5xx board
31591
31592 ..because it caused compiler errors and there seems to be no
31593 board maintainer to take care of this.
31594
31595 Signed-off-by: Wolfgang Denk <wd@denx.de>
31596
31597 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
31598 Author: Kumar Gala <galak@kernel.crashing.org>
31599 Date: Mon Aug 20 09:44:00 2007 -0500
31600
31601 Fix MPC8544DS PCIe3 scsi.
31602
31603 <ed.swarthout@freescale.com>
31604
31605 The problem is pciauto_setup_device() getting called from fsl_pci_init.c
31606 is allocating memory space it doesn't need.
31607
31608 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
31609 Signed-off-by: Andy Fleming <afleming@freescale.com>
31610
31611 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
31612 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
31613 Date: Tue Aug 21 09:38:59 2007 -0500
31614
31615 8548cds fixes
31616
31617 Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
31618 correct consoledev needed for linux boot.
31619 Standardize on fdt{file,addr} var to hold dtb file name.
31620
31621 Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
31622
31623 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
31624
31625 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
31626 Author: Haiying Wang <Haiying.Wang@freescale.com>
31627 Date: Thu Aug 23 15:20:54 2007 -0400
31628
31629 Enable L2 cache for MPC8568MDS board
31630
31631 The L2 cache size is 512KB for 8568, print out the correct informaiton.
31632
31633 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31634
31635 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
31636 Author: Jason Jin <Jason.jin@freescale.com>
31637 Date: Wed Aug 22 17:54:49 2007 +0800
31638
31639 Remove the bios emulator binary files from MAI board
31640
31641 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
31642
31643 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
31644 Author: Kim Phillips <kim.phillips@freescale.com>
31645 Date: Tue Aug 21 17:00:17 2007 -0500
31646
31647 support board vendor-common makefiles
31648
31649 if a board/$(VENDOR)/common/Makefile exists, build it.
31650
31651 also add the first such case, board/freescale/common/Makefile, to
31652 handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
31653 dictated by board configuration.
31654
31655 thusly get rid of alternate build dir errors such as:
31656
31657 FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
31658
31659 by putting the common/ mkdir command in its proper place (the common
31660 Makefile). Common bits from existing individual board Makefiles have
31661 been removed.
31662
31663 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31664
31665 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
31666 Author: stefano babic <sbabic@denx.de>
31667 Date: Tue Aug 21 15:52:33 2007 +0200
31668
31669 Fix: TFTP is not working on little endian systems
31670
31671 TFTP does not work anymore after multicast tftp
31672 patch was applied on little endian systems.
31673 This patch fix it.
31674
31675 Signed-off-by: Stefano Babic <sbabic@denx.de>
31676
31677 commit 5f470948570526e9186f053a3003da7719604e90
31678 Author: stefano babic <sbabic@denx.de>
31679 Date: Tue Aug 21 15:50:33 2007 +0200
31680
31681 Fix MAC address setting in DM9000 driver.
31682
31683 The logic to check if there is a correct MAC address in the DM9000
31684 EEPROM, added in the last patch, is wrong. Now the MAC address is
31685 always taken from the environment, even if a suitable MAC is present
31686 in the EEPROM.
31687
31688 Signed-off-by: Stefano Babic <sbabic@denx.de>
31689
31690 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
31691 Author: Martin Krause <martin.krause@tqs.de>
31692 Date: Tue Aug 21 12:40:34 2007 +0200
31693
31694 MPC5xxx: fix some compiler warnings in USB code
31695
31696 Fix the following warnings:
31697 - usb.c:xx: warning: function declaration isn't a prototype
31698 - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
31699 from pointer wihtout a cast
31700
31701 Signed-off-by: Martin Krause <martin.krase@tqs.de>
31702
31703 commit 16e23c3f5dab6937f5109365416808c7f15c122b
31704 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
31705 Date: Mon Aug 20 23:55:33 2007 -0500
31706
31707 fsl_pci_init - Remove self PCSRBAR allocation
31708
31709 CPU physical address space was being wasted by allocating a
31710 PCSRBAR PCI inbound region to it's memory space.
31711
31712 As a rule, PCSRBAR should be left alone since it does not affect
31713 transactions from self and other masters may have changed it.
31714
31715 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
31716
31717 commit 0e700ce03a23bb1921149bc77008ace7103d5289
31718 Author: Martin Krause <martin.krause@tqs.de>
31719 Date: Mon Aug 20 13:56:47 2007 +0200
31720
31721 Fix compiler warning in include/s3c2410.h
31722
31723 This patch fixes the "type qualifiers ignored on fuction return tpye"
31724 warning for include/s3c2410.h
31725
31726 Signed-off-by: Martin Krause <martin.krause@tqs.de>
31727
31728 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
31729 Author: Dirk Behme <dirk.behme@googlemail.com>
31730 Date: Mon Aug 20 07:09:05 2007 +0200
31731
31732 Fix compilation error for omap2420h4_config.
31733
31734 omap2420h4 switched to cfi, so remove old (already disabled) flash.c
31735 and flash_probe() calls in env_flash.c.
31736
31737 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
31738
31739 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
31740 Author: Kim Phillips <kim.phillips@freescale.com>
31741 Date: Fri Aug 10 14:34:14 2007 -0500
31742
31743 fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
31744
31745 and make some minor corrections to the FDT part of the README.
31746
31747 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31748
31749 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
31750 Author: Wolfgang Denk <wd@denx.de>
31751 Date: Wed Aug 29 01:32:05 2007 +0200
31752
31753 Minor coding style cleanup.
31754
31755 Signed-off-by: Wolfgang Denk <wd@denx.de>
31756
31757 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
31758 Author: Heiko Schocher <hs@pollux.denx.de>
31759 Date: Tue Aug 28 17:40:33 2007 +0200
31760
31761 [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
31762
31763 Signed-off-by: Heiko Schocher <hs@denx.de>
31764
31765 commit f98984cb194bb34dbe1db9429d3b51133af30d07
31766 Author: Heiko Schocher <hs@pollux.denx.de>
31767 Date: Tue Aug 28 17:39:14 2007 +0200
31768
31769 IDE: - make ide_inb () and ide_outb () "weak", so boards can
31770 define there own I/O functions.
31771 (Needed for the pcs440ep board).
31772 - The default I/O Functions are again 8 Bit accesses.
31773 - Added CONFIG_CMD_IDE for the pcs440ep Board.
31774
31775 Signed-off-by: Heiko Schocher <hs@denx.de>
31776
31777 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
31778 Author: Semih Hazar <semih.hazar@indefia.com>
31779 Date: Mon Aug 20 19:00:01 2007 +0300
31780
31781 AVR32: Change prototype of memset
31782
31783 Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
31784 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
31785
31786 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
31787 Author: Yuri Tikhonov <yur@emcraft.com>
31788 Date: Sat Aug 25 05:07:16 2007 +0200
31789
31790 POST: limit memory test area to not touch global data anymore
31791
31792 As experienced on lwmon5, on some boards the POST memory test can
31793 corrupt the global data buffer (bd). This patch fixes this issue
31794 by checking and limiting this area.
31795
31796 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
31797 Signed-off-by: Stefan Roese <sr@denx.de>
31798
31799 commit 75e1a84d483e36be10e206e539b028c4889e1158
31800 Author: Stefan Roese <sr@denx.de>
31801 Date: Fri Aug 24 15:41:42 2007 +0200
31802
31803 ppc4xx: Add RTC POST test to lwmon5 board configuration
31804
31805 Since this RTC POST test is taking quite a while to complete
31806 it's only initiated upon special keypress same as the complete
31807 memory POST.
31808
31809 Signed-off-by: Stefan Roese <sr@denx.de>
31810
31811 commit d7bfa620037a6d2210159387571bdf93aa32c162
31812 Author: Stefan Roese <sr@denx.de>
31813 Date: Fri Aug 24 15:19:10 2007 +0200
31814
31815 ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
31816
31817 Signed-off-by: Stefan Roese <sr@denx.de>
31818
31819 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
31820 Author: Stefan Roese <sr@denx.de>
31821 Date: Thu Aug 23 11:02:37 2007 +0200
31822
31823 ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
31824
31825 This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
31826 board. Now the "eeprom" command can be used to read/write from/to this
31827 device. Additionally a new command was added "eepromwp" to en-/disable
31828 the write-protect of this 2nd EEPROM.
31829
31830 The 1st EEPROM is not affected by this write-protect command.
31831
31832 Signed-off-by: Stefan Roese <sr@denx.de>
31833
31834 commit c64fb30e4c5976007d56fc1789c7a0666082b536
31835 Author: Stefan Roese <sr@denx.de>
31836 Date: Wed Aug 22 08:56:09 2007 +0200
31837
31838 ppc4xx: Remove unused option CFG_INIT_RAM_OCM
31839
31840 Signed-off-by: Stefan Roese <sr@denx.de>
31841
31842 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
31843 Author: Stefan Roese <sr@denx.de>
31844 Date: Tue Aug 21 16:27:57 2007 +0200
31845
31846 ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
31847
31848 This patch adds support for the matrix keyboard on the lwmon5 board.
31849 Since the implementation in the dsPCI is kind of compatible with the
31850 "old" lwmon board, most of the code is copied from the lwmon
31851 board directory.
31852
31853 Signed-off-by: Stefan Roese <sr@denx.de>
31854
31855 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
31856 Author: Wolfgang Denk <wd@denx.de>
31857 Date: Sun Aug 19 10:27:34 2007 +0200
31858
31859 Fix some build errors.
31860
31861 Signed-off-by: Wolfgang Denk <wd@denx.de>
31862
31863 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
31864 Author: Wolfgang Denk <wd@denx.de>
31865 Date: Sat Aug 18 22:00:38 2007 +0200
31866
31867 Update CHANGELOG.
31868
31869 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
31870 Author: Kim Phillips <kim.phillips@freescale.com>
31871 Date: Thu Aug 16 22:52:39 2007 -0500
31872
31873 lib_ppc: make board_add_ram_info weak
31874
31875 platforms wishing to display RAM diagnostics in addition to size,
31876 can do so, on one line, in their own board_add_ram_info()
31877 implementation.
31878
31879 this consequently eliminates CONFIG_ADD_RAM_INFO.
31880
31881 Thanks to Stefan for the hint.
31882
31883 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31884
31885 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
31886 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31887 Date: Fri Aug 17 12:43:44 2007 +0900
31888
31889 PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
31890
31891 This patch has been sent on:
31892 - 6 Jun 2007
31893
31894 Many users of PCI config read routines tend to ignore the function
31895 ret value, and are only concerned about the contents of *val. Based
31896 on this, pci_hose_read_config_{byte,word}_via_dword should initialize
31897 the *val on dword read error.
31898
31899 Without this fix, for example, we'll go on scanning bus with vendor or
31900 header_type uninitialized. This brings many unnecessary config trials.
31901
31902 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31903
31904 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
31905 Author: Stefan Roese <sr@denx.de>
31906 Date: Sat Aug 18 14:37:52 2007 +0200
31907
31908 ColdFire: Fix some remaining problems with CFG_CMD_
31909
31910 Signed-off-by: Stefan Roese <sr@denx.de>
31911
31912 commit 8280f6a1c43247616b68224675188e5ccd124650
31913 Author: Stefan Roese <sr@denx.de>
31914 Date: Sat Aug 18 14:33:02 2007 +0200
31915
31916 Coding style cleanup
31917
31918 Signed-off-by: Stefan Roese <sr@denx.de>
31919
31920 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
31921 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31922 Date: Thu Aug 16 19:23:50 2007 -0500
31923
31924 ColdFire: Add M5235EVB Platform for MCF523x
31925
31926 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31927
31928 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
31929 Author: Kim Phillips <kim.phillips@freescale.com>
31930 Date: Fri Aug 17 09:30:00 2007 -0500
31931
31932 mpc83xx: fix typo in DDR2 programming
31933
31934 introduced in the implement board_add_ram_info patch as I was cleaning out the
31935 magic numbers. sorry.
31936
31937 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31938
31939 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
31940 Author: Kim Phillips <kim.phillips@freescale.com>
31941 Date: Thu Aug 16 22:53:09 2007 -0500
31942
31943 mpc83xx: move freescale boards to boards/freescale
31944
31945 includes build fixes.
31946
31947 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31948
31949 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
31950 Author: Kim Phillips <kim.phillips@freescale.com>
31951 Date: Thu Aug 16 22:52:59 2007 -0500
31952
31953 mpc83xx: suppress unused variable 'val8' warning
31954
31955 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31956
31957 commit bbea46f76f767b919070b4829bf34c86bd223248
31958 Author: Kim Phillips <kim.phillips@freescale.com>
31959 Date: Thu Aug 16 22:52:48 2007 -0500
31960
31961 mpc83xx: implement board_add_ram_info
31962
31963 add board_add_ram_info, to make memory diagnostic output more
31964 consistent. u-boot banner output now looks like:
31965
31966 DRAM: 256 MB (DDR1, 64-bit, ECC on)
31967
31968 and for boards with SDRAM on the local bus, a line such as this is
31969 added:
31970
31971 SDRAM: 64 MB (local bus)
31972
31973 also replaced some magic numbers with their equivalent define names.
31974
31975 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31976
31977 commit 14778585d1389d86d5846efec29e5fce892680ce
31978 Author: Tony Li <tony.li@freescale.com>
31979 Date: Fri Aug 17 10:35:59 2007 +0800
31980
31981 mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
31982
31983 The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
31984 And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
31985
31986 Signed-off-by Tony Li <tony.li@freescale.com>
31987
31988 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
31989 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31990 Date: Thu Aug 16 15:05:11 2007 -0500
31991
31992 ColdFire: Add M54455EVB for MCF5445x
31993
31994 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31995
31996 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
31997 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31998 Date: Thu Aug 16 13:20:50 2007 -0500
31999
32000 ColdFire: Add M5253EVBE platform for MCF52x2
32001
32002 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32003
32004 commit a605aacd8324094199402816cc6d9124aba57b8d
32005 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32006 Date: Thu Aug 16 05:04:31 2007 -0500
32007
32008 ColdFire: Add M5249EVB platform for MCF52x2
32009
32010 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32011
32012 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
32013 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32014 Date: Wed Aug 15 20:32:06 2007 -0500
32015
32016 ColdFire: Update Freescale MCF52x2 platforms
32017
32018 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32019
32020 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
32021 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32022 Date: Wed Aug 15 19:55:10 2007 -0500
32023
32024 ColdFire: Update EB+MCF-EV123 platform
32025
32026 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32027
32028 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
32029 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32030 Date: Wed Aug 15 19:46:38 2007 -0500
32031
32032 ColdFire: update TASREG platform for MCF52x2
32033
32034 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32035
32036 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
32037 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32038 Date: Wed Aug 15 19:45:51 2007 -0500
32039
32040 ColdFire: update r5200 platform for MCF52x2
32041
32042 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32043
32044 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
32045 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32046 Date: Wed Aug 15 19:43:20 2007 -0500
32047
32048 ColdFire: idmr platform MCF52x2 update
32049
32050 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32051
32052 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
32053 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32054 Date: Wed Aug 15 19:41:06 2007 -0500
32055
32056 ColdFire: cobra5272 platform for MCF52x2 update
32057
32058 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32059
32060 commit 56115665b4a64c10c01440c57749b265e0908fa4
32061 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32062 Date: Wed Aug 15 19:38:15 2007 -0500
32063
32064 ColdFire: MCF52x2 Header files update
32065
32066 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32067
32068 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
32069 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32070 Date: Wed Aug 15 19:21:21 2007 -0500
32071
32072 ColdFire: MCF52x2 update
32073
32074 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32075
32076 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
32077 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32078 Date: Wed Aug 15 18:46:11 2007 -0500
32079
32080 ColdFire: MCF5329 update cache
32081
32082 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32083
32084 commit 7171977fb8fd77cfb6676953fa9a05789c450513
32085 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32086 Date: Wed Aug 15 15:40:20 2007 -0500
32087
32088 ColdFire: MCF5329 header file clean up
32089
32090 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32091
32092 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
32093 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32094 Date: Wed Aug 15 15:39:17 2007 -0500
32095
32096 ColdFire: MCF5329 Update and cleanup
32097
32098 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32099
32100 commit 10327dc5541f947c0cf7e31fef86c4706169607a
32101 Author: Andy Fleming <afleming@freescale.com>
32102 Date: Thu Aug 16 16:35:02 2007 -0500
32103
32104 Add CONFIG_HAS_ETH0 to all boards with TSEC
32105
32106 The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
32107 to update TSEC1's device-tree node, so we need to add it
32108 to all the boards with TSECs. Do this for 83xx and 86xx, too,
32109 since they will eventually do something similar.
32110
32111 Signed-off-by: Andy Fleming <afleming@freescale.com>
32112
32113 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
32114 Author: Kumar Gala <galak@kernel.crashing.org>
32115 Date: Thu Aug 16 15:05:04 2007 -0500
32116
32117 Update MPC8544 DS PCI memory map
32118
32119 The PCIe bus that the ULI M1575 is connected to has no possible way of
32120 needing more than the fixed amount of IO & Memory space needed by the ULI.
32121
32122 So make it use far less IO & memory space and have it use the shared LAW. This
32123 free's up a LAW for PCIe1 IO space. Also reduce the amount of IO space needed
32124 by each bus.
32125
32126 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32127
32128 commit ea5877e31ed63ade948fd1293895ec23fe01472e
32129 Author: Kumar Gala <galak@kernel.crashing.org>
32130 Date: Thu Aug 16 11:01:21 2007 -0500
32131
32132 Fix up some fdt issues on 8544DS
32133
32134 It looks like we had a merge issue that duplicated a bit of code
32135 in ft_board_setup. Also, we need to set CONFIG_HAS_ETH0 to get
32136 the MAC address properly set in the device tree on boot for TSEC1
32137
32138 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32139
32140 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
32141 Author: Niklaus Giger <niklaus.giger@netstal.com>
32142 Date: Thu Aug 16 15:16:03 2007 +0200
32143
32144 PPC4xx:HCU4/5 cleanup
32145
32146 Minor cleanups to confirm to the u-boot coding style.
32147 Some german expressions -> english.
32148 HCU5 enforces a unique IP adress for a given slot in the rack.
32149
32150 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32151
32152 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
32153 Author: Niklaus Giger <niklaus.giger@netstal.com>
32154 Date: Thu Aug 16 15:16:02 2007 +0200
32155
32156 PPC4xx:HCU4/5 cleanup ecc/sdram init
32157
32158 Make ecc initialisation robust, as DDR2-ECC errors may be generated
32159 while zeroing the RAM.
32160
32161 Return 16 bytes (a cacheline) less than the available memory, as the
32162 board and/or PPC440EPx might have problems accessing the last bytes.
32163
32164 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32165
32166 commit d35b508a55508535b6e8445b718585d27df733d3
32167 Author: Kim Phillips <kim.phillips@freescale.com>
32168 Date: Wed Aug 15 22:29:56 2007 -0500
32169
32170 fdt: suppress unused variable 'bd' warning
32171
32172 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32173
32174 commit 82bd9ee77490588d4da785d75829ca63d0176baf
32175 Author: Andy Fleming <afleming@freescale.com>
32176 Date: Wed Aug 15 20:06:50 2007 -0500
32177
32178 Fix warnings from of_data copy fix
32179
32180 Forgot to cast of_flat_tree to ulong.
32181
32182 Signed-off-by: Andy Fleming <afleming@freescale.com>
32183
32184 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
32185 Author: Andy Fleming <afleming@freescale.com>
32186 Date: Wed Aug 15 20:03:44 2007 -0500
32187
32188 Don't wait for disconnected TSECs
32189
32190 The TSEC driver's PHY code waits a long time for autonegotiation to
32191 complete, even if the link is down. The PHY knows the link is
32192 down or up before autonegotiation completes, so we can short-circuit
32193 the process if the link is down.
32194
32195 Signed-off-by: Andy Fleming <afleming@freescale.com>
32196
32197 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
32198 Author: Andy Fleming <afleming@freescale.com>
32199 Date: Wed Aug 15 20:03:34 2007 -0500
32200
32201 Fix numerous bugs in the 8568 UEC support
32202
32203 Actually, fixed a large bug in the UEC for *all* platforms.
32204 How did this ever work?
32205
32206 uec_init() did not follow the spec for eth_init(), and returned
32207 0 on success. Switch it to return the link like tsec_init()
32208 (and 0 on error)
32209
32210 The immap for the 8568 was defined based on MPC8568, rather than
32211 CONFIG_MPC8568
32212
32213 CONFIG_QE was off
32214
32215 CONFIG_ETHPRIME was set to "Freescale GETH". Now is "FSL UEC0"
32216
32217 Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
32218 enabled
32219
32220 Signed-off-by: Andy Fleming <afleming@freescale.com>
32221
32222 commit 3a79013e2adda53332dfd0b511066a805e929a9d
32223 Author: Andy Fleming <afleming@freescale.com>
32224 Date: Wed Aug 15 20:03:25 2007 -0500
32225
32226 Define tsec flag values in config files
32227
32228 The tsec_info structure and array has a "flags" field for each
32229 ethernet controller. This field is the only reason there are
32230 settings. Switch to defining TSECn_FLAGS for each controller
32231 in the config header, and we can greatly simplify the array, and
32232 also simplify the addition of future boards.
32233
32234 Signed-off-by: Andy Fleming <afleming@freescale.com>
32235
32236 commit ec7238229507e7f47533a611ea8c53319d234cf3
32237 Author: Andy Fleming <afleming@freescale.com>
32238 Date: Wed Aug 15 20:03:13 2007 -0500
32239
32240 Add support for building all boards with a TSEC
32241
32242 Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
32243 Now we can do a MAKEALL test on all of them!
32244
32245 Signed-off-by: Andy Fleming <afleming@freescale.com>
32246
32247 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
32248 Author: Andy Fleming <afleming@freescale.com>
32249 Date: Wed Aug 15 17:30:56 2007 -0500
32250
32251 Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
32252
32253 The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
32254 neglected to *also* put the code inside the similar #ifdef
32255 for CONFIG_OF_FLAT_TREE.
32256
32257 Signed-off-by: Andy Fleming <afleming@freescale.com>
32258
32259 commit 78f9fef7f406078c8bf7191e665a73f795157746
32260 Author: Scott Wood <scottwood@freescale.com>
32261 Date: Wed Aug 15 15:46:46 2007 -0500
32262
32263 mpc885ads: Don't define CONFIG_BZIP2.
32264
32265 bzip2 requires a significant chunk of malloc space, and there isn't
32266 enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
32267 and a downloaded image at 0x400000.
32268
32269 Signed-off-by: Scott Wood <scottwood@freescale.com>
32270
32271 commit 002275a3ed8b114885f6702d6d544d0780dfe689
32272 Author: Michal Simek <Monstr@seznam.cz>
32273 Date: Thu Aug 16 08:54:10 2007 +0200
32274
32275 Bios emulator - fix microblaze toolchain problem
32276
32277 microblaze CPU have problem with bios_emulator code.
32278 Microblaze toolchain doesn't support PRAGMA PACK.
32279
32280 Signed-off-by: Michal Simek <monstr@monstr.eu>
32281
32282 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
32283 Author: Wolfgang Denk <wd@denx.de>
32284 Date: Thu Aug 16 11:51:04 2007 +0200
32285
32286 Minor Coding Style fix; Update CHANGELOG file.
32287
32288 Signed-off-by: Wolfgang Denk <wd@denx.de>
32289
32290 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
32291 Author: Stefan Roese <sr@denx.de>
32292 Date: Thu Aug 16 11:21:49 2007 +0200
32293
32294 ppc4xx: Remove #warning in esd auto_update.c
32295
32296 Signed-off-by: Stefan Roese <sr@denx.de>
32297
32298 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
32299 Author: Stefan Roese <sr@denx.de>
32300 Date: Fri Jun 22 17:32:28 2007 +0200
32301
32302 ppc7xx: Update CPCI750 board
32303
32304 This small CPCI750 update extends the board specific command
32305 "show_config" to display the Marvell strapping registers and
32306 extends the PCI IDE controller.
32307
32308 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
32309 Signed-off-by: Stefan Roese <sr@denx.de>
32310
32311 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
32312 Author: Michal Simek <monstr@monstr.eu>
32313 Date: Thu Aug 16 10:46:28 2007 +0200
32314
32315 [FIX] Changes for bios_emulator code for others architecture
32316
32317 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
32318 Author: Michal Simek <monstr@monstr.eu>
32319 Date: Thu Aug 16 10:45:09 2007 +0200
32320
32321 [FIX] Remove unused include file
32322
32323 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
32324 Author: Stefan Roese <sr@denx.de>
32325 Date: Thu Aug 16 10:18:33 2007 +0200
32326
32327 ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
32328
32329 Signed-off-by: Stefan Roese <sr@denx.de>
32330
32331 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
32332 Author: Stefan Roese <sr@denx.de>
32333 Date: Thu Aug 16 09:54:51 2007 +0200
32334
32335 Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
32336
32337 Signed-off-by: Stefan Roese <sr@denx.de>
32338
32339 commit 02ba7022f62bb75908296c58c63866e1d294b69a
32340 Author: Stefan Roese <sr@denx.de>
32341 Date: Thu Aug 16 09:52:29 2007 +0200
32342
32343 ppc4xx: Update Sequoia/Rainier bootstrap command
32344
32345 As suggested by David Mitchell, here an update for the Sequoia/Rainier
32346 bootstrap command.
32347
32348 Signed-off-by: Stefan Roese <sr@denx.de>
32349
32350 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
32351 Author: Kim Phillips <kim.phillips@freescale.com>
32352 Date: Wed Aug 15 22:30:39 2007 -0500
32353
32354 mpc83xx: enable libfdt by default on freescale boards
32355
32356 this enables libfdt code by default for the
32357 freescale mpc8313erdb, mpc832xemds, mpc8349emds,
32358 mpc8349itx and gp boards.
32359
32360 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32361
32362 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
32363 Author: Kim Phillips <kim.phillips@freescale.com>
32364 Date: Wed Aug 15 22:30:33 2007 -0500
32365
32366 mpc83xx: migrate remaining freescale boards to libfdt
32367
32368 this adds libfdt support code for the freescale
32369 mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
32370 and gp boards.
32371
32372 Boards remain compatible with OF_FLAT_TREE.
32373
32374 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32375
32376 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
32377 Author: Kim Phillips <kim.phillips@freescale.com>
32378 Date: Wed Aug 15 22:30:26 2007 -0500
32379
32380 mpc83xx: move common /memory node update mechanism to cpu.c
32381
32382 also adds common prototypes to include/common.h.
32383
32384 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32385
32386 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
32387 Author: Kim Phillips <kim.phillips@freescale.com>
32388 Date: Wed Aug 15 22:30:19 2007 -0500
32389
32390 mpc83xx: remaining 8360 libfdt fixes
32391
32392 PCI clocks and QE frequencies weren't being updated, and the core clock
32393 was being updated incorrectly. This patch also adds a /memory node if
32394 it doesn't already exist prior to update.
32395
32396 plus some cosmetic trimming to single line comments.
32397
32398 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32399
32400 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
32401 Author: Kim Phillips <kim.phillips@freescale.com>
32402 Date: Wed Aug 15 22:30:12 2007 -0500
32403
32404 mpc83xx: fix UEC2->1 typo in libfdt setup code
32405
32406 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32407
32408 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
32409 Author: Kim Phillips <kim.phillips@freescale.com>
32410 Date: Wed Aug 15 22:30:05 2007 -0500
32411
32412 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
32413
32414 and reorder the existing 83xx maintainers alpha.
32415
32416 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32417
32418 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
32419 Author: Michal Simek <monstr@monstr.eu>
32420 Date: Wed Aug 15 21:15:05 2007 +0200
32421
32422 [FIX] Resolve problem with warnings
32423 microblaze toolchain don't support PRAGMA PACK.
32424
32425 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
32426 Author: Michal Simek <monstr@monstr.eu>
32427 Date: Wed Aug 15 21:05:07 2007 +0200
32428
32429 [FIX] Correction command setting for Microblaze boards
32430
32431 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
32432 Author: Michal Simek <monstr@monstr.eu>
32433 Date: Wed Aug 15 21:03:41 2007 +0200
32434
32435 [FIX] Correction command definition
32436
32437 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
32438 Author: Jon Loeliger <jdl@freescale.com>
32439 Date: Wed Aug 15 11:55:35 2007 -0500
32440
32441 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
32442
32443 Remove a leftover in net/tftp.c while we're at it.
32444
32445 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32446
32447 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
32448 Author: Jon Loeliger <jdl@freescale.com>
32449 Date: Wed Aug 15 12:20:40 2007 -0500
32450
32451 Move the MPC8641HPCN board under board/freescale.
32452
32453 Minor path corrections needed to ensure buildability.
32454
32455 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32456
32457 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
32458 Author: Jon Loeliger <jdl@freescale.com>
32459 Date: Wed Aug 15 11:46:22 2007 -0500
32460
32461 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
32462
32463 Remove a leftover in net/tftp.c while we're at it.
32464
32465 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32466
32467 commit 210f463c71917b7a4495c2103c228b9c179ae64d
32468 Author: Jerry Van Baren <gvb.uboot@gmail.com>
32469 Date: Wed Aug 15 11:13:15 2007 -0400
32470
32471 Fix where the #ifdef CFG_BOOTMAPSZ is placed.
32472
32473 Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
32474 interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
32475 when it should have gone inside of the conditional. As a result, it
32476 broke non-LIBFDT board builds.
32477
32478 Also added a missing "not." to the comment.
32479
32480 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32481
32482 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
32483 Author: Niklaus Giger <niklaus.giger@netstal.com>
32484 Date: Wed Aug 15 12:14:23 2007 +0200
32485
32486 PPC4xx:HCU4/5-Board fix compile warning
32487
32488 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32489
32490 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
32491 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32492 Date: Tue Aug 14 14:06:45 2007 -0500
32493
32494 Fix malloc size error in ahci_init_one.
32495
32496 Typically this causes scsi init to corrupt the
32497 devlist and break the coninfo command.
32498 Fix a compiler size warning.
32499
32500 Signed-off-by: Jason Jin <jason.jin@freescale.com>
32501 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32502 Acked-by: Andy Fleming <afleming@freescale.com>
32503
32504 commit b361acd64fd2525c081b9b288b0804efe209c0e9
32505 Author: ksi@koi8.net <ksi@koi8.net>
32506 Date: Tue Aug 14 10:02:16 2007 -0700
32507
32508 TI DaVinci - fix unsupported %hhx format
32509
32510 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
32511
32512 commit f01dbb5424a81453c81190dd30e945891466f621
32513 Author: Wolfgang Denk <wd@denx.de>
32514 Date: Tue Aug 14 18:42:36 2007 +0200
32515
32516 Coding style cleanup. Update CHANGELOG.
32517
32518 Signed-off-by: Wolfgang Denk <wd@denx.de>
32519
32520 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
32521 Author: Andy Fleming <afleming@freescale.com>
32522 Date: Tue Aug 14 10:32:59 2007 -0500
32523
32524 Fix initrd/dtb interaction
32525
32526 The original code would wrongly relocate the blob to be right before
32527 the initrd if it existed. The blob *must* be within CFG_BOOTMAPSZ,
32528 if it is defined. So we make two changes:
32529
32530 1) flag the blob for relocation whenever its address is above BOOTMAPSZ
32531
32532 2) If the blob is being relocated, relocate it before kbd, not initrd
32533
32534 Signed-off-by: Andy Fleming <afleming@freescale.com>
32535
32536 commit e54b970173769307a116bd34028b6d0c2eea2a4e
32537 Author: Peter Pearse <peter.pearse@arm.com>
32538 Date: Tue Aug 14 15:40:00 2007 +0100
32539
32540 Supply spi interface in at45.c
32541
32542 commit 4ce846ec59f36b85d6644a769690ad3feb667575
32543 Author: Stefan Roese <sr@denx.de>
32544 Date: Tue Aug 14 15:12:01 2007 +0200
32545
32546 POST: Fix merge problem
32547
32548 Signed-off-by: Stefan Roese <sr@denx.de>
32549
32550 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
32551 Author: Stefan Roese <sr@denx.de>
32552 Date: Tue Aug 14 15:03:17 2007 +0200
32553
32554 Coding style cleanup
32555
32556 Signed-off-by: Stefan Roese <sr@denx.de>
32557
32558 commit 779e975117a75e91fcebe226a63104dbfb924ab1
32559 Author: Stefan Roese <sr@denx.de>
32560 Date: Tue Aug 14 14:44:41 2007 +0200
32561
32562 ppc4xx: Add initial Zeus (PPC405EP) board support
32563
32564 Signed-off-by: Stefan Roese <sr@denx.de>
32565
32566 commit c5a172a5fd636c12467429e3f7910e53773979c6
32567 Author: Stefan Roese <sr@denx.de>
32568 Date: Tue Aug 14 14:41:55 2007 +0200
32569
32570 POST: Add option for external ethernet loopback test
32571
32572 When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
32573 is not done using an internal loopback connection, but by assuming
32574 that an external loopback connector is plugged into the board.
32575
32576 Signed-off-by: Stefan Roese <sr@denx.de>
32577
32578 commit eb2b4010ae426245172988804ee8d9193fb41038
32579 Author: Stefan Roese <sr@denx.de>
32580 Date: Tue Aug 14 14:39:44 2007 +0200
32581
32582 POST: Add ppc405 support to cache and UART POST
32583
32584 Signed-off-by: Stefan Roese <sr@denx.de>
32585
32586 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
32587 Author: Peter Pearse <peter.pearse@arm.com>
32588 Date: Tue Aug 14 10:46:32 2007 +0100
32589
32590 Replace lost end of at45.c.
32591
32592 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
32593 Author: Peter Pearse <peter.pearse@arm.com>
32594 Date: Tue Aug 14 10:30:06 2007 +0100
32595
32596 Update Makefiles for merged and split at45.c.
32597
32598 commit 3454cece2db57cb9eb7087995f7e73066a163f71
32599 Author: Peter Pearse <peter.pearse@arm.com>
32600 Date: Tue Aug 14 10:21:06 2007 +0100
32601
32602 Delete the merged files.
32603
32604 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
32605 Author: Peter Pearse <peter.pearse@arm.com>
32606 Date: Tue Aug 14 10:14:05 2007 +0100
32607
32608 Add the files.
32609
32610 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
32611 Author: Peter Pearse <peter.pearse@arm.com>
32612 Date: Tue Aug 14 10:10:52 2007 +0100
32613
32614 Add MACH_TYPE records for several AT91 boards.
32615 Merge to two at45.c files into a common file, split to at45.c and spi.c
32616 Fix spelling error in DM9161 PHY Support.
32617 Initialize at91rm9200 board (and set LED).
32618 Add PIO control for at91rm9200dk LEDs and Mux.
32619 Change dataflash partition boundaries to be compatible with Linux 2.6.
32620
32621 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
32622 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
32623
32624 commit 4ef35e53c693556c54b0c22d6f873de87bade253
32625 Author: Wolfgang Denk <wd@denx.de>
32626 Date: Tue Aug 14 09:54:46 2007 +0200
32627
32628 Coding style cleanup, update CHANGELOG
32629
32630 Signed-off-by: Wolfgang Denk <wd@denx.de>
32631
32632 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
32633 Author: Wolfgang Denk <wd@denx.de>
32634 Date: Tue Aug 14 09:47:27 2007 +0200
32635
32636 Coding style cleanup; rebuild CHANGELOG
32637
32638 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
32639 Author: Randy Vinson <rvinson@linuxbox.(none)>
32640 Date: Tue Feb 27 19:42:22 2007 -0700
32641
32642 85xxCDS: Add make targets for legacy systems.
32643
32644 The PCI ID select values on the Arcadia main board differ depending
32645 on the version of the hardware. The standard configuration supports
32646 Rev 3.1. The legacy target supports Rev 2.x.
32647
32648 Signed-off-by Randy Vinson <rvinson@mvista.com>
32649
32650 commit e41094c7e38177c755fbd9b182018069614f080d
32651 Author: Andy Fleming <afleming@freescale.com>
32652 Date: Tue Aug 14 01:50:09 2007 -0500
32653
32654 85xxCDS: Enable the VIA PCI-to-ISA bridge.
32655
32656 Author: Randy Vinson <rvinson@linuxbox.(none)>
32657
32658 Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
32659 Arcadia main board.
32660
32661 Signed-off-by: Randy Vinson <rvinson@mvista.com>
32662 Signed-off-by: York Sun <yorksun@freescale.com>
32663
32664 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
32665 Author: Andy Fleming <afleming@freescale.com>
32666 Date: Tue Aug 14 00:14:25 2007 -0500
32667
32668 Add support for UEC to 8568
32669
32670 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32671 Signed-off-by: Andy Fleming <afleming@freescale.com>
32672
32673 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
32674 Author: Haiying Wang <Haiying.Wang@freescale.com>
32675 Date: Tue Jun 19 14:18:34 2007 -0400
32676
32677 Add PCI support for MPC8568MDS board
32678
32679 This patch is against u-boot-mpc85xx.git of www.denx.com
32680
32681 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32682 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
32683
32684 commit d111d6382c99fdea08c2312eeeae8786945e189a
32685 Author: Haiying Wang <Haiying.Wang@freescale.com>
32686 Date: Tue Jun 19 14:18:32 2007 -0400
32687
32688 Empirically set cpo and clk_adjust for mpc85xx DDR2 support
32689
32690 This patch is against u-boot-mpc85xx.git of www.denx.com
32691
32692 Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
32693 both MPC8548CDS board and MPC8568MDS board, especially for supporting
32694 533MHz DDR2.
32695
32696 Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
32697 DDR2 on all current board versions especially ver 1.92 or later to bring
32698 up.
32699
32700 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32701
32702 commit 3db0bef59eab1155801618cef5c481e97553b597
32703 Author: Kumar Gala <galak@kernel.crashing.org>
32704 Date: Tue Aug 7 18:07:27 2007 -0500
32705
32706 Use an absolute address when jumping out of 4k boot page
32707
32708 On e500 when we leave the 4k boot page we should use an absolute address since
32709 we don't know where the board code may want us to be really running at.
32710
32711 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32712
32713 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
32714 Author: Andy Fleming <afleming@freescale.com>
32715 Date: Mon Aug 13 14:49:59 2007 -0500
32716
32717 MPC85xx BA bits not set for 3-bit bank address DIMM
32718
32719 The current implementation does not set the number of bank address bits
32720 (BA) in the processor. The default assumes 2 logical bank bits. This
32721 works fine for a DIMM that uses devices with 4 internal banks (SPD
32722 byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
32723 devices with 8 internal banks (SPD byte17 = 0x8).
32724
32725 Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
32726
32727 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
32728 Author: Andy Fleming <afleming@freescale.com>
32729 Date: Mon Aug 13 14:38:06 2007 -0500
32730
32731 Fix minor 85xx warnings
32732
32733 Some patches had inserted warnings into the build:
32734 * mpc8560ads declared data without using it
32735 * cpu_init declared ecm and immap without using it in all CONFIGs
32736 * MPC8548CDS.h had its default filenames changed so that they contained
32737 "\m" in the paths. Made the defaults not Windows-specific (or
32738 anything-specific)
32739
32740 Signed-off-by: Andy Fleming <afleming@freescale.com>
32741
32742 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
32743 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32744 Date: Fri Jul 27 01:50:52 2007 -0500
32745
32746 8548cds PCIE support.
32747
32748 Make the early L1 cache stack region guarded to prevent speculative
32749 fetches outside the locked range.
32750
32751 Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
32752 init.S whitespace cleanup.
32753
32754 Allow TEXT_BASE value to be specified on command line. This allows it
32755 to be set to 0xfffc0000 which cuts the uboot binary in half.
32756
32757 Clear and enable lbc and ecm errors.
32758
32759 Update last_busno in device-tree for pci and pcie.
32760
32761 Remove load of obsolete cpu/mpc85xx/pci.0
32762
32763 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32764 Acked-by: Andy Fleming <afleming@freescale.com>
32765
32766 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
32767 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32768 Date: Fri Jul 27 01:50:51 2007 -0500
32769
32770 8544ds PCIE support
32771
32772 PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
32773
32774 Enable LBC and ECM errors and clear error registers.
32775
32776 Add tftpflash env var to get uboot from tftp server and flash it.
32777
32778 Add pci/pcie convenience env vars to display register space:
32779 "run pcie3regs" to see all pcie3 ccsr registers
32780 "run pcie3cfg" to see all cfg registers
32781 Whitespace cleanup and MPC8544DS.h
32782
32783 Enable CONFIG_INTERRUPTS.
32784
32785 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32786 Acked-by: Andy Fleming <afleming@freescale.com>
32787
32788 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
32789 Author: Andy Fleming <afleming@freescale.com>
32790 Date: Tue Aug 14 01:34:21 2007 -0500
32791
32792 85xx start.S cleanup and exception support
32793
32794 From: Ed Swarthout <Ed.Swarthout@freescale.com>
32795
32796 Support external interrupts from platform to eliminate system hangs.
32797 Define CONFIG_INTERRUPTS board configure option to enable.
32798 Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
32799
32800 Remove extra cpu initialization redundant with hardware initialization.
32801 Whitespace cleanup.
32802
32803 Define and use _START_OFFSET consistent with other processors using
32804 ppc_asm.tmpl
32805
32806 Move additional code from .text to boot page to make room for
32807 exception vectors at start of image.
32808
32809 Handle Machine Check, External and Critical exceptions.
32810
32811 Fix e500 machine check error determination in traps.c
32812
32813 TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
32814
32815 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32816 Acked-by: Andy Fleming <afleming@freescale.com>
32817
32818 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
32819 Author: Andy Fleming <afleming@freescale.com>
32820 Date: Tue Aug 14 01:33:18 2007 -0500
32821
32822 Add MPC8544DS README
32823
32824 Signed-off-by: Andy Fleming <afleming@freescale.com>
32825
32826 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
32827 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32828 Date: Fri Jul 27 01:50:48 2007 -0500
32829
32830 85xx allow debugger to configure ddr.
32831
32832 Only check for mpc8548 rev 1 when compiled for 8548.
32833
32834 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32835 Acked-by: Andy Fleming <afleming@freescale.com>
32836
32837 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
32838 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32839 Date: Fri Jul 27 01:50:47 2007 -0500
32840
32841 mpc85xx L2 cache reporting and SRAM relocation option.
32842
32843 Allow debugger to override flash cs0/cs1 settings to enable alternate
32844 boot regions
32845
32846 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32847 Acked-by: Andy Fleming <afleming@freescale.com>
32848
32849 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
32850 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32851 Date: Fri Jul 27 01:50:46 2007 -0500
32852
32853 e500 needs ppc_asm.tmp MCK_EXCEPTION
32854
32855 Always define MCK_EXCEPTION macro - so e500 can use it too.
32856
32857 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32858 Acked-by: Andy Fleming <afleming@freescale.com>
32859
32860 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
32861 Author: David Updegraff <dave@cray.com>
32862 Date: Mon Jun 11 10:41:07 2007 -0500
32863
32864 multicast tftp: RFC2090
32865
32866 Implemented IETF RFC2090, Multicast TFTP. Initial implementation
32867 on Realtek RTL8139 and Freescale TSEC.
32868
32869 Signed-off-by: David Updegraff <dave@cray.com>
32870 Signed-off-by: Ben Warren <bwarren@qstreams.com>
32871
32872 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
32873 Author: Wilson Callan <wcallan@savantav.com>
32874 Date: Sat Jul 28 10:56:13 2007 -0400
32875
32876 New CONFIG_BOOTP_SERVERIP option
32877
32878 Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
32879 from the bootp server
32880
32881 Signed-off-by: Wilson Callan <wcallan@savantav.com>
32882 Signed-off-by: Ben Warren <bwarren@qstreams.com>
32883
32884 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
32885 Author: Mike Rapoport <mike@compulab.co.il>
32886 Date: Sun Aug 12 08:48:27 2007 +0300
32887
32888 Add ability to take MAC address from the environment to DM9000 driver
32889
32890 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
32891 Signed-off-by: Ben Warren <bwarren@qstreams.com>
32892
32893 commit be5d72d10d47609326226225181e301fb9a33b58
32894 Author: Wolfgang Denk <wd@denx.de>
32895 Date: Mon Aug 13 21:57:53 2007 +0200
32896
32897 Minor coding style cleanup. Update CHANGELOG.
32898
32899 Signed-off-by: Wolfgang Denk <wd@denx.de>
32900
32901 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
32902 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
32903 Date: Sat Aug 11 06:54:58 2007 -0500
32904
32905 Modify SBC8641D to use new Freescale PCI routines
32906
32907 PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
32908 adapter.
32909
32910 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
32911 Signde-off-by: Jon Loeliger <jdl@freescale.com>
32912
32913 commit a08458303e7f9db67f296980036d3292c35cb45c
32914 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32915 Date: Fri Jun 29 18:38:51 2007 +0200
32916
32917 atmel_mci: Fix data timeout value
32918
32919 Calculate the data timeout based on values from the CSD instead of
32920 just using a hardcoded DTOR value. This is a backport of a similar fix
32921 in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
32922 instead of down.
32923
32924 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32925
32926 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
32927 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32928 Date: Mon Aug 13 17:22:31 2007 +0200
32929
32930 AVR32: Include <div64.h> instead of <asm/div64.h>
32931
32932 include/asm-avr32/div64.h was recently moved to include/div64.h, but
32933 cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
32934 the patch was merged perhaps?)
32935
32936 This patch updates cpu/at32ap/interrupts.c so that the avr32 port
32937 compiles again.
32938
32939 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32940
32941 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
32942 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32943 Date: Wed Jun 27 13:34:26 2007 +0200
32944
32945 atmel_mci: Use 512 byte blocksize if possible
32946
32947 Instead of always using the largest blocksize the card supports, check
32948 if it can support smaller block sizes and use 512 bytes if possible.
32949 Most cards do support this, and other parts of u-boot seem to have
32950 trouble with block sizes different from 512 bytes.
32951
32952 Also enable underrun/overrun protection.
32953
32954 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32955 Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
32956
32957 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
32958 Author: Stefan Roese <sr@denx.de>
32959 Date: Mon Aug 13 09:05:33 2007 +0200
32960
32961 ppc4xx: Fix problem in PLL clock calculation
32962
32963 This patch was originall provided by David Mitchell <dmitchell@amcc.com>
32964 and fixes a bug in the PLL clock calculation.
32965
32966 Signed-off-by: Stefan Roese <sr@denx.de>
32967
32968 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
32969 Author: Wolfgang Denk <wd@denx.de>
32970 Date: Sun Aug 12 21:34:50 2007 +0200
32971
32972 Update CHANGELOG
32973
32974 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
32975 Author: Wolfgang Denk <wd@denx.de>
32976 Date: Sun Aug 12 21:34:34 2007 +0200
32977
32978 Minor alignment of output, 2nd try.
32979 Also update CHANGELOG
32980
32981 Signed-off-by: Wolfgang Denk <wd@denx.de>
32982
32983 commit 6b309f22a724fad8418e811751a0741b893419cf
32984 Author: Wolfgang Denk <wd@denx.de>
32985 Date: Sun Aug 12 20:35:49 2007 +0200
32986
32987 Minor alignment of output
32988
32989 Signed-off-by: Wolfgang Denk <wd@denx.de>
32990
32991 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
32992 Author: Wolfgang Denk <wd@denx.de>
32993 Date: Sun Aug 12 18:28:18 2007 +0200
32994
32995 Cleanup output on ADS5121 board
32996
32997 Signed-off-by: Wolfgang Denk
32998
32999 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
33000 Author: Wolfgang Denk <wd@denx.de>
33001 Date: Sun Aug 12 15:11:38 2007 +0200
33002
33003 Adapt board configuration and fix kernel crash on MCC200 board.
33004
33005 The update procedure was modified to turn off the USB subsystem
33006 before exit for MCC200 and TRAB. This is necessary as otherwise the
33007 USB controller continues to write periodically to system memory!
33008
33009 MCC200-specific notes:
33010 - the patch disables the magic key check for MCC200
33011 - the patch contains the configuration changes made
33012 for the new revision of the board.
33013
33014 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
33015 Signed-off-by: Wolfgang Denk <wd@denx.de>
33016
33017 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
33018 Author: Wolfgang Denk <wd@denx.de>
33019 Date: Sun Aug 12 14:47:54 2007 +0200
33020
33021 Adjust default configuration of ADS5121 board.
33022
33023 Signed-off-by: Wolfgang Denk <wd@denx.de>
33024
33025 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
33026 Author: Wolfgang Denk <wd@denx.de>
33027 Date: Sun Aug 12 14:27:39 2007 +0200
33028
33029 Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
33030
33031 Signed-off-by: Wolfgang Denk <wd@denx.de>
33032
33033 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
33034 Author: Gerald Van Baren <vanbaren@cideas.com>
33035 Date: Tue Aug 7 21:14:22 2007 -0400
33036
33037 Improve error print messages.
33038
33039 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33040
33041 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
33042 Author: Kim Phillips <kim.phillips@freescale.com>
33043 Date: Tue Jul 17 13:57:04 2007 -0500
33044
33045 fdt: allow for builds that don't want env and bd_t nodes
33046
33047 protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
33048 area.
33049
33050 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33051
33052 commit 91148bf7aeba142d6f348805db7625db7da64d6f
33053 Author: Kim Phillips <kim.phillips@freescale.com>
33054 Date: Tue Jul 17 13:56:53 2007 -0500
33055
33056 fdt: do board setup based on fdt address specified on bootm line
33057
33058 The last fdt patch to bootm did board setup based on the address
33059 specified by a prior fdt address command invocation. The bootm
33060 code, as its call to fdt_chosen does, should use the fdt specified
33061 by the user on the bootm command. Note this restores full
33062 functionality for the 8360's existing default boot environment
33063 values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
33064 before booting a kernel).
33065
33066 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33067
33068 commit e125a2ffc209dd34794e326c7175658253beadf3
33069 Author: Gerald Van Baren <vanbaren@cideas.com>
33070 Date: Tue Jul 10 20:40:39 2007 -0400
33071
33072 Call ft_board_setup() from the bootm command.
33073
33074 In the patch titled "Create new fdt boardsetup command..." I removed the
33075 call to ft_board_setup() from the routine fdt_chosen(), but I forgot
33076 to add a direct call back into cmd_bootm.c
33077
33078 This fixes the oversight by adding the direct call to the bootm command.
33079
33080 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33081
33082 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
33083 Author: Gerald Van Baren <vanbaren@cideas.com>
33084 Date: Mon Jun 25 23:25:28 2007 -0400
33085
33086 Create new fdt boardsetup command, fix bug parsing [] form of set values.
33087
33088 Previously ft_board_setup() was called by fdt_chosen() which was not
33089 really correctly structured. This splits ft_board_setup() out by creating
33090 a new fdt boardsetup command.
33091
33092 Fix a bug when parsing fdt set command values which have the square
33093 bracket form [00 11 22 33] - the length was updated incorrectly in when
33094 parsing that form.
33095
33096 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33097
33098 commit 6f35ded9e85493595e0eb66a82b502a95326d049
33099 Author: Gerald Van Baren <vanbaren@cideas.com>
33100 Date: Mon Jun 25 20:55:58 2007 -0400
33101
33102 Tighten up the error messages.
33103
33104 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33105
33106 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
33107 Author: Gerald Van Baren <vanbaren@cideas.com>
33108 Date: Mon Jun 25 19:52:23 2007 -0400
33109
33110 Asthetic improvements: error messages and line lengths.
33111
33112 Tighten up the error messages, split overlength lines.
33113
33114 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33115
33116 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
33117 Author: Gerald Van Baren <vanbaren@cideas.com>
33118 Date: Fri May 25 22:08:57 2007 -0400
33119
33120 Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
33121
33122 The fdt_chosen() function was adding/seting some properties ad-hoc
33123 improperly and duplicated (poorly) what was done in ft_board_setup()
33124
33125 Clean up long lines (setting properties, printing errors).
33126
33127 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33128
33129 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
33130 Author: Gerald Van Baren <vanbaren@cideas.com>
33131 Date: Mon May 21 23:27:16 2007 -0400
33132
33133 For fdt_find_node_by_path(), handle the root path properly.
33134
33135 Also removes the special case root path detection in cmd_fdt.c since it
33136 is no longer necessary.
33137
33138 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33139
33140 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
33141 Author: Gerald Van Baren <vanbaren@cideas.com>
33142 Date: Thu May 17 23:54:36 2007 -0400
33143
33144 Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
33145
33146 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33147 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
33148
33149 commit 1a861169bc3758f9de3aead62b058736c6891246
33150 Author: Gerald Van Baren <vanbaren@cideas.com>
33151 Date: Wed Jun 6 22:47:58 2007 -0400
33152
33153 Replace fdt_node_offset() with fdt_find_node_by_path().
33154
33155 The new name matches more closely the kernel's name, which is also
33156 a much better description.
33157
33158 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33159 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
33160
33161 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
33162 Author: Gerald Van Baren <vanbaren@cideas.com>
33163 Date: Wed May 16 22:39:59 2007 -0400
33164
33165 Fix cmd_fdt line lengths, refactor code.
33166
33167 Break lines that were greater than 80 characters in length.
33168 Move the fdt print and property parsing code to separate static functions
33169 to reduce coding clutter in the fdt_cmd handling body.
33170
33171 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33172
33173 commit 25114033ab21788810c48ba4df103b649da1223b
33174 Author: Gerald Van Baren <vanbaren@cideas.com>
33175 Date: Sat May 12 09:47:25 2007 -0400
33176
33177 FDT command improvements.
33178
33179 Fix "fdt set" so that it will create a non-existing property.
33180 Add "fdt mknode" to create nodes.
33181
33182 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33183
33184 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
33185 Author: Gerald Van Baren <vanbaren@cideas.com>
33186 Date: Sat May 12 09:45:46 2007 -0400
33187
33188 Reorganize and fix problems (returns) in the bootm command.
33189
33190 Do *NOT* return after the "point of no return" has been passed.
33191 If something goes wrong, the board must be reset after that point.
33192 Move the "Transferring control to Linux" debug message back to where it
33193 belongs: just before transferring control to linux.
33194
33195 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33196
33197 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
33198 Author: Gerald Van Baren <vanbaren@cideas.com>
33199 Date: Tue May 8 21:27:35 2007 -0400
33200
33201 Fix bugs in the CONFIG_OF_LIBFDT
33202
33203 Stupid coding mistakes (identified by Timur Tabi, thanks).
33204
33205 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33206
33207 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
33208 Author: Gerald Van Baren <vanbaren@cideas.com>
33209 Date: Wed Apr 25 22:47:15 2007 -0400
33210
33211 Improve fdt move length handling.
33212
33213 Make the length parameter optional: if not specified, do the move using
33214 the current size unchanged.
33215
33216 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33217
33218 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
33219 Author: Gerald Van Baren <vanbaren@cideas.com>
33220 Date: Wed Apr 25 22:23:36 2007 -0400
33221
33222 Minor code clean up.
33223
33224 Declare the variable fdt properly as extern.
33225 Call the "set_fn" function pointer the "short way" without the full
33226 dereferencing syntax.
33227
33228 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33229
33230 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
33231 Author: Gerald Van Baren <vanbaren@cideas.com>
33232 Date: Wed Apr 25 21:24:27 2007 -0400
33233
33234 Improve error messages, more informative.
33235
33236 Print more than the raw libfdt error message strings. This is especially
33237 useful for cluing in the user when the bootm command aborts due to
33238 blob problems.
33239
33240 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33241
33242 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
33243 Author: Gerald Van Baren <vanbaren@cideas.com>
33244 Date: Fri Apr 20 22:46:53 2007 -0400
33245
33246 libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
33247
33248 This is the way u-boot reduces configured-out code. At Wolfgang
33249 Grandegger and Wolfgang Denk's request, make libfdt conform.
33250
33251 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33252
33253 commit 923efd286411ed052d9e074f59f8986d6081061c
33254 Author: Bruce Adler <bruce.adler@ccpu.com>
33255 Date: Fri Aug 10 14:54:47 2007 -0700
33256
33257 add image size and descriptors for Spartan 3E FPGA chips
33258
33259 Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
33260
33261 Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
33262
33263 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
33264 Author: Kim Phillips <kim.phillips@freescale.com>
33265 Date: Fri Aug 10 15:34:48 2007 -0500
33266
33267 make MAKEALL more immune to merge conflicts
33268
33269 ..by placing board entries one per line, as suggested by jdl.
33270
33271 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33272
33273 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
33274 Author: Kim Phillips <kim.phillips@freescale.com>
33275 Date: Fri Aug 10 13:28:25 2007 -0500
33276
33277 README: Remove outdated cpu type, board type, and NAME_config lists
33278
33279 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33280
33281 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
33282 Author: Dave Liu <r63238@freescale.com>
33283 Date: Fri Aug 10 15:48:59 2007 +0800
33284
33285 mpc83xx: Suppress the warning 'burstlen'
33286
33287 suppress the warning 'burstlen' of spd_sdram.
33288
33289 Signed-off-by: Dave Liu <daveliu@freescale.com>
33290
33291 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
33292 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
33293 Date: Thu Aug 9 15:11:03 2007 -0500
33294
33295 Add support for SBC8641D. Config files.
33296
33297 Add support for Wind River's SBC8641D reference board.
33298
33299 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
33300 Acked-by: Wolfgang Denk <wd@denx.de>
33301 Acked-by: Jon Loeliger <jdl@freescale.com>
33302
33303 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
33304 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
33305 Date: Thu Aug 9 15:10:53 2007 -0500
33306
33307 Add support for SBC8641D. Board files.
33308
33309 Add support for Wind River's SBC8641D reference board.
33310
33311 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
33312 Acked-by: Wolfgang Denk <wd@denx.de>
33313 Acked-by: Jon Loeliger <jdl@freescale.com>
33314
33315 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
33316 Author: Stefan Roese <sr@denx.de>
33317 Date: Fri Aug 10 20:34:58 2007 +0200
33318
33319 Conding style cleanup
33320
33321 Signed-off-by: Stefan Roese <sr@denx.de>
33322
33323 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
33324 Author: Sergey Kubushyn <ksi@koi8.net>
33325 Date: Fri Aug 10 20:26:18 2007 +0200
33326
33327 [ARM] TI DaVinci support, hopefully final
33328
33329 Add support for the following DaVinci boards:
33330 - DV_EVM
33331 - SCHMOOGIE
33332 - SONATA
33333
33334 Changes:
33335
33336 - Split into separate board directories
33337 - Removed changes to MTD_DEBUG (or whatever it's called)
33338 - New CONFIG_CMD party line followed
33339 - Some cosmetic fixes, cleanup etc.
33340 - Patches against the latest U-Boot tree as of now.
33341 - Fixed CONFIG_CMD_NET in net files.
33342 - Fixed CONFIG_CMD_EEPROM for schmoogie.
33343 - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
33344 DV_EVM. Can't check if it works on SONATA, don't have a board any more,
33345 but it at least compiles.
33346
33347 Here is an excerpt from session log on SCHMOOGIE...
33348
33349 U-Boot 1.2.0-g6c33c785-dirty (Aug 7 2007 - 13:07:17)
33350
33351 DRAM: 128 MB
33352 NAND: 128 MiB
33353 In: serial
33354 Out: serial
33355 Err: serial
33356 ARM Clock : 297MHz
33357 DDR Clock : 162MHz
33358 ETH PHY : DP83848 @ 0x01
33359 U-Boot > iprobe
33360 Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
33361 U-Boot > ping 192.168.253.10
33362 host 192.168.253.10 is alive
33363 U-Boot >
33364
33365 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
33366 Acked-by: Dirk Behme <dirk.behme@gmail.com>
33367 Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
33368 Acked-by: Stefan Roese <sr@denx.de>
33369
33370 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
33371 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33372 Date: Fri Jul 27 01:50:45 2007 -0500
33373
33374 fsl_pci_init cleanup.
33375
33376 Do not enable normal errors created during probe (master abort, perr,
33377 and pcie Invalid Configuration access).
33378
33379 Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
33380
33381 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33382 Acked-by: Andy Fleming <afleming@freescale.com>
33383
33384 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
33385 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33386 Date: Fri Jul 27 01:50:44 2007 -0500
33387
33388 pciauto_setup_device bars_num fix
33389
33390 Passing bars_num=0 to pciauto_setup_device should assign no bars.
33391
33392 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33393 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33394 Acked-by: Andy Fleming <afleming@freescale.com>
33395
33396 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
33397 Author: Jon Loeliger <jdl@freescale.com>
33398 Date: Mon Aug 6 17:39:44 2007 -0500
33399
33400 8641hpcn: Do correct sized pointer math.
33401
33402 When I rebased Ed's patch and cleaned up a few compilation
33403 problems, I apparently rebased my brain on crack first.
33404 Fix that by doing (char *) sized pointer math as needed.
33405
33406 Signed-off-by: Jon Loeliger <jdl@freescale.com>
33407
33408 commit cfc7a7f5bb3273c9951173c788001d45118f141f
33409 Author: Jon Loeliger <jdl@freescale.com>
33410 Date: Thu Aug 2 14:42:20 2007 -0500
33411
33412 cpu/86xx fixes.
33413
33414 Remove rev 1 fixes.
33415 Always set PICGCR_MODE.
33416 Enable machine check and provide board config option
33417 to set and handle SoC error interrupts.
33418
33419 Include MSSSR0 in error message.
33420
33421 Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
33422
33423 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33424 Signed-off-by: Jon Loeliger <jdl@freescale.com>
33425
33426 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
33427 Author: Stefan Roese <sr@denx.de>
33428 Date: Fri Aug 10 10:42:25 2007 +0200
33429
33430 Coding style cleanup
33431
33432 Signed-off-by: Stefan Roese <sr@denx.de>
33433
33434 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
33435 Author: Dirk Behme <dirk.behme@googlemail.com>
33436 Date: Thu Aug 2 17:42:08 2007 +0200
33437
33438 Make use of generic 64bit division in nand_util.c
33439
33440 Use generic 64bit division in nand_util.c. This makes nand_util.c
33441 independent of any toolchain 64bit division.
33442
33443 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
33444
33445 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
33446 Author: Dirk Behme <dirk.behme@googlemail.com>
33447 Date: Thu Aug 2 17:41:14 2007 +0200
33448
33449 Move 64bit division from avr32 to generic lib
33450
33451 Move the 64bit division from lib_avr32 to lib_generic. With this, all
33452 boards can do_div/__div64_32 if needed, not only avr one. Code is put
33453 to lib_generic, so no larger memory footprint if not used. No code
33454 modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
33455
33456 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
33457
33458 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
33459 Author: Niklaus Giger <niklausgiger@gmx.ch>
33460 Date: Fri Jul 27 11:31:22 2007 +0200
33461
33462 Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
33463
33464 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33465
33466 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
33467 Author: Niklaus Giger <niklausgiger@gmx.ch>
33468 Date: Fri Jul 27 11:30:33 2007 +0200
33469
33470 Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
33471
33472 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33473
33474 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
33475 Author: Niklaus Giger <niklausgiger@gmx.ch>
33476 Date: Fri Jul 27 11:38:26 2007 +0200
33477
33478 Add PPC4xx-HCU4 and HCU5 boards: common files
33479
33480 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33481
33482 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
33483 Author: Niklaus Giger <niklausgiger@gmx.ch>
33484 Date: Fri Jul 27 11:28:44 2007 +0200
33485
33486 Add PPC4xx-HCU4 and HCU5 boards: make related
33487
33488 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33489
33490 commit 137fdd9f474ecb853efdace5200576308c67f18d
33491 Author: Niklaus Giger <niklausgiger@gmx.ch>
33492 Date: Fri Jul 27 11:28:03 2007 +0200
33493
33494 Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
33495
33496 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33497
33498 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
33499 Author: Niklaus Giger <niklausgiger@gmx.ch>
33500 Date: Fri Jul 27 11:27:15 2007 +0200
33501
33502 Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
33503
33504 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33505
33506 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
33507 Author: Niklaus Giger <niklausgiger@gmx.ch>
33508 Date: Fri Jul 27 11:25:31 2007 +0200
33509
33510 Add PPC4xx-HCU4 and HCU5 boards: READMEs
33511
33512 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33513
33514 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
33515 Author: Niklaus Giger <niklausgiger@gmx.ch>
33516 Date: Fri Jul 27 11:37:40 2007 +0200
33517
33518 Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
33519
33520 This series of patches adds support for 2 boards from Netstal Maschinen.
33521
33522 The HCU4 has a PPC405Gpr and
33523 the HCU5 has a PPC440EPX.
33524
33525 The HCU4 has a somehow complicated flash setup, as the booteprom is
33526 only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
33527 elegant solution.
33528
33529 The HCU5 has only a booteprom as the whole code will be downloaded from a
33530 different board which has HD, CD-ROM, etc and where all code is stored.
33531
33532 This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
33533 Thanks them a lot.
33534
33535 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33536
33537 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
33538 Author: Stefan Roese <sr@denx.de>
33539 Date: Fri Aug 10 08:42:55 2007 +0200
33540
33541 ppc4xx: Update lwmon5 POST configuration
33542
33543 Signed-off-by: Stefan Roese <sr@denx.de>
33544
33545 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
33546 Author: Yuri Tikhonov <yur@emcraft.com>
33547 Date: Fri Aug 10 08:25:22 2007 +0200
33548
33549 POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
33550
33551 The patch adds support for UART POST on ppc44x-based boards with no
33552 external serial clocks installed.
33553
33554 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
33555 Acked-by: Stefan Roese <sr@denx.de>
33556
33557 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
33558 Author: Kim Phillips <kim.phillips@freescale.com>
33559 Date: Mon Aug 6 18:18:34 2007 -0500
33560
33561 mpc83xx: fix ITX[GP] O=builddir builds
33562
33563 make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'. Stop.
33564
33565 Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
33566 "BUILD_DIR=<some dir> ./MAKEALL ..."
33567
33568 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33569
33570 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
33571 Author: Dave Liu <r63238@freescale.com>
33572 Date: Wed Aug 1 15:00:59 2007 +0800
33573
33574 mpc83xx: Correct the README for DDR ECC
33575
33576 Update the README for DDR ECC, change the name
33577 to README.mpc83xx.ddrecc.
33578
33579 Signed-off-by: Dave Liu <daveliu@freescale.com>
33580 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33581
33582 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
33583 Author: Dave Liu <r63238@freescale.com>
33584 Date: Wed Aug 1 15:00:15 2007 +0800
33585
33586 mpc83xx: Consolidate the ECC support of 83xx
33587
33588 Remove the duplicated source code of ecc command on the <board>.c,
33589 for reused, move these code to cpu/mpc83xx directory.
33590
33591 Signed-off-by: Dave Liu <daveliu@freescale.com>
33592 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33593
33594 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
33595 Author: Dave Liu <r63238@freescale.com>
33596 Date: Sat Aug 4 13:37:39 2007 +0800
33597
33598 mpc83xx: Correct the burst length for DDR2 with 32 bits
33599
33600 The burst length should be 4 for DDR2 with 32 bits bus
33601
33602 Signed-off-by: Dave Liu <daveliu@freescale.com>
33603
33604 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
33605 Author: Kim Phillips <kim.phillips@freescale.com>
33606 Date: Wed Jul 25 19:25:33 2007 -0500
33607
33608 mpc83xx: add support for the MPC8323E RDB
33609
33610 MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
33611 five 10/100 ethernet ports connected via an ICPlus IP175C
33612 switch, one PCI slot, and serial. Features not supported
33613 in this patch are SD card interface, 2 USB ports, and the
33614 two phone ports.
33615
33616 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
33617 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33618
33619 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
33620 Author: Kim Phillips <kim.phillips@freescale.com>
33621 Date: Wed Jul 25 19:25:28 2007 -0500
33622
33623 mpc83xx: fixup generic pci for libfdt
33624
33625 add libfdt support to the generic 83xx pci code
33626
33627 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33628
33629 commit f57ac7a7b37109245b69db80839ebee26179966a
33630 Author: Kim Phillips <kim.phillips@freescale.com>
33631 Date: Wed Jul 25 19:25:22 2007 -0500
33632
33633 mpc83xx: fix 8360 and cpu functions to update fdt being passed
33634
33635 ..and not the global fdt. Rename local fdt vars to blob so as not to
33636 be confused with the global var with the same three-letter name.
33637
33638 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33639
33640 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
33641 Author: Jerry Van Baren <gvb.uboot@gmail.com>
33642 Date: Wed Jul 4 21:34:24 2007 -0400
33643
33644 mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
33645
33646 Several node strings were not correct (trailing slashes and properties
33647 in the strings)
33648 Added setting of the timebase-frequency.
33649 Improved error messages and use debug() instead of printf().
33650
33651 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33652 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33653
33654 commit 26d02c9bbac1751c5e19294f000100b48d43a920
33655 Author: Jerry Van Baren <gvb.uboot@gmail.com>
33656 Date: Wed Jul 4 21:27:30 2007 -0400
33657
33658 mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
33659
33660 The new name matches more closely the kernel's name, which is also
33661 a much better description.
33662
33663 These are the mpc83xx changes made necessary by the function name change.
33664
33665 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33666 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
33667 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33668
33669 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
33670 Author: Dave Liu <daveliu@freescale.com>
33671 Date: Mon Jun 25 10:41:56 2007 +0800
33672
33673 mpc83xx: Add support for the display of reset status
33674
33675 83xx processor family has many reset sources, such as
33676 power on reset, software hard reset, software soft reset,
33677 JTAG, bus monitor, software watchdog, check stop reset,
33678 external hard reset, external software reset.
33679 sometimes, to figure out the fault of system, we need to
33680 know the cause of reset early before the prompt of
33681 u-boot present.
33682
33683 Signed-off-by: Dave Liu <daveliu@freescale.com>
33684 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33685
33686 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
33687 Author: Dave Liu <daveliu@freescale.com>
33688 Date: Mon Jun 25 10:41:04 2007 +0800
33689
33690 mpc83xx: Fix the align bug of SDMA buffer
33691
33692 According to the latest user manual, the SDMA temporary
33693 buffer base address must be 4KB aligned.
33694
33695 Signed-off-by: Dave Liu <daveliu@freescale.com>
33696 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33697
33698 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
33699 Author: Dave Liu <daveliu@freescale.com>
33700 Date: Mon Jun 25 13:21:12 2007 +0800
33701
33702 mpc83xx: Revise the MPC8360EMDS readme doc
33703
33704 When the rev2.x silicon mount on the MPC8360EMDS baord,
33705 and if you are using the u-boot version after the commit
33706 3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
33707 to make the ethernet interface usable, we have to setup
33708 the jumpers correctly.
33709
33710 Signed-off-by: Dave Liu <daveliu@freescale.com>
33711 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33712
33713 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
33714 Author: Timur Tabi <timur@freescale.com>
33715 Date: Tue Jul 3 13:46:32 2007 -0500
33716
33717 FSL I2C driver programs the two I2C busses differently
33718
33719 The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
33720 The second I2C bus has its slave address programmed incorrectly and is
33721 missing a 5-us delay.
33722
33723 Signed-off-by: Timur Tabi <timur@freescale.com>
33724 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33725
33726 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
33727 Author: Timur Tabi <timur@freescale.com>
33728 Date: Tue Jul 3 13:04:34 2007 -0500
33729
33730 Update SCCR programming in cpu_init_f() to support all 83xx processors
33731
33732 Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
33733 bitfields for all 83xx processors. The code to update some bitfields was
33734 compiled only on some processors. Now, the bitfields are programmed as long
33735 as the corresponding CFG_SCCR option is defined in the board header file.
33736 This means that the board header file should not define any CFG_SCCR macros
33737 for bitfields that don't exist on that processor, otherwise the SCCR will be
33738 programmed incorrectly.
33739
33740 Signed-off-by: Timur Tabi <timur@freescale.com>
33741 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33742
33743 commit 9546266999f0b9b51372636614211b88d90f0f25
33744 Author: Martin Krause <martin.krause@tqs.de>
33745 Date: Fri Jun 22 13:04:22 2007 +0200
33746
33747 TQM834x: cleanup configuraton
33748
33749 Remove irritating #undef DEBUG
33750
33751 Signed-off-by: Martin Krause <martin.krause@tqs.de>
33752 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33753
33754 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
33755 Author: david.saada <David.Saada@ecitele.com>
33756 Date: Mon Jun 18 09:09:53 2007 -0700
33757
33758 MPC83xx: Fix makefile to generate config.h file in the build directory
33759
33760 MPC83xx: Fix the Makefile config sections to generate the include/config.h
33761 file in the build directory instead of the source directory.
33762
33763 Signed-off-by: David Saada <david.saada@ecitele.com>
33764 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33765
33766 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
33767 Author: Lee Nipper <Lee.Nipper@freescale.com>
33768 Date: Thu Jun 14 20:07:33 2007 -0500
33769
33770 mpc83xx: Add support for 8360 silicon revision 2.1
33771
33772 This change adds 8360 silicon revision 2.1 support to u-boot.
33773
33774 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
33775 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33776
33777 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
33778 Author: Kumar Gala <galak@kernel.crashing.org>
33779 Date: Wed Aug 8 04:14:28 2007 -0500
33780
33781 Treat ppc64 host as ppc
33782
33783 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33784
33785 commit 0dc4279b08ff82472bec2e2c90858602459febe8
33786 Author: Jason Jin <Jason.jin@freescale.com>
33787 Date: Wed Aug 8 09:01:46 2007 +0800
33788
33789 Minor fix for bios emulator makefile
33790
33791 Add $(obj) to LIB avoiding objects be built in the source dir
33792
33793 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33794
33795 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
33796 Author: Jason Jin <Jason.jin@freescale.com>
33797 Date: Wed Aug 8 08:33:11 2007 +0800
33798
33799 Add CONFIG_BIOSEMU define to guard all the bios emulator code
33800
33801 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33802
33803 This patch fix the compile issue on the board that did not enable the bios emulator
33804
33805 commit ed8106433522f2ea8933e9808346860d061d7731
33806 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
33807 Date: Tue Jul 31 12:27:25 2007 -0500
33808
33809 tsec: fix multiple PHY support
33810
33811 The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
33812 broke multiple PHY support in tsec.c. This fixes it.
33813
33814 Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
33815 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33816
33817 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
33818 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
33819 Date: Thu Aug 9 09:08:18 2007 -0500
33820
33821 tsec: Allow Ten Bit Interface address to be configurable
33822
33823 Allow the address of the Ten Bit Interface (TBI) to be changed in the
33824 event of a conflict with another device.
33825
33826 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
33827
33828 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
33829 Author: Stefan Roese <sr@denx.de>
33830 Date: Wed Aug 8 09:54:26 2007 +0200
33831
33832 Coding style cleanup
33833
33834 Signed-off-by: Stefan Roese <sr@denx.de>
33835
33836 commit a41de1f0d373e09c782dea558385a06247111ba5
33837 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33838 Date: Sun Aug 5 05:15:18 2007 -0500
33839
33840 Port enabled for I2C signals and chipselects port configuration.
33841
33842 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33843
33844 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
33845 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33846 Date: Sun Aug 5 04:31:18 2007 -0500
33847
33848 Added NAND support
33849
33850 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33851
33852 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
33853 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33854 Date: Sun Aug 5 04:11:20 2007 -0500
33855
33856 Added I2C support
33857
33858 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33859
33860 commit 99c03c175d2689093176facf17c58ce2cb320001
33861 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33862 Date: Sun Aug 5 03:58:52 2007 -0500
33863
33864 Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
33865
33866 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33867
33868 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
33869 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33870 Date: Sun Aug 5 03:55:21 2007 -0500
33871
33872 Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
33873
33874 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33875
33876 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
33877 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33878 Date: Sun Aug 5 03:43:30 2007 -0500
33879
33880 Moved sync() from board file to include/asm-m68k/io.h
33881
33882 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33883
33884 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
33885 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33886 Date: Sun Aug 5 03:30:44 2007 -0500
33887
33888 Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
33889
33890 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33891
33892 commit 9998bd37ead85e93953559720710d3b0685c81e6
33893 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33894 Date: Sun Aug 5 03:19:10 2007 -0500
33895
33896 Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
33897
33898 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33899
33900 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
33901 Author: Jason Jin <Jason.jin@freescale.com>
33902 Date: Tue Aug 7 16:17:06 2007 +0800
33903
33904 Add CONFIG_BIOSEMU define to guard all the bios emulator code
33905
33906 This patch fix the compile issue on the board that did not enable the bios emulator
33907
33908 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
33909 Author: Wolfgang Denk <wd@denx.de>
33910 Date: Tue Aug 7 16:02:13 2007 +0200
33911
33912 Fix missing brace error in fs/fat/fat.c
33913 [pointed out by Roderik Wildenburg]
33914
33915 Signed-off-by: Wolfgang Denk <wd@denx.de>
33916
33917 commit 706714d97a0d08d59eda4de2268c39f504688329
33918 Author: Michal Simek <monstr@monstr.eu>
33919 Date: Mon Aug 6 23:41:53 2007 +0200
33920
33921 [FIX] remove cute code
33922
33923 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
33924 Author: Michal Simek <monstr@monstr.eu>
33925 Date: Mon Aug 6 23:35:26 2007 +0200
33926
33927 [FIX] Fix romfs code
33928
33929 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
33930 Author: Michal Simek <monstr@monstr.eu>
33931 Date: Mon Aug 6 23:31:49 2007 +0200
33932
33933 [FIX] Coding style cleanup - Wolfgang's suggestions
33934
33935 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
33936 Author: Wolfgang Denk <wd@denx.de>
33937 Date: Mon Aug 6 23:21:05 2007 +0200
33938
33939 Fixed typo in README (pointed out by Martin Jost).
33940
33941 Signed-off-by: Wolfgang Denk <wd@denx.de>
33942
33943 commit 537223afa61f64480df31ce440a9cb386df4a814
33944 Author: Stefan Roese <sr@denx.de>
33945 Date: Mon Aug 6 21:10:17 2007 +0200
33946
33947 ppc4xx: Update AMCC Bamboo README doc/README.bamboo
33948
33949 As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
33950 here an updated Bamboo README.
33951
33952 Signed-off-by: Stefan Roese <sr@denx.de>
33953
33954 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
33955 Author: Wolfgang Denk <wd@denx.de>
33956 Date: Mon Aug 6 02:17:36 2007 +0200
33957
33958 Coding style cleanup. Update CHANGELOG.
33959
33960 Signed-off-by: Wolfgang Denk <wd@denx.de>
33961
33962 commit 221838cc7eb178370ff62aa05920a582e12ac322
33963 Author: Jason Jin <Jason.jin@freescale.com>
33964 Date: Tue Jul 10 09:03:22 2007 +0800
33965
33966 Remove the bios emulator from MAI board.
33967
33968 The bios emulator in the MAI board can not pass compile
33969 and have a lot of crap in it. remove it and will have a
33970 clean and small bios emulator in the drivers directory
33971 which can be uesed for every board.
33972
33973 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33974
33975 commit 5618332409bb96f4448d1712899369fc80c0b489
33976 Author: Jason Jin <Jason.jin@freescale.com>
33977 Date: Fri Jul 13 12:14:59 2007 +0800
33978
33979 Fix some compile issues for MAI board.
33980
33981 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33982
33983 commit 0f460a1ee148b648ee242c3157650287d4296260
33984 Author: Jason Jin <Jason.jin@freescale.com>
33985 Date: Fri Jul 13 12:14:58 2007 +0800
33986
33987 Configurations for ATI video card BIOS emulator
33988
33989 This patch add definition of the BIOS emulator and the ATI framebuffer
33990 driver for MPC8641HPCN board.
33991
33992 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33993 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
33994
33995 commit ece92f85053b8df613edcf05b26a416cbc3d629c
33996 Author: Jason Jin <Jason.jin@freescale.com>
33997 Date: Fri Jul 6 08:34:56 2007 +0800
33998
33999 This is a BIOS emulator, porting from SciTech for u-boot, mainly for
34000 ATI video card BIOS. and can be used for x86 code emulation by some
34001 modifications.
34002
34003 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
34004
34005 commit 5072188acabde3178fac7f5a597150e6e74fd40c
34006 Author: Jason Jin <Jason.jin@freescale.com>
34007 Date: Fri Jul 6 08:33:33 2007 +0800
34008
34009 This is a framebuffer driver for ATI video card, can work for PCI9200,
34010 X300, X700, X800 ATI video cards.
34011
34012 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
34013 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
34014
34015 commit 5728be389e65fd47f34b33c2596271eb4db751ae
34016 Author: Wolfgang Denk <wd@denx.de>
34017 Date: Mon Aug 6 01:01:49 2007 +0200
34018
34019 Coding style cleanup. Update CHANGELOG.
34020
34021 Signed-off-by: Wolfgang Denk <wd@denx.de>
34022
34023 commit 8092fef4c29b395958bb649647da7e3775731517
34024 Author: Martin Krause <Martin.Krause@tqs.de>
34025 Date: Tue Dec 12 14:26:01 2006 +0100
34026
34027 Add functions to list of exported functions
34028
34029 Additionally export the following fuctions (to make trab_config build again):
34030 - simple_strtol()
34031 - strcmp()
34032
34033 Also bump the ABI version to reflect this change
34034
34035 Signed-off-by: Martin Krause <martin.krause@tqs.de>
34036
34037 commit 63cec5814fab5d2b1c86982327433807a5ac0249
34038 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34039 Date: Thu Aug 2 14:09:49 2007 -0500
34040
34041 Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
34042
34043 All of the PCI/PCI-Express driver and initialization code that
34044 was in the MPC8641HPCN port has now been moved into the common
34045 drivers/fsl_pci_init.c. In a subsequent patch, this will be
34046 utilized by the 85xx ports as well.
34047
34048 Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
34049
34050 Also enable the second PCI-Express controller on 8641
34051 by getting its BATS and CFG_ setup right.
34052
34053 Fixed a u16 vendor compiler warning in AHCI driver too.
34054
34055 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34056 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
34057 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34058
34059 commit a274ca4f6d68830e7c916f897561cff8c4101c38
34060 Author: Michal Simek <monstr@monstr.eu>
34061 Date: Sun Aug 5 22:33:05 2007 +0200
34062
34063 [FIX] Coding style cleanup
34064
34065 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
34066 Author: Michal Simek <monstr@monstr.eu>
34067 Date: Sun Aug 5 16:13:31 2007 +0200
34068
34069 [FIX] Xilinx Uartlite driver
34070 Because PPC405 can use UARTLITE serial interface and
34071 Microblaze can use Uart16550 serial interface not only Uartlite.
34072
34073 commit 98889edd50aadf862071eb5664747ad0d568a20e
34074 Author: Michal Simek <monstr@monstr.eu>
34075 Date: Sun Aug 5 15:54:53 2007 +0200
34076
34077 [FIX] Change configuration for XUPV2P Microblaze board
34078
34079 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
34080 Author: Michal Simek <monstr@monstr.eu>
34081 Date: Sun Aug 5 15:53:50 2007 +0200
34082
34083 [PATCH] Added support for Xilinx Emac community driver
34084
34085 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
34086 Author: Bartlomiej Sieka <tur@semihalf.com>
34087 Date: Fri Aug 3 12:08:16 2007 +0200
34088
34089 cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
34090
34091 Add the ability for modules from the Schindler cm5200 family to use a
34092 single U-Boot image:
34093 - rename cm1_qp1 to cm5200
34094 - add run-time module detection
34095 - parametrize SDRAM configuration according to the module we are running on
34096
34097 Few minor, board-specific fixes included in this patch:
34098 - better MAC address handling
34099 - updated default environment ('update' command uses +{filesize} now)
34100 - improved error messages in the auto-update code
34101 - allow booting U-Boot from RAM (CFG_RAMBOOT)
34102
34103 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
34104 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
34105 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34106
34107 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
34108 Author: Andy Fleming <afleming@freescale.com>
34109 Date: Fri Aug 3 04:05:25 2007 -0500
34110
34111 Add Marvell 1149 PHY support to the TSEC
34112
34113 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
34114 Author: Wolfgang Denk <wd@denx.de>
34115 Date: Thu Aug 2 21:27:46 2007 +0200
34116
34117 Coding style cleanup, update CHANGELOG
34118
34119 Signed-off-by: Wolfgang Denk <wd@denx.de>
34120
34121 commit 63e22764d2f8653f68888c667eb65b3996b52680
34122 Author: Wolfgang Denk <wd@denx.de>
34123 Date: Thu Aug 2 10:11:18 2007 +0200
34124
34125 Minor cleanup of <board>_nand build rules.
34126
34127 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
34128 Author: Stefan Roese <sr@denx.de>
34129 Date: Thu Aug 2 08:33:56 2007 +0200
34130
34131 ppc4xx: Code cleanup
34132
34133 Signed-off-by: Stefan Roese <sr@denx.de>
34134
34135 commit c92409812206ac67a7fa7aae298539a9c3804a46
34136 Author: Grzegorz Bernacki <gjb@semihalf.com>
34137 Date: Tue Jul 31 18:51:48 2007 +0200
34138
34139 [ppc440SPe] Graceful recovery from machine check during PCIe configuration
34140
34141 During config transactions on the PCIe bus an attempt to scan for a
34142 non-existent device can lead to a machine check exception with certain
34143 peripheral devices. In order to avoid crashing in such scenarios the
34144 instrumented versions of the config cycle read routines are introduced, so
34145 the exceptions fixups framework can gracefully recover.
34146
34147 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
34148 Acked-by: Rafal Jaworowski <raj@semihalf.com>
34149
34150 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
34151 Author: Rafal Jaworowski <raj@semihalf.com>
34152 Date: Tue Jul 31 18:19:54 2007 +0200
34153
34154 [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
34155
34156 This brings back separate settings for PCIe bus numbers depending on chip
34157 revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
34158 commit. 440SPe rev. A does NOT work properly with the same settings as for
34159 the rev. B (no devices are seen on the bus during enumeration).
34160
34161 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
34162
34163 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
34164 Author: Wolfgang Denk <wd@denx.de>
34165 Date: Thu Aug 2 00:48:45 2007 +0200
34166
34167 Fix build errors and warnings / code cleanup.
34168
34169 Signed-off-by: Wolfgang Denk <wd@denx.de>
34170
34171 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
34172 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
34173 Date: Tue Jul 31 10:24:56 2007 +0200
34174
34175 ppc4xx: Update AMCC Bamboo 440EP support
34176
34177 Changed storage type of cfg_simulate_spd_eeprom to const
34178 Changed storage type of gpio_tab to stack storage
34179 (Cannot access global data declarations in .bss until afer code relocation)
34180
34181 Improved SDRAM tests to catch problems where data is not uniquely addressable
34182 (e.g. incorrectly programmed SDRAM row or columns)
34183
34184 Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
34185 Fixed AM29LV320DT (OpCode Flash) sector map
34186
34187 Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
34188 Signed-off-by: Stefan Roese <sr@denx.de>
34189
34190 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
34191 Author: Stefan Roese <sr@denx.de>
34192 Date: Tue Jul 31 08:37:01 2007 +0200
34193
34194 ppc4xx: Update 440EPx lwmon5 board support
34195
34196 - Clear ECC status regs after ECC POST test
34197 - Set dcbz for ECC generation with caches enabled as default
34198 - Code cleanup
34199
34200 Signed-off-by: Stefan Roese <sr@denx.de>
34201
34202 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
34203 Author: Stefan Roese <sr@denx.de>
34204 Date: Mon Jul 30 11:04:57 2007 +0200
34205
34206 ppc4xx: Only print ECC related info when the error bis are set
34207
34208 Signed-off-by: Stefan Roese <sr@denx.de>
34209
34210 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
34211 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34212 Date: Fri Jul 27 16:44:31 2007 +0200
34213
34214 new FPGA image for PLU405 board
34215
34216 new FPGA image for PLU405 board with improved CompactFlash timing
34217
34218 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34219
34220 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
34221 Author: Rafal Jaworowski <raj@semihalf.com>
34222 Date: Fri Jul 27 14:43:59 2007 +0200
34223
34224 [ADS5121] Support for the ADS5121 board
34225
34226 The following MPC5121e subsystems are supported:
34227
34228 - low-level CPU init
34229 - NOR Boot Flash (common CFI driver)
34230 - DDR SDRAM
34231 - FEC
34232 - I2C
34233 - Watchdog
34234
34235 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
34236 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
34237 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
34238
34239 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
34240 Author: Rafal Jaworowski <raj@semihalf.com>
34241 Date: Fri Jul 27 14:22:04 2007 +0200
34242
34243 [PPC] Remove unused MSR_USER definition
34244
34245 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
34246
34247 commit d4024bb72dd81695ec099b2199eda0d27c623e62
34248 Author: John Otken <john@softadvances.com>
34249 Date: Thu Jul 26 17:49:11 2007 +0200
34250
34251 ppc4xx: Add support for AMCC 405EP Taihu board
34252
34253 Signed-off-by: John Otken <john@softadvances.com>
34254
34255 commit b66091de6c7390620312c2501db23d8391e7cabb
34256 Author: Anatolij Gustschin <agust@denx.de>
34257 Date: Thu Jul 26 15:08:01 2007 +0200
34258
34259 ppc4xx: lwmon5: Update Lime initialization
34260
34261 Change Lime SDRAM initialization to now support 100MHz and
34262 133MHz (if enabled). Also the framebuffer is initialized to
34263 display a blue rectangle with a white border.
34264
34265 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34266 Signed-off-by: Stefan Roese <sr@denx.de>
34267
34268 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
34269 Author: Stefan Roese <sr@denx.de>
34270 Date: Tue Jul 24 09:52:52 2007 +0200
34271
34272 ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
34273
34274 The used Intel NOR FLASH chips have internally two dies, and are now
34275 treated as two seperate chips.
34276
34277 Signed-off-by: Stefan Roese <sr@denx.de>
34278
34279 commit aedf5bde179ecfbd0a96130d18996a96518b785f
34280 Author: Stefan Roese <sr@denx.de>
34281 Date: Tue Jul 24 07:20:09 2007 +0200
34282
34283 ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
34284
34285 As suggested by Hakan Eryigit, here an updated setup for the lwmon5
34286 interrupt controller.
34287
34288 Signed-off-by: Stefan Roese <sr@denx.de>
34289
34290 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
34291 Author: Stefan Roese <sr@denx.de>
34292 Date: Fri Jul 20 15:03:44 2007 +0200
34293
34294 ppc4xx: Fix bug with default GPIO output value
34295
34296 As spotted by Matthias Fuchs, the default output values for all GPIO1
34297 outputs were not setup correctly. This patch fixes this issue.
34298
34299 Signed-off-by: Stefan Roese <sr@denx.de>
34300
34301 commit 531e3e8b831f357056448fa573137d5fb37000fd
34302 Author: Pavel Kolesnikov <concord@emcraft.com>
34303 Date: Fri Jul 20 15:03:03 2007 +0200
34304
34305 POST: Add ECC POST for the lwmon5 board
34306
34307 This patch adds ECC Post test for the Lwmon5 board based
34308 on PPC440EPx to U-Boot.
34309
34310 Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
34311 Acked-by: Yuri Tikhonov <yur@emcraft.com>
34312 Acked-by: Stefan Roese <sr@denx.de>
34313
34314 commit cc3023b9f95d7ac959a764471a65001062aecf41
34315 Author: Rafal Jaworowski <raj@semihalf.com>
34316 Date: Thu Jul 19 17:12:28 2007 +0200
34317
34318 Fix breakage of 8xx boards from recent commit.
34319
34320 This patch fixes the negative consequences for 8xx of the recent
34321 "ppc4xx: Clean up 440 exceptions handling" commit.
34322
34323 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
34324
34325 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
34326 Author: Stefan Roese <sr@denx.de>
34327 Date: Mon Jul 16 13:11:12 2007 +0200
34328
34329 Coding style cleanup
34330
34331 Signed-off-by: Stefan Roese <sr@denx.de>
34332
34333 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
34334 Author: Stefan Roese <sr@denx.de>
34335 Date: Mon Jul 16 10:02:12 2007 +0200
34336
34337 ppc4xx: Code cleanup
34338
34339 Signed-off-by: Stefan Roese <sr@denx.de>
34340
34341 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
34342 Author: Stefan Roese <sr@denx.de>
34343 Date: Mon Jul 16 10:01:38 2007 +0200
34344
34345 ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
34346
34347 Signed-off-by: Stefan Roese <sr@denx.de>
34348
34349 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
34350 Author: Stefan Roese <sr@denx.de>
34351 Date: Mon Jul 16 10:00:43 2007 +0200
34352
34353 ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
34354
34355 The new boardspecific DDR2 controller configuration is used for the Yucca
34356 board. Now the Yucca board with 440SPe Rev. A chips is also supported.
34357
34358 Signed-off-by: Stefan Roese <sr@denx.de>
34359
34360 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
34361 Author: Stefan Roese <sr@denx.de>
34362 Date: Mon Jul 16 09:57:00 2007 +0200
34363
34364 ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
34365
34366 The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
34367 support non default, boardspecific DDR(2) controller configuration.
34368
34369 Signed-off-by: Stefan Roese <sr@denx.de>
34370
34371 commit 5743a9207a370b90f09b20ebd61167c806b937f3
34372 Author: Stefan Roese <sr@denx.de>
34373 Date: Mon Jul 16 08:53:51 2007 +0200
34374
34375 ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
34376
34377 The new function remove_tlb() can be used to remove the TLB's used to
34378 map a specific memory region. This is especially useful for the DDR(2)
34379 setup routines which configure the SDRAM area temporarily as a cached
34380 area (for speedup on auto-calibration and ECC generation) and later
34381 need this area uncached for normal usage.
34382
34383 Signed-off-by: Stefan Roese <sr@denx.de>
34384
34385 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
34386 Author: Michal Simek <monstr@monstr.eu>
34387 Date: Mon Jul 16 00:31:07 2007 +0200
34388
34389 [PATCH] Support for Xilinx EmacLite controller
34390
34391 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
34392 Author: Wolfgang Denk <wd@denx.de>
34393 Date: Sat Jul 14 22:51:02 2007 +0200
34394
34395 Update CHANGELOG
34396
34397 Signed-off-by: Wolfgang Denk <wd@denx.de>
34398
34399 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
34400 Author: Michal Simek <monstr@monstr.eu>
34401 Date: Sat Jul 14 13:11:28 2007 +0200
34402
34403 [FIX] support for simply measuring time
34404
34405 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
34406 Author: Michal Simek <monstr@monstr.eu>
34407 Date: Sat Jul 14 12:41:23 2007 +0200
34408
34409 [FS] Added support for ROMFS
34410
34411 commit 011595307731a7a67a7445d107c279d031e8ab97
34412 Author: Heiko Schocher <hs@pollux.denx.de>
34413 Date: Sat Jul 14 01:06:58 2007 +0200
34414
34415 [PCS440EP] - fix compile error, if BUILD_DIR is used
34416
34417 commit 5a2f1098d81ad58b309e5e558d0492643166a799
34418 Author: Michal Simek <monstr@monstr.eu>
34419 Date: Sat Jul 14 00:18:48 2007 +0200
34420
34421 [PATCH] Support time without timer
34422
34423 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
34424 Author: Michal Simek <monstr@monstr.eu>
34425 Date: Fri Jul 13 21:43:55 2007 +0200
34426
34427 [PATCH] Remove problem with disabled BARREL SHIFTER
34428
34429 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
34430 Author: Michal Simek <monstr@monstr.eu>
34431 Date: Fri Jul 13 21:41:44 2007 +0200
34432
34433 [FIX] correct help for rspr
34434
34435 commit fad63407154f46246ce80d53a9c669a44362ac67
34436 Author: Heiko Schocher <hs@pollux.denx.de>
34437 Date: Fri Jul 13 09:54:17 2007 +0200
34438
34439 make show_boot_progress () weak.
34440
34441 Signed-off-by: Heiko Schocher <hs@denx.de>
34442
34443 commit 907902472391b6ca1876ec300687562ecaf459b1
34444 Author: Heiko Schocher <hs@pollux.denx.de>
34445 Date: Fri Jul 13 08:26:05 2007 +0200
34446
34447 [PCS440EP] - The DIAG LEDs are now blinking, if an error occur
34448 - fix compile error, if BUILD_DIR is used
34449
34450 Signed-off-by: Heiko Schocher <hs@denx.de>
34451
34452 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
34453 Author: Stefan Roese <sr@denx.de>
34454 Date: Thu Jul 12 16:32:08 2007 +0200
34455
34456 ppc4xx: Change receive buffer handling in the 4xx emac driver
34457
34458 This change fixes a bug in the receive buffer handling, that
34459 could lead to problems upon high network traffic (broadcasts...).
34460
34461 Signed-off-by: Stefan Roese <sr@denx.de>
34462
34463 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
34464 Author: Wolfgang Denk <wd@denx.de>
34465 Date: Thu Jul 12 01:45:34 2007 +0200
34466
34467 Update CHANGELOG, minor coding style cleanup.
34468
34469 Signed-off-by: Wolfgang Denk <wd@denx.de>
34470
34471 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
34472 Author: Andy Fleming <afleming@freescale.com>
34473 Date: Fri Jun 8 16:41:18 2007 -0500
34474
34475 Remove erroneous errata code from Marvel 88E1111S driver
34476
34477 The Marvel 88E1111S driver for the TSEC was copied from the
34478 88E1101 driver, and included a fix for an erratum which does not
34479 exist on that part. Now it is removed
34480
34481 Signed-off-by: Andy Fleming <afleming@freescale.com>
34482
34483 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
34484 Author: Andy Fleming <afleming@freescale.com>
34485 Date: Tue Jun 5 16:38:44 2007 -0500
34486
34487 From: eran liberty <eran.liberty@gmail.com>
34488
34489 adds the reset register to 85xx immap
34490
34491 Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
34492 Signed-off-by: Andy Fleming <afleming@freescale.com>
34493
34494 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
34495 Author: Andy Fleming <afleming@freescale.com>
34496 Date: Thu May 10 17:50:01 2007 -0500
34497
34498 Polished the 85xx ADS config files
34499
34500 Made the boot commands use device trees by default.
34501 Also moved the ramdisk to 1000000 (I think the previous address
34502 was getting overridden during boot).
34503
34504 Signed-off-by: Andy Fleming <afleming@freescale.com>
34505
34506 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
34507 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34508 Date: Wed May 9 11:03:32 2007 -0500
34509
34510 8544ds: Fix Makefile after moving pixis to board/freescale.
34511
34512 The OBJTREE != SRCTREE build scenario was broken.
34513 This fixes it.
34514
34515 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34516 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34517
34518 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
34519 Author: Andy Fleming <afleming@freescale.com>
34520 Date: Wed May 9 00:54:20 2007 -0500
34521
34522 tsec: Fix PHY code to match first driver
34523
34524 Jarrold Wen noticed that the generic PHY code always matches
34525 under the current implementation. Change it so the first match
34526 wins, and *only* unknown PHYs trigger the generic driver
34527
34528 Signed-off-by: Andy Fleming <afleming@freescale.com>
34529
34530 commit ccc091aac61a38cd998d575d92f7232e256d6312
34531 Author: Andy Fleming <afleming@freescale.com>
34532 Date: Tue May 8 17:27:43 2007 -0500
34533
34534 Add support for CPM device tree configuration to 8560 ADS
34535
34536 * Adds code to modify CPM frequencies
34537 * Cleans up the config file to #define TSEC and (for now) #undef FCC
34538 * Adds the MII command for all 8560 ADS configurations
34539 * Updates config file to provide convenience commands for booting
34540 with a device tree
34541
34542 Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
34543 Signed-off-by: Andy Fleming <afleming@freescale.com>
34544
34545 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
34546 Author: Andy Fleming <afleming@freescale.com>
34547 Date: Tue May 8 17:23:02 2007 -0500
34548
34549 Fix Marvell 88e1145 PHY init code
34550
34551 Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
34552 where the reset was being done after the errata code instead of
34553 before.
34554
34555 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
34556 Signed-off-by: Andy Fleming <afleming@freescale.com>
34557
34558 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
34559 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34560 Date: Wed Jul 11 14:52:16 2007 -0500
34561
34562 Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
34563
34564 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34565
34566 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
34567 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34568 Date: Wed Jul 11 14:52:08 2007 -0500
34569
34570 pciauto setup bridge
34571
34572 The P2P bridge bus numbers programmed into the device are relative to
34573 hose->first_busno.
34574
34575 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34576
34577 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
34578 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34579 Date: Wed Jul 11 14:52:01 2007 -0500
34580
34581 Support PCIe extended config registers
34582
34583 FSL PCIe block has extended cfg registers in the 100 and 400 range.
34584 For example, to read the LTSSM register: pci display <busn>.0 404 1
34585
34586 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34587
34588 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
34589 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34590 Date: Wed Jul 11 14:51:48 2007 -0500
34591
34592 Minor improvements to drivers/pci_auto.c
34593
34594 - Make pciauto_{pre,post}scan_setup_bridge non-static
34595 - Added physical address display in debug messages.
34596
34597 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34598
34599 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
34600 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34601 Date: Wed Jul 11 14:51:35 2007 -0500
34602
34603 Start pci hose scan from hose->current_busno.
34604
34605 Ensure hose->current_busno is not less than first_busno. This fixes
34606 broken board code which leaves current_busno=0 when first_busno is
34607 greater than 0 for the cases with multiple controllers.
34608
34609 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34610
34611 commit 3865b1fb7843a08ad49a6319a36415752276ff48
34612 Author: Stefan Roese <sr@denx.de>
34613 Date: Wed Jul 11 12:13:53 2007 +0200
34614
34615 Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
34616
34617 Signed-off-by: Stefan Roese <sr@denx.de>
34618
34619 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
34620 Author: Bartlomiej Sieka <tur@semihalf.com>
34621 Date: Wed Jul 11 20:11:07 2007 +0200
34622
34623 CM1.QP1: Support for the Schindler CM1.QP1 board.
34624
34625 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
34626 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34627
34628 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
34629 Author: Heiko Schocher <hs@pollux.denx.de>
34630 Date: Wed Jul 11 18:39:11 2007 +0200
34631
34632 [PCS440EP] - Show on the DIAG LEDs, if the SHA1 check failed
34633 - now the Flash ST M29W040B is supported (not tested)
34634 - fix the "led" command
34635 - fix compile error, if BUILD_DIR is used
34636
34637 Signed-off-by: Heiko Schocher <hs@denx.de>
34638
34639 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
34640 Author: Stefan Roese <sr@denx.de>
34641 Date: Sun Jul 8 13:44:27 2007 +0200
34642
34643 Fix malloc problem introduced with the relocation fixup for the PPC platform
34644
34645 The relocation fixup didn't handle the malloc pointer initialization
34646 correctly. This patch fixes this problem. Tested successfully on 4xx.
34647 The relocation fixup patches for 4xx will follow soon.
34648
34649 Signed-off-by: Stefan Roese <sr@denx.de>
34650
34651 commit 0dca874db62718e41253659e60f3a1de7eb418ce
34652 Author: TsiChung <tcliew@Goku.(none)>
34653 Date: Tue Jul 10 15:45:43 2007 -0500
34654
34655 Cache update and added CFG_UNIFY_CACHE
34656
34657 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.
34658
34659 Signed-off-by: TsiChung <tcliew@Goku.(none)>
34660
34661 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
34662 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34663 Date: Thu Jul 5 23:36:16 2007 -0500
34664
34665 Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
34666
34667 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
34668
34669 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34670
34671 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
34672 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34673 Date: Thu Jul 5 23:31:25 2007 -0500
34674
34675 Update header files
34676
34677 Include immap.h and renamed mcfrtc.h to rtc.h
34678
34679 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34680
34681 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
34682 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34683 Date: Thu Jul 5 23:29:21 2007 -0500
34684
34685 Add mcffec_initialize()
34686
34687 Added mcffec_initialize() in eth_initialize()
34688
34689 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34690
34691 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
34692 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34693 Date: Thu Jul 5 23:27:40 2007 -0500
34694
34695 Update header file and clean up
34696
34697 Include immap.h
34698
34699 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34700
34701 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
34702 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34703 Date: Thu Jul 5 23:23:15 2007 -0500
34704
34705 New uart structure and defines
34706
34707 Seperated from mcfuart.h
34708
34709 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34710
34711 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
34712 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34713 Date: Thu Jul 5 23:22:31 2007 -0500
34714
34715 New timer structure and defines
34716
34717 Seperated from mcftimer.h
34718
34719 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34720
34721 commit e04acb2eba4782489417240eff76e20e176aec10
34722 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34723 Date: Thu Jul 5 23:21:09 2007 -0500
34724
34725 Rename mcfrtc to rtc
34726
34727 Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
34728
34729 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34730
34731 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
34732 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34733 Date: Thu Jul 5 23:17:36 2007 -0500
34734
34735 Rename mcfserial.c. Update include header
34736
34737 Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
34738
34739 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34740
34741 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
34742 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34743 Date: Thu Jul 5 23:13:58 2007 -0500
34744
34745 Header file update, clean up and cache handling
34746
34747 Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
34748
34749 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34750
34751 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
34752 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34753 Date: Thu Jul 5 23:10:40 2007 -0500
34754
34755 Create interrupts.c and modify Makefile
34756
34757 interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
34758
34759 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34760
34761 commit ddd104f1ed655eda50c06ba636237a83ed943f34
34762 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34763 Date: Thu Jul 5 23:06:55 2007 -0500
34764
34765 Enable Icache
34766
34767 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34768
34769 commit b9bf3de377b2bae70c983c9b97feae914999e735
34770 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34771 Date: Thu Jul 5 23:05:31 2007 -0500
34772
34773 Update header file and some clean up
34774
34775 Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
34776
34777 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34778
34779 commit 84a015b52ec820a5ae173717d78516de731c89c2
34780 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34781 Date: Thu Jul 5 23:03:28 2007 -0500
34782
34783 Update header file and enable icache
34784
34785 Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
34786
34787 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34788
34789 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
34790 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34791 Date: Thu Jul 5 23:01:22 2007 -0500
34792
34793 Update header file and removed interrupt_init()
34794
34795 Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
34796
34797 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34798
34799 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
34800 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34801 Date: Thu Jul 5 22:57:46 2007 -0500
34802
34803 Update for flash.o and mii.o
34804
34805 Removed flash.o and added mii.o
34806
34807 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34808
34809 commit c5ded275d839e4ff79f41718d50a835d989f57bc
34810 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34811 Date: Thu Jul 5 22:56:19 2007 -0500
34812
34813 MII functions calls.
34814
34815 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34816
34817 commit 427c814104560e29bda14955c67703245aaaa5b4
34818 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34819 Date: Thu Jul 5 22:54:42 2007 -0500
34820
34821 Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
34822
34823 The removed MII routines will be placed in mii.c.
34824
34825 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34826
34827 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
34828 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34829 Date: Thu Jul 5 22:51:05 2007 -0500
34830
34831 Duplicate code
34832
34833 There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
34834
34835 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34836
34837 commit 2744354a8437b8f78db178e30660215688bff570
34838 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34839 Date: Thu Jul 5 22:46:38 2007 -0500
34840
34841 Seperate old structure defines and new structure defines
34842
34843 Removed new uart structure and defines to uart.h
34844
34845 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34846
34847 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
34848 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34849 Date: Thu Jul 5 22:45:01 2007 -0500
34850
34851 Seperate old structure defines and new structure defines
34852
34853 New timer structure and defines will move to new timer.h
34854
34855 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34856
34857 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
34858 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34859 Date: Thu Jul 5 22:42:23 2007 -0500
34860
34861 Clean up
34862
34863 Removed whitespace
34864
34865 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34866
34867 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
34868 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34869 Date: Thu Jul 5 22:41:24 2007 -0500
34870
34871 Clean up
34872
34873 Replaced whitespace with tabs
34874
34875 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34876
34877 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
34878 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34879 Date: Thu Jul 5 22:39:07 2007 -0500
34880
34881 Create new header file and move peripherals base address from configs file to new header file.
34882
34883 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.
34884
34885 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34886
34887 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
34888 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34889 Date: Thu Jul 5 22:24:58 2007 -0500
34890
34891 Revert file mode
34892
34893 Changed MAKEALL file mode to executable, removed executable file mode from Makefile
34894
34895 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34896
34897 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
34898 Author: Jon Loeliger <jdl@freescale.com>
34899 Date: Tue Jul 10 11:19:50 2007 -0500
34900
34901 disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
34902
34903 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34904 Those always evaluated TRUE, and thus were always compiled
34905 even when IDE really wasn't defined/wanted.
34906
34907 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34908
34909 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
34910 Author: Jon Loeliger <jdl@freescale.com>
34911 Date: Tue Jul 10 11:13:21 2007 -0500
34912
34913 drivers/: Remove lingering references to CFG_CMD_* symbols.
34914
34915 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34916 Those always evaluated TRUE, and thus were always compiled
34917 even when IDE really wasn't defined/wanted.
34918
34919 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34920
34921 commit f40a7f3e3888b42a43674b099e5470022c8c544c
34922 Author: Jon Loeliger <jdl@freescale.com>
34923 Date: Tue Jul 10 11:07:56 2007 -0500
34924
34925 fs/: Remove lingering references to CFG_CMD_* symbols.
34926
34927 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34928 Those always evaluated TRUE, and thus were always compiled
34929 even when IDE really wasn't defined/wanted.
34930
34931 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34932
34933 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
34934 Author: Jon Loeliger <jdl@freescale.com>
34935 Date: Tue Jul 10 11:05:02 2007 -0500
34936
34937 net/: Remove lingering references to CFG_CMD_* symbols.
34938
34939 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34940 Those always evaluated TRUE, and thus were always compiled
34941 even when IDE really wasn't defined/wanted.
34942
34943 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34944
34945 commit 902531788376046da212afd1661cffb62f3daa1c
34946 Author: Jon Loeliger <jdl@freescale.com>
34947 Date: Tue Jul 10 11:02:44 2007 -0500
34948
34949 common/: Remove lingering references to CFG_CMD_* symbols.
34950
34951 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34952 Those always evaluated TRUE, and thus were always compiled
34953 even when IDE really wasn't defined/wanted.
34954
34955 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34956
34957 commit d39b57415838c73fb0a37eca84de3c68ba990586
34958 Author: Jon Loeliger <jdl@freescale.com>
34959 Date: Tue Jul 10 10:48:22 2007 -0500
34960
34961 board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
34962
34963 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34964 Those always evaluated TRUE, and thus were always compiled
34965 even when IDE really wasn't defined/wanted.
34966
34967 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34968
34969 commit 77a318545d57aefa844752465b94c7e09a3f26d0
34970 Author: Jon Loeliger <jdl@freescale.com>
34971 Date: Tue Jul 10 10:39:10 2007 -0500
34972
34973 board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
34974
34975 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34976 Those always evaluated TRUE, and thus were always compiled
34977 even when IDE really wasn't defined/wanted.
34978
34979 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34980
34981 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
34982 Author: Jon Loeliger <jdl@freescale.com>
34983 Date: Tue Jul 10 10:27:39 2007 -0500
34984
34985 cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
34986
34987 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34988
34989 commit 079a136c3588814784561d6e4856970ee82d6e2a
34990 Author: Jon Loeliger <jdl@freescale.com>
34991 Date: Tue Jul 10 10:12:10 2007 -0500
34992
34993 include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
34994
34995 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
34996 used to be included but CONFIG_BOOTP_MASK was not defined.
34997
34998 Remove lingering references to CFG_CMD_* symbols.
34999
35000 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35001
35002 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
35003 Author: Jon Loeliger <jdl@freescale.com>
35004 Date: Tue Jul 10 09:38:02 2007 -0500
35005
35006 include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
35007
35008 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
35009 used to be included but CONFIG_BOOTP_MASK was not defined.
35010
35011 Remove lingering references to CFG_CMD_* symbols.
35012
35013 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35014
35015 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
35016 Author: Jon Loeliger <jdl@freescale.com>
35017 Date: Tue Jul 10 09:29:01 2007 -0500
35018
35019 include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
35020
35021 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
35022 used to be included but CONFIG_BOOTP_MASK was not defined.
35023
35024 Remove lingering references to CFG_CMD_* symbols.
35025
35026 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35027
35028 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
35029 Author: Jon Loeliger <jdl@freescale.com>
35030 Date: Tue Jul 10 09:22:23 2007 -0500
35031
35032 include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
35033
35034 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
35035 used to be included but CONFIG_BOOTP_MASK was not defined.
35036
35037 Remove lingering references to CFG_CMD_* symbols.
35038
35039 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35040
35041 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
35042 Author: Jon Loeliger <jdl@freescale.com>
35043 Date: Tue Jul 10 09:10:49 2007 -0500
35044
35045 include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
35046
35047 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
35048 used to be included but CONFIG_BOOTP_MASK was not defined.
35049
35050 Remove lingering references to CFG_CMD_* symbols.
35051
35052 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35053
35054 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
35055 Author: Jon Loeliger <jdl@freescale.com>
35056 Date: Tue Jul 10 09:02:57 2007 -0500
35057
35058 include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
35059
35060 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
35061 used to be included but CONFIG_BOOTP_MASK was not defined.
35062
35063 Remove lingering references to CFG_CMD_* symbols.
35064
35065 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35066
35067 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
35068 Author: Jon Loeliger <jdl@freescale.com>
35069 Date: Mon Jul 9 22:08:34 2007 -0500
35070
35071 Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
35072
35073 All of the choices for CONFIG_BOOTP_ are now documented in
35074 the README file. You must now individually select exactly
35075 the set that you want using a series of
35076 #define CONFIG_BOOTP_<x>
35077 statements in the board port config files now.
35078
35079 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35080
35081 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
35082 Author: Jon Loeliger <jdl@freescale.com>
35083 Date: Mon Jul 9 21:57:31 2007 -0500
35084
35085 include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35086
35087 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35088
35089 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
35090 Author: Jon Loeliger <jdl@freescale.com>
35091 Date: Mon Jul 9 21:48:26 2007 -0500
35092
35093 include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35094
35095 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35096
35097 commit 37d4bb70586659dedef1658ce1bed071be098aec
35098 Author: Jon Loeliger <jdl@freescale.com>
35099 Date: Mon Jul 9 21:38:02 2007 -0500
35100
35101 include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35102
35103 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35104
35105 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
35106 Author: Jon Loeliger <jdl@freescale.com>
35107 Date: Mon Jul 9 21:31:24 2007 -0500
35108
35109 include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35110
35111 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35112
35113 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
35114 Author: Jon Loeliger <jdl@freescale.com>
35115 Date: Mon Jul 9 21:24:19 2007 -0500
35116
35117 include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35118
35119 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35120
35121 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
35122 Author: Jon Loeliger <jdl@freescale.com>
35123 Date: Mon Jul 9 21:16:53 2007 -0500
35124
35125 include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35126
35127 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35128
35129 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
35130 Author: Jon Loeliger <jdl@freescale.com>
35131 Date: Mon Jul 9 19:12:30 2007 -0500
35132
35133 Retire CONFIG_COMMANDS finally.
35134 Strip old CFG_CMD_* symbols out.
35135
35136 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35137
35138 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
35139 Author: Jon Loeliger <jdl@freescale.com>
35140 Date: Mon Jul 9 19:10:03 2007 -0500
35141
35142 Update README.* to reference new CONFIG_CMD_* names now.
35143
35144 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35145
35146 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
35147 Author: Jon Loeliger <jdl@freescale.com>
35148 Date: Mon Jul 9 19:06:00 2007 -0500
35149
35150 cpu/m*: Remove obsolete references to CONFIG_COMMANDS
35151
35152 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35153
35154 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
35155 Author: Jon Loeliger <jdl@freescale.com>
35156 Date: Mon Jul 9 18:57:22 2007 -0500
35157
35158 cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
35159
35160 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35161
35162 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
35163 Author: Jon Loeliger <jdl@freescale.com>
35164 Date: Mon Jul 9 18:45:16 2007 -0500
35165
35166 board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
35167
35168 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35169
35170 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
35171 Author: Jon Loeliger <jdl@freescale.com>
35172 Date: Mon Jul 9 18:38:39 2007 -0500
35173
35174 board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
35175
35176 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35177
35178 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
35179 Author: Jon Loeliger <jdl@freescale.com>
35180 Date: Mon Jul 9 18:31:28 2007 -0500
35181
35182 board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
35183
35184 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35185
35186 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
35187 Author: Jon Loeliger <jdl@freescale.com>
35188 Date: Mon Jul 9 18:24:55 2007 -0500
35189
35190 board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
35191
35192 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35193
35194 commit fcec2eb93e126400009729328e797f12bc94f1fd
35195 Author: Jon Loeliger <jdl@freescale.com>
35196 Date: Mon Jul 9 18:19:09 2007 -0500
35197
35198 board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
35199
35200 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35201
35202 commit a593814f2be0c9cdc3133cd550b167b8a988328f
35203 Author: Jon Loeliger <jdl@freescale.com>
35204 Date: Mon Jul 9 18:10:50 2007 -0500
35205
35206 rtc/: Remove obsolete references to CONFIG_COMMANDS
35207
35208 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35209
35210 commit 67350568f9d46e66c21829f3513b3db0caeb948b
35211 Author: Jon Loeliger <jdl@freescale.com>
35212 Date: Mon Jul 9 18:05:38 2007 -0500
35213
35214 lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
35215
35216 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35217
35218 commit 7def6b34f910f08d7ef0a14646da067719237ca2
35219 Author: Jon Loeliger <jdl@freescale.com>
35220 Date: Mon Jul 9 18:02:11 2007 -0500
35221
35222 lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
35223
35224 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35225
35226 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
35227 Author: Jon Loeliger <jdl@freescale.com>
35228 Date: Mon Jul 9 17:56:50 2007 -0500
35229
35230 fs/: Remove obsolete references to CONFIG_COMMANDS
35231
35232 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35233
35234 commit c91898bbc505aff3e12a807af88e76da18efb7ee
35235 Author: Jon Loeliger <jdl@freescale.com>
35236 Date: Mon Jul 9 17:46:09 2007 -0500
35237
35238 tools/: Remove obsolete references to CONFIG_COMMANDS
35239
35240 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35241
35242 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
35243 Author: Jon Loeliger <jdl@freescale.com>
35244 Date: Mon Jul 9 17:45:14 2007 -0500
35245
35246 net/: Remove obsolete references to CONFIG_COMMANDS
35247
35248 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35249
35250 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
35251 Author: Jon Loeliger <jdl@freescale.com>
35252 Date: Mon Jul 9 17:39:42 2007 -0500
35253
35254 drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
35255
35256 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35257
35258 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
35259 Author: Jon Loeliger <jdl@freescale.com>
35260 Date: Mon Jul 9 17:30:01 2007 -0500
35261
35262 drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
35263
35264 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35265
35266 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
35267 Author: Jon Loeliger <jdl@freescale.com>
35268 Date: Mon Jul 9 17:22:37 2007 -0500
35269
35270 disk/: Remove obsolete references to CONFIG_COMMANDS
35271
35272 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35273
35274 commit 639221c76c88215bd55af83ad174fc30d1940f8f
35275 Author: Jon Loeliger <jdl@freescale.com>
35276 Date: Mon Jul 9 17:15:49 2007 -0500
35277
35278 include/: Remove obsolete references to CONFIG_COMMANDS
35279 Mostly removed from comments here.
35280
35281 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35282
35283 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
35284 Author: Wolfgang Denk <wd@denx.de>
35285 Date: Tue Jul 10 00:01:28 2007 +0200
35286
35287 Coding style cleanup; update CHANGELOG.
35288
35289 Signed-off-by: Wolfgang Denk <wd@denx.de>
35290
35291 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
35292 Author: Stefan Roese <sr@denx.de>
35293 Date: Mon Jul 9 11:00:24 2007 +0200
35294
35295 Small coding style cleanup
35296
35297 Signed-off-by: Stefan Roese <sr@denx.de>
35298
35299 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
35300 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35301 Date: Mon Jul 9 10:10:08 2007 +0200
35302
35303 Migrate esd 405EP boards to new NAND subsystem
35304
35305 Remove unused CFG_NAND_LEGACY define
35306
35307 These boards to not have NAND.
35308
35309 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35310
35311 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
35312 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35313 Date: Mon Jul 9 10:10:06 2007 +0200
35314
35315 Migrate esd 405EP boards to new NAND subsystem
35316
35317 Migrate esd 405EP boards to new NAND subsystem
35318
35319 -cleanup
35320 -use correct io accessors (in/out_be32())
35321
35322 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35323
35324 commit e09f7ab5749c345f924da272bea0521a73af5b11
35325 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35326 Date: Mon Jul 9 10:10:04 2007 +0200
35327
35328 Migrate esd 405EP boards to new NAND subsystem
35329
35330 This patch prepares the migration from the legacy NAND driver
35331 to U-Boot's new NAND subsystem for esd boards.
35332
35333 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35334
35335 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
35336 Author: Jon Loeliger <jdl@freescale.com>
35337 Date: Sun Jul 8 18:10:08 2007 -0500
35338
35339 common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
35340
35341 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35342
35343 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
35344 Author: Jon Loeliger <jdl@freescale.com>
35345 Date: Sun Jul 8 18:05:39 2007 -0500
35346
35347 common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
35348
35349 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35350
35351 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
35352 Author: Jon Loeliger <jdl@freescale.com>
35353 Date: Sun Jul 8 18:02:23 2007 -0500
35354
35355 common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
35356
35357 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35358
35359 commit baa26db4113679b80970ff447d91cc10217742a6
35360 Author: Jon Loeliger <jdl@freescale.com>
35361 Date: Sun Jul 8 17:51:39 2007 -0500
35362
35363 common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
35364
35365 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35366
35367 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
35368 Author: Jon Loeliger <jdl@freescale.com>
35369 Date: Sun Jul 8 17:02:01 2007 -0500
35370
35371 Clear up confusion over the CMD_POST and POST_DIAG mess.
35372
35373 For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
35374 when it really means just CONFIG_CMD_DIAG. There is no CMD_POST.
35375 Clear this mess up some.
35376
35377 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35378
35379 commit b3631487105a57ab7cbadfc26efbaf9676275018
35380 Author: Jon Loeliger <jdl@freescale.com>
35381 Date: Sun Jul 8 15:45:08 2007 -0500
35382
35383 Remove references to the old cmd_confdefs.h include file.
35384
35385 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35386
35387 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
35388 Author: Jon Loeliger <jdl@freescale.com>
35389 Date: Sun Jul 8 15:42:59 2007 -0500
35390
35391 include/configs: Catch some CONFIG_CMD_* conversion stragglers.
35392
35393 Use new CONFIG_CMD_* in lwmon5.h board config file.
35394 Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
35395
35396 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35397
35398 commit a5562901661bd428f7e5feb333f796372cb81019
35399 Author: Jon Loeliger <jdl@freescale.com>
35400 Date: Sun Jul 8 15:31:57 2007 -0500
35401
35402 include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
35403
35404 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35405
35406 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
35407 Author: Jon Loeliger <jdl@freescale.com>
35408 Date: Sun Jul 8 15:02:44 2007 -0500
35409
35410 include/configs: Use new CONFIG_CMD_* in various S* named board config files.
35411
35412 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35413
35414 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
35415 Author: Jon Loeliger <jdl@freescale.com>
35416 Date: Sun Jul 8 15:12:40 2007 -0500
35417
35418 include/configs: Use new CONFIG_CMD_* in various R* named board config files.
35419
35420 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35421
35422 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
35423 Author: Jon Loeliger <jdl@freescale.com>
35424 Date: Sun Jul 8 14:55:07 2007 -0500
35425
35426 include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
35427
35428 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35429
35430 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
35431 Author: Jon Loeliger <jdl@freescale.com>
35432 Date: Sun Jul 8 14:49:44 2007 -0500
35433
35434 include/configs: Use new CONFIG_CMD_* in various P* named board config files.
35435
35436 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35437
35438 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
35439 Author: Jon Loeliger <jdl@freescale.com>
35440 Date: Sun Jul 8 14:21:43 2007 -0500
35441
35442 include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
35443
35444 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35445
35446 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
35447 Author: Jon Loeliger <jdl@freescale.com>
35448 Date: Sun Jul 8 14:14:17 2007 -0500
35449
35450 include/configs: Use new CONFIG_CMD_* in various M* named board config files.
35451
35452 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35453
35454 commit 348f258f24253433e4a2302a0bbceb6740a67246
35455 Author: Jon Loeliger <jdl@freescale.com>
35456 Date: Sun Jul 8 13:46:18 2007 -0500
35457
35458 include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
35459
35460 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35461
35462 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
35463 Author: Jon Loeliger <jdl@freescale.com>
35464 Date: Sun Jul 8 10:09:35 2007 -0500
35465
35466 include/configs: Use new CONFIG_CMD_* in various H* named board config files.
35467
35468 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35469
35470 commit 60a0876b5106b34220e459c208bbf648073306c0
35471 Author: Jon Loeliger <jdl@freescale.com>
35472 Date: Sat Jul 7 21:04:26 2007 -0500
35473
35474 include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
35475
35476 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35477
35478 commit dcaa71562826a2466e894c868d132509dcda8444
35479 Author: Jon Loeliger <jdl@freescale.com>
35480 Date: Sat Jul 7 20:56:05 2007 -0500
35481
35482 include/configs: Use new CONFIG_CMD_* in various E* named board config files.
35483
35484 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35485
35486 commit 3c3227f3c737502311b25b72084573901cbbf17d
35487 Author: Jon Loeliger <jdl@freescale.com>
35488 Date: Sat Jul 7 20:40:43 2007 -0500
35489
35490 include/configs: Use new CONFIG_CMD_* in various D* named board config files.
35491
35492 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35493
35494 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
35495 Author: Jon Loeliger <jdl@freescale.com>
35496 Date: Thu Jul 5 19:52:35 2007 -0500
35497
35498 include/configs: Use new CONFIG_CMD_* in various C* named board config files.
35499
35500 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35501
35502 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
35503 Author: Jon Loeliger <jdl@freescale.com>
35504 Date: Thu Jul 5 19:32:07 2007 -0500
35505
35506 include/configs: Use new CONFIG_CMD_* in various B* named board config files.
35507
35508 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35509
35510 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
35511 Author: Jon Loeliger <jdl@freescale.com>
35512 Date: Thu Jul 5 19:13:52 2007 -0500
35513
35514 include/configs: Use new CONFIG_CMD_* in various A* named board config files.
35515
35516 Since ADS860.h includes "board/fads/fads.h" with ramifications
35517 on the CONFIG_COMMAND treatment, it too has to be adjusted to
35518 exclude already configured commands in this same commit.
35519
35520 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35521
35522 commit 10e038932f22ee80ebd53de312531e70e6590a2f
35523 Author: Thomas Knobloch <knobloch@siemens.com>
35524 Date: Fri Jul 6 14:58:39 2007 +0200
35525
35526 [NAND] Bad block skipping for command nboot
35527
35528 The old implementation of command nboot does not support reading the image from
35529 NAND flash with skipping of bad blocks. The patch implements a new version of
35530 the nboot command: by calling nboot.jffs2 from the u-boot command line the
35531 command will load the image from NAND flash with respect to bad blocks (by using
35532 nand_read_opts()). This is similar to e.g. the NAND read command: "nand
35533 read.jffs2 ...".
35534
35535 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
35536 Signed-off-by: Stefan Roese <sr@denx.de>
35537
35538 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
35539 Author: Stefan Roese <sr@denx.de>
35540 Date: Fri Jul 6 12:26:51 2007 +0200
35541
35542 ppc4xx: Update lwmon5 default environment
35543
35544 Signed-off-by: Stefan Roese <sr@denx.de>
35545
35546 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
35547 Author: Stefan Roese <sr@denx.de>
35548 Date: Fri Jul 6 11:48:24 2007 +0200
35549
35550 ppc4xx: Update lwmon5 board
35551
35552 Add unlock=yes environment variable to default variables to unlock
35553 the CFI flash by default.
35554
35555 Signed-off-by: Stefan Roese <sr@denx.de>
35556
35557 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
35558 Author: Stefan Roese <sr@denx.de>
35559 Date: Fri Jul 6 09:45:47 2007 +0200
35560
35561 Fix problem with get/setdcr commands introduced by cfg patches
35562
35563 Signed-off-by: Stefan Roese <sr@denx.de>
35564
35565 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
35566 Author: Wolfgang Denk <wd@denx.de>
35567 Date: Fri Jul 6 02:50:19 2007 +0200
35568
35569 Code cleanup and default config update for STC GP3 SSA board.
35570
35571 Signed-off-by: Wolfgang Denk <wd@denx.de>
35572
35573 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
35574 Author: Wolfgang Denk <wd@denx.de>
35575 Date: Thu Jul 5 17:56:27 2007 +0200
35576
35577 Fixing some typos etc. introduced mainly by cfg patches.
35578
35579 Signed-off-by: Wolfgang Denk <wd@denx.de>
35580
35581 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
35582 Author: Wolfgang Denk <wd@denx.de>
35583 Date: Thu Jul 5 11:12:16 2007 +0200
35584
35585 Minor coding style cleanup. Update CHANGELOG.
35586
35587 commit dca3b3d6d6396b67e5e84af53452164923c73443
35588 Author: Jon Loeliger <jdl@jdl.com>
35589 Date: Wed Jul 4 22:33:46 2007 -0500
35590
35591 include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
35592
35593 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35594
35595 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
35596 Author: Jon Loeliger <jdl@jdl.com>
35597 Date: Wed Jul 4 22:33:38 2007 -0500
35598
35599 include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
35600
35601 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35602
35603 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
35604 Author: Jon Loeliger <jdl@jdl.com>
35605 Date: Wed Jul 4 22:33:30 2007 -0500
35606
35607 include/configs: Use new CONFIG_CMD_* in various s* named board config files.
35608
35609 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35610
35611 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
35612 Author: Jon Loeliger <jdl@jdl.com>
35613 Date: Wed Jul 4 22:33:23 2007 -0500
35614
35615 include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
35616
35617 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35618
35619 commit 26a34560d56a9df5bc2ae23525d9229736134757
35620 Author: Jon Loeliger <jdl@jdl.com>
35621 Date: Wed Jul 4 22:33:17 2007 -0500
35622
35623 include/configs: Use new CONFIG_CMD_* in various p* named board config files.
35624
35625 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35626
35627 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
35628 Author: Jon Loeliger <jdl@jdl.com>
35629 Date: Wed Jul 4 22:33:13 2007 -0500
35630
35631 include/configs: Use new CONFIG_CMD_* in various o* named board config files.
35632
35633 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35634
35635 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
35636 Author: Jon Loeliger <jdl@jdl.com>
35637 Date: Wed Jul 4 22:33:07 2007 -0500
35638
35639 include/configs: Use new CONFIG_CMD_* in various n* named board config files.
35640
35641 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35642
35643 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
35644 Author: Jon Loeliger <jdl@jdl.com>
35645 Date: Wed Jul 4 22:33:01 2007 -0500
35646
35647 include/configs: Use new CONFIG_CMD_* in various m* named board config files.
35648
35649 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35650
35651 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
35652 Author: Jon Loeliger <jdl@jdl.com>
35653 Date: Wed Jul 4 22:32:57 2007 -0500
35654
35655 include/configs: Use new CONFIG_CMD_* in various l* named board config files.
35656
35657 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35658
35659 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
35660 Author: Jon Loeliger <jdl@jdl.com>
35661 Date: Wed Jul 4 22:32:51 2007 -0500
35662
35663 include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
35664
35665 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35666
35667 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
35668 Author: Jon Loeliger <jdl@jdl.com>
35669 Date: Wed Jul 4 22:32:32 2007 -0500
35670
35671 include/configs: Use new CONFIG_CMD_* in various i* named board config files.
35672
35673 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35674
35675 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
35676 Author: Jon Loeliger <jdl@jdl.com>
35677 Date: Wed Jul 4 22:32:25 2007 -0500
35678
35679 include/configs: Use new CONFIG_CMD_* in various h* named board config files.
35680
35681 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35682
35683 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
35684 Author: Jon Loeliger <jdl@jdl.com>
35685 Date: Wed Jul 4 22:32:19 2007 -0500
35686
35687 include/configs: Use new CONFIG_CMD_* in various g* named board config files.
35688
35689 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35690
35691 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
35692 Author: Jon Loeliger <jdl@jdl.com>
35693 Date: Wed Jul 4 22:32:10 2007 -0500
35694
35695 include/configs: Use new CONFIG_CMD_* in various e* named board config files.
35696
35697 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35698
35699 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
35700 Author: Jon Loeliger <jdl@jdl.com>
35701 Date: Wed Jul 4 22:32:03 2007 -0500
35702
35703 include/configs: Use new CONFIG_CMD_* in various d* named board config files.
35704
35705 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35706
35707 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
35708 Author: Jon Loeliger <jdl@jdl.com>
35709 Date: Wed Jul 4 22:31:56 2007 -0500
35710
35711 include/configs: Use new CONFIG_CMD_* in various c* named board config files.
35712
35713 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35714
35715 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
35716 Author: Jon Loeliger <jdl@jdl.com>
35717 Date: Wed Jul 4 22:31:49 2007 -0500
35718
35719 include/configs: Use new CONFIG_CMD_* in various b* named board config files.
35720
35721 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35722
35723 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
35724 Author: Jon Loeliger <jdl@jdl.com>
35725 Date: Wed Jul 4 22:31:42 2007 -0500
35726
35727 include/configs: Use new CONFIG_CMD_* in various a* named board config files.
35728
35729 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35730
35731 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
35732 Author: Jon Loeliger <jdl@jdl.com>
35733 Date: Wed Jul 4 22:31:35 2007 -0500
35734
35735 include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
35736
35737 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35738
35739 commit d794cfefead5fc177cf4f41164e80382e9c9484a
35740 Author: Jon Loeliger <jdl@jdl.com>
35741 Date: Wed Jul 4 22:31:15 2007 -0500
35742
35743 include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
35744
35745 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35746
35747 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
35748 Author: Jon Loeliger <jdl@jdl.com>
35749 Date: Wed Jul 4 22:31:07 2007 -0500
35750
35751 include/configs: Use new CONFIG_CMD_* in STx board config files.
35752
35753 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35754
35755 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
35756 Author: Jon Loeliger <jdl@jdl.com>
35757 Date: Wed Jul 4 22:30:58 2007 -0500
35758
35759 include/configs: Use new CONFIG_CMD_* in sbc* board config files.
35760
35761 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35762
35763 commit 2694690e285acaa34922f55f4b5ae030da60c55a
35764 Author: Jon Loeliger <jdl@jdl.com>
35765 Date: Wed Jul 4 22:30:50 2007 -0500
35766
35767 include/configs: Use new CONFIG_CMD_* in TQM board config files.
35768
35769 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35770
35771 commit 1cc4c458329765b58e584a19821e796b3c10e976
35772 Author: Jon Loeliger <jdl@jdl.com>
35773 Date: Wed Jul 4 22:30:28 2007 -0500
35774
35775 include/configs: Use new CONFIG_CMD_* in 82xx board config files.
35776
35777 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35778
35779 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
35780 Author: Jon Loeliger <jdl@jdl.com>
35781 Date: Wed Jul 4 22:30:06 2007 -0500
35782
35783 include/configs: Use new CONFIG_CMD_* in 83xx board config files.
35784
35785 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35786
35787 commit b44896215a09c60fa40cae906f7ed207bbc2c492
35788 Author: Sergei Poselenov <sposelenov@emcraft.com>
35789 Date: Thu Jul 5 08:17:37 2007 +0200
35790
35791 Merged POST framework with the current TOT.
35792
35793 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35794
35795 commit b24629fa377214d63bb40d1360e354b6d3e4af56
35796 Author: Jon Loeliger <jdl@jdl.com>
35797 Date: Wed Jun 13 13:23:15 2007 -0500
35798
35799 mpc86xx: Remove old CFG_CMD_* references.
35800
35801 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35802
35803 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
35804 Author: Jon Loeliger <jdl@jdl.com>
35805 Date: Wed Jun 13 13:22:54 2007 -0500
35806
35807 Add MPC8568MDS to MAKEALL 85xx target.
35808
35809 It was missing from the original port submission.
35810
35811 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35812
35813 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
35814 Author: Jon Loeliger <jdl@jdl.com>
35815 Date: Wed Jun 13 13:22:08 2007 -0500
35816
35817 include/configs: Use new CONFIG_CMD_* in 85xx board config files.
35818
35819 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35820
35821 commit 56b304ac2091689506088a9ae67f63fd6300cf16
35822 Author: Jon Loeliger <jdl@jdl.com>
35823 Date: Wed Jun 13 13:21:37 2007 -0500
35824
35825 Fix #if typo in CONFIG_CMD_* changes.
35826
35827 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35828
35829 commit f780b83316d9af1f61d71cc88b1917b387b9b995
35830 Author: Niklaus Giger <niklausgiger@gmx.ch>
35831 Date: Wed Jun 27 18:11:38 2007 +0200
35832
35833 resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
35834
35835 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
35836
35837 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
35838 Author: Stefan Roese <sr@denx.de>
35839 Date: Wed Jul 4 10:06:30 2007 +0200
35840
35841 ppc4xx: Update lwmon5 board
35842
35843 - Add optional ECC generation routine to preserve existing
35844 RAM values. This is needed for the Linux log-buffer support
35845 - Add optional DDR2 setup with CL=4
35846 - GPIO50 not used anymore
35847 - Lime register setup added
35848
35849 Signed-off-by: Stefan Roese <sr@denx.de>
35850
35851 commit 6810a34677dbc446334f5e451f1682426dd33b49
35852 Author: Grant Likely <grant.likely@secretlab.ca>
35853 Date: Tue Jul 3 00:17:28 2007 -0600
35854
35855 Fix Makefile to use $(MKCONFIG) macro for all board ports
35856
35857 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35858
35859 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
35860 Author: Grant Likely <grant.likely@secretlab.ca>
35861 Date: Tue Jul 3 00:17:28 2007 -0600
35862
35863 Fix Makefile to use $(MKCONFIG) macro for all board ports
35864
35865 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35866
35867 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
35868 Author: Grant Likely <grant.likely@secretlab.ca>
35869 Date: Tue Jul 3 00:34:49 2007 -0600
35870
35871 Correct fixup relocation for mpc83xx
35872
35873 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35874
35875 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
35876 Author: Grant Likely <grant.likely@secretlab.ca>
35877 Date: Tue Jul 3 00:34:44 2007 -0600
35878
35879 Correct fixup relocation for mpc8260
35880
35881 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35882
35883 commit f3a52fe05923935db86985daf9438e2f70ac39aa
35884 Author: Grant Likely <grant.likely@secretlab.ca>
35885 Date: Tue Jul 3 00:34:39 2007 -0600
35886
35887 Correct fixup relocation for mpc824x
35888
35889 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35890
35891 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
35892 Author: Grant Likely <grant.likely@secretlab.ca>
35893 Date: Tue Jul 3 00:34:34 2007 -0600
35894
35895 Correct fixup relocation for mpc8220
35896
35897 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35898
35899 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
35900 Author: Grant Likely <grant.likely@secretlab.ca>
35901 Date: Tue Jul 3 00:34:29 2007 -0600
35902
35903 Correct fixup relocation for MPC5xxx
35904
35905 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35906
35907 commit 3649cd99ba815b6601868735765602f00ef3692b
35908 Author: Grant Likely <grant.likely@secretlab.ca>
35909 Date: Tue Jul 3 00:34:24 2007 -0600
35910
35911 Correct relocation fixup for mpc5xx
35912
35913 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35914
35915 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
35916 Author: Grant Likely <grant.likely@secretlab.ca>
35917 Date: Tue Jul 3 00:34:19 2007 -0600
35918
35919 Don't set gd->reloc_off if relocation of .fixup works correctly
35920
35921 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35922
35923 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
35924 Author: Grant Likely <grant.likely@secretlab.ca>
35925 Date: Tue Jul 3 00:34:14 2007 -0600
35926
35927 Remove obsolete mpc83xx linker scripts
35928
35929 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35930
35931 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
35932 Author: Grant Likely <grant.likely@secretlab.ca>
35933 Date: Tue Jul 3 00:34:09 2007 -0600
35934
35935 Consolidate mpc8260 linker scripts
35936
35937 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35938
35939 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
35940 Author: Grant Likely <grant.likely@secretlab.ca>
35941 Date: Tue Jul 3 00:34:04 2007 -0600
35942
35943 Remove obsolete mpc824x linker scripts
35944
35945 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35946
35947 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
35948 Author: Grant Likely <grant.likely@secretlab.ca>
35949 Date: Tue Jul 3 00:33:59 2007 -0600
35950
35951 Remove obsolete mpc824x linker scripts (3 of 4)
35952
35953 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35954
35955 commit a71c084f3ac7fedf144537db2b2da47323068833
35956 Author: Grant Likely <grant.likely@secretlab.ca>
35957 Date: Tue Jul 3 00:33:53 2007 -0600
35958
35959 Remove obsolete mpc824x linker scripts (2 of 4)
35960
35961 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35962
35963 commit f670a15468d1365241d40022b9408e1004181f5e
35964 Author: Grant Likely <grant.likely@secretlab.ca>
35965 Date: Tue Jul 3 00:33:48 2007 -0600
35966
35967 Remove obsolete mpc824x linker scripts (1 of 4)
35968
35969 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35970
35971 commit 09555bd45a04c0e54f172528d21bc18896550d28
35972 Author: Grant Likely <grant.likely@secretlab.ca>
35973 Date: Tue Jul 3 00:33:43 2007 -0600
35974
35975 Remove obsolete mpc8220 linker scripts
35976
35977 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35978
35979 commit 5efb992f046e51225c93d52f80fecbe433abd789
35980 Author: Grant Likely <grant.likely@secretlab.ca>
35981 Date: Tue Jul 3 00:33:38 2007 -0600
35982
35983 Remove obsolete mpc5xxx linker scripts (3 of 3)
35984
35985 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35986
35987 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
35988 Author: Grant Likely <grant.likely@secretlab.ca>
35989 Date: Tue Jul 3 00:33:33 2007 -0600
35990
35991 Remove obsolete mpc5xxx linker scripts (2 of 3)
35992
35993 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35994
35995 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
35996 Author: Grant Likely <grant.likely@secretlab.ca>
35997 Date: Tue Jul 3 00:33:28 2007 -0600
35998
35999 Remove obsolete mpc5xxx linker scripts (1 of 3)
36000
36001 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36002
36003 commit b7d8e05f8675249b5f208aa73babeed384a4519d
36004 Author: Grant Likely <grant.likely@secretlab.ca>
36005 Date: Tue Jul 3 00:33:23 2007 -0600
36006
36007 Remove obsolete mpc5xx linker scripts
36008
36009 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36010
36011 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
36012 Author: Grant Likely <grant.likely@secretlab.ca>
36013 Date: Tue Jul 3 00:33:18 2007 -0600
36014
36015 Consolidate mpc83xx linker scripts
36016
36017 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36018
36019 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
36020 Author: Grant Likely <grant.likely@secretlab.ca>
36021 Date: Tue Jul 3 00:33:13 2007 -0600
36022
36023 Consolidate mpc8260 linker scripts
36024
36025 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36026
36027 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
36028 Author: Grant Likely <grant.likely@secretlab.ca>
36029 Date: Tue Jul 3 00:33:08 2007 -0600
36030
36031 Consolidate mpc824x linker scripts
36032
36033 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36034
36035 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
36036 Author: Grant Likely <grant.likely@secretlab.ca>
36037 Date: Tue Jul 3 00:33:03 2007 -0600
36038
36039 Consolidate mpc8220 linker scripts
36040
36041 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36042
36043 commit d181c9a15cd41863fe24840d17848429f27d3c8c
36044 Author: Grant Likely <grant.likely@secretlab.ca>
36045 Date: Tue Jul 3 00:32:58 2007 -0600
36046
36047 Consolidate mpc5xxx linker scripts
36048
36049 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36050
36051 commit 287ac924adb7291bebe5086652a362a30ab28b13
36052 Author: Grant Likely <grant.likely@secretlab.ca>
36053 Date: Tue Jul 3 00:32:53 2007 -0600
36054
36055 Consolidate mpc5xx linker scripts
36056
36057 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
36058
36059 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
36060 Author: Wolfgang Denk <wd@denx.de>
36061 Date: Wed Jul 4 00:43:53 2007 +0200
36062
36063 Fix a few file permission problems.
36064
36065 Signed-off-by: Wolfgang Denk <wd@denx.de>
36066
36067 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
36068 Author: Wolfgang Denk <wd@denx.de>
36069 Date: Wed Jul 4 00:38:38 2007 +0200
36070
36071 Minor coding style cleanup. Rebuild CHANGELOG file.
36072
36073 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
36074 Author: Jon Loeliger <jdl@jdl.com>
36075 Date: Mon Jun 11 19:03:44 2007 -0500
36076
36077 configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
36078
36079 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36080
36081 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
36082 Author: Jon Loeliger <jdl@jdl.com>
36083 Date: Mon Jun 11 19:03:39 2007 -0500
36084
36085 README: Rewrite command line config to use CONFIG_CMD_* names.
36086
36087 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36088
36089 commit 72a074cec68e5bad60d63206c050974e08afd804
36090 Author: Jon Loeliger <jdl@jdl.com>
36091 Date: Mon Jun 11 19:03:34 2007 -0500
36092
36093 include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36094
36095 This is a compatibility step that allows both the older form
36096 and the new form to co-exist for a while until the older can
36097 be removed entirely.
36098
36099 All transformations are of the form:
36100 Before:
36101 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36102 After:
36103 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36104
36105 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36106
36107 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
36108 Author: Jon Loeliger <jdl@jdl.com>
36109 Date: Mon Jun 11 19:03:28 2007 -0500
36110
36111 tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36112
36113 This is a compatibility step that allows both the older form
36114 and the new form to co-exist for a while until the older can
36115 be removed entirely.
36116
36117 All transformations are of the form:
36118 Before:
36119 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36120 After:
36121 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36122
36123 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36124
36125 commit 9107ebe0d352420895ab69b715697bdebc8caf50
36126 Author: Jon Loeliger <jdl@jdl.com>
36127 Date: Mon Jun 11 19:03:23 2007 -0500
36128
36129 board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36130
36131 This is a compatibility step that allows both the older form
36132 and the new form to co-exist for a while until the older can
36133 be removed entirely.
36134
36135 All transformations are of the form:
36136 Before:
36137 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36138 After:
36139 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36140
36141 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36142
36143 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
36144 Author: Jon Loeliger <jdl@jdl.com>
36145 Date: Mon Jun 11 19:03:19 2007 -0500
36146
36147 board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36148
36149 This is a compatibility step that allows both the older form
36150 and the new form to co-exist for a while until the older can
36151 be removed entirely.
36152
36153 All transformations are of the form:
36154 Before:
36155 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36156 After:
36157 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36158
36159 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36160
36161 commit 737184114ec9c9e0ab94d6713536126073bd2472
36162 Author: Jon Loeliger <jdl@jdl.com>
36163 Date: Mon Jun 11 19:03:15 2007 -0500
36164
36165 cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36166
36167 This is a compatibility step that allows both the older form
36168 and the new form to co-exist for a while until the older can
36169 be removed entirely.
36170
36171 All transformations are of the form:
36172 Before:
36173 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36174 After:
36175 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36176
36177 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36178
36179 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
36180 Author: Jon Loeliger <jdl@jdl.com>
36181 Date: Mon Jun 11 19:03:08 2007 -0500
36182
36183 cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36184
36185 This is a compatibility step that allows both the older form
36186 and the new form to co-exist for a while until the older can
36187 be removed entirely.
36188
36189 All transformations are of the form:
36190 Before:
36191 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36192 After:
36193 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36194
36195 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36196
36197 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
36198 Author: Jon Loeliger <jdl@jdl.com>
36199 Date: Mon Jun 11 19:03:03 2007 -0500
36200
36201 lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36202
36203 This is a compatibility step that allows both the older form
36204 and the new form to co-exist for a while until the older can
36205 be removed entirely.
36206
36207 All transformations are of the form:
36208 Before:
36209 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36210 After:
36211 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36212
36213 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36214
36215 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
36216 Author: Jon Loeliger <jdl@jdl.com>
36217 Date: Mon Jun 11 19:02:58 2007 -0500
36218
36219 lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36220
36221 This is a compatibility step that allows both the older form
36222 and the new form to co-exist for a while until the older can
36223 be removed entirely.
36224
36225 All transformations are of the form:
36226 Before:
36227 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36228 After:
36229 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36230
36231 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36232
36233 commit 98b79003c21c2578206003256de4e781d6b36ca8
36234 Author: Jon Loeliger <jdl@jdl.com>
36235 Date: Mon Jun 11 19:02:53 2007 -0500
36236
36237 rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36238
36239 This is a compatibility step that allows both the older form
36240 and the new form to co-exist for a while until the older can
36241 be removed entirely.
36242
36243 All transformations are of the form:
36244 Before:
36245 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36246 After:
36247 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36248
36249 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36250
36251 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
36252 Author: Jon Loeliger <jdl@jdl.com>
36253 Date: Mon Jun 11 19:02:49 2007 -0500
36254
36255 net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36256
36257 This is a compatibility step that allows both the older form
36258 and the new form to co-exist for a while until the older can
36259 be removed entirely.
36260
36261 All transformations are of the form:
36262 Before:
36263 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36264 After:
36265 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36266
36267 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36268
36269 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
36270 Author: Jon Loeliger <jdl@jdl.com>
36271 Date: Mon Jun 11 19:02:34 2007 -0500
36272
36273 disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36274
36275 This is a compatibility step that allows both the older form
36276 and the new form to co-exist for a while until the older can
36277 be removed entirely.
36278
36279 All transformations are of the form:
36280 Before:
36281 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36282 After:
36283 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36284
36285 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36286
36287 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
36288 Author: Jon Loeliger <jdl@jdl.com>
36289 Date: Mon Jun 11 19:02:20 2007 -0500
36290
36291 fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36292
36293 This is a compatibility step that allows both the older form
36294 and the new form to co-exist for a while until the older can
36295 be removed entirely.
36296
36297 All transformations are of the form:
36298 Before:
36299 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36300 After:
36301 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36302
36303 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36304
36305 commit d5be43de93ff905c465e509d45a3164ef48d26e7
36306 Author: Jon Loeliger <jdl@jdl.com>
36307 Date: Mon Jun 11 19:02:10 2007 -0500
36308
36309 drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36310
36311 This is a compatibility step that allows both the older form
36312 and the new form to co-exist for a while until the older can
36313 be removed entirely.
36314
36315 All transformations are of the form:
36316 Before:
36317 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36318 After:
36319 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36320
36321 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36322
36323 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
36324 Author: Jon Loeliger <jdl@jdl.com>
36325 Date: Mon Jun 11 19:02:05 2007 -0500
36326
36327 common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36328
36329 This is a compatibility step that allows both the older form
36330 and the new form to co-exist for a while until the older can
36331 be removed entirely.
36332
36333 All transformations are of the form:
36334 Before:
36335 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36336 After:
36337 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36338
36339 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36340
36341 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
36342 Author: Jon Loeliger <jdl@jdl.com>
36343 Date: Mon Jun 11 19:01:54 2007 -0500
36344
36345 common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36346
36347 This is a compatibility step that allows both the older form
36348 and the new form to co-exist for a while until the older can
36349 be removed entirely.
36350
36351 All transformations are of the form:
36352 Before:
36353 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36354 After:
36355 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36356
36357 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36358
36359 commit a76adc8142c1d956385a109e0b70f9319ede4d66
36360 Author: Jon Loeliger <jdl@jdl.com>
36361 Date: Mon Jun 11 19:01:43 2007 -0500
36362
36363 common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36364
36365 This is a compatibility step that allows both the older form
36366 and the new form to co-exist for a while until the older can
36367 be removed entirely.
36368
36369 All transformations are of the form:
36370 Before:
36371 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36372 After:
36373 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36374
36375 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36376
36377 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
36378 Author: Jon Loeliger <jdl@jdl.com>
36379 Date: Mon Jun 11 19:01:34 2007 -0500
36380
36381 Introduce initial versions of new Command Config files.
36382
36383 Derive three new files from cmd_confdefs.h:
36384 config_bootp.h - Has BOOTP related config options, not commands
36385 config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
36386 config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
36387
36388 For now, include "config_bootp.h" for compatability until all
36389 users of it directly include it properly.
36390
36391 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36392
36393 commit 1f2a05898658900dc5717761e27abf2052e67e13
36394 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
36395 Date: Sat Jun 30 18:50:48 2007 +0200
36396
36397 Fix S-ATA support.
36398
36399 Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
36400
36401 commit a5d71e290f3673269be8eefb4ec44f53412f9461
36402 Author: Heiko Schocher <hs@pollux.denx.de>
36403 Date: Mon Jun 25 19:11:37 2007 +0200
36404
36405 [PCS440EP] get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
36406
36407 Signed-off-by: Heiko Schocher <hs@denx.de>
36408
36409 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
36410 Author: Niklaus Giger <niklaus.giger@nestal.com>
36411 Date: Mon Jun 25 17:03:13 2007 +0200
36412
36413 ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
36414
36415 This patch prints the DDR status registers upon machine check
36416 interrupt on the 440EPx/GRx. This can be useful especially when
36417 ECC support is enabled.
36418
36419 I added some small changes to the original patch from Niklaus to
36420 make it compile clean.
36421
36422 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
36423 Signed-off-by: Stefan Roese <sr@denx.de>
36424
36425 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
36426 Author: Niklaus Giger <niklaus.giger@nestal.com>
36427 Date: Mon Jun 25 16:50:55 2007 +0200
36428
36429 ppc4xx: Fix O=buildir builds
36430
36431 This patch fixes the problem to assemble cpu/ppc4xx/start.S
36432 experienced last week where building failed having specified
36433 O=../build.sequoia.
36434
36435 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
36436
36437 commit 466fff1a7bb5fe764a06450626f6098219f446b8
36438 Author: Stefan Roese <sr@denx.de>
36439 Date: Mon Jun 25 15:57:39 2007 +0200
36440
36441 ppc4xx: Add pci_pre_init() for 405 boards
36442
36443 This patch removes the CFG_PCI_PRE_INIT option completely, since
36444 it's not needed anymore with the patch from Matthias Fuchs with
36445 the "weak" pci_pre_init() implementation.
36446
36447 Signed-off-by: Stefan Roese <sr@denx.de>
36448
36449 commit 6f35c53166213c24a5a0e2390ed861136ff73870
36450 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36451 Date: Sun Jun 24 17:41:21 2007 +0200
36452
36453 ppc4xx: Maintenance patch for esd's CPCI405 derivats
36454
36455 -add pci_pre_init() for pci interrupt fixup code
36456 -disable phy sleep mode via reset_phy() function
36457 -use correct io accessors
36458 -cleanup
36459
36460 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36461
36462 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
36463 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36464 Date: Sun Jun 24 17:23:41 2007 +0200
36465
36466 ppc4xx: Add pci_pre_init() for 405 boards
36467
36468 This patch adds support for calling a plattform dependant
36469 pci_pre_init() function for 405 boards. This can be used to
36470 move the current pci_405gp_fixup_irq() function into the
36471 board code.
36472
36473 This patch also makes the CFG_PCI_PRE_INIT define obsolete.
36474 A default function with 'weak' attribute is used when
36475 a board specific pci_pre_init() is not implemented.
36476
36477 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36478
36479 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
36480 Author: Wolfgang Denk <wd@denx.de>
36481 Date: Fri Jun 22 23:59:00 2007 +0200
36482
36483 Coding stylke cleanup; rebuild CHANGELOG
36484
36485 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
36486 Author: Igor Lisitsin <igor@emcraft.com>
36487 Date: Wed Apr 18 14:55:19 2007 +0400
36488
36489 Adapt log buffer code to support Linux 2.6
36490
36491 A new environment variable, "logversion", selects the log buffer
36492 behaviour. If it is not set or set to a value other than 2, then the
36493 old, Linux 2.4.4, behaviour is selected.
36494
36495 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
36496 --
36497
36498 commit a11e06965ec91270c51853407ff1261d3c740386
36499 Author: Igor Lisitsin <igor@emcraft.com>
36500 Date: Wed Mar 28 19:06:19 2007 +0400
36501
36502 Extend POST support for PPC440
36503
36504 Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
36505
36506 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
36507 --
36508
36509 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
36510 Author: Heiko Schocher <hs@pollux.denx.de>
36511 Date: Fri Jun 22 19:11:54 2007 +0200
36512
36513 [PCS440EP] upgrade the PCS440EP board:
36514 - Show on the Status LEDs, some States of the board.
36515 - Get the MAC addresses from the EEProm
36516 - use PREBOOT
36517 - use the CF on the board.
36518 - check the U-Boot image in the Flash with a SHA1
36519 checksum.
36520 - use dynamic TLB entries generation for the SDRAM
36521
36522 Signed-off-by: Heiko Schocher <hs@denx.de>
36523
36524 commit 3a1f5c81b0b9557817a789bece839905581c2205
36525 Author: Stefan Roese <sr@denx.de>
36526 Date: Fri Jun 22 16:58:40 2007 +0200
36527
36528 ppc4xx: Fix problem with extended program_tlb() funtion
36529
36530 The recently extended program_tlb() function had a problem when
36531 multiple TLB's had to be setup (for example with 512MB of SDRAM). The
36532 virtual address was not incremented. This patch fixes this issue
36533 and is tested on Katmai with 512MB SDRAM.
36534
36535 Signed-off-by: Stefan Roese <sr@denx.de>
36536
36537 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
36538 Author: Rafal Jaworowski <raj@semihalf.com>
36539 Date: Fri Jun 22 14:58:04 2007 +0200
36540
36541 [ppc] Fix build breakage for all non-4xx PowerPC variants.
36542
36543 - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
36544 - minor 4xx cleanup
36545
36546 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
36547 Author: Mike Frysinger <vapier@gentoo.org>
36548 Date: Fri Jun 22 10:34:12 2007 +0200
36549
36550 [patch] add nand_init() prototype to nand.h
36551
36552 since nand_init() is expected to be called by other parts of u-boot, there
36553 should be a prototype for it in nand.h
36554
36555 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
36556 Signed-off-by: Stefan Roese <sr@denx.de>
36557
36558 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
36559 Author: Wolfgang Denk <wd@denx.de>
36560 Date: Wed Jun 20 18:14:24 2007 +0200
36561
36562 Coding style cleanup. Refresh CHANGELOG.
36563
36564 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
36565 Author: Stefan Roese <sr@denx.de>
36566 Date: Tue Jun 19 17:22:44 2007 +0200
36567
36568 ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
36569
36570 This patch adds a board command to configure the I2C bootstrap EEPROM
36571 values. Right now 533 and 667MHz are supported for booting either via NOR
36572 or NAND FLASH. Here the usage:
36573
36574 => bootstrap 533 nor ;to configure the board for 533MHz NOR booting
36575 => bootstrap 667 nand ;to configure the board for 667MHz NNAND booting
36576
36577 Signed-off-by: Stefan Roese <sr@denx.de>
36578
36579 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
36580 Author: Stefan Roese <sr@denx.de>
36581 Date: Tue Jun 19 16:42:31 2007 +0200
36582
36583 [ppc4xx] Fix problem with NAND booting on AMCC Acadia
36584
36585 The latest changes showed a problem with the location of the NAND-SPL
36586 image in the OCM and the init-data area (incl. cache). This patch
36587 fixes this problem.
36588
36589 Signed-off-by: Stefan Roese <sr@denx.de>
36590
36591 commit 86ba99e34194394052d24c04dc40d1263d29a26f
36592 Author: Stefan Roese <sr@denx.de>
36593 Date: Tue Jun 19 16:40:58 2007 +0200
36594
36595 [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
36596
36597 Signed-off-by: Stefan Roese <sr@denx.de>
36598
36599 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
36600 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
36601 Date: Mon Jun 18 13:50:13 2007 -0500
36602
36603 Added M5329AFEE and M5329BFEE Platforms
36604
36605 Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
36606 drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
36607 include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
36608 rtc/mcfrtc.c
36609
36610 Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
36611 common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
36612 include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
36613 include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
36614 include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
36615 lib_m68k/time.c, net/eth.c and rtc/Makefile
36616
36617 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
36618
36619 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
36620 Author: Michal Simek <monstr@monstr.eu>
36621 Date: Sun Jun 17 19:04:11 2007 +0200
36622
36623 [fix] email reparation
36624
36625 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
36626 Author: Michal Simek <monstr@monstr.eu>
36627 Date: Sun Jun 17 19:03:21 2007 +0200
36628
36629 [FIX] fix microblaze file permitission
36630
36631 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
36632 Author: Stefan Roese <sr@denx.de>
36633 Date: Fri Jun 15 11:33:41 2007 +0200
36634
36635 [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
36636
36637 Now CONFIG_440 has to be defined in all PPC440 board config files.
36638
36639 Signed-off-by: Stefan Roese <sr@denx.de>
36640
36641 commit efa35cf12d914d4caba942acd5a6c45f217de302
36642 Author: Grzegorz Bernacki <gjb@semihalf.com>
36643 Date: Fri Jun 15 11:19:28 2007 +0200
36644
36645 ppc4xx: Clean up 440 exceptions handling
36646
36647 - Introduced dedicated switches for building 440 and 405 images required
36648 for 440-specific machine instructions like 'rfmci' etc.
36649
36650 - Exception vectors moved to the proper location (_start moved away from
36651 the critical exception handler space, which it occupied)
36652
36653 - CriticalInput now serviced (with default handler)
36654
36655 - MachineCheck properly serviced (added a dedicated handler and return
36656 subroutine)
36657
36658 - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
36659 unhandled and those not relevant for 4xx were eliminated)
36660
36661 - Eliminated Linux leftovers, removed dead code
36662
36663 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36664 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
36665 Signed-off-by: Stefan Roese <sr@denx.de>
36666
36667 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
36668 Author: Stefan Roese <sr@denx.de>
36669 Date: Fri Jun 15 08:18:01 2007 +0200
36670
36671 [ppc4xx] Add initial lwmon5 board support
36672
36673 This patch adds initial support for the Liebherr lwmon5 board euqipped
36674 with an AMCC 440EPx PowerPC.
36675
36676 Signed-off-by: Stefan Roese <sr@denx.de>
36677
36678 commit 85f737376d5ff3d5f0d45a8b657686326d175307
36679 Author: Stefan Roese <sr@denx.de>
36680 Date: Fri Jun 15 07:39:43 2007 +0200
36681
36682 [ppc4xx] Extend 44x GPIO setup with default output state
36683
36684 The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
36685 is extended with the default GPIO output state (level).
36686
36687 Signed-off-by: Stefan Roese <sr@denx.de>
36688
36689 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
36690 Author: Stefan Roese <sr@denx.de>
36691 Date: Thu Jun 14 11:14:32 2007 +0200
36692
36693 [ppc4xx] Extend program_tlb() with virtual & physical addresses
36694
36695 Now program_tlb() allows to program a TLB (or multiple) with
36696 different virtual and physical addresses. With this change, now one
36697 physical region (e.g. SDRAM) can be mapped 2 times, once with caches
36698 diabled and once with caches enabled.
36699
36700 Signed-off-by: Stefan Roese <sr@denx.de>
36701
36702 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
36703 Author: Detlev Zundel <dzu@denx.de>
36704 Date: Wed May 23 19:02:41 2007 +0200
36705
36706 Change 'repeatable' attribute of some commands to sensible values.
36707
36708 Most prominently this changes 'erase' to be non-repeatable.
36709
36710 Signed-off-by: Detlev Zundel <dzu@denx.de>
36711
36712 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
36713 Author: Detlev Zundel <dzu@denx.de>
36714 Date: Wed May 23 18:47:48 2007 +0200
36715
36716 Fix 'run' not to continue after interrupted command
36717
36718 Signed-off-by: Detlev Zundel <dzu@denx.de>
36719
36720 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
36721 Author: Jason Jin <Jason.jin@freescale.com>
36722 Date: Mon Jun 11 15:14:24 2007 +0200
36723
36724 USB: This patch fix readl in ohci swap reg access.
36725
36726 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36727
36728 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
36729 Author: Bartlomiej Sieka <tur@semihalf.com>
36730 Date: Fri Jun 8 14:52:22 2007 +0200
36731
36732 TQM5200: Add Flat Device Tree support, update default env. accordingly.
36733
36734 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
36735 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
36736
36737 commit 9045f33c023f698660a2e45d1b2194c0711abebc
36738 Author: Wolfgang Denk <wd@denx.de>
36739 Date: Fri Jun 8 10:24:58 2007 +0200
36740
36741 Fix config problems on SC3 board; make ide_reset_timeout work.
36742
36743 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
36744 Author: Benoît Monin <bmonin@adeneo.eu>
36745 Date: Fri Jun 8 09:55:24 2007 +0200
36746
36747 [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
36748
36749 Set the correct value in GPIOx_TCR when configuring the gpio
36750 with CFG_440_GPIO_TABLE.
36751
36752 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
36753 Signed-off-by: Stefan Roese <sr@denx.de>
36754
36755 commit f539edc076cfe52bff919dd512ba8d7af0e22092
36756 Author: Vadim Bendebury <vbendeb@google.com>
36757 Date: Thu May 24 15:52:25 2007 -0700
36758
36759 cosmetic changes to bcm570x driver
36760
36761 This is a cosmetic only changes submission.
36762 It affects files relevant to bcm570x driver.
36763 the commands used to generate this change was
36764
36765 cd drivers
36766 Lindent -pcs -l80 bcm570x.c bcm570x_lm.h bcm570x_mm.h tigon3.c tigon3.h
36767
36768 The BMW target (the only one using this chip so far) builds cleanly, the
36769 `before and after' generated object files for drivers/bcm570x.c and
36770 drivers/tigon3.o are identical as reported by objdump -d
36771
36772 Signed-off-by: Vadim Bendebury <vbendeb@google.com>
36773 Signed-off-by: Ben Warren <bwarren@qstreams.com>
36774
36775 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
36776 Author: Wolfgang Denk <wd@denx.de>
36777 Date: Wed Jun 6 16:26:56 2007 +0200
36778
36779 Coding Style cleanup; generate new CHANGELOG file.
36780
36781 Signed-off-by: Wolfgang Denk <wd@denx.de>
36782
36783 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
36784 Author: Markus Klotzbuecher <mk@denx.de>
36785 Date: Wed Jun 6 11:49:44 2007 +0200
36786
36787 TRAB, USB: update trab board configuration for use of generic ohci driver
36788
36789 commit dace45acd1c1357daa9322099d07c9a9e08b0024
36790 Author: Markus Klotzbuecher <mk@denx.de>
36791 Date: Wed Jun 6 11:49:43 2007 +0200
36792
36793 USB: ohci fixes and cleanup for ppc4xx and yosemite board.
36794
36795 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
36796 Author: Markus Klotzbuecher <mk@denx.de>
36797 Date: Wed Jun 6 11:49:43 2007 +0200
36798
36799 USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
36800
36801 commit fc43be478f2aa37ce38acd85355038866e4162af
36802 Author: Markus Klotzbuecher <mk@denx.de>
36803 Date: Wed Jun 6 11:49:35 2007 +0200
36804
36805 USB/OHCI: endianness cleanup in the generic ohci driver
36806
36807 commit c440bfe6d6d92d66478a7e84402b31f48413617b
36808 Author: Stefan Roese <sr@denx.de>
36809 Date: Wed Jun 6 11:42:13 2007 +0200
36810
36811 ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
36812
36813 This patch adds NAND booting support for the AMCC Acadia eval board.
36814
36815 Please make sure to configure jumper J7 to position 2-3 when booting
36816 from NOR, and to position 1-2 when booting for NAND.
36817
36818 I also added a board command to configure the I2C bootstrap EEPROM
36819 values. Right now only 267MHz is support for booting either via NOR
36820 or NAND FLASH. Here the usage:
36821
36822 => bootstrap 267 nor ;to configure the board for 267MHz NOR booting
36823 => bootstrap 267 nand ;to configure the board for 267MHz NNAND booting
36824
36825 Signed-off-by: Stefan Roese <sr@denx.de>
36826
36827 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
36828 Author: Rodolfo Giometti <giometti@linux.it>
36829 Date: Wed Jun 6 10:08:14 2007 +0200
36830
36831 Files include/linux/byteorder/{big,little}_endian.h define
36832 __BIG_ENDIAN and __LITTLE_ENDIAN.
36833
36834 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
36835
36836 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
36837 Author: Zhang Wei <wei.zhang@freescale.com>
36838 Date: Wed Jun 6 10:08:14 2007 +0200
36839
36840 Add USB PCI-OHCI, USB keyboard and event poll support to the
36841 MPC8641HPCN board config file.
36842
36843 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36844
36845 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
36846 Author: Zhang Wei <wei.zhang@freescale.com>
36847 Date: Wed Jun 6 10:08:14 2007 +0200
36848
36849 USB PCI-OHCI, interrupt pipe and usb event poll support
36850
36851 This patch added USB PCI-OHCI chips support, interrupt pipe support
36852 and usb event poll support. For supporting the USB interrupt pipe, the
36853 globe urb_priv is moved to purb in ed struct. Now, we can process
36854 several urbs at one time. The interrupt pipe support codes are ported
36855 from Linux kernel 2.4.
36856
36857 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36858
36859 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
36860 Author: Zhang Wei <wei.zhang@freescale.com>
36861 Date: Wed Jun 6 10:08:13 2007 +0200
36862
36863 USB event poll support
36864
36865 This patch adds USB event poll support, which could be used in usbkbd
36866 and other usb devices driver when the asynchronous interrupt
36867 processing is supported.
36868
36869 Signed-off-by: Zhang Wei <wei.zhang@freescale.com
36870
36871 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
36872 Author: Rodolfo Giometti <giometti@linux.it>
36873 Date: Wed Jun 6 10:08:12 2007 +0200
36874
36875 ISP116x: delay for crappy USB keys
36876
36877 Using some (very) slow USB keys cause the USB host controller buffers
36878 are not ready to be read by the CPU so we need an extra delay before
36879 reading the USB storage data.
36880
36881 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
36882
36883 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
36884 Author: Markus Klotzbuecher <mk@denx.de>
36885 Date: Wed Jun 6 10:08:12 2007 +0200
36886
36887 Change duplicate usb_cpu_init_fail to usb_board_init_fail
36888
36889 Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
36890 this out.
36891
36892 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
36893
36894 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
36895 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
36896 Date: Tue Jun 5 12:30:52 2007 -0500
36897
36898 mpc8641 image size cleanup
36899
36900 e600 does not have a bootpg restriction.
36901 Move the version string to beginning of image at fff00000.
36902 Resetvec.S is not needed.
36903 Update flash copy instructions.
36904 Add tftpflash env variable
36905
36906 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
36907 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36908
36909 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
36910 Author: Benoît Monin <bmonin@adeneo.eu>
36911 Date: Mon Jun 4 08:36:05 2007 +0200
36912
36913 [PATCH] Fix ppc4xx bootstrap letter displayed on startup
36914
36915 The attached patch is mainly cosmetic, allowing u-boot to
36916 display the correct bootstrap option letter according to the
36917 datasheets.
36918
36919 The original patch was extended with 405EZ support by Stefan
36920 Roese.
36921
36922 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
36923 Signed-off-by: Stefan Roese <sr@denx.de>
36924
36925 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
36926 Author: Nikita V. Youshchenko <yoush@debian.org>
36927 Date: Wed May 23 12:45:19 2007 +0400
36928
36929 fix compilation problem for mpc8349itx CFG_RAMBOOT
36930
36931 Current include/configs/MPC8349ITX.h does contain some support for building
36932 image that will be started from memory (without putting in into flash).
36933 It could be triggered by building with TEXT_BASE set to a low value.
36934
36935 However, this support is incomplete: using of low TEXT_BASE causes
36936 defining configuration macros in inconsistent way, which later leads
36937 to compilation errors. In particular. flash support is being disabled,
36938 but then flash structures get referenced.
36939
36940 This patch fixes this, making it possible to build with low TEXT_BASE.
36941
36942 Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
36943
36944 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36945
36946 commit 8a364f0970de49949d635e60accf463c6443ef8c
36947 Author: Nikita V. Youshchenko <yoush@debian.org>
36948 Date: Wed May 23 12:45:25 2007 +0400
36949
36950 add missing 'console' var to default mpc8349itx config
36951
36952 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36953
36954 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
36955 Author: Stefan Roese <sr@denx.de>
36956 Date: Fri Jun 1 16:18:17 2007 +0200
36957
36958 ppc4xx: Add missing file for Bamboo NAND booting support
36959
36960 Signed-off-by: Stefan Roese <sr@denx.de>
36961
36962 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
36963 Author: Stefan Roese <sr@denx.de>
36964 Date: Fri Jun 1 15:58:19 2007 +0200
36965
36966 ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
36967
36968 This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
36969 suggested by AMCC it is not recommended to dynamically change the EBC
36970 speed after bootup. So we undo this change to be on the safe side.
36971
36972 Signed-off-by: Stefan Roese <sr@denx.de>
36973
36974 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
36975 Author: Stefan Roese <sr@denx.de>
36976 Date: Fri Jun 1 15:29:04 2007 +0200
36977
36978 ppc4xx: Update Sequoia NAND booting support with ECC
36979
36980 Signed-off-by: Stefan Roese <sr@denx.de>
36981
36982 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
36983 Author: Stefan Roese <sr@denx.de>
36984 Date: Fri Jun 1 15:27:11 2007 +0200
36985
36986 ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
36987
36988 This patch adds NAND booting support for the AMCC Bamboo eval board.
36989 Since the NAND-SPL boot image is limited to 4kbytes, this version
36990 only supports the onboard 64MBytes of DDR. The DIMM modules can't be
36991 supported, since the setup code for I2C DIMM autodetection and
36992 configuration is too big for this NAND bootloader.
36993
36994 Signed-off-by: Stefan Roese <sr@denx.de>
36995
36996 commit 42be56f53c8b107868e6125c8524ae84293e95a7
36997 Author: Stefan Roese <sr@denx.de>
36998 Date: Fri Jun 1 15:23:04 2007 +0200
36999
37000 NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
37001
37002 The U-Boot NAND booting support is now extended to support ECC
37003 upon loading of the NAND U-Boot image.
37004
37005 Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
37006
37007 Signed-off-by: Stefan Roese <sr@denx.de>
37008
37009 commit a471db07fbb65a841ffc9f4f112562b945230f98
37010 Author: Stefan Roese <sr@denx.de>
37011 Date: Fri Jun 1 15:19:29 2007 +0200
37012
37013 ppc4xx: Prepare Bamboo port for NAND booting support
37014
37015 This patch updates the "normal" Bamboo NOR booting port, so
37016 that it is compatible with the coming soon NAND booting
37017 Bamboo port.
37018
37019 It also enables the 2nd NAND flash on the Bamboo.
37020
37021 Signed-off-by: Stefan Roese <sr@denx.de>
37022
37023 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
37024 Author: Stefan Roese <sr@denx.de>
37025 Date: Fri Jun 1 15:16:58 2007 +0200
37026
37027 ppc4xx: Update in_be32() functions and friends to latest Linux version
37028
37029 Signed-off-by: Stefan Roese <sr@denx.de>
37030
37031 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
37032 Author: Stefan Roese <sr@denx.de>
37033 Date: Fri Jun 1 15:15:12 2007 +0200
37034
37035 NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
37036
37037 This patch adds hardware ECC support to the NDFC driver. It also
37038 changes the register access from using the "simple" in32/out32
37039 functions to the in_be32/out_be32 functions, which make sure
37040 that the access is correctly synced. This is the only recommended
37041 access to SoC registers in the current Linux kernel.
37042
37043 Signed-off-by: Stefan Roese <sr@denx.de>
37044
37045 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
37046 Author: Stefan Roese <sr@denx.de>
37047 Date: Fri Jun 1 15:12:15 2007 +0200
37048
37049 NAND: Update nand_ecc.c to latest Linux version
37050
37051 This patch updates the nand_ecc code to the latest Linux version.
37052 The main reason for this is the more compact code. This makes
37053 it possible to include the ECC code into the NAND bootloader
37054 image (NAND_SPL) for PPC4xx.
37055
37056 Signed-off-by: Stefan Roese <sr@denx.de>
37057
37058 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
37059 Author: Stefan Roese <sr@denx.de>
37060 Date: Fri Jun 1 15:09:50 2007 +0200
37061
37062 ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
37063
37064 Signed-off-by: Stefan Roese <sr@denx.de>
37065
37066 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
37067 Author: Stefan Roese <sr@denx.de>
37068 Date: Fri Jun 1 13:45:24 2007 +0200
37069
37070 ppc4xx: Change Luan config file to support ECC
37071
37072 With the updated 44x DDR2 driver the Luan board now supports
37073 ECC generation and checking.
37074
37075 Signed-off-by: Stefan Roese <sr@denx.de>
37076
37077 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
37078 Author: Stefan Roese <sr@denx.de>
37079 Date: Fri Jun 1 13:45:00 2007 +0200
37080
37081 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
37082
37083 Add config option for 180 degree advance clock control as needed
37084 for the AMCC Luan eval board.
37085
37086 Signed-off-by: Stefan Roese <sr@denx.de>
37087
37088 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
37089 Author: Wolfgang Denk <wd@denx.de>
37090 Date: Thu May 31 17:20:09 2007 +0200
37091
37092 Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
37093
37094 Signed-off-by: Wolfgang Denk <wd@denx.de>
37095
37096 commit 7049288fb1f16f1b317140226cdebd07bd416395
37097 Author: Bartlomiej Sieka <tur@semihalf.com>
37098 Date: Sun May 27 17:26:46 2007 +0200
37099
37100 Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
37101
37102 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37103
37104 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
37105 Author: Bartlomiej Sieka <tur@semihalf.com>
37106 Date: Sun May 27 17:06:36 2007 +0200
37107
37108 Motion-PRO: Add support for redundant environment.
37109
37110 Enable redundant environment, add a MTD partition for it; also add env.
37111 variable command for passing MTD partitions to the kernel command line.
37112
37113 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37114 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37115
37116 commit a26eabeec31746f06d309103690892805696e344
37117 Author: Bartlomiej Sieka <tur@semihalf.com>
37118 Date: Sun May 27 17:05:11 2007 +0200
37119
37120 Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
37121
37122 Allow passing longer command line to the kernel - useful especially
37123 for passing MTD partition layout.
37124
37125 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37126 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37127
37128 commit 9160b96f71483a116de81c68985e8ee306d36764
37129 Author: Bartlomiej Sieka <tur@semihalf.com>
37130 Date: Sun May 27 17:04:18 2007 +0200
37131
37132 Fix: Add missing NULL termination in strings expanded by macros parser.
37133
37134 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37135 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37136
37137 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
37138 Author: Bartlomiej Sieka <tur@semihalf.com>
37139 Date: Sun May 27 17:03:37 2007 +0200
37140
37141 Motion-PRO: Update EEPROM's page write bits and write delay.
37142
37143 Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
37144 have a page write capability of two bytes", and "This device offers fast (1ms)
37145 byte write". Add 3ms of extra delay.
37146
37147 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37148 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37149
37150 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
37151 Author: Bartlomiej Sieka <tur@semihalf.com>
37152 Date: Sun May 27 16:58:45 2007 +0200
37153
37154 MPC5XXX, Motion-PRO: Fix PHY initialization problem.
37155
37156 After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
37157 networking does not function. This commit switches PHY to TX mode by clearing
37158 the FX_SEL bit of Mode Control Register. It also reverses commit
37159 008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
37160
37161 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
37162 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37163
37164 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
37165 Author: Bartlomiej Sieka <tur@semihalf.com>
37166 Date: Sun May 27 16:57:15 2007 +0200
37167
37168 Motion-PRO: Add support for the temperature sensor.
37169
37170 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37171 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37172
37173 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
37174 Author: Bartlomiej Sieka <tur@semihalf.com>
37175 Date: Sun May 27 16:55:23 2007 +0200
37176
37177 Motion-PRO: Add displaying of CPLD revision information during boot.
37178
37179 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
37180 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37181
37182 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
37183 Author: Bartlomiej Sieka <tur@semihalf.com>
37184 Date: Sun May 27 16:53:43 2007 +0200
37185
37186 MPC5xxx: Change names of defines related to IPB and PCI clocks.
37187
37188 Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
37189 them does not cause PCI or IPB clocks to run at the specified speed.
37190 Instead, they configure divisors used to calculate said clocks. This
37191 patch renames the defines according to their real function.
37192
37193 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
37194 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37195
37196 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
37197 Author: Bartlomiej Sieka <tur@semihalf.com>
37198 Date: Sun May 27 16:51:48 2007 +0200
37199
37200 Motion-PRO: Add LED support.
37201
37202 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
37203 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37204 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37205
37206 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
37207 Author: Ulf Samuelsson <ulf@atmel.com>
37208 Date: Thu May 24 12:12:47 2007 +0200
37209
37210 [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
37211
37212 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
37213 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
37214 Signed-off-by: Stefan Roese <sr@denx.de>
37215
37216 commit d756894722c888d09a9fa1df8323753772d3dcce
37217 Author: Stefan Roese <sr@denx.de>
37218 Date: Thu May 24 09:49:00 2007 +0200
37219
37220 ppc4xx: Fix small 405EZ OCM initilization bug in start.S
37221
37222 As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
37223 fixes a small bug in the 405EZ OCM initialization. Thanks for
37224 spotting.
37225
37226 Signed-off-by: Stefan Roese <sr@denx.de>
37227
37228 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
37229 Author: Stefan Roese <sr@denx.de>
37230 Date: Thu May 24 08:22:09 2007 +0200
37231
37232 ppc4xx: Update AMCC Acadia support for board revision 1.1
37233
37234 This patch updates the Acadia (405EZ) support for the new 1.1 board
37235 revision. It also adds support for NAND FLASH via the 4xx NDFC.
37236
37237 Please note that the jumper J7 must be in position 2-3 for this
37238 NAND support. Position 1-2 is for NAND booting only. NAND booting
37239 support will follow later.
37240
37241 Signed-off-by: Stefan Roese <sr@denx.de>
37242
37243 commit 822d55365bb557e084d0e33625a6dedcc866110b
37244 Author: Jon Loeliger <jdl@freescale.com>
37245 Date: Wed May 23 14:09:46 2007 -0500
37246
37247 Add LIST_86xx MAKEALL target for PowerPC builds.
37248
37249 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37250
37251 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
37252 Author: Stefan Roese <sr@denx.de>
37253 Date: Tue May 22 12:48:09 2007 +0200
37254
37255 ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
37256
37257 Signed-off-by: Stefan Roese <sr@denx.de>
37258
37259 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
37260 Author: Stefan Roese <sr@denx.de>
37261 Date: Tue May 22 12:46:10 2007 +0200
37262
37263 ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
37264
37265 This patch adds support for 405 PPC's to the 4xx NAND driver
37266 ndfc.c. This is in preparation for the new AMCC 405EZ.
37267
37268 Signed-off-by: Stefan Roese <sr@denx.de>
37269
37270 commit 10603d76767426be803dadd4fb688b97eb69481c
37271 Author: Stefan Roese <sr@denx.de>
37272 Date: Mon May 21 07:41:22 2007 +0200
37273
37274 ppc4xx: Fix problem in 405EZ OCM initialization
37275
37276 As spotted by Bruce Adler this patch fixes an initialization problem
37277 for the 405EZ OCM.
37278
37279 Signed-off-by: Stefan Roese <sr@denx.de>
37280
37281 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
37282 Author: Peter Pearse <peter.pearse@arm.com>
37283 Date: Fri May 18 16:47:03 2007 +0100
37284
37285 Reduce line lengths to 80 characters max.
37286
37287 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
37288 Author: Peter Pearse <peter.pearse@arm.com>
37289 Date: Fri May 18 14:34:07 2007 +0100
37290
37291 Makefile permissions
37292
37293 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
37294 Author: Peter Pearse <peter.pearse@arm.com>
37295 Date: Fri May 18 14:33:11 2007 +0100
37296
37297 Makefile permissions
37298
37299 commit 255a3577c848706441daee0174543efe205a77f8
37300 Author: Kim Phillips <kim.phillips@freescale.com>
37301 Date: Wed May 16 16:52:19 2007 -0500
37302
37303 Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
37304
37305 For all practical u-boot purposes, TSECs don't differ throughout the
37306 mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
37307
37308 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37309
37310 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
37311 Author: Stefano Babic <sbabic@denx.de>
37312 Date: Wed May 16 14:49:12 2007 +0200
37313
37314 Fix compile problem cause my Microblaze merge
37315
37316 Signed-off-by: Stefano Babic <sbabic@denx.de>
37317
37318 commit ada4697d0230d6da552867777f98a67ec3ba2579
37319 Author: Jeffrey Mann <mannj@embeddedplanet.com>
37320 Date: Wed May 16 13:23:10 2007 +0200
37321
37322 [PATCH] Run new sequoia boards with an EBC speed of 83MHz
37323
37324 Because the Sequoia board does not boot with an EBC faster than 66MHz,
37325 the clock divider are changed after the initial boot process.
37326
37327 This allows for maximum clocking speeds to be achieved on newer boards.
37328 Sequoia boards with 666.66 MHz processors require that the EBC divider
37329 be set to 3 in order to start the initial boot process at a slower EBC
37330 speed. After the initial boot process, the divider can be set back to 2,
37331 which will cause the boards to run at 83.333MHz. This is backward
37332 compatible with boards with 533.33 MHz processors, as these boards will
37333 already be set with an EBC divider of 2.
37334
37335 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
37336
37337 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
37338 Author: Wolfgang Denk <wd@denx.de>
37339 Date: Wed May 16 01:16:53 2007 +0200
37340
37341 Minor Coding Style cleanup, update CHANGELOG.
37342
37343 Signed-off-by: Wolfgang Denk <wd@denx.de>
37344
37345 commit d62f64cc23a940eafe712c776b3249e4160753d1
37346 Author: Wolfgang Denk <wd@denx.de>
37347 Date: Wed May 16 00:13:33 2007 +0200
37348
37349 Coding Style Cleanup, new CHANGELOG
37350
37351 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
37352 Author: Wolfgang Denk <wd@denx.de>
37353 Date: Tue May 15 23:38:05 2007 +0200
37354
37355 Minor coding style cleanup.
37356
37357 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
37358 Author: mushtaq khan <mushtaq_k@procsys.com>
37359 Date: Fri Apr 20 14:23:02 2007 +0530
37360
37361 Add driver for S-ATA-controller on Intel processors with South
37362 Bridge, ICH-5, ICH-6 and ICH-7.
37363
37364 Implementation:
37365
37366 1. Code is divided in to two files. All functions, which are
37367 controller specific are kept in "drivers/ata_piix.c" file and
37368 functions, which are not controller specific, are kept in
37369 "common/cmd_sata.c" file.
37370
37371 2. Reading and Writing from the S-ATA drive is done using PIO method.
37372
37373 3. Driver can be configured for 48-bit addressing by defining macro
37374 CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
37375 addressing.
37376
37377 4. S-ATA read function is hooked to the File system, commands like
37378 ext2ls and ext2load file can be used. This has been tested.
37379
37380 5. U-Boot command "SATA_init" is added, which initializes the S-ATA
37381 controller and identifies the S-ATA drives connected to it.
37382
37383 6. U-Boot command "sata" is added, which is used to read/write, print
37384 partition table and get info about the drives present. This I have
37385 implemented in same way as "ide" command is implemented in U-Boot.
37386
37387 7. This driver is for S-ATA in native mode.
37388
37389 8. This driver does not support the Native command queuing and
37390 Hot-plugging.
37391
37392 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
37393
37394 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
37395 Author: mushtaq khan <mushtaq_k@procsys.com>
37396 Date: Mon Apr 30 15:57:22 2007 +0530
37397
37398 Fixes bug clearing the bss section for i386
37399
37400 Hi,
37401 There is a bug in the code of clearing the bss section for processor
37402 i386.(File: cpu/i386/start.S)
37403 In the code, bss_start addr (starting addr of bss section) is put into
37404 the register %eax, but the code which clears the bss section refers to
37405 the addr pointed by %edi.
37406
37407 This patch fixes this bug by putting bss_start into %edi register.
37408
37409 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
37410
37411 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
37412 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
37413 Date: Mon Apr 30 16:47:28 2007 -0500
37414
37415 Add support for BCM5464 Quad Phy
37416
37417 Added support for Broadcom's BCM5464 Quad Phy
37418
37419 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
37420
37421 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
37422 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
37423 Date: Wed May 9 08:10:57 2007 +0800
37424
37425 Search the exception table with linear algorithm
37426
37427 Search the exception table with linear algorithm instead of
37428 bisecting algorithm.
37429 Because the exception table might be unsorted.
37430
37431 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
37432
37433 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
37434 Author: Aubrey.Li <aubrey.adi@gmail.com>
37435 Date: Mon May 14 11:47:35 2007 +0800
37436
37437 Fix compilation issues on MACOSX
37438
37439 Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
37440 Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
37441
37442 commit 56fd7162985c412317bbf763a225fba23c64fd31
37443 Author: Stephen Williams <steve@icarus.com>
37444 Date: Tue May 15 07:55:42 2007 -0700
37445
37446 Fix for compile of JSE target
37447
37448 The attached patch fixes the compile of the JSE board in the
37449 denx git as of 14 may 2007. It is an extremely simple patch,
37450 it just adds the missing define of CFG_SYSTEMACE_WIDTH.
37451
37452 Fix to compile JSE against 20070514 git of u-boot
37453
37454 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
37455 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
37456 Date: Sun May 13 21:01:03 2007 +0900
37457
37458 sh: MS7750SE support.
37459
37460 This adds support for the Hitachi MS7750SE.
37461
37462 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37463
37464 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
37465 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
37466 Date: Sun May 13 20:58:00 2007 +0900
37467
37468 sh: First support code of SuperH.
37469
37470 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37471
37472 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
37473 Author: Stefan Roese <sr@denx.de>
37474 Date: Fri May 11 12:01:49 2007 +0200
37475
37476 ppc4xx: Add mtcpr/mfcpr access macros
37477
37478 Signed-off-by: Stefan Roese <sr@denx.de>
37479
37480 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
37481 Author: Stefan Roese <sr@denx.de>
37482 Date: Fri May 11 12:01:06 2007 +0200
37483
37484 ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
37485
37486 Signed-off-by: Stefan Roese <sr@denx.de>
37487
37488 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
37489 Author: Piotr Kruszynski <ppk@semihalf.com>
37490 Date: Thu May 10 16:55:52 2007 +0200
37491
37492 [Motion-PRO] Add MTD and JFFS2 support, also add default partition
37493 definition.
37494
37495 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
37496 Author: Peter Pearse <peter.pearse@arm.com>
37497 Date: Wed May 9 11:42:44 2007 +0100
37498
37499 Add the board directory for SMN42
37500
37501 commit 160131bf965785419626df6c388729fe0b597992
37502 Author: Peter Pearse <peter.pearse@arm.com>
37503 Date: Wed May 9 11:41:58 2007 +0100
37504
37505 Add the files for the SMN42 board
37506
37507 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
37508 Author: Peter Pearse <peter.pearse@arm.com>
37509 Date: Wed May 9 11:40:34 2007 +0100
37510
37511 Remove the deleted files for the SMN42 patch
37512
37513 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
37514 Author: Peter Pearse <peter.pearse@arm.com>
37515 Date: Wed May 9 11:37:56 2007 +0100
37516
37517 New board SMN42 branch
37518
37519 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
37520 Author: Peter Pearse <peter.pearse@arm.com>
37521 Date: Wed May 9 10:24:38 2007 +0100
37522
37523 Makefile permissions
37524
37525 commit b84289b595731e8851df46e893845cc1322c9b9b
37526 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37527 Date: Tue May 8 14:17:07 2007 -0500
37528
37529 8641hpcn: Fix Makefile after moving pixis to board/freescale.
37530
37531 The OBJTREE != SRCTREE build scenario was broken.
37532 This fixes it.
37533
37534 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37535 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37536
37537 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
37538 Author: Michal Simek <monstr@monstr.eu>
37539 Date: Tue May 8 15:57:43 2007 +0200
37540
37541 add: reading special purpose registers
37542
37543 commit 1a50f164beb065f360fbddb76029607d6b099698
37544 Author: Michal Simek <monstr@monstr.eu>
37545 Date: Tue May 8 14:52:52 2007 +0200
37546
37547 add: Microblaze V5 exception handling
37548
37549 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
37550 Author: Michal Simek <monstr@monstr.eu>
37551 Date: Tue May 8 14:39:11 2007 +0200
37552
37553 add: FSL control read and write
37554
37555 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
37556 Author: Piotr Kruszynski <ppk@semihalf.com>
37557 Date: Tue May 8 13:05:44 2007 +0200
37558
37559 [Motion-PRO] Add support for I2C, EEPROM and RTC.
37560
37561 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
37562 Author: Bartlomiej Sieka <tur@semihalf.com>
37563 Date: Tue May 8 10:23:56 2007 +0200
37564
37565 [Motion-PRO] Add ATA support. Add CF-booting commands to the default
37566 environment.
37567
37568 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
37569 Author: Bartlomiej Sieka <tur@semihalf.com>
37570 Date: Tue May 8 09:39:12 2007 +0200
37571
37572 [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
37573 eliminates networking problems in Linux (timeouts).
37574
37575 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
37576 Author: Bartlomiej Sieka <tur@semihalf.com>
37577 Date: Tue May 8 09:21:57 2007 +0200
37578
37579 [Motion-PRO] Enable Flat Device Tree support and modify default environment
37580 to allow booting of FDT-expecting kernels.
37581
37582 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
37583 Author: Michal Simek <monstr@monstr.eu>
37584 Date: Mon May 7 23:58:31 2007 +0200
37585
37586 new: USE_MSR_INTR support
37587
37588 commit 008861a2f3ef2c062744d733787c7e530a1b8761
37589 Author: Bartlomiej Sieka <tur@semihalf.com>
37590 Date: Mon May 7 22:36:15 2007 +0200
37591
37592 [MPC5xxx] There are networking problems on the Motion-PRO board with
37593 current PHY initalization code (tftp timeouts all the time). This commit
37594 temporarily disables PHY initalization sequence to make the networking
37595 operational, until a fix is found.
37596
37597 commit abca901869c3760b6c5fecb825db6c1d91a78a93
37598 Author: Wolfgang Denk <wd@denx.de>
37599 Date: Mon May 7 22:10:36 2007 +0200
37600
37601 Get rid of duplicated file (see include/configs/sbc8560.h instead)
37602
37603 Signed-off-by: Wolfgang Denk <wd@denx.de>
37604
37605 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
37606 Author: Wolfgang Denk <wd@denx.de>
37607 Date: Mon May 7 22:07:08 2007 +0200
37608
37609 Get rid of duplicated file (see doc/README.SBC8560 instead)
37610
37611 Signed-off-by: Wolfgang Denk <wd@denx.de>
37612
37613 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
37614 Author: Michal Simek <monstr@monstr.eu>
37615 Date: Mon May 7 19:43:10 2007 +0200
37616
37617 fix: read and write MSR - repair number of parameters
37618
37619 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
37620 Author: Jeffrey Mann <mannj@embeddedplanet.com>
37621 Date: Mon May 7 19:42:49 2007 +0200
37622
37623 [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
37624
37625 A '3' got cut off in the formatting of the last patch to automatically
37626 change the clock speed of the system clock on sequoia board.
37627
37628 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
37629 Signed-off-by: Stefan Roese <sr@denx.de>
37630
37631 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
37632 Author: Michal Simek <monstr@monstr.eu>
37633 Date: Mon May 7 19:33:51 2007 +0200
37634
37635 new: fsl interrupt support
37636 FSL_Has_data is connected to INTC.
37637
37638 commit 792032baa7d625e34c981ab6df521911bd8dc861
37639 Author: Michal Simek <monstr@monstr.eu>
37640 Date: Mon May 7 19:30:12 2007 +0200
37641
37642 fix: interrupt handler
37643 remove asm code
37644
37645 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
37646 Author: Michal Simek <monstr@monstr.eu>
37647 Date: Mon May 7 19:25:08 2007 +0200
37648
37649 fix: remove asm code
37650
37651 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
37652 Author: Michal Simek <monstr@monstr.eu>
37653 Date: Mon May 7 19:12:43 2007 +0200
37654
37655 fix: clean interrupt
37656
37657 commit 42efed6130c8fcf7da881385b5427065d2801757
37658 Author: Michal Simek <monstr@monstr.eu>
37659 Date: Mon May 7 17:22:25 2007 +0200
37660
37661 fix: interrupt handler for multiple sources
37662
37663 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
37664 Author: Michal Simek <monstr@monstr.eu>
37665 Date: Mon May 7 17:11:09 2007 +0200
37666
37667 new: add writing to msr register
37668
37669 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
37670 Author: Markus Klotzbuecher <mk@denx.de>
37671 Date: Mon May 7 16:43:56 2007 +0200
37672
37673 Fix an ancient CHANGELOG conflict
37674
37675 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
37676 Author: Timur Tabi <timur@freescale.com>
37677 Date: Sat May 5 08:12:30 2007 +0200
37678
37679 5xxx: write MAC address to mac-address and local-mac-address
37680
37681 Some device trees have a mac-address property, some have local-mac-address,
37682 and some have both. To support all of these device trees, ftp_cpu_setup()
37683 should write the MAC address to mac-address and local-mac-address, if they
37684 exist.
37685
37686 Signed-off-by: Timur Tabi <timur@freescale.com>
37687 Acked-by: Grant Likely <grant.likely@secretlab.ca>
37688
37689 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
37690 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
37691 Date: Sun Apr 29 14:01:54 2007 +0200
37692
37693 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
37694
37695 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
37696 message. Use PVR to distinguish between the two variants, and print proper CPU
37697 information.
37698
37699 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
37700 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37701 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
37702
37703 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
37704 Author: Ladislav Michl <ladis@linux-mips.org>
37705 Date: Wed Apr 25 16:01:26 2007 +0200
37706
37707 [PATCH] simplify silent console
37708
37709 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
37710 Acked-by: Stefan Roese <sr@denx.de>
37711
37712 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
37713 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
37714 Date: Mon Apr 23 15:30:39 2007 +0200
37715
37716 [PATCH] Avoid assigning PCI resources from zero address
37717
37718 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
37719 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
37720 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
37721 sentence about "0" being considered an invalid address) -- so, use a reasonable
37722 starting value of 0x1000 (that's what the most Linux archs are using).
37723
37724 Alternatively, one might have fixed the calls to pci_set_region() individually
37725 (some code even seems to have taken care of this issue) but that would have
37726 been a lot more work. :-)
37727
37728 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
37729 Acked-by: Stefan Roese <sr@denx.de>
37730
37731 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
37732 Author: Jeffrey Mann <mannj@embeddedplanet.com>
37733 Date: Mon Apr 23 14:00:11 2007 +0200
37734
37735 [patch] setenv(...) can delete environmentalvariables
37736
37737 update setenv() function so that entering a NULL value for the
37738 variable's value will delete the environmental variable
37739
37740 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
37741 Acked-by: Stefan Roese <sr@denx.de>
37742
37743 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
37744 Author: Mike Frysinger <vapier@gentoo.org>
37745 Date: Mon Apr 23 13:54:24 2007 +0200
37746
37747 [patch] use unsigned char in smc91111 driver for mac
37748
37749 the v_mac variable in the smc91111 driver is declared as a signed char ...
37750 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
37751 because when it gets printed out, you get a display like:
37752 0xFFFFFFE0 and that's no good
37753
37754 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37755
37756 commit ffc50f9bb194343c6303517a517708457a5eb6b8
37757 Author: Michal Simek <monstr@monstr.eu>
37758 Date: Sat May 5 18:54:42 2007 +0200
37759
37760 new: FSL and MSR support #2
37761
37762 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
37763 Author: Michal Simek <monstr@monstr.eu>
37764 Date: Sat May 5 18:27:16 2007 +0200
37765
37766 new: FSL and MSR support
37767
37768 commit 2f15278c2eb911c668b4fe562130b78cf554d139
37769 Author: Wolfgang Denk <wd@denx.de>
37770 Date: Sat May 5 18:23:11 2007 +0200
37771
37772 Coding stylke cleanup; update CHANGELOG.
37773
37774 Signed-off-by: Wolfgang Denk <wd@denx.de>
37775
37776 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
37777 Author: Wolfgang Denk <wd@denx.de>
37778 Date: Sat May 5 18:05:02 2007 +0200
37779
37780 Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
37781
37782 Signed-off-by: Wolfgang Denk <wd@denx.de>
37783
37784 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
37785 Author: Wolfgang Denk <wd@denx.de>
37786 Date: Sat May 5 17:15:50 2007 +0200
37787
37788 Make "file" command happy with some config.mk files; update CHANGELOG
37789
37790 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
37791 Author: Jeffrey Mann <mannj@embeddedplanet.com>
37792 Date: Sat May 5 08:32:14 2007 +0200
37793
37794 ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
37795
37796 The AMCC Secquoia board has been changed in a new revision from using a
37797 33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
37798 indicates the difference. This patch reads that bit and uses the correct
37799 clock speed for the board. This code is backward compatable will all
37800 prior boards. All prior boards will be read as 33.000.
37801
37802 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
37803 Signed-off-by: Stefan Roese <sr@denx.de>
37804
37805 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
37806 Author: Stefan Roese <sr@denx.de>
37807 Date: Sat May 5 08:29:01 2007 +0200
37808
37809 ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
37810
37811 Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
37812 for the 4k NAND boot image so define bus_frequency to 133MHz here
37813 which is save for the refresh counter setup.
37814
37815 Signed-off-by: Stefan Roese <sr@denx.de>
37816
37817 commit 2f550ab976405300f5b07bf2890800840d0aa05f
37818 Author: Timur Tabi <timur@freescale.com>
37819 Date: Sat May 5 08:12:30 2007 +0200
37820
37821 5xxx: write MAC address to mac-address and local-mac-address
37822
37823 Some device trees have a mac-address property, some have local-mac-address,
37824 and some have both. To support all of these device trees, ftp_cpu_setup()
37825 should write the MAC address to mac-address and local-mac-address, if they
37826 exist.
37827
37828 Signed-off-by: Timur Tabi <timur@freescale.com>
37829 Acked-by: Grant Likely <grant.likely@secretlab.ca>
37830
37831 commit a79886590593ba1d667c840caa4940c61639f18f
37832 Author: Thomas Knobloch <knobloch@siemens.com>
37833 Date: Sat May 5 07:04:42 2007 +0200
37834
37835 NAND: Wrong calculation of page number in nand_block_bad()
37836
37837 In case that there is no memory based bad block table available the
37838 function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
37839 nand_block_bad() directly. When parameter 'getchip' is set to zero,
37840 nand_block_bad() will not right shift the offset to calculate the
37841 correct page number.
37842
37843 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
37844 Signed-off-by: Stefan Roese <sr@denx.de>
37845
37846 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
37847 Author: Wolfgang Denk <wd@denx.de>
37848 Date: Fri May 4 10:02:33 2007 +0200
37849
37850 Fix initrd length corruption in bootm command.
37851
37852 When using FDT Images, the length of an inital ramdisk was
37853 overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
37854
37855 Patches by Timur Tabi & Johns Daniel.
37856
37857 Signed-off-by: Wolfgang Denk <wd@denx.de>
37858
37859 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
37860 Author: Kim Phillips <kim.phillips@freescale.com>
37861 Date: Thu May 3 19:43:52 2007 -0500
37862
37863 mpc83xx: fix trivial error in MAKEALL
37864
37865 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37866
37867 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
37868 Author: Wolfgang Denk <wd@denx.de>
37869 Date: Thu May 3 16:34:41 2007 +0200
37870
37871 Update board configuration for STX GP3SSA board:
37872
37873 Enable hush shell, environment in flash rather in EEPROM,
37874 more user-friendly default environment, etc.
37875 The simple EEPROM environment can be selected easily in the board
37876 config file.
37877
37878 Signed-off-by: Wolfgang Denk <wd@denx.de>
37879
37880 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
37881 Author: Wolfgang Denk <wd@denx.de>
37882 Date: Tue Apr 24 14:37:49 2007 +0200
37883
37884 Cleanup STX GP3SSA code; fix build and compile problems.
37885
37886 commit 35171dc04e028ecacc23ad916a66295472555dbf
37887 Author: Dan Malek <dan@embeddedalley.com>
37888 Date: Fri Jan 5 09:15:34 2007 +0100
37889
37890 Add support for STX GP3SSA (stxssa) Board
37891
37892 Signed-off-by Dan Malek, <dan@embeddedalley.com>
37893
37894 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
37895 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
37896 Date: Wed May 2 13:31:53 2007 +0200
37897
37898 macb: Don't restart autonegotiation if we already have link
37899
37900 Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
37901 link is already up.
37902
37903 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
37904
37905 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
37906 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
37907 Date: Wed May 2 13:22:38 2007 +0200
37908
37909 macb: Introduce a few barriers when dealing with DMA descriptors
37910
37911 There were a few theoretical possibilities that the compiler might
37912 optimize away DMA descriptor reads and/or writes and thus cause
37913 synchronization problems with the hardware. Insert barriers where
37914 we depend on reads/writes actually hitting memory.
37915
37916 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
37917
37918 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
37919 Author: Andy Fleming <afleming@freescale.com>
37920 Date: Sat Feb 24 01:08:13 2007 -0600
37921
37922 Cleaned up some 85xx PCI bugs
37923
37924 * Cleaned up the CDS PCI Config Tables and added NULL entries to
37925 the end
37926 * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
37927 * Fixed 85xx PCI code to assign powar region sizes based on the
37928 config values (rather than hard-coding them)
37929 * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
37930
37931 Signed-off-by: Andy Fleming <afleming@freescale.com>
37932
37933 commit 6743105988fc44d5b0d30388c790607835aae7a6
37934 Author: Andy Fleming <afleming@freescale.com>
37935 Date: Mon Apr 23 02:54:25 2007 -0500
37936
37937 Add support for the 8568 MDS board
37938
37939 This included some changes to common files:
37940 * Add 8568 processor SVR to various places
37941 * Add support for setting the qe bus-frequency value in the dts
37942 * Add the 8568MDS target to the Makefile
37943
37944 Signed-off-by: Andy Fleming <afleming@freescale.com>
37945
37946 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
37947 Author: David Updegraff <dave@cray.com>
37948 Date: Fri Apr 20 14:34:48 2007 -0500
37949
37950 Add support for treating unknown PHYs as generic PHYs.
37951
37952 When bringing up u-boot on new boards, PHY support sometimes gets
37953 neglected. Most PHYs don't really need any special support,
37954 though. By adding a generic entry that always matches if nothing
37955 else does, we can provide support for "unsupported" PHYs for the
37956 tsec.
37957
37958 The generic PHY driver supports most PHYs, including gigabit.
37959
37960 Signed-off-by: David Updegraff <dave@cray.com>
37961 Signed-off-by: Andy Fleming <afleming@freescale.com>
37962
37963 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
37964 Author: James Yang <James.Yang@freescale.com>
37965 Date: Wed Feb 7 15:28:04 2007 -0600
37966
37967 Conditionalize 8641 Rev1.0 MCM workarounds
37968
37969 Signed-off-by: James Yang <James.Yang@freescale.com>
37970 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37971
37972 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
37973 Author: Timur Tabi <timur@freescale.com>
37974 Date: Mon Apr 30 13:59:50 2007 -0500
37975
37976 Fix memory initialization on MPC8349E-mITX
37977
37978 Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
37979 This allows ddr->sdram_clk_cntl to be properly initialized. This is necessary
37980 on some ITX boards, notably those with a revision 3.1 CPU.
37981
37982 Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
37983 ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
37984
37985 Signed-off-by: Timur Tabi <timur@freescale.com>
37986 Acked-by: Michael Benedict <MBenedict@twacs.com>
37987 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37988
37989 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
37990 Author: Kim Phillips <kim.phillips@freescale.com>
37991 Date: Mon Apr 30 15:26:21 2007 -0500
37992
37993 mpc83xx: replace elaborate boottime verbosity with 'clocks' command
37994
37995 and fix CPU: to align with Board: display text.
37996
37997 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37998
37999 commit c1ab82669d9525998c34e802a12cad662723f22a
38000 Author: James Yang <James.Yang@freescale.com>
38001 Date: Fri Mar 16 13:02:53 2007 -0500
38002
38003 Rewrote picos_to_clk() to avoid rounding errors.
38004 Clarified that conversion is to DRAM clocks rather than platform clocks.
38005 Made function static to spd_sdram.c.
38006
38007 Signed-off-by: James Yang <James.Yang@freescale.com>
38008 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38009
38010 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
38011 Author: Stefan Roese <sr@denx.de>
38012 Date: Sun Apr 29 14:13:01 2007 +0200
38013
38014 ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
38015
38016 Signed-off-by: Stefan Roese <sr@denx.de>
38017
38018 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
38019 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
38020 Date: Sun Apr 29 14:01:54 2007 +0200
38021
38022 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
38023
38024 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
38025 message. Use PVR to distinguish between the two variants, and print proper CPU
38026 information.
38027
38028 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
38029 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
38030 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38031
38032 commit 5c5d3242935cf3543af01142627494434834cf98
38033 Author: Kim Phillips <kim.phillips@freescale.com>
38034 Date: Wed Apr 25 12:34:38 2007 -0500
38035
38036 mpc83xx: minor fixups for 8313rdb introduction
38037
38038 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
38039 Author: Ladislav Michl <ladis@linux-mips.org>
38040 Date: Wed Apr 25 16:01:26 2007 +0200
38041
38042 [PATCH] simplify silent console
38043
38044 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
38045 Acked-by: Stefan Roese <sr@denx.de>
38046
38047 commit 144876a380f5756f57412caf74c1d6dc201dd796
38048 Author: Michal Simek <monstr@monstr.eu>
38049 Date: Tue Apr 24 23:01:02 2007 +0200
38050
38051 [PATCH] MTD partition support, JFFS2 support
38052
38053 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
38054 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38055 Date: Tue Apr 24 14:03:45 2007 +0200
38056
38057 ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
38058
38059 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38060
38061 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
38062 Author: Andy Fleming <afleming@freescale.com>
38063 Date: Mon Apr 23 02:37:47 2007 -0500
38064
38065 Reworked 85xx speed detection code
38066
38067 Changed the code to read the registers and calculate the clock
38068 rates, rather than using a "switch" statement.
38069
38070 Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
38071
38072 Signed-off-by: Andy Fleming <afleming@freescale.com>
38073
38074 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
38075 Author: Andy Fleming <afleming@freescale.com>
38076 Date: Mon Apr 23 02:24:28 2007 -0500
38077
38078 Enable 8544 support
38079
38080 * Add support to the Makefile
38081 * Add 8544 configuration support to the tsec driver
38082 * Add 8544 SVR numbers to processor.h
38083
38084 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38085 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38086
38087 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
38088 Author: Andy Fleming <afleming@freescale.com>
38089 Date: Fri Feb 23 17:12:25 2007 -0600
38090
38091 Support 1G size on 8548
38092
38093 e500v2 and newer cores support 1G page sizes.
38094
38095 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38096 Signed-off-by: Andy Fleming <afleming@freescale.com>
38097
38098 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
38099 Author: Andy Fleming <afleming@freescale.com>
38100 Date: Fri Feb 23 17:11:16 2007 -0600
38101
38102 Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
38103
38104 The other pagesz constants use one letter to specify order of
38105 magnitude. Also change the one reference to it in mpc8548cds/init.S
38106
38107 Signed-off-by: Andy Fleming <afleming@freescale.com>
38108
38109 commit 1f9a318cea14272edd10d63739e2d326c90f430e
38110 Author: Andy Fleming <afleming@freescale.com>
38111 Date: Fri Feb 23 16:28:46 2007 -0600
38112
38113 Only set ddrioovcr for 8548 rev1.
38114
38115 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38116 Signed-off-by: Andy Fleming <afleming@freescale.com>
38117
38118 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
38119 Author: Andy Fleming <afleming@freescale.com>
38120 Date: Sat Feb 24 01:16:45 2007 -0600
38121
38122 Tweak DDR ECC error counter
38123
38124 Enable single-bit error counter when memory was cleared by ddr controller.
38125
38126 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38127 Signed-off-by: Andy Fleming <afleming@freescale.com>
38128
38129 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
38130 Author: Timur Tabi <timur@freescale.com>
38131 Date: Mon Feb 12 13:34:55 2007 -0600
38132
38133 85xx: write MAC address to mac-address and local-mac-address
38134
38135 Some device trees have a mac-address property, some have local-mac-address,
38136 and some have both. To support all of these device trees, ftp_cpu_setup()
38137 should write the MAC address to mac-address and local-mac-address, if they
38138 exist.
38139
38140 Signed-off-by: Timur Tabi <timur@freescale.com>
38141
38142 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
38143 Author: Andy Fleming <afleming@freescale.com>
38144 Date: Mon Apr 23 01:44:44 2007 -0500
38145
38146 Some 85xx cpu cleanups
38147
38148 * Cleaned up the TSR[WIS] clearing
38149 * Cleaned up DMA initialization
38150
38151 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38152 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38153 Acked-by: Andy Fleming <afleming@freescale.com>
38154
38155 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
38156 Author: Andy Fleming <afleming@freescale.com>
38157 Date: Mon Apr 23 01:32:22 2007 -0500
38158
38159 Add cpu support for the 8544
38160
38161 Recognize new SVR values, and add a few register definitions
38162
38163 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38164 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38165 Acked-by: Andy Fleming <afleming@freescale.com>
38166
38167 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
38168 Author: Jon Loeliger <jdl@freescale.com>
38169 Date: Wed Apr 11 16:51:02 2007 -0500
38170
38171 Add MPC8544DS basic port board files.
38172
38173 Add board port under new board/freescale directory
38174 structure and reuse existing PIXIS FPGA support there.
38175
38176 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38177 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38178
38179 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
38180 Author: Jon Loeliger <jdl@freescale.com>
38181 Date: Wed Apr 11 16:50:57 2007 -0500
38182
38183 Add MPC8544DS main configuration file.
38184
38185 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38186 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38187
38188 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
38189 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
38190 Date: Wed Dec 27 22:07:15 2006 +0300
38191
38192 Fix PCI I/O space mapping on Freescale MPC85x0ADS
38193
38194 The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
38195 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
38196 describing the local address window used for the PCI I/O space accesses -- fix
38197 this and carry over the necessary changes into the MPC8560ADS code since the
38198 PCI I/O space mapping was also broken for this board (by the earlier commit
38199 087454609e47295443af793a282cddcd91a5f49c). Add the comments clarifying how
38200 the PCI I/O space must be mapped to all the MPC85xx board config. headers.
38201
38202 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
38203
38204 board/mpc8540ads/init.S | 4 ++--
38205 board/mpc8560ads/init.S | 4 ++--
38206 include/configs/MPC8540ADS.h | 5 ++---
38207 include/configs/MPC8541CDS.h | 2 +-
38208 include/configs/MPC8548CDS.h | 2 +-
38209 include/configs/MPC8560ADS.h | 8 ++++----
38210 6 files changed, 12 insertions(+), 13 deletions(-)
38211
38212 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
38213 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38214 Date: Tue Dec 5 16:42:30 2006 +0800
38215
38216 u-boot: Fix e500 v2 core reset bug
38217
38218 The following patch fixes the e500 v2 core reset bug.
38219 For e500 v2 core, a new reset control register is added to reset the
38220 processor.
38221
38222 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
38223
38224 commit 63247a5acd58032e6cf33f525bc3923b467bac88
38225 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38226 Date: Wed Dec 20 11:01:00 2006 +0800
38227
38228 u-boot: v2: Remove the fixed TLB and LAW entrynubmer
38229
38230 Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
38231 entry number to control the loop. This can reduce the potential risk
38232 for the 85xx processor increasing its TLB adn LAW entry number.
38233
38234 Signed-off-by: Swarthout Edward <swarthout@freescale.com>
38235 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
38236
38237 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
38238 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38239 Date: Mon Dec 18 17:01:04 2006 +0800
38240
38241 u-boot: Fix the 85xxcds tsec bug
38242
38243 Fix the 85xxcds tsec bug.
38244 When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
38245
38246 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
38247
38248 commit 7337b237ffc4aaf1b9467024fe472a880d852598
38249 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38250 Date: Fri Dec 15 14:43:31 2006 +0800
38251
38252 u-boot: Fix CPU2 errata on MPC8548CDS board
38253
38254 This patch apply workaround of CPU2 errata on MPC8548CDS board.
38255
38256 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
38257
38258 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
38259 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
38260 Date: Mon Dec 18 16:25:15 2006 +0800
38261
38262 u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
38263
38264 This patch disables MPC8548CDS 2T_TIMING for DDR by default.
38265
38266 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
38267
38268 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
38269 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38270 Date: Thu Dec 14 14:14:55 2006 +0800
38271
38272 u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
38273
38274 Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
38275 board.
38276 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
38277
38278 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
38279 Author: Scott Wood <scottwood@freescale.com>
38280 Date: Mon Apr 16 14:54:15 2007 -0500
38281
38282 mpc83xx: Add MPC8313ERDB support.
38283
38284 Signed-off-by: Scott Wood <scottwood@freescale.com>
38285
38286 commit 49ea3b6eafe606285ae4d5c378026153dde53200
38287 Author: Scott Wood <scottwood@freescale.com>
38288 Date: Mon Apr 16 14:34:21 2007 -0500
38289
38290 mpc83xx: Add generic PCI setup code.
38291
38292 Board code can now request the generic setup code rather than having to
38293 copy-and-paste it for themselves. Boards should be converted to use this
38294 once they're tested with it.
38295
38296 Signed-off-by: Scott Wood <scottwood@freescale.com>
38297
38298 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
38299 Author: Scott Wood <scottwood@freescale.com>
38300 Date: Mon Apr 16 14:34:19 2007 -0500
38301
38302 mpc83xx: Add 831x support to speed.c.
38303
38304 Signed-off-by: Scott Wood <scottwood@freescale.com>
38305
38306 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
38307 Author: Scott Wood <scottwood@freescale.com>
38308 Date: Mon Apr 16 14:34:18 2007 -0500
38309
38310 mpc83xx: Add 831x support to global_data.h
38311
38312 Signed-off-by: Scott Wood <scottwood@freescale.com>
38313
38314 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
38315 Author: Scott Wood <scottwood@freescale.com>
38316 Date: Mon Apr 16 14:34:16 2007 -0500
38317
38318 mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
38319
38320 Rather than misleadingly define PVR_83xx as the specific type of 83xx
38321 being built for, the PVR of each core revision is defined. checkcpu() now
38322 prints the core that it detects, rather than aborting if it doesn't find
38323 what it thinks it wants.
38324
38325 Signed-off-by: Scott Wood <scottwood@freescale.com>
38326
38327 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
38328 Author: Scott Wood <scottwood@freescale.com>
38329 Date: Mon Apr 16 14:34:15 2007 -0500
38330
38331 mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
38332
38333 Signed-off-by: Scott Wood <scottwood@freescale.com>
38334
38335 commit d87c57b201b4572d16f1b642998faa00c9912b16
38336 Author: Scott Wood <scottwood@freescale.com>
38337 Date: Mon Apr 16 14:31:55 2007 -0500
38338
38339 mpc83xx: Add register definitions for MPC831x.
38340
38341 Signed-off-by: Scott Wood <scottwood@freescale.com>
38342
38343 commit 7fc4c71a143be8666d70803fb25ae60379c95622
38344 Author: Stefan Roese <sr@denx.de>
38345 Date: Mon Apr 23 15:39:59 2007 +0200
38346
38347 Fix file mode
38348
38349 Signed-off-by: Stefan Roese <sr@denx.de>
38350
38351 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
38352 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
38353 Date: Mon Apr 23 15:30:39 2007 +0200
38354
38355 [PATCH] Avoid assigning PCI resources from zero address
38356
38357 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
38358 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
38359 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
38360 sentence about "0" being considered an invalid address) -- so, use a reasonable
38361 starting value of 0x1000 (that's what the most Linux archs are using).
38362
38363 Alternatively, one might have fixed the calls to pci_set_region() individually
38364 (some code even seems to have taken care of this issue) but that would have
38365 been a lot more work. :-)
38366
38367 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
38368 Acked-by: Stefan Roese <sr@denx.de>
38369
38370 commit afb903a2eb9436baa9270ccc0c27082d86497d89
38371 Author: Jeffrey Mann <mannj@embeddedplanet.com>
38372 Date: Mon Apr 23 14:00:11 2007 +0200
38373
38374 [patch] setenv(...) can delete environmentalvariables
38375
38376 update setenv() function so that entering a NULL value for the
38377 variable's value will delete the environmental variable
38378
38379 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
38380 Acked-by: Stefan Roese <sr@denx.de>
38381
38382 commit 36f104e5caa747d568eff26b369565af57c2ffa6
38383 Author: Mike Frysinger <vapier@gentoo.org>
38384 Date: Mon Apr 23 13:54:24 2007 +0200
38385
38386 [patch] use unsigned char in smc91111 driver for mac
38387
38388 the v_mac variable in the smc91111 driver is declared as a signed char ...
38389 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
38390 because when it gets printed out, you get a display like:
38391 0xFFFFFFE0 and that's no good
38392
38393 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38394
38395 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
38396 Author: Rodolfo Giometti <giometti@enneenne.com>
38397 Date: Mon Apr 23 13:10:52 2007 +0200
38398
38399 USB: (Another) delay for crappy USB keys.
38400
38401 Some USB keys are slow in giving back an answer when the Root HUB
38402 enables power lines.
38403
38404 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
38405
38406 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
38407 Author: Stefan Roese <sr@denx.de>
38408 Date: Mon Apr 23 12:00:22 2007 +0200
38409
38410 Remove BOARDLIBS usage completely
38411
38412 Signed-off-by: Stefan Roese <sr@denx.de>
38413
38414 commit 32556443840f127170e4baa8bdd5b567039f6c36
38415 Author: Michal Simek <monstr@monstr.eu>
38416 Date: Sat Apr 21 21:07:22 2007 +0200
38417
38418 [PATCH] SystemACE support for Microblaze
38419
38420 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
38421 Author: Michal Simek <monstr@monstr.eu>
38422 Date: Sat Apr 21 21:02:40 2007 +0200
38423
38424 16bit read/write little endian
38425
38426 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
38427 Author: Michal Simek <monstr@monstr.eu>
38428 Date: Sat Apr 21 20:53:31 2007 +0200
38429
38430 Change ML401 parameters - Xilinx BSP
38431
38432 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
38433 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38434 Date: Wed Feb 28 05:37:29 2007 -0600
38435
38436 mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
38437
38438 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38439
38440 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
38441 Author: Zhang Wei <wei.zhang@freescale.com>
38442 Date: Fri Jan 19 10:42:37 2007 +0800
38443
38444 Enable LAWs for MPC8641 PCI-Ex2.
38445
38446 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
38447 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38448
38449 commit bd7851ce1e1f140665b520026abf1042968b1102
38450 Author: Jon Loeliger <jdl@freescale.com>
38451 Date: Fri Apr 20 14:12:26 2007 -0500
38452
38453 mpc86xx; Write MAC address to mac-address and local-mac-address
38454
38455 Some device trees have a mac-address property, some have local-mac-address,
38456 and some have both. To support all of these device trees, ftp_cpu_setup()
38457 should write the MAC address to mac-address and local-mac-address, if they
38458 exist.
38459
38460 Signed-off-by: Timur Tabi <timur@freescale.com>
38461 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38462
38463 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
38464 Author: Jon Loeliger <jdl@freescale.com>
38465 Date: Fri Apr 20 14:11:38 2007 -0500
38466
38467 mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
38468
38469 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38470 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38471
38472 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
38473 Author: Wolfgang Denk <wd@denx.de>
38474 Date: Fri Apr 20 17:43:28 2007 +0200
38475
38476 Cleanup compiler warnings, update CHANGELOG
38477
38478 Signed-off-by: Wolfgang Denk <wd@denx.de>
38479
38480 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
38481 Author: Detlev Zundel <dzu@denx.de>
38482 Date: Fri Apr 20 12:01:47 2007 +0200
38483
38484 Fix breakage of NC650 board with respect to nand support.
38485
38486 Signed-off-by: Detlev Zundel <dzu@denx.de>
38487
38488 commit 39f23cd90947639ac278a18ff277ec786b5ac167
38489 Author: Domen Puncer <domen.puncer@telargo.com>
38490 Date: Fri Apr 20 11:13:16 2007 +0200
38491
38492 [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
38493
38494 G2 core reference manual says decrementer and time base
38495 are decreasing/increasing once every 4 bus clock cycles.
38496 Lets fix it, so time in Linux won't run twice as fast
38497
38498 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
38499 Acked-by: Grant Likely <grant.likely@secretlab.ca>
38500
38501 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
38502 Author: Gerald Van Baren <vanbaren@cideas.com>
38503 Date: Thu Apr 19 23:14:39 2007 -0400
38504
38505 Fix serious pointer bug with bootm and reserve map.
38506
38507 What was suppose to be a stack variable was declared as a pointer,
38508 overwriting random memory.
38509 Also moved the libfdt.a requirement into the main Makefile. That is
38510 The U-Boot Way.
38511
38512 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
38513 Author: Stefan Roese <sr@denx.de>
38514 Date: Thu Apr 19 09:53:52 2007 +0200
38515
38516 ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
38517
38518 Previous versions used full wait states for the chip select #1 which
38519 is connected to the Xilinix SystemACE controller on the AMCC Katmai
38520 evaluation board. This leads to really slow access and therefore low
38521 performance. This patch now sets up the chip select a lot faster
38522 resulting in much better read/write performance of the Linux driver.
38523
38524 Signed-off-by: Stefan Roese <sr@denx.de>
38525
38526 commit 37837828d89084879bee2f2b8c7c68d4695940df
38527 Author: Wolfgang Denk <wd@denx.de>
38528 Date: Wed Apr 18 17:49:29 2007 +0200
38529
38530 Clenaup, update CHANGELOG
38531
38532 Signed-off-by: Wolfgang Denk <wd@denx.de>
38533
38534 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
38535 Author: Wolfgang Denk <wd@denx.de>
38536 Date: Wed Apr 18 17:20:58 2007 +0200
38537
38538 Update CHANGELOG
38539
38540 Signed-off-by: Wolfgang Denk <wd@denx.de>
38541
38542 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
38543 Author: Wolfgang Denk <wd@denx.de>
38544 Date: Wed Apr 18 17:07:26 2007 +0200
38545
38546 Cleanup, update CHANGELOG
38547
38548 Sigend-off-by: Wolfgang Denk <wd@denx.de>
38549
38550 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
38551 Author: Wolfgang Denk <wd@denx.de>
38552 Date: Wed Apr 18 16:17:46 2007 +0200
38553
38554 Update CHANGELOG
38555
38556 commit ad4eb555671d97f96dc56eab55103b1f86874b01
38557 Author: Wolfgang Denk <wd@denx.de>
38558 Date: Wed Apr 18 14:30:39 2007 +0200
38559
38560 MCC200 board: remove warning which is obsolete after PSoC firmware changes
38561
38562 Signed-off-by: Wolfgang Denk <wd@denx.de>
38563
38564 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
38565 Author: Domen Puncer <domen.puncer@telargo.com>
38566 Date: Wed Apr 18 12:11:05 2007 +0200
38567
38568 [PATCH] icecube/lite5200b: document wakeup from low-power support
38569
38570 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
38571
38572 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
38573 Author: Stefan Roese <sr@denx.de>
38574 Date: Wed Apr 18 12:07:47 2007 +0200
38575
38576 ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
38577
38578 Signed-off-by: Stefan Roese <sr@denx.de>
38579
38580 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
38581 Author: Stefan Roese <sr@denx.de>
38582 Date: Wed Apr 18 12:05:59 2007 +0200
38583
38584 ppc4xx: Add output for bootrom location to 405EZ ports
38585
38586 Now 405EZ ports also show upon bootup from which boot device
38587 they are configured to boot:
38588
38589 U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
38590
38591 CPU: AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
38592 Bootstrap Option E - Boot ROM Location EBC (32 bits)
38593 16 kB I-Cache 16 kB D-Cache
38594 Board: Acadia - AMCC PPC405EZ Evaluation Board
38595
38596 Signed-off-by: Stefan Roese <sr@denx.de>
38597
38598 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
38599 Author: Peter Pearse <peter.pearse@arm.com>
38600 Date: Tue Apr 17 13:30:33 2007 +0100
38601
38602 Move ppearse to ARM board list
38603 Add Konstantin Kletschke for scb9328.
38604 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
38605
38606 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
38607 Author: Domen Puncer <domen.puncer@telargo.com>
38608 Date: Mon Apr 16 14:00:13 2007 +0200
38609
38610 [PATCH] icecube/lite5200b: wakeup from low-power support
38611
38612 U-Boot part of Lite5200b low power mode support.
38613 Puts SDRAM out of self-refresh and transfers control to
38614 address saved at physical 0x0.
38615
38616 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
38617 Acked-by: Grant Likely <grant.likely@secretlab.ca>
38618
38619 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
38620 Author: Gerald Van Baren <vanbaren@cideas.com>
38621 Date: Sun Apr 15 13:54:26 2007 -0400
38622
38623 Fix the ft_cpu_setup() property settings.
38624
38625 Use "setter" functions instead of flags, cleaner and more flexible.
38626 It also fixes the problem noted by Timur Tabi that the ethernet MAC
38627 addresses were all being set incorrectly to the same MAC address.
38628
38629 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
38630 Author: Gerald Van Baren <vanbaren@cideas.com>
38631 Date: Sat Apr 14 22:51:24 2007 -0400
38632
38633 Improve the bootm command for CONFIG_OF_LIBFDT
38634
38635 In bootm, create the "/chosen" node only if it doesn't already exist
38636 (better matches the previous behavior).
38637 Update for proper reserved memory map handling for initrd.
38638
38639 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
38640 Author: Gerald Van Baren <vanbaren@cideas.com>
38641 Date: Sat Apr 14 22:46:41 2007 -0400
38642
38643 Add some utilities to manipulate the reserved memory map.
38644
38645 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
38646 Author: Wolfgang Denk <wd@denx.de>
38647 Date: Sat Apr 14 21:16:54 2007 +0200
38648
38649 Update CHANGELOG
38650
38651 commit 8e6875183cdca91c134408d119d4abcd48ef6856
38652 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38653 Date: Sun Dec 17 18:56:46 2006 +0100
38654
38655 AVR32: Enable MMC support
38656
38657 Set up the portmux for the MMC interface and enable the MMC driver
38658 along with support for DOS partitions, ext2 and FAT filesystems.
38659
38660 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38661
38662 commit fc26c97bb6df41b4a95662c34054fe912387bf38
38663 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38664 Date: Fri Jan 20 10:03:53 2006 +0100
38665
38666 Atmel MCI driver
38667
38668 Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
38669
38670 The AT91 ARM-based CPUs use basically the same hardware, so it should
38671 be possible to share this driver, but no effort has been made so far.
38672
38673 Hardware documentation can be found in the AT32AP7000 data sheet,
38674 which can be downloaded from
38675
38676 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
38677
38678 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38679
38680 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
38681 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38682 Date: Sun Dec 17 18:55:37 2006 +0100
38683
38684 AVR32: Add clk and gpio infrastructure for mmci
38685
38686 Implement functions for configuring the mmci pins, as well as
38687 functions for getting the clock rate of the mmci controller.
38688
38689 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38690
38691 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
38692 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38693 Date: Sun Dec 17 18:53:56 2006 +0100
38694
38695 Enable partition support with MMC
38696
38697 Include implementations of init_part() and get_partition_info() when
38698 CONFIG_MMC is set.
38699
38700 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38701
38702 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
38703 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38704 Date: Sun Dec 17 17:14:30 2006 +0100
38705
38706 AVR32: Enable networking
38707
38708 Implement MACB initialization for AVR32 and ATSTK1000, and turn
38709 everything on, including the MACB driver.
38710
38711 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38712
38713 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
38714 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38715 Date: Fri Jan 20 10:03:34 2006 +0100
38716
38717 Atmel MACB ethernet driver
38718
38719 Driver for the Atmel MACB on-chip ethernet controller.
38720
38721 This driver has been tested on the ATSTK1000 board with a AT32AP7000
38722 CPU. It should probably work on AT91SAM926x as well with some minor
38723 modifications.
38724
38725 Hardware documentation can be found in the AT32AP7000 data sheet,
38726 which can be downloaded from
38727
38728 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
38729
38730 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38731
38732 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
38733 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38734 Date: Sun Dec 17 16:56:14 2006 +0100
38735
38736 AVR32: Add clk and gpio infrastructure for macb0 and macb1
38737
38738 Implement functions for configuring the macb0 and macb1 pins, as
38739 well as functions for getting the clock rate of the various
38740 busses the macb ethernet controllers are connected to.
38741
38742 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38743
38744 commit d5acb95b16a0a74c643524342c3437e765426d05
38745 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38746 Date: Sun Dec 17 15:39:15 2006 +0100
38747
38748 AVR32: Implement simple DMA memory allocator
38749
38750 Implement dma_alloc_coherent() which returns cache-aligned
38751 uncacheable memory.
38752
38753 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38754
38755 commit 91975b0fea773c9e681fea8cf3349669f27685ee
38756 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38757 Date: Sun Dec 17 15:46:02 2006 +0100
38758
38759 Import <linux/mii.h> from the Linux kernel
38760
38761 Instead of creating yet another set of MII register definitions
38762 in the macb driver, here's a complete set of definitions for everyone
38763 to use.
38764
38765 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38766
38767 commit 1b804b229556a4d862da93c0ec94e79419364b2c
38768 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38769 Date: Wed Mar 21 19:47:36 2007 +0100
38770
38771 AVR32: Include more commands for ATSTK1000
38772
38773 Include the imi, imls and jffs commands sets by default on ATSTK1000.
38774 Also define CONFIG_BOOTARGS to something more useful, define
38775 CONFIG_BOOTCOMMAND and enable autoboot by default.
38776
38777 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38778
38779 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
38780 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38781 Date: Wed Mar 21 19:44:48 2007 +0100
38782
38783 AVR32: Provide a definition of struct stat
38784
38785 Copy the definition of struct stat from the Linux kernel.
38786
38787 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38788
38789 commit 12f099c08167a7a51aeee623bc16dafd0841271c
38790 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38791 Date: Sun Dec 17 14:46:06 2006 +0100
38792
38793 AVR32: Use initdram() instead of board_init_memories()
38794
38795 Conform to the "standard" interface and use initdram() instead of
38796 board_init_memories() on AVR32. This enables us to get rid of the
38797 sdram_size member of the global_data struct as well.
38798
38799 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38800
38801 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
38802 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38803 Date: Mon Nov 20 15:53:10 2006 +0100
38804
38805 AVR32: Relocate u-boot to SDRAM
38806
38807 Relocate the u-boot image into SDRAM like everyone else does. This
38808 means that we can handle much larger .data and .bss than we used to.
38809
38810 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38811
38812 commit df548d3c3e2bbc40258713167859ffc2ce99a900
38813 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38814 Date: Sun Nov 19 18:06:53 2006 +0100
38815
38816 AVR32: Resource management rewrite
38817
38818 Rewrite the resource management code (i.e. I/O memory, clock gating,
38819 gpio) so it doesn't depend on any global state. This is necessary
38820 because this code is heavily used before relocation to RAM, so we
38821 can't write to any global variables.
38822
38823 As an added bonus, this makes u-boot's memory footprint a bit smaller,
38824 although some functionality has been left out; all clocks are enabled
38825 all the time, and there's no checking for gpio line conflicts.
38826
38827 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38828
38829 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
38830 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38831 Date: Sat Nov 18 18:01:13 2006 +0100
38832
38833 AVR32: Clean up memory-map.h for at32ap7000
38834
38835 Convert spaces to tabs (must have missed this one last time around),
38836 sort the entries by address and group them together by bus
38837 connectivity.
38838
38839 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38840
38841 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
38842 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38843 Date: Sat Nov 18 17:32:31 2006 +0100
38844
38845 AVR32: Build position-independent u-boot
38846
38847 Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
38848 position independent. This will make relocation a lot easier.
38849
38850 -mno-init-got means that gcc shouldn't emit code to load the GOT
38851 address into r6 in every function prologue. We do it once and for
38852 all in the early startup assembly code, so enabling this option
38853 makes u-boot a bit faster and smaller.
38854
38855 The assembly parts have always been position-independent, so no code
38856 changes should be necessary.
38857
38858 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38859
38860 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
38861 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38862 Date: Sat Nov 18 17:24:31 2006 +0100
38863
38864 AVR32: Use avr32-linux- cross-compilation prefix by default
38865
38866 It doesn't really matter which toolchain you use to compile u-boot,
38867 but the avr32-linux one is probably what most people have installed.
38868
38869 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38870
38871 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
38872 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38873 Date: Sat Nov 18 17:15:30 2006 +0100
38874
38875 AVR32: Split start_u_boot into board_init_f and board_init_r
38876
38877 Split the avr32 initialization code into a function to run before
38878 relocation, board_init_f and a function to run after relocation,
38879 board_init_r. For now, board_init_f simply calls board_init_r
38880 at the end.
38881
38882 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38883
38884 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
38885 Author: Heiko Schocher <hs@pollux.denx.de>
38886 Date: Sat Apr 14 05:26:48 2007 +0200
38887
38888 [Fix] Set the LED status register on the UC101 for the LXT971 PHY.
38889 clear the Display after reset.
38890
38891 Signed-off-by: Heiko Schocher <hs@denx.de>
38892
38893 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
38894 Author: Denis Peter <d.peter@mpl.ch>
38895 Date: Fri Apr 13 09:13:33 2007 +0200
38896
38897 [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
38898
38899 Fix bug introduced by "Fix get_partition_info() parameter error in all
38900 other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
38901 to use diskboot or scsiboot form another device than 0.
38902
38903 Signed-off-by: Denis Peter <d.peter@mpl.ch>
38904
38905 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
38906 Author: Greg Lopp <lopp@pobox.com>
38907 Date: Fri Apr 13 08:02:24 2007 +0200
38908
38909 [PATCH] Fix use of "void *" for block dev read/write buffer pointers
38910
38911 Signed-of-by: Greg Lopp <lopp@pobox.com>
38912 Acked-by: Grant Likely <grant.likely@secretlab.ca>
38913
38914 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
38915 Author: Xie Xiaobo <r63061@freescale.com>
38916 Date: Fri Mar 9 19:08:25 2007 +0800
38917
38918 Fix two bugs for MPC83xx DDR2 controller SPD Init
38919
38920 There are a few bugs in the cpu/mpc83xx/spd_sdram.c
38921 the first bug is that the picos_to_clk routine introduces a huge
38922 rounding error in 83xx.
38923 the second bug is that the mode register write recovery field is
38924 tWR-1, not tWR >> 1.
38925
38926 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
38927 Author: Jeffrey Mann <mannj@embeddedplanet.com>
38928 Date: Thu Apr 12 14:15:59 2007 +0200
38929
38930 ppc4xx: Fix i2c divisor calcularion for PPC4xx
38931
38932 This patch fixes changes the i2c_init(...) function to use the function
38933 get_OPB_freq() rather than calculating the OPB speed by
38934 sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
38935 specific per processor. The prior method was not and so was calculating
38936 the wrong speed for some PPC4xx processors.
38937
38938 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
38939 Signed-off-by: Stefan Roese <sr@denx.de>
38940
38941 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
38942 Author: Wolfgang Denk <wd@denx.de>
38943 Date: Wed Apr 11 17:25:01 2007 +0200
38944
38945 Update CHANGELOG
38946
38947 Signed-off-by: Wolfgang Denk <wd@denx.de>
38948
38949 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
38950 Author: Wolfgang Denk <wd@denx.de>
38951 Date: Wed Apr 11 17:22:55 2007 +0200
38952
38953 Update for SC3 board
38954
38955 * Make IDE timeout configurable through ide_reset_timeout variable.
38956 * Use Newline as "password" string
38957 * Use just a single partition in NAND flash
38958
38959 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
38960 Author: Haiying Wang <haiying.wang@freescale.com>
38961 Date: Mon Jan 22 12:37:30 2007 -0600
38962
38963 Add PIXIS FPGA support for MPC8641HPCN board.
38964
38965 Move the 8641HPCN's PIXIS code to the new directory
38966 board/freescale/common/ as it will be shared by
38967 future boards not in the same processor family.
38968
38969 Write a "pixis_reset" command that utilizes the FPGA
38970 reset sequencer to support alternate soft-reset options
38971 such as using the "alternate" flash bank, enabling
38972 the watch dog, or choosing different CPU frequencies.
38973
38974 Add documentation for the pixis_reset to README.mpc8641hpcn.
38975
38976 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
38977 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38978
38979 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
38980 Author: Gerald Van Baren <vanbaren@cideas.com>
38981 Date: Fri Apr 6 14:19:43 2007 -0400
38982
38983 Moved fdt command support code to fdt_support.c
38984
38985 ...in preparation for improving the bootm command's handling of fdt blobs.
38986 Also cleaned up some coding sloppiness.
38987
38988 commit 6679f9299534e488a171a9bb8f9bb891de247aab
38989 Author: Gerald Van Baren <vanbaren@cideas.com>
38990 Date: Fri Apr 6 14:17:14 2007 -0400
38991
38992 libfdt: Make fdt_check_header() public
38993
38994 Changed _fdt_check_header() to fdt_check_header() and made it part of
38995 the interface - it is a useful routine.
38996
38997 Also did some asthetics cleanup to the include files (headers).
38998
38999 commit c0707ce65677650b5ceab0500ee50ae5168afef2
39000 Author: Aubrey Li <aubrey.adi@gmail.com>
39001 Date: Thu Apr 5 18:34:06 2007 +0800
39002
39003 [Blackfin][PATCH] Kill off a bunch of common local prototypes
39004
39005 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
39006 Author: Aubrey Li <aubrey.adi@gmail.com>
39007 Date: Thu Apr 5 18:33:04 2007 +0800
39008
39009 [Blackfin][PATCH] Fix dynamic CPLB generation issue
39010
39011 commit 0445e3a264251d75b1be45ef713c70726a2952f0
39012 Author: Aubrey Li <aubrey.adi@gmail.com>
39013 Date: Thu Apr 5 18:31:47 2007 +0800
39014
39015 [Blackfin][PATCH] minior cleanup
39016
39017 commit 155fd766573981090e638b493d5857562151862e
39018 Author: Aubrey Li <aubrey.adi@gmail.com>
39019 Date: Thu Apr 5 18:31:18 2007 +0800
39020
39021 [Blackfin][PATCH] Fix copyright and update license
39022
39023 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
39024 Author: Aubrey Li <aubrey.adi@gmail.com>
39025 Date: Thu Apr 5 18:30:25 2007 +0800
39026
39027 [Blackfin][PATCH] Add BF537 EMAC driver initialization
39028
39029 commit 889256e8604e0c68db1d866d720894dffede9df6
39030 Author: Aubrey Li <aubrey.adi@gmail.com>
39031 Date: Thu Apr 5 18:29:55 2007 +0800
39032
39033 [Blackfin][PATCH] call real the system synchronize instruction
39034
39035 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
39036 Author: Aubrey Li <aubrey.adi@gmail.com>
39037 Date: Thu Apr 5 18:29:17 2007 +0800
39038
39039 [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
39040
39041 commit dfeeab2cd680df047e68e723b246adf6f33bb556
39042 Author: Aubrey Li <aubrey.adi@gmail.com>
39043 Date: Thu Apr 5 18:28:34 2007 +0800
39044
39045 [Blackfin][PATCH]: fix flash unaligned copy issue
39046
39047 commit 443feb740584e406efa203af909fe2926608e8d5
39048 Author: Igor Marnat <marny@rambler.ru>
39049 Date: Wed Mar 21 09:55:01 2007 +0300
39050
39051 Update usage of 'nc' in README.NetConsole
39052
39053 Added information about usage of NetConsole on systems where the -l and -p
39054 switches are mutually exclusive.
39055
39056 Signed-off-by: Igor Marnat <marny@rambler.ru>
39057 Signed-off-by: Ben Warren <bwarren@qstreams.com>
39058
39059 commit 31c98a88228021b314c89ebb8104fb6473da4471
39060 Author: Wolfgang Denk <wd@denx.de>
39061 Date: Wed Apr 4 02:09:30 2007 +0200
39062
39063 Minor coding style cleanup.
39064
39065 commit 94abd7c0583ebe01e799b25f451201deeaab550d
39066 Author: Wolfgang Denk <wd@denx.de>
39067 Date: Wed Apr 4 01:49:15 2007 +0200
39068
39069 Minor cleanup.
39070
39071 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
39072 Author: Rodolfo Giometti <giometti@enneenne.com>
39073 Date: Tue Apr 3 14:27:18 2007 +0200
39074
39075 Support for the Philips ISP116x HCD (Host Controller Driver)
39076
39077 Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
39078
39079 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
39080 Author: Markus Klotzbuecher <mk@denx.de>
39081 Date: Tue Apr 3 14:27:08 2007 +0200
39082
39083 USB: cleanup monahans usb support. Remove dead code.
39084
39085 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39086
39087 commit a65c5768e5537530bd1780af3d3fddc3113a163c
39088 Author: Stefan Roese <sr@denx.de>
39089 Date: Mon Apr 2 10:09:30 2007 +0200
39090
39091 ppc4xx: Change SysACE address on Katmai
39092
39093 With this new base address of the Xilinx SystemACE controller
39094 the Linux driver will be easier to adapt, since it can now be
39095 mapped via the "normal" ioremap() call.
39096
39097 Signed-off-by: Stefan Roese <sr@denx.de>
39098
39099 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
39100 Author: Gerald Van Baren <vanbaren@cideas.com>
39101 Date: Sat Mar 31 14:30:53 2007 -0400
39102
39103 Fix some minor whitespace violations.
39104
39105 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
39106 Author: Gerald Van Baren <vanbaren@cideas.com>
39107 Date: Sat Mar 31 12:23:51 2007 -0400
39108
39109 Add a flattened device tree (fdt) command (2 of 2)
39110
39111 Modifications to the existing code to support the new fdt command.
39112
39113 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
39114 Author: Gerald Van Baren <vanbaren@cideas.com>
39115 Date: Sat Mar 31 12:22:10 2007 -0400
39116
39117 Add a flattened device tree (fdt) command (1 of 2)
39118
39119 The fdt command uses David Gibson's libfdt library to manipulate as well
39120 as print the flattened device tree. This patch is the new command,
39121 the second part is the modifications to the existing code.
39122
39123 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
39124 Author: Gerald Van Baren <vanbaren@cideas.com>
39125 Date: Sat Mar 31 12:13:43 2007 -0400
39126
39127 libfdt: Enhanced and published fdt_next_tag()
39128
39129 Enhanced the formerly private function _fdt_next_tag() to allow stepping
39130 through the tree, used to produce a human-readable dump, and made
39131 it part of the published interface.
39132 Also added some comments.
39133
39134 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
39135 Author: Gerald Van Baren <vanbaren@cideas.com>
39136 Date: Sat Mar 31 12:05:39 2007 -0400
39137
39138 libfdt: Customizations for use by u-boot.
39139
39140 Changes to David Gibson's original source to fit into u-boot's
39141 environment. No functionality changes.
39142
39143 commit 35748177c64a4a83a00057e93bb33e40278a2a96
39144 Author: Gerald Van Baren <vanbaren@cideas.com>
39145 Date: Sat Mar 31 12:00:56 2007 -0400
39146
39147 libfdt: Import libfdt source (2 of 2)
39148
39149 This adds the applicable libfdt source files (unmodified) and a README
39150 to explain where the source came from.
39151
39152 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
39153 Author: Gerald Van Baren <vanbaren@cideas.com>
39154 Date: Sat Mar 31 11:59:59 2007 -0400
39155
39156 libfdt: Import libfdt source (1 of 2)
39157
39158 This adds the applicable libfdt source files (unmodified) and a README
39159 to explain where the source came from.
39160
39161 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
39162 Author: Stefan Roese <sr@denx.de>
39163 Date: Sat Mar 31 13:16:23 2007 +0200
39164
39165 ppc4xx: Update Katmai bootstrap command
39166
39167 Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
39168 is selected.
39169
39170 Signed-off-by: Stefan Roese <sr@denx.de>
39171
39172 commit cabee756a6532986729477c3cc1ea16ef8517ad2
39173 Author: Stefan Roese <sr@denx.de>
39174 Date: Sat Mar 31 13:15:06 2007 +0200
39175
39176 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
39177
39178 Additional RAM information is now printed upon powerup, like
39179 DDR2 frequency and CAS latency.
39180
39181 Signed-off-by: Stefan Roese <sr@denx.de>
39182
39183 commit 60723803431ac75cad085690789e433d5ab9174e
39184 Author: Stefan Roese <sr@denx.de>
39185 Date: Sat Mar 31 08:48:36 2007 +0200
39186
39187 ppc4xx: Change Yucca config file to support ECC
39188
39189 With the updated 44x DDR2 driver the Yucca board now supports
39190 ECC generation and checking.
39191
39192 Signed-off-by: Stefan Roese <sr@denx.de>
39193
39194 commit 490e5730c674b20d708b783a2c5ffd7208f83873
39195 Author: Stefan Roese <sr@denx.de>
39196 Date: Sat Mar 31 08:47:34 2007 +0200
39197
39198 ppc4xx: Fix "bootstrap" command for Katmai board
39199
39200 The board specific "bootstrap" command is now fixed and can
39201 be used for the AMCC Katmai board to configure different
39202 CPU/PLB/OPB frequencies.
39203
39204 Signed-off-by: Stefan Roese <sr@denx.de>
39205
39206 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
39207 Author: Stefan Roese <sr@denx.de>
39208 Date: Sat Mar 31 08:46:08 2007 +0200
39209
39210 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
39211
39212 Fix a bug in the auto calibration routine. This driver now runs
39213 more reliable with the tested modules. It's also tested with
39214 167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
39215
39216 Signed-off-by: Stefan Roese <sr@denx.de>
39217
39218 commit 342cd097be1e7affe82f42ab3da220959a699e64
39219 Author: Michal Simek <monstr@monstr.eu>
39220 Date: Fri Mar 30 22:52:09 2007 +0200
39221
39222 [PATCH] Clean include dependence
39223
39224 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
39225 Author: Michal Simek <monstr@monstr.eu>
39226 Date: Fri Mar 30 22:42:45 2007 +0200
39227
39228 [CLEAN] Remove inefficient Suzaku code
39229
39230 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
39231 Author: Stefan Roese <sr@denx.de>
39232 Date: Wed Mar 28 15:03:16 2007 +0200
39233
39234 Merge some AMCC make targets to keep the top-level Makefile smaller
39235
39236 Signed-off-by: Stefan Roese <sr@denx.de>
39237
39238 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
39239 Author: Stefan Roese <sr@denx.de>
39240 Date: Wed Mar 28 14:52:12 2007 +0200
39241
39242 i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
39243
39244 The "old" i2c commands (iprobe, imd...) are now compiled in again,
39245 even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
39246 config option.
39247
39248 Signed-off-by: Stefan Roese <sr@denx.de>
39249
39250 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
39251 Author: Michal Simek <monstr@monstr.eu>
39252 Date: Tue Mar 27 00:32:16 2007 +0200
39253
39254 PATCH: Resolve GPL license problem
39255
39256 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
39257 Author: Rodolfo Giometti <giometti@enneenne.com>
39258 Date: Mon Mar 26 12:03:36 2007 +0200
39259
39260 PXA: pxa27x USB OHCI support
39261
39262 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
39263
39264 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
39265 Author: Markus Klotzbuecher <mk@denx.de>
39266 Date: Mon Mar 26 11:21:05 2007 +0200
39267
39268 USB: remove the S3C24X0_merge #define, which was introduced while
39269 merging OHCI drivers.
39270
39271 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39272
39273 commit 1798049522f594013aea29457d46794298c6ae15
39274 Author: Michal Simek <root@monstr.eu>
39275 Date: Mon Mar 26 01:39:07 2007 +0200
39276
39277 Support for XUPV2P board
39278 Reset support
39279 BSP autoconfig support
39280
39281 commit 0d974d5297349504a2ddfa09314be573b5df320a
39282 Author: Stefan Roese <sr@denx.de>
39283 Date: Sat Mar 24 15:57:09 2007 +0100
39284
39285 [PATCH] Add 4xx GPIO functions
39286
39287 This patch adds some 4xx GPIO functions. It also moves some of the
39288 common code and defines into a common 4xx GPIO header file.
39289
39290 Signed-off-by: Stefan Roese <sr@denx.de>
39291
39292 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
39293 Author: Stefan Roese <sr@denx.de>
39294 Date: Sat Mar 24 15:55:58 2007 +0100
39295
39296 [PATCH] Small Sequoia cleanup
39297
39298 Signed-off-by: Stefan Roese <sr@denx.de>
39299
39300 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
39301 Author: Stefan Roese <sr@denx.de>
39302 Date: Sat Mar 24 15:45:34 2007 +0100
39303
39304 [PATCH] Clean up 40EZ/Acadia support
39305
39306 This patch cleans up all the open issue of the preliminary
39307 Acadia support.
39308
39309 Signed-off-by: Stefan Roese <sr@denx.de>
39310
39311 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
39312 Author: Jon Loeliger <jdl@freescale.com>
39313 Date: Tue Dec 12 11:02:20 2006 -0600
39314
39315 Fix 8641HPCN problem with ld version 2.16
39316
39317 (Dot outside sections problem).
39318
39319 This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
39320
39321 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39322
39323 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
39324 Author: Haiying Wang <haiying.wang@freescale.com>
39325 Date: Thu Dec 7 10:35:55 2006 -0600
39326
39327 Set Rev 2.x 86xx PIC in mixed mode.
39328
39329 Prevent false interrupt from hanging Linux as MSR[EE] is set
39330 to enable interrupts by changing the PIC out of the default
39331 pass through mode into mixed mode.
39332
39333 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
39334 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39335
39336 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
39337 Author: Jason Jin <jason.jin@freescale.com>
39338 Date: Thu Dec 7 10:32:35 2006 -0600
39339
39340 Add flash cmd function to 8641HPCN ramboot
39341
39342 Also fixes some commmand for 8641 HPCN ramboot case.
39343
39344 Signed-off-by: Jason Jin <jason.jin@freescale.com>
39345 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39346
39347 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
39348 Author: Ed Swarthout <ed.swarthout@freescale.com>
39349 Date: Thu Dec 7 10:34:14 2006 -0600
39350
39351 Add support for 8641 Rev 2 silicon.
39352
39353 Without this patch, I am unable to get to the prompt on rev 2 silicon.
39354 Only set ddrioovcr for rev1.
39355
39356 Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
39357 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39358
39359 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
39360 Author: Wolfgang Denk <wd@denx.de>
39361 Date: Thu Mar 22 00:13:12 2007 +0100
39362
39363 Code cleanup / re-insert previous Copyright entries.
39364
39365 Signed-off-by: Wolfgang Denk <wd@denx.de>
39366
39367 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
39368 Author: Wolfgang Denk <wd@denx.de>
39369 Date: Wed Mar 21 23:26:15 2007 +0100
39370
39371 Code cleanup. Update CHANGELOG
39372
39373 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
39374 Author: Stefan Roese <sr@denx.de>
39375 Date: Wed Mar 21 14:54:29 2007 +0100
39376
39377 ppc4xx: Fix file mode of include/configs/acadia.h
39378
39379 Signed-off-by: Stefan Roese <sr@denx.de>
39380
39381 commit d5f4614c9350d9333e575100fb250aab774d0258
39382 Author: Markus Klotzbuecher <mk@denx.de>
39383 Date: Wed Mar 21 14:41:46 2007 +0100
39384
39385 SPC1920: fix small clock routing bug
39386
39387 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39388
39389 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
39390 Author: Stefan Roese <sr@denx.de>
39391 Date: Wed Mar 21 13:39:57 2007 +0100
39392
39393 [PATCH] Add AMCC Acadia (405EZ) eval board support
39394
39395 This patch adds support for the new AMCC Acadia eval board.
39396
39397 Please note that this Acadia/405EZ support is still in a beta stage.
39398 Still lot's of cleanup needed but we need a preliminary release now.
39399
39400 Signed-off-by: Stefan Roese <sr@denx.de>
39401
39402 commit e01bd218b00af73499331a1a701625a852cd286f
39403 Author: Stefan Roese <sr@denx.de>
39404 Date: Wed Mar 21 13:38:59 2007 +0100
39405
39406 [PATCH] Add AMCC PPC405EZ support
39407
39408 This patch adds support for the new AMCC 405EZ PPC. It is in
39409 preparation for the AMCC Acadia board support.
39410
39411 Please note that this Acadia/405EZ support is still in a beta stage.
39412 Still lot's of cleanup needed but we need a preliminary release now.
39413
39414 Signed-off-by: Stefan Roese <sr@denx.de>
39415
39416 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
39417 Author: Heiko Schocher <hs@pollux.denx.de>
39418 Date: Wed Mar 21 08:45:17 2007 +0100
39419
39420 [PATCH] TQM8272: dont change the bits given from the HRCW
39421 for the SIUMCR and BCR Register.
39422 Fix the calculation for the EEprom Size
39423
39424 Signed-off-by: Heiko Schocher <hs@denx.de>
39425
39426 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
39427 Author: Aubrey Li <aubrey.adi@gmail.com>
39428 Date: Tue Mar 20 18:16:24 2007 +0800
39429
39430 [Blackfin][PATCH] Add BF561 EZKIT board support
39431
39432 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
39433 Author: Aubrey Li <aubrey.adi@gmail.com>
39434 Date: Mon Mar 19 22:55:58 2007 +0800
39435
39436 [Blackfin][PATCH] minor cleanup
39437
39438 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
39439 Author: Wolfgang Denk <wd@denx.de>
39440 Date: Mon Mar 19 13:10:08 2007 +0100
39441
39442 Remove obsoleted POST files.
39443
39444 Signed-off-by: Wolfgang Denk <wd@denx.de>
39445
39446 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
39447 Author: Aubrey Li <aubrey.adi@gmail.com>
39448 Date: Mon Mar 19 01:26:11 2007 +0800
39449
39450 [PATCH] Add flash chip M29W320ET/B support
39451
39452 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
39453 Author: Aubrey Li <aubrey.adi@gmail.com>
39454 Date: Mon Mar 19 01:24:52 2007 +0800
39455
39456 [Blackfin][PATCH] Add BF537 stamp board support
39457
39458 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
39459 Author: Stefan Roese <sr@denx.de>
39460 Date: Fri Mar 16 21:11:42 2007 +0100
39461
39462 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
39463
39464 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
39465 DDR memory are dynamically programmed matching the total size
39466 of the equipped memory (DIMM modules).
39467
39468 Signed-off-by: Stefan Roese <sr@denx.de>
39469
39470 commit 76d1466f918b881cda2d259254761e73885093c2
39471 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39472 Date: Tue Mar 13 13:38:05 2007 +0100
39473
39474 [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
39475 boards in terms of unification.
39476
39477 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39478
39479 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
39480 Author: Wolfgang Denk <wd@denx.de>
39481 Date: Tue Mar 13 16:05:55 2007 +0100
39482
39483 Make SC3 board build with 'make O='; use 'addcons' consistently
39484 (SC3 and Jupiter used to use 'addcon' instead).
39485
39486 Signed-off-by: Wolfgang Denk wd@denx.de
39487
39488 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
39489 Author: Heiko Schocher <hs@pollux.denx.de>
39490 Date: Tue Mar 13 09:40:59 2007 +0100
39491
39492 [PATCH] update board config for jupiter Board:
39493 added Hush Shell,
39494 CONFIG_CMDLINE_EDITING,
39495 CFG_ENV_ADDR_REDUND activated
39496
39497 Signed-off-by: Heiko Schocher <hs@denx.de>
39498
39499 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
39500 Author: Aubrey Li <aubrey.adi@gmail.com>
39501 Date: Mon Mar 12 12:11:55 2007 +0800
39502
39503 [Blackfin][PATCH] minor cleanup
39504
39505 commit bfa5754a58477ac917d21527cd0f079d87cf188e
39506 Author: Aubrey Li <aubrey.adi@gmail.com>
39507 Date: Mon Mar 12 01:42:06 2007 +0800
39508
39509 [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
39510
39511 commit 8440bb14581a294375c34b91b42512f9753d1130
39512 Author: Aubrey Li <aubrey.adi@gmail.com>
39513 Date: Mon Mar 12 00:25:14 2007 +0800
39514
39515 [Blackfin][PATCH] code cleanup
39516
39517 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
39518 Author: Michal Simek <monstr@monstr.eu>
39519 Date: Sun Mar 11 13:48:24 2007 +0100
39520
39521 [Microblaze][PATCH] part 2
39522 timer support
39523 interrupt controller support
39524 flash support
39525 ethernet support
39526 cache support
39527 board information support
39528 env support
39529 booting image support
39530
39531 adding support for Xilinx ML401
39532
39533 commit 76316a318de91f6184e7c22a10e02d275ade2441
39534 Author: Michal Simek <monstr@monstr.eu>
39535 Date: Sun Mar 11 13:42:58 2007 +0100
39536
39537 [Microblaze][PATCH]
39538 timer support
39539 interrupt controller support
39540 flash support
39541 ethernet support
39542 cache support
39543 board information support
39544 env support
39545 booting image support
39546
39547 adding support for Xilinx ML401
39548
39549 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
39550 Author: Aubrey Li <aubrey.adi@gmail.com>
39551 Date: Sat Mar 10 23:49:29 2007 +0800
39552
39553 [Blackfin][PATCH] code cleanup
39554
39555 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
39556 Author: Aubrey.Li <aubrey.adi@gmail.com>
39557 Date: Fri Mar 9 13:40:56 2007 +0800
39558
39559 [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
39560
39561 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
39562 Author: Aubrey.Li <aubrey.adi@gmail.com>
39563 Date: Fri Mar 9 13:38:44 2007 +0800
39564
39565 [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
39566
39567 commit 992423ab43c2bcf6b704853bd00af77450915e20
39568 Author: Stefan Roese <sr@denx.de>
39569 Date: Thu Mar 8 23:00:08 2007 +0100
39570
39571 ppc4xx: Fix file mode of sequoia.c
39572
39573 Signed-off-by: Stefan Roese <sr@denx.de>
39574
39575 commit eb92f613556800f7483666db09d9a237ad911d4a
39576 Author: Wolfgang Denk <wd@pollux.denx.de>
39577 Date: Thu Mar 8 22:52:51 2007 +0100
39578
39579 Minor cleanup.
39580
39581 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
39582 Author: John Otken john@softadvances.com <john@softadvances.com>
39583 Date: Thu Mar 8 09:39:48 2007 -0600
39584
39585 ppc4xx: Clear Sequoia/Rainier security engine reset bits
39586
39587 Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
39588
39589 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
39590 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39591 Date: Thu Mar 8 16:26:52 2007 +0100
39592
39593 [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
39594
39595 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39596
39597 commit d9fc703246840c4b268debf48c334ba55c597dc0
39598 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39599 Date: Thu Mar 8 16:25:47 2007 +0100
39600
39601 [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
39602
39603 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39604
39605 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
39606 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39607 Date: Thu Mar 8 16:23:11 2007 +0100
39608
39609 [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
39610
39611 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39612
39613 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
39614 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39615 Date: Thu Mar 8 16:20:32 2007 +0100
39616
39617 [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
39618
39619 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39620
39621 commit f9fc6a5852a6335840882fa2111925010eea1abe
39622 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39623 Date: Wed Mar 7 15:32:01 2007 +0100
39624
39625 fixed ethernet phy configuration for plu405 board
39626
39627 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39628
39629 commit 769104c9356594deb2092e204a39c05b33202d6c
39630 Author: Wolfgang Denk <wd@pollux.denx.de>
39631 Date: Thu Mar 8 21:49:27 2007 +0100
39632
39633 Minor cleanup
39634
39635 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
39636 Author: Stefan Roese <sr@denx.de>
39637 Date: Thu Mar 8 10:13:16 2007 +0100
39638
39639 [PATCH] Update AMCC Luan 440SP eval board support
39640
39641 The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
39642 inititializition. This includes DDR auto calibration and support
39643 for different DIMM modules, instead of the fixed setup used in
39644 the earlier version.
39645
39646 This patch also enables the cache in FLASH for the startup
39647 phase of U-Boot (while running from FLASH). After relocating to
39648 SDRAM the cache is disabled again. This will speed up the boot
39649 process, especially the SDRAM setup, since there are some loops
39650 for memory testing (auto calibration).
39651
39652 Signed-off-by: Stefan Roese <sr@denx.de>
39653
39654 commit 2f5df47351910a2936c7741cf111855829200943
39655 Author: Stefan Roese <sr@denx.de>
39656 Date: Thu Mar 8 10:10:18 2007 +0100
39657
39658 [PATCH] Update AMCC Yucca 440SPe eval board support
39659
39660 The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
39661 inititializition. This includes DDR auto calibration and support
39662 for different DIMM modules, instead of the fixed setup used in
39663 the earlier version.
39664
39665 Signed-off-by: Stefan Roese <sr@denx.de>
39666
39667 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
39668 Author: Stefan Roese <sr@denx.de>
39669 Date: Thu Mar 8 10:07:18 2007 +0100
39670
39671 ppc4xx: Small AMCC Katmai 440SPe update
39672
39673 Signed-off-by: Stefan Roese <sr@denx.de>
39674
39675 commit df294497479b1dca6dd86318b2a912f72fede0df
39676 Author: Stefan Roese <sr@denx.de>
39677 Date: Thu Mar 8 10:06:09 2007 +0100
39678
39679 ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
39680
39681 Signed-off-by: Stefan Roese <sr@denx.de>
39682
39683 commit 83853178bd36bca6f0f8f1331476620c84a587fc
39684 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39685 Date: Wed Mar 7 12:14:50 2007 -0600
39686
39687 net - Support ping reply when processing net-loop
39688
39689 Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
39690
39691 This permits the ping command to test the phy interface when the phy
39692 is put in loopback mode (typically by setting register 0 bit 14).
39693
39694 It also allows the port to respond to an external ping when u-boot is
39695 processing some other net command (such as tftp). This is useful when
39696 tftp appears to hang.
39697
39698 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39699 Signed-off-by: Ben Warren <bwarren@qstreams.com>
39700
39701 commit fa1aef15bcd47736687be1af544506e90fba545d
39702 Author: Stefan Roese <sr@denx.de>
39703 Date: Wed Mar 7 16:43:00 2007 +0100
39704
39705 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
39706
39707 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
39708 DDR memory are dynamically programmed matching the total size
39709 of the equipped memory (DIMM modules).
39710
39711 Signed-off-by: Stefan Roese <sr@denx.de>
39712
39713 commit e2ebe696818939e2b974628be9c921ea3fe9de13
39714 Author: Stefan Roese <sr@denx.de>
39715 Date: Wed Mar 7 16:39:36 2007 +0100
39716
39717 [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
39718
39719 This patch fixes a problem that occurs when 2 DIMM's are
39720 used. This problem was first spotted and fixed by Gerald Jackson
39721 <gerald.jackson@reaonixsecurity.com> but this patch fixes the
39722 problem in a little more clever way.
39723
39724 This patch also adds the nice functionality to dynamically
39725 create the TLB entries for the SDRAM (tlb.c). So we should
39726 never run into such problems with wrong (too short) TLB
39727 initialization again on these platforms.
39728
39729 As this feature is new to the "old" 44x SPD DDR driver, it
39730 has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
39731
39732 Signed-off-by: Stefan Roese <sr@denx.de>
39733
39734 commit 39218433983417b9df087976a79e3f80dd5e83d6
39735 Author: Wolfgang Denk <wd@denx.de>
39736 Date: Wed Mar 7 16:33:44 2007 +0100
39737
39738 UC101: fix compiler warnings
39739
39740 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
39741 Author: Wolfgang Denk <wd@pollux.denx.de>
39742 Date: Wed Mar 7 16:19:46 2007 +0100
39743
39744 HMI1001: fix build error, cleanup compiler warnings.
39745
39746 commit ad5bb451ade552c44bef9119d907929ebc2c126f
39747 Author: Wolfgang Denk <wd@pollux.denx.de>
39748 Date: Tue Mar 6 18:08:43 2007 +0100
39749
39750 Restructure POST directory to support of other CPUs, boards, etc.
39751
39752 commit a5284efd125967675b2e9c6ef7b95832268ad360
39753 Author: Wolfgang Denk <wd@pollux.denx.de>
39754 Date: Tue Mar 6 18:01:47 2007 +0100
39755
39756 Fix HOSTARCH handling.
39757 Patch by Mike Frysinger, Mar 05 2007
39758
39759 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
39760 Author: Stefan Roese <sr@denx.de>
39761 Date: Tue Mar 6 07:47:04 2007 +0100
39762
39763 [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
39764
39765 As provided by the AMCC applications team, this patch optimizes the
39766 DDR2 setup for 166MHz bus speed. The values provided are also save
39767 to use on a "normal" 133MHz PLB bus system. Only the refresh counter
39768 setup has to be adjusted as done in this patch.
39769
39770 For this the NAND booting version had to include the "speed.c" file
39771 from the cpu/ppc4xx directory. With this addition the NAND SPL image
39772 will just fit into the 4kbytes of program space. gcc version 4.x as
39773 provided with ELDK 4.x is needed to generate this optimized code.
39774
39775 Signed-off-by: Stefan Roese <sr@denx.de>
39776
39777 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
39778 Author: Wolfgang Denk <wd@pollux.denx.de>
39779 Date: Sun Mar 4 01:36:05 2007 +0100
39780
39781 Some code cleanup.
39782
39783 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
39784 Author: Kim Phillips <kim.phillips@freescale.com>
39785 Date: Wed Feb 28 00:02:04 2007 -0600
39786
39787 mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
39788
39789 (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
39790
39791 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
39792 Author: Kumar Gala <galak@kernel.crashing.org>
39793 Date: Tue Feb 27 23:51:42 2007 -0600
39794
39795 mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
39796
39797 The config value for:
39798 * CFG_ACR_PIPE_DEP
39799 * CFG_ACR_RPTCNT
39800 * CFG_SPCR_TSEC1EP
39801 * CFG_SPCR_TSEC2EP
39802 * CFG_SCCR_TSEC1CM
39803 * CFG_SCCR_TSEC2CM
39804
39805 Were not being used when setting the appropriate register
39806
39807 Added:
39808 * CFG_SCCR_USBMPHCM
39809 * CFG_SCCR_USBDRCM
39810 * CFG_SCCR_PCICM
39811 * CFG_SCCR_ENCCM
39812
39813 To allow full config of the SCCR.
39814
39815 Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
39816 that were just bogus.
39817
39818 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39819
39820 commit d51b3cf371cd441030460ef19d36b2924c361b1a
39821 Author: Kim Phillips <kim.phillips@freescale.com>
39822 Date: Thu Feb 22 20:06:57 2007 -0600
39823
39824 mpc83xx: update [local-]mac-address properties on UEC based devices
39825
39826 8360 and 832x weren't updating their [local-]mac-address
39827 properties. This patch fixes that.
39828
39829 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39830
39831 commit 61f4f912acbe60776c5e00df1ec94094ce672957
39832 Author: Timur Tabi <timur@freescale.com>
39833 Date: Tue Feb 13 10:41:42 2007 -0600
39834
39835 mpc83xx: write MAC address to mac-address and local-mac-address
39836
39837 Some device trees have a mac-address property, some have local-mac-address,
39838 and some have both. To support all of these device trees, this patch
39839 updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
39840 This function already updates local-mac-address.
39841
39842 Signed-off-by: Timur Tabi <timur@freescale.com>
39843
39844 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
39845 Author: Kim Phillips <kim.phillips@freescale.com>
39846 Date: Tue Feb 27 18:41:08 2007 -0600
39847
39848 mpc83xx: add command line editing by default
39849
39850 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
39851 Author: Kim Phillips <kim.phillips@freescale.com>
39852 Date: Wed Feb 14 19:50:53 2007 -0600
39853
39854 mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
39855
39856 Disable G1TXCLK, G2TXCLK h/w buffers. This patch
39857 fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
39858
39859 Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
39860
39861 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39862 Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
39863
39864 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
39865 Author: Xie Xiaobo <r63061@freescale.com>
39866 Date: Wed Feb 14 18:27:17 2007 +0800
39867
39868 mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
39869
39870 The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
39871 it pass DDR/DDR2 compliance tests.
39872
39873 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
39874
39875 commit b110f40bd180c6b560276589beedf753e97c46ce
39876 Author: Xie Xiaobo <r63061@freescale.com>
39877 Date: Wed Feb 14 18:27:06 2007 +0800
39878
39879 mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
39880
39881 MPC8360E rev2.0 have new spridr,and PVR value,
39882 The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
39883
39884 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
39885
39886 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
39887 Author: Xie Xiaobo <r63061@freescale.com>
39888 Date: Wed Feb 14 18:26:44 2007 +0800
39889
39890 mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
39891
39892 MPC8349E rev3.1 have new spridr,and PVR value,
39893 The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
39894
39895 Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
39896
39897 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
39898 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
39899 Date: Wed Jan 31 11:04:19 2007 +0100
39900
39901 mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
39902
39903 Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
39904 which is used to se if an slave will ACK after receiving its address.
39905
39906 Correct i2c probing to use this method as the old method could upset
39907 a slave as it wrote a data byte to it.
39908
39909 Add a small delay in i2c_init() to let the controller
39910 shutdown any ongoing I2C activity.
39911
39912 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
39913
39914 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
39915 Author: Timur Tabi <timur@freescale.com>
39916 Date: Wed Jan 31 15:54:29 2007 -0600
39917
39918 mpc83xx: Add support for the MPC8349E-mITX-GP
39919
39920 Add support for the MPC8349E-mITX-GP, a stripped-down version of the
39921 MPC8349E-mITX. Bonus features include support for low-boot (BMS bit in
39922 HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
39923
39924 Signed-off-by: Timur Tabi <timur@freescale.com>
39925
39926 commit fab16807adad350f618024350c6950165c247c72
39927 Author: Timur Tabi <timur@freescale.com>
39928 Date: Wed Jan 31 15:54:20 2007 -0600
39929
39930 mpc83xx: Delete sdram_init() for MPC8349E-mITX
39931
39932 There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
39933 never does anything. This patch deletes it.
39934
39935 Signed-off-by: Timur Tabi <timur@freescale.com>
39936
39937 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
39938 Author: Dave Liu <daveliu@freescale.com>
39939 Date: Fri Jan 19 10:43:26 2007 +0800
39940
39941 mpc83xx: Fix the LAW1/3 bug
39942
39943 The patch solves the alignment problem of the local bus access windows to
39944 render accessible the memory bank and PHY registers of UPC 1 (starting at
39945 0xf801 0000). What we actually did was to adjust the sizes of the bus
39946 access windows so that the base address alignment requirement would be met.
39947
39948 Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
39949 Signed-off-by: Gridish Shlomi <gridish@freescale.com>
39950 Signed-off-by: Dave Liu <daveliu@freescale.com>
39951
39952 commit 97c4b397dce236a7318b304667bf89e59d08b17c
39953 Author: Kim Phillips <kim.phillips@freescale.com>
39954 Date: Tue Jan 30 16:15:31 2007 -0600
39955
39956 mpc83xx: don't hang if watchdog configured on 8360, 832x
39957
39958 don't hang if watchdog configured on 8360, 832x
39959
39960 The watchdog programming model is the same across all 83xx devices;
39961 make the code reflect that.
39962
39963 commit b70047478570e371ce7223be342ce98afea0f7d6
39964 Author: Kim Phillips <kim.phillips@freescale.com>
39965 Date: Tue Jan 30 16:15:21 2007 -0600
39966
39967 mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
39968
39969 protect memcpy to bad address if a local-mac-address is missing from dt
39970
39971 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
39972 Author: Kim Phillips <kim.phillips@freescale.com>
39973 Date: Tue Jan 30 16:15:04 2007 -0600
39974
39975 mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
39976
39977 make 8360 default environment fdt be 8360 (not 8349)
39978
39979 commit a28899c910024a0226331df07207b1038c300c93
39980 Author: Emilian Medve <Emilian.Medve@freescale.com>
39981 Date: Tue Jan 30 16:14:50 2007 -0600
39982
39983 mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
39984
39985 The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
39986 be used for busy-waiting since it strips the 'volatile' property from
39987 the bd variable. gcc3 was working by pure luck.
39988
39989 This is a follow on patch to "Fix the UEC driver bug of QE"
39990
39991 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
39992 Author: Kumar Gala <galak@kernel.crashing.org>
39993 Date: Tue Jan 30 14:08:30 2007 -0600
39994
39995 mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
39996
39997 The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
39998 MPC834X class processors. Change the protections from CONFIG_MPC8349 to
39999 CONFIG_MPC834X so they are more generic.
40000
40001 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40002
40003 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
40004 Author: Kim Phillips <kim.phillips@freescale.com>
40005 Date: Thu Jan 25 13:40:55 2007 -0600
40006
40007 mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
40008
40009 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
40010 Author: Kim Phillips <kim.phillips@freescale.com>
40011 Date: Wed Jan 24 17:18:37 2007 -0600
40012
40013 mpc83xx: sort Makefile targets
40014
40015 reordered targets alphabetically
40016
40017 commit 91e25769771c1164ed63ffca0add49f934ae3343
40018 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
40019 Date: Tue Jan 16 11:38:14 2007 -0500
40020
40021 mpc83xx: U-Boot support for Wind River SBC8349
40022
40023 I've redone the SBC8349 support to match git-current, which
40024 incorporates all the MPC834x updates from Freescale since the 1.1.6
40025 release, including the DDR changes.
40026
40027 I've kept all the SBC8349 files as parallel as possible to the
40028 MPC8349EMDS ones for ease of maintenance and to allow for easy
40029 inspection of what was changed to support this board. Hence the SBC8349
40030 U-Boot has FDT support and everything else that the MPC8349EMDS has.
40031
40032 Fortunately the Freescale updates added support for boards using CS0,
40033 but I had to change spd_sdram.c to allow for board specific settings for
40034 the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
40035 default if the board doesn't specify a value.)
40036
40037 Hopefully this should be mergeable as-is and require no whitespace
40038 cleanups or similar, but if something doesn't measure up then let me
40039 know and I'll fix it.
40040
40041 Thanks,
40042 Paul.
40043
40044 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
40045 Author: Sam Song <samsongshu@yahoo.com.cn>
40046 Date: Thu Dec 14 19:03:21 2006 +0800
40047
40048 mpc83xx: Remove a redundant semicolon in mpc8349itx.c
40049
40050 A redundant semicolon existed in mpc8349itx.c
40051 should be removed.
40052
40053 Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
40054
40055 commit f35f358241c549be3f75cfe2eaa642914275b7ba
40056 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
40057 Date: Wed Dec 6 21:23:55 2006 -0500
40058
40059 mpc83xx: Put the version (and magic) after the HRCW.
40060
40061 Put the version (and magic) after the HRCW. This puts it in a fixed
40062 location in flash, not at the start of flash but as close as we can get.
40063
40064 Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
40065
40066 commit 48aecd969171a6e99a55fae04933857787f9a5bd
40067 Author: Dave Liu <r63238@freescale.com>
40068 Date: Thu Dec 7 21:14:51 2006 +0800
40069
40070 mpc83xx: Add the MPC832XEMDS board readme
40071
40072 Add the MPC832XEMDS board readme
40073
40074 Signed-off-by: Dave Liu <daveliu@freescale.com>
40075
40076 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
40077 Author: Dave Liu <r63238@freescale.com>
40078 Date: Thu Dec 7 21:13:15 2006 +0800
40079
40080 mpc83xx: Add support for the MPC832XEMDS board
40081
40082 This patch supports DUART, ETH3/4 and PCI etc.
40083
40084 Signed-off-by: Dave Liu <daveliu@freescale.com>
40085
40086 commit e080313c32322e15ab5a18eb896a252858c57284
40087 Author: Dave Liu <r63238@freescale.com>
40088 Date: Thu Dec 7 21:11:58 2006 +0800
40089
40090 mpc83xx: streamline the 83xx immr head file
40091
40092 For better format and style, I streamlined the 83xx head files,
40093 including immap_83xx.h and mpc83xx.h. In the old head files, 1)
40094 duplicated macro definition appear in the both files; 2) the structure
40095 of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
40096 macro definition put inside the each structure. So, I cleaned up the
40097 structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
40098 moved the macro definition to mpc83xx.h, Just like MPC8260.
40099
40100 CHANGELOG
40101
40102 *streamline the 83xx immr head file
40103
40104 Signed-off-by: Dave Liu <daveliu@freescale.com>
40105
40106 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
40107 Author: Dave Liu <r63238@freescale.com>
40108 Date: Wed Dec 6 11:38:17 2006 +0800
40109
40110 mpc83xx: Fix the UEC driver bug of QE
40111
40112 The patch prevents the GCC tool chain from striping useful code for
40113 optimization. It will make UEC ethernet driver workable, Otherwise the
40114 UEC will fail in tx when you are using gcc4.x. but the driver can work
40115 when using gcc3.4.3.
40116
40117 CHANGELOG
40118
40119 *Prevent the GCC from striping code for optimization, Otherwise the UEC
40120 will tx failed when you are using gcc4.x.
40121
40122 Signed-off-by: Dave Liu <daveliu@freescale.com>
40123
40124 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
40125 Author: Stefan Roese <sr@denx.de>
40126 Date: Thu Mar 1 21:11:36 2007 +0100
40127
40128 [PATCH] Update AMCC Katmai 440SPe eval board support
40129
40130 This patch updates the recently added Katmai board support. The biggest
40131 change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
40132 driver.
40133
40134 Please note, that still some problems are left with some memory
40135 configurations. See the driver for more details.
40136
40137 Signed-off-by: Stefan Roese <sr@denx.de>
40138
40139 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
40140 Author: Stefan Roese <sr@denx.de>
40141 Date: Thu Mar 1 07:03:25 2007 +0100
40142
40143 [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
40144
40145 Signed-off-by: Stefan Roese <sr@denx.de>
40146
40147 commit ccbc7036648e465697ca298ba51e0e76dda352a0
40148 Author: Wolfgang Denk <wd@pollux.denx.de>
40149 Date: Wed Feb 28 01:28:53 2007 +0100
40150
40151 SC3: fix typo in default environment
40152
40153 commit e344568b1b46af85ec32d815586f91bc115d6223
40154 Author: Sergei Poselenov <sposelenov@emcraft.com>
40155 Date: Tue Feb 27 20:15:30 2007 +0300
40156
40157 MCC200: Fixes for update procedure
40158
40159 - fix logic error in image type handling
40160 - make sure file system images (cramfs etc.) get stored in flash
40161 with image header stripped so they can be mounted through MTD
40162
40163 commit 743571145b37182757d4e688a77860b36ee77573
40164 Author: Wolfgang Denk <wd@pollux.denx.de>
40165 Date: Tue Feb 27 14:26:04 2007 +0100
40166
40167 Minor code cleanup.
40168
40169 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
40170 Author: Sergei Poselenov <sposelenov@emcraft.com>
40171 Date: Tue Feb 27 12:40:16 2007 +0300
40172
40173 MCC200 update - add LCD Progress Indicator
40174
40175 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
40176 Author: Stefan Roese <sr@denx.de>
40177 Date: Thu Feb 22 07:43:34 2007 +0100
40178
40179 [PATCH] get_dev() now unconditionally uses manual relocation
40180
40181 Since the relocation fix is not included yet and we're not sure how
40182 it will be added, this patch removes code that required relocation
40183 to be fixed for now.
40184
40185 Signed-off-by: Stefan Roese <sr@denx.de>
40186
40187 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
40188 Author: Stefan Roese <sr@denx.de>
40189 Date: Thu Feb 22 07:40:23 2007 +0100
40190
40191 [PATCH] Change systemace driver to select 8 & 16bit mode
40192
40193 As suggested by Grant Likely this patch enables the Xilinx SystemACE
40194 driver to select 8 or 16bit mode upon startup.
40195
40196 Signed-off-by: Stefan Roese <sr@denx.de>
40197
40198 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
40199 Author: Haiying Wang <Haiying.Wang@freescale.com>
40200 Date: Wed Feb 21 16:52:31 2007 +0100
40201
40202 [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
40203
40204 Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
40205 is fully finished. The sync() is defined in each CPU's io.h file. For
40206 those CPUs which do not need sync for now, a dummy sync() is defined in
40207 their io.h as well.
40208
40209 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
40210
40211 commit da04995c7dc6772013a9a0dc5c767f190c402478
40212 Author: Stefan Roese <sr@denx.de>
40213 Date: Wed Feb 21 13:44:34 2007 +0100
40214
40215 [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
40216
40217 Signed-off-by: Stefan Roese <sr@denx.de>
40218
40219 commit 751bb57107d78978ae08e697c3deba816f5be091
40220 Author: Stefan Roese <sr@denx.de>
40221 Date: Tue Feb 20 13:21:57 2007 +0100
40222
40223 [PATCH] Fix relocation problem with "new" get_dev() function
40224
40225 This patch enables the "new" get_dev() function for block devices
40226 introduced by Grant Likely to be used on systems that still suffer
40227 from the relocation problems (manual relocation neede because of
40228 problems with linker script).
40229
40230 Hopefully we can resolve this relocation issue soon for all platform
40231 so we don't need this additional code anymore.
40232
40233 Signed-off-by: Stefan Roese <sr@denx.de>
40234
40235 commit d93e2212f962668b3dce091ff5edc33f2347fe37
40236 Author: Stefan Roese <sr@denx.de>
40237 Date: Tue Feb 20 13:17:42 2007 +0100
40238
40239 [PATCH] Update SystemACE driver for 16bit access
40240
40241 This patch removes some problems when the Xilinx SystemACE driver
40242 is used with 16bit access on an big endian platform (like the
40243 AMCC Katmai).
40244
40245 Signed-off-by: Stefan Roese <sr@denx.de>
40246
40247 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
40248 Author: Stefan Roese <sr@denx.de>
40249 Date: Tue Feb 20 13:15:40 2007 +0100
40250
40251 [PATCH] Clean up Katmai (440SPe) linker script
40252
40253 Signed-off-by: Stefan Roese <sr@denx.de>
40254
40255 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
40256 Author: Stefan Roese <sr@denx.de>
40257 Date: Tue Feb 20 10:57:08 2007 +0100
40258
40259 [PATCH] Add support for the AMCC Katmai (440SPe) eval board
40260
40261 Signed-off-by: Stefan Roese <sr@denx.de>
40262
40263 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
40264 Author: Stefan Roese <sr@denx.de>
40265 Date: Tue Feb 20 10:51:26 2007 +0100
40266
40267 [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
40268
40269 This patch switches to the desired I2C bus when the date/dtt
40270 commands are called. This can be configured using the
40271 CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
40272
40273 Signed-off-by: Stefan Roese <sr@denx.de>
40274
40275 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
40276 Author: Stefan Roese <sr@denx.de>
40277 Date: Tue Feb 20 10:43:34 2007 +0100
40278
40279 [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
40280
40281 This patch adds support for the DDR2 controller used on the
40282 440SP and 440SPe. It is tested on the Katmai (440SPe) eval
40283 board and works fine with the following DIMM modules:
40284
40285 - Corsair CM2X512-5400C4 (512MByte per DIMM)
40286 - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
40287 - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
40288
40289 This patch also adds the nice functionality to dynamically
40290 create the TLB entries for the SDRAM (tlb.c). So we should
40291 never run into such problems with wrong (too short) TLB
40292 initialization again on these platforms.
40293
40294 Signed-off-by: Stefan Roese <sr@denx.de>
40295
40296 commit 36d830c9830379045f5daa9f542ac1c990c70068
40297 Author: Stefan Roese <sr@denx.de>
40298 Date: Tue Feb 20 10:35:42 2007 +0100
40299
40300 [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
40301
40302 Since the existing 4xx SPD SDRAM initialization routines for the
40303 405 SDRAM controller and the 440 DDR controller don't have much in
40304 common this patch splits both drivers into different files.
40305
40306 This is in preparation for the 440 DDR2 controller support (440SP/e).
40307
40308 Signed-off-by: Stefan Roese <sr@denx.de>
40309
40310 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
40311 Author: Stefan Roese <sr@denx.de>
40312 Date: Tue Feb 20 10:27:08 2007 +0100
40313
40314 [PATCH] PPC4xx: Add support for multiple I2C busses
40315
40316 This patch adds support for multiple I2C busses on the PPC4xx
40317 platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
40318 to make use of this feature.
40319
40320 It also merges the 405 and 440 i2c header files into one common
40321 file 4xx_i2c.h.
40322
40323 Also the 4xx i2c reset procedure is reworked since I experienced
40324 some problems with the first access on the 440SPe Katmai board.
40325
40326 Signed-off-by: Stefan Roese <sr@denx.de>
40327
40328 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
40329 Author: Grant Likely <grant.likely@secretlab.ca>
40330 Date: Tue Feb 20 09:05:45 2007 +0100
40331
40332 [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
40333
40334 Block device read/write is anonymous data; there is no need to use a
40335 typed pointer. void * is fine. Also add a hook for block_read functions
40336
40337 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40338
40339 commit 53758fa20e935cc87eeb0519ed365df753a6f289
40340 Author: Grant Likely <grant.likely@secretlab.ca>
40341 Date: Tue Feb 20 09:05:38 2007 +0100
40342
40343 [PATCH 8_9] Add block_write hook to block_dev_desc_t
40344
40345 Preparation for future patches which support block device writing
40346
40347 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40348
40349 commit f4852ebe6ca946a509667eb68be42026f837be76
40350 Author: Grant Likely <grant.likely@secretlab.ca>
40351 Date: Tue Feb 20 09:05:31 2007 +0100
40352
40353 [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
40354
40355 Register read/write does not need to be wrapped in a full function. The
40356 patch replaces them with macros.
40357
40358 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40359
40360 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
40361 Author: Grant Likely <grant.likely@secretlab.ca>
40362 Date: Tue Feb 20 09:05:23 2007 +0100
40363
40364 [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
40365
40366 The code in this file is not a command; it is a device driver. Put it in
40367 the correct place. There are zero functional changes in this patch, it
40368 only moves the file.
40369
40370 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40371
40372 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
40373 Author: Grant Likely <grant.likely@secretlab.ca>
40374 Date: Tue Feb 20 09:05:16 2007 +0100
40375
40376 [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
40377
40378 This patch is in preparation of additional changes to the sysace driver.
40379 May as well take this opportunity to fixup the inconsistent whitespace since
40380 this file is about to undergo major changes anyway.
40381
40382 There are zero functional changes in this patch. It only cleans up the
40383 the whitespace.
40384
40385 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40386
40387 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
40388 Author: Grant Likely <grant.likely@secretlab.ca>
40389 Date: Tue Feb 20 09:05:07 2007 +0100
40390
40391 [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
40392
40393 isprint is already defined in ctype.c
40394
40395 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40396
40397 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
40398 Author: Grant Likely <grant.likely@secretlab.ca>
40399 Date: Tue Feb 20 09:05:00 2007 +0100
40400
40401 [PATCH 3_9] Move buffer print code from md command to common function
40402
40403 Printing a buffer is a darn useful thing. Move the buffer print code
40404 into print_buffer() in lib_generic/
40405
40406 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40407
40408 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
40409 Author: Grant Likely <grant.likely@secretlab.ca>
40410 Date: Tue Feb 20 09:04:52 2007 +0100
40411
40412 [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
40413
40414 Change the xilinx device drivers and board code to include config.h
40415 instead of xparameters.h directly. config.h always includes the
40416 correct xparameters file. This change reduces the posibility of
40417 including the wrong file when adding a new xilinx board port
40418
40419 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40420
40421 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
40422 Author: Grant Likely <grant.likely@secretlab.ca>
40423 Date: Tue Feb 20 09:04:34 2007 +0100
40424
40425 [PATCH 1_4] Merge common get_dev() routines for block devices
40426
40427 Each of the filesystem drivers duplicate the get_dev routine. This change
40428 merges them into a single function in part.c
40429
40430 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40431
40432 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
40433 Author: Wolfgang Denk <wd@pollux.denx.de>
40434 Date: Mon Feb 19 23:09:51 2007 +0100
40435
40436 MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
40437 as root file system images.
40438
40439 commit 489c696ae7211218961d159e43e722d74c36fcbc
40440 Author: Sergei Poselenov <sposelenov@emcraft.com>
40441 Date: Wed Feb 14 14:30:28 2007 +0300
40442
40443 MCC200: Extensions to Software Update Mechanism
40444
40445 Update / extend Software Update Mechanism for MCC200 board:
40446
40447 - Add support for rootfs image added. The environment variables
40448 "rootfs_st" and "rootfs_nd" can be used to override the default
40449 values of the image start and end.
40450 - Remove excessive key check code.
40451 - Code cleanup.
40452
40453 commit 4be23a12f23f1372634edc3215137b09768b7949
40454 Author: Stefan Roese <sr@denx.de>
40455 Date: Mon Feb 19 08:23:15 2007 +0100
40456
40457 [PATCH] Update Sequoia EBC configuration (NOR FLASH)
40458
40459 As spotted by Matthias Fuchs, the READY input should not be
40460 enabled for the NOR FLASH on the Sequoia board.
40461
40462 Signed-off-by: Stefan Roese <sr@denx.de>
40463
40464 commit 2605e90bf676d48123afe5719a846d2b52b24aac
40465 Author: Heiko Schocher <hs@pollux.denx.de>
40466 Date: Fri Feb 16 07:57:42 2007 +0100
40467
40468 [PATCH] Added support for the jupiter board.
40469
40470 Signed-off-by: Heiko Schocher <hs@denx.de>
40471
40472 commit 497d012e5be0194e1084073d0081eb1a844796b2
40473 Author: Gary Jennejohn <garyj@pollux.denx.de>
40474 Date: Mon Feb 12 13:11:50 2007 +0100
40475
40476 LPC2292: patch from Siemens.
40477
40478 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
40479 Author: Stefan Roese <sr@denx.de>
40480 Date: Sat Feb 10 08:49:31 2007 +0100
40481
40482 [PATCH] Add missing p3mx.h file to repository (ups)
40483
40484 Signed-off-by: Stefan Roese <sr@denx.de>
40485
40486 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
40487 Author: Bartlomiej Sieka <tur@semihalf.com>
40488 Date: Fri Feb 9 10:45:42 2007 +0100
40489
40490 [Motion-PRO] Preliminary support for the Motion-PRO board.
40491
40492 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
40493 Author: Stefan Roese <sr@denx.de>
40494 Date: Wed Feb 7 16:51:08 2007 +0100
40495
40496 [PATCH] Update some AMCC 4xx board config files (set initrd_high)
40497
40498 Some boards that can have more than 768MBytes of SDRAM need to
40499 set "initrd_high", so that the initrd can be accessed by the
40500 Linux kernel.
40501
40502 Signed-off-by: Stefan Roese <sr@denx.de>
40503
40504 commit 7372ca68227930d03cffa548310524cad5b96733
40505 Author: Stefan Roese <sr@denx.de>
40506 Date: Fri Feb 2 12:44:22 2007 +0100
40507
40508 [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
40509
40510 Previously the strapping DCR/SDR was read to determine if the internal PCI
40511 arbiter is enabled or not. This strapping bit can be overridden, so now
40512 the current status is read from the correct DCR/SDR register.
40513
40514 Signed-off-by: Stefan Roese <sr@denx.de>
40515
40516 commit 2aa54f651a42d198673318f07a20c89a43e4d197
40517 Author: Stefan Roese <sr@denx.de>
40518 Date: Fri Feb 2 12:42:08 2007 +0100
40519
40520 [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
40521
40522 Signed-off-by: Stefan Roese <sr@denx.de>
40523
40524 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
40525 Author: Stefan Roese <sr@denx.de>
40526 Date: Thu Feb 1 13:22:41 2007 +0100
40527
40528 [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
40529
40530 When PCI PNP is enabled the pci pnp configuration routine is called
40531 which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
40532 problems with some PCI cards. For now disable the PCI PNP configuration.
40533
40534 Signed-off-by: Stefan Roese <sr@denx.de>
40535
40536 commit 2902fadade3be7659467e8d074048c6b7068f5c0
40537 Author: Stefan Roese <sr@denx.de>
40538 Date: Wed Jan 31 16:56:10 2007 +0100
40539
40540 [PATCH] Update 440EPx/440GRx cpu detection
40541
40542 Signed-off-by: Stefan Roese <sr@denx.de>
40543
40544 commit d5ea287b02a6945c3977410e364a879dd1a555c8
40545 Author: Stefan Roese <sr@denx.de>
40546 Date: Wed Jan 31 16:38:04 2007 +0100
40547
40548 [PATCH] Update esd cpci5200 files
40549
40550 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
40551
40552 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
40553 Author: Stefan Roese <sr@denx.de>
40554 Date: Wed Jan 31 16:37:34 2007 +0100
40555
40556 [PATCH] Add support for esd mecp5200 board
40557
40558 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
40559
40560 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
40561 Author: Stefan Roese <sr@denx.de>
40562 Date: Wed Jan 31 12:38:50 2007 +0100
40563
40564 [PATCH] Remove unneccessary yellowstone board config file
40565
40566 Signed-off-by: Stefan Roese <sr@denx.de>
40567
40568 commit e802594b6fa1b166308820c276b96dc0d7cc731c
40569 Author: Stefan Roese <sr@denx.de>
40570 Date: Tue Jan 30 17:06:10 2007 +0100
40571
40572 [PATCH] Update Sequoia (440EPx) config file
40573
40574 The config file now handles the 2nd target, the Rainier (440GRx)
40575 evaluation board better. Additionally the PPC input clock was
40576 adjusted to match the correct value of 33.0 MHz.
40577
40578 Signed-off-by: Stefan Roese <sr@denx.de>
40579
40580 commit 700200c67e73b83751418abe7815840dca8fd6cb
40581 Author: Stefan Roese <sr@denx.de>
40582 Date: Tue Jan 30 17:04:19 2007 +0100
40583
40584 [PATCH] Merge Yosemite & Yellowstone board ports
40585
40586 Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
40587 share one config file and all board specific files. This way we
40588 don't have to maintain two different sets of files for nearly
40589 identical boards.
40590
40591 Signed-off-by: Stefan Roese <sr@denx.de>
40592
40593 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
40594 Author: Stefan Roese <sr@denx.de>
40595 Date: Tue Jan 30 15:01:49 2007 +0100
40596
40597 [PATCH] Update Prodrive SCPU (PDNB3 variant) board
40598
40599 SCPU doesn't use redundant environment in flash.
40600
40601 Signed-off-by: Stefan Roese <sr@denx.de>
40602
40603 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
40604 Author: Stefan Roese <sr@denx.de>
40605 Date: Tue Jan 30 12:51:07 2007 +0100
40606
40607 [PATCH] alpr: Update alpr board config file
40608
40609 Signed-off-by: Stefan Roese <sr@denx.de>
40610
40611 commit f8db84f132b1e335f20f96138a1f09ed97b08664
40612 Author: Wolfgang Denk <wd@pollux.denx.de>
40613 Date: Tue Jan 30 00:50:40 2007 +0100
40614
40615 LPC2292 SODIMM port coding style cleanup.
40616
40617 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
40618 Author: Gary Jennejohn <garyj@pollux.denx.de>
40619 Date: Wed Jan 24 12:16:56 2007 +0100
40620
40621 Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
40622
40623 commit 2daf046ba627f85f44195815778140039636244e
40624 Author: Bartlomiej Sieka <tur@semihalf.com>
40625 Date: Tue Jan 23 17:22:06 2007 +0100
40626
40627 [iDMR] Add MTD and JFFS2 support, also add default partition definition.
40628
40629 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
40630 Author: Bartlomiej Sieka <tur@semihalf.com>
40631 Date: Tue Jan 23 14:21:14 2007 +0100
40632
40633 [iDMR] Flash driver on initialisation write-protects some sectors,
40634 currently sectors 0-3. Sector 3 does not need to be protected, though
40635 (U-boot occupies sectors 0-1 and the environment sector 2). This commit
40636 fixes this, i.e., only sectors 0-2 are protected.
40637
40638 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
40639 Author: Bartlomiej Sieka <tur@semihalf.com>
40640 Date: Tue Jan 23 14:11:22 2007 +0100
40641
40642 [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
40643 "mii device" results in "Unexpected exception"). Fixing this properly
40644 requires some clean-up in the FEC drivers infrastructure for ColdFire, so
40645 this commit disables MII commads for now.
40646
40647 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
40648 Author: Bartlomiej Sieka <tur@semihalf.com>
40649 Date: Tue Jan 23 13:25:22 2007 +0100
40650
40651 [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
40652 Identification Register (CIR).
40653
40654 commit fdef388758506765d4d6a7155c8f1584c63ff581
40655 Author: roy zang <tie-fei.zang@freescale.com>
40656 Date: Mon Jan 22 13:19:21 2007 +0800
40657
40658 use CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
40659 The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
40660 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
40661 mpc7448hpc2 board.
40662
40663 commit a4012396645533aef218354eeba754dff0deace8
40664 Author: Wolfgang Denk <wd@pollux.denx.de>
40665 Date: Fri Jan 19 23:08:39 2007 +0100
40666
40667 Minor code cleanup.
40668
40669 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
40670 Author: Heiko Schocher <hs@pollux.denx.de>
40671 Date: Fri Jan 19 19:57:10 2007 +0100
40672
40673 [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
40674
40675 Signed-off-by: Heiko Schocher <hs@denx.de>
40676
40677 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
40678 Author: Heiko Schocher <hs@pollux.denx.de>
40679 Date: Fri Jan 19 18:05:26 2007 +0100
40680
40681 [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
40682 if you must swap the bytes between reading/writing.
40683 (Needed for the SC3 board)
40684
40685 Signed-off-by: Heiko Schocher <hs@denx.de>
40686
40687 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
40688 Author: Stefan Roese <sr@denx.de>
40689 Date: Thu Jan 18 16:05:47 2007 +0100
40690
40691 [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
40692
40693 Signed-off-by: Stefan Roese <sr@denx.de>
40694
40695 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
40696 Author: Stefan Roese <sr@denx.de>
40697 Date: Thu Jan 18 11:54:52 2007 +0100
40698
40699 [PATCH] Update Prodrive P3Mx support
40700
40701 Signed-off-by: Stefan Roese <sr@denx.de>
40702
40703 commit 34167a36c29ee946b727465db5c014746a08e978
40704 Author: Stefan Roese <sr@denx.de>
40705 Date: Thu Jan 18 11:48:10 2007 +0100
40706
40707 [PATCH] Add missing Taishan config file
40708
40709 Signed-off-by: Stefan Roese <sr@denx.de>
40710
40711 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
40712 Author: Heiko Schocher <hs@pollux.denx.de>
40713 Date: Thu Jan 18 11:28:51 2007 +0100
40714
40715 [PATCH] Fix: Compilerwarnings for SC3 board.
40716 The EBC Configuration Register is now by CFG_EBC_CFG definable
40717 Added JFFS2 support for the SC3 board.
40718
40719 Signed-off-by: Heiko Schocher <hs@denx.de>
40720
40721 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
40722 Author: Stefan Roese <sr@denx.de>
40723 Date: Thu Jan 18 10:25:34 2007 +0100
40724
40725 [PATCH] Add support for AMCC Taishan PPC440GX eval board
40726
40727 Signed-off-by: Stefan Roese <sr@denx.de>
40728
40729 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
40730 Author: Wolfgang Denk <wd@pollux.denx.de>
40731 Date: Tue Jan 16 18:30:50 2007 +0100
40732
40733 Raname solidcard3 into sc3; add redundant env for sc3
40734
40735 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
40736 Author: Wolfgang Denk <wd@pollux.denx.de>
40737 Date: Tue Jan 16 12:46:35 2007 +0100
40738
40739 Update default environment for Solidcard3
40740
40741 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
40742 Author: Stefan Roese <sr@denx.de>
40743 Date: Mon Jan 15 09:46:29 2007 +0100
40744
40745 [PATCH] Fix 440SPe rev B detection from previous patch
40746
40747 Signed-off-by: Stefan Roese <sr@denx.de>
40748
40749 commit a443d31410c571ee8f970da819a44d698fdd6b1f
40750 Author: Heiko Schocher <hs@pollux.denx.de>
40751 Date: Sun Jan 14 13:35:31 2007 +0100
40752
40753 [FIX] correct I2C Writes for the LM81 Sensor.
40754
40755 Signed-off-by: Heiko Schocher <hs@denx.de>
40756
40757 commit 0bba5452835f19a61204edcda3a58112fd8e2208
40758 Author: Wolfgang Denk <wd@pollux.denx.de>
40759 Date: Sat Jan 13 11:17:10 2007 +0100
40760
40761 Undo commit 3033ebb2: reset command does not take any arguments
40762
40763 Haiying Wang's modification to the reset command was broken, undo it.
40764
40765 Signed-off-by: Wolfgang Denk <wd@denx.de>
40766
40767 commit 95981778cff0038fd9941044d6a3eda810e33258
40768 Author: Stefan Roese <sr@denx.de>
40769 Date: Sat Jan 13 08:01:03 2007 +0100
40770
40771 [PATCH] Update 440SP(e) cpu revisions
40772
40773 Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
40774
40775 Signed-off-by: Stefan Roese <sr@denx.de>
40776
40777 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
40778 Author: Stefan Roese <sr@denx.de>
40779 Date: Sat Jan 13 07:59:56 2007 +0100
40780
40781 [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
40782
40783 Now the board revision and the current PCI bus speed are printed after
40784 the board message.
40785
40786 Also the EBC initialising is now done via defines in the board config
40787 file.
40788
40789 Signed-off-by: Stefan Roese <sr@denx.de>
40790
40791 commit 36adff362c2c0141ff8a810d42a7e478f779130f
40792 Author: Stefan Roese <sr@denx.de>
40793 Date: Sat Jan 13 07:59:19 2007 +0100
40794
40795 [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
40796
40797 Now the board revision and the current PCI bus speed are printed after
40798 the board message.
40799
40800 Also the EBC initialising is now done via defines in the board config
40801 file.
40802
40803 Signed-off-by: Stefan Roese <sr@denx.de>
40804
40805 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
40806 Author: Stefan Roese <sr@denx.de>
40807 Date: Sat Jan 13 07:57:51 2007 +0100
40808
40809 [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
40810
40811 Now the board revision and the current PCI bus speed are printed after
40812 the board message.
40813
40814 Signed-off-by: Stefan Roese <sr@denx.de>
40815
40816 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
40817 Author: Heiko Schocher <hs@pollux.denx.de>
40818 Date: Thu Jan 11 15:44:44 2007 +0100
40819
40820 Added support for the SOLIDCARD III board from Eurodesign
40821
40822 Signed-off-by: Heiko Schocher <hs@denx.de>
40823
40824 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
40825 Author: Reinhard Thies <Reinhard.Thies@web.de>
40826 Date: Wed Jan 10 14:41:14 2007 +0100
40827
40828 Adjusted default environment for cam5200 board.
40829
40830 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
40831 Author: Wolfgang Denk <wd@pollux.denx.de>
40832 Date: Wed Jan 10 15:35:52 2007 +0100
40833
40834 Update CHANGELOG
40835
40836 commit 787fa15860a57833e50bd30555079a9cd4e519b8
40837 Author: Wolfgang Denk <wd@pollux.denx.de>
40838 Date: Wed Jan 10 01:28:39 2007 +0100
40839
40840 Fix auto_update for MCC200 board.
40841
40842 The invocation of do_auto_update() is moved to the end of the
40843 misc_init_r() function, after the flash mappings have been
40844 initialized. Please find attached a patch that implements that
40845 change.
40846
40847 Also correct the decoding of the keypad status. With this update, the
40848 key that will trigger the update is Column 2, Row 2.
40849
40850 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
40851 Author: Marian Balakowicz <m8@semihalf.com>
40852 Date: Wed Jan 10 00:26:15 2007 +0100
40853
40854 CAM5200 flash driver modifications:
40855 - use CFI driver (replaces custom flash driver) for main 'cam5200' target
40856 - add second build target 'cam5200_niosflash' which still uses custom driver
40857
40858 commit 67fea022fa957f59653b5238c7496f80a6b70432
40859 Author: Markus Klotzbuecher <mk@denx.de>
40860 Date: Tue Jan 9 16:02:48 2007 +0100
40861
40862 SPC1920: cleanup memory contoller setup
40863
40864 commit 8fc2102faa23593c80381437c09f7745a14deb40
40865 Author: Markus Klotzbuecher <mk@denx.de>
40866 Date: Tue Jan 9 14:57:14 2007 +0100
40867
40868 Fix the cpu speed setup to work with all boards.
40869
40870 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
40871 Author: Markus Klotzbuecher <mk@denx.de>
40872 Date: Tue Jan 9 14:57:13 2007 +0100
40873
40874 SPC1920: add support for the FM18L08 Ramtron FRAM
40875
40876 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
40877 Author: Markus Klotzbuecher <mk@denx.de>
40878 Date: Tue Jan 9 14:57:13 2007 +0100
40879
40880 SPC1920: update the HPI register addresses to work with the second
40881 generation of hardware
40882
40883 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
40884 Author: Markus Klotzbuecher <mk@creamnet.de>
40885 Date: Tue Jan 9 14:57:13 2007 +0100
40886
40887 Miscellanious spc1920 related cleanups
40888
40889 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
40890 Author: Markus Klotzbuecher <mk@denx.de>
40891 Date: Tue Jan 9 14:57:12 2007 +0100
40892
40893 SPC1920 GO/NOGO led should be set to color red in U-Boot
40894
40895 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
40896 Author: Markus Klotzbuecher <mk@creamnet.de>
40897 Date: Tue Jan 9 14:57:12 2007 +0100
40898
40899 Add support for the DS3231 RTC
40900
40901 commit 8139567b60d678584b05f0718a681f2047c5e14f
40902 Author: Markus Klotzbuecher <mk@creamnet.de>
40903 Date: Tue Jan 9 14:57:11 2007 +0100
40904
40905 SMC1 uses external CLK4 instead of BRG on spc1920
40906
40907 commit d8d9de1a02fbd880b613d607143d1f57342affc7
40908 Author: Markus Klotzbuecher <mk@creamnet.de>
40909 Date: Tue Jan 9 14:57:10 2007 +0100
40910
40911 Update the SPC1920 CMB PLD driver
40912
40913 commit 3f34f869162750e5e999fd140f884f5de952bcfe
40914 Author: Markus Klotzbuecher <mk@creamnet.de>
40915 Date: Tue Jan 9 14:57:10 2007 +0100
40916
40917 Add / enable I2C support on the spc1920 board
40918
40919 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
40920 Author: Markus Klotzbuecher <mk@creamnet.de>
40921 Date: Tue Jan 9 14:57:10 2007 +0100
40922
40923 Add support for the tms320671x host port interface (HPI)
40924
40925 commit f4eb54529bb3664c3a562e488b460fe075f79d67
40926 Author: Wolfgang Denk <wd@pollux.denx.de>
40927 Date: Sun Jan 7 00:13:11 2007 +0100
40928
40929 Prepare for release 1.2.0
40930
40931 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
40932 Author: Stefan Roese <sr@denx.de>
40933 Date: Sat Jan 6 15:58:09 2007 +0100
40934
40935 [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
40936
40937 This patch fixes a problem with an incorrect setup for the refresh
40938 timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
40939
40940 Signed-off-by: Stefan Roese <sr@denx.de>
40941
40942 commit f16c1da9577f06c5fc08651a4065537407de4635
40943 Author: Stefan Roese <sr@denx.de>
40944 Date: Sat Jan 6 15:56:13 2007 +0100
40945
40946 [PATCH] Update ALPR board files
40947
40948 This update brings the ALPR board support to the newest version.
40949 It also fixes a problem with the NAND driver.
40950
40951 Signed-off-by: Stefan Roese <sr@denx.de>
40952
40953 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
40954 Author: Stefan Roese <sr@denx.de>
40955 Date: Fri Jan 5 11:46:05 2007 +0100
40956
40957 [PATCH] nand: Fix problem with oobsize calculation
40958
40959 Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
40960
40961 The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
40962 returns a 0x15. In the code fragment below bits [1:0] determine the
40963 page size, it is ANDed via "(extid & 0x3)" then shifted out. The
40964 next field is also ANDed with 0x3. However this is a one bit field
40965 as defined in the Hynix and Samsung parts in the 4th ID byte that
40966 determins the oobsize, not a two bit field. It works on Samsung as
40967 bits[3:2] are 01. However for the Hynix there is a 11 in these two
40968 bits, so the oob size gets messed up.
40969
40970 I checked the correct linux code and the suggested fix from Brian is
40971 also available in the linux nand mtd driver.
40972
40973 Signed-off-by: Stefan Roese <sr@denx.de>
40974
40975 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
40976 Author: Stefan Roese <sr@denx.de>
40977 Date: Fri Jan 5 10:40:36 2007 +0100
40978
40979 [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
40980
40981 This fix will make the MAL burst disabling patch for the Linux
40982 EMAC driver obsolete.
40983
40984 Signed-off-by: Stefan Roese <sr@denx.de>
40985
40986 commit 023889838282b6237b401664f22dd22dfba2c066
40987 Author: Stefan Roese <sr@denx.de>
40988 Date: Fri Jan 5 10:38:05 2007 +0100
40989
40990 [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
40991
40992 This code will optimize the DDR2 controller setup on a board specific
40993 basis.
40994
40995 Note: This code doesn't work right now on the NAND booting image for the
40996 Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
40997
40998 Signed-off-by: Stefan Roese <sr@denx.de>
40999
41000 commit cce4acbb68398634b8d011ed7bb0d12269c84230
41001 Author: Bartlomiej Sieka <tur@semihalf.com>
41002 Date: Thu Dec 28 19:08:21 2006 +0100
41003
41004 Few V38B changes:
41005 - fix a typo in V38B config file
41006 - move watchdog initialisation earlier in the boot process
41007 - add "wdt=off" to default kernel command line (disables kernel watchdog)
41008
41009 commit 92eb729bad876725aeea908d2addba0800620840
41010 Author: Wolfgang Denk <wd@pollux.denx.de>
41011 Date: Wed Dec 27 01:26:13 2006 +0100
41012
41013 Fix bug in adaption of Stefano Babic's CFI driver patch.
41014
41015 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
41016 Author: Wolfgang Denk <wd@pollux.denx.de>
41017 Date: Sun Dec 24 01:42:57 2006 +0100
41018
41019 Minor code cleanup.
41020
41021 commit d784fdb05900ada3686d5778783e1fb328e9fb66
41022 Author: Stefano Babic <sbabic@denx.de>
41023 Date: Tue Dec 12 00:22:42 2006 +0100
41024
41025 Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
41026
41027 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
41028 Author: Stefan Roese <sr@denx.de>
41029 Date: Fri Dec 22 14:29:40 2006 +0100
41030
41031 [PATCH] Fix sequoia flash autodetection (finally correct)
41032
41033 Now 32MByte and 64MByte FLASH is know to work and other
41034 configurations should work too.
41035
41036 Signed-off-by: Stefan Roese <sr@denx.de>
41037
41038 commit 82e5236a8b719543643fd26d5827938ab2b94818
41039 Author: Wolfgang Denk <wd@pollux.denx.de>
41040 Date: Fri Dec 22 10:30:26 2006 +0100
41041
41042 Minor code cleanup; update CHANGELOG.
41043
41044 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
41045 Author: Heiko Schocher <hs@pollux.denx.de>
41046 Date: Thu Dec 21 17:17:02 2006 +0100
41047
41048 Added support for the TQM8272 board from TQ
41049
41050 Signed-off-by: Heiko Schocher <hs@denx.de>
41051
41052 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
41053 Author: Heiko Schocher <hs@pollux.denx.de>
41054 Date: Thu Dec 21 16:14:48 2006 +0100
41055
41056 [PATCH] Add support for the UC101 board from MAN.
41057
41058 Signed-off-by: Heiko Schocher <hs@denx.de>
41059
41060 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
41061 Author: Bartlomiej Sieka <tur@semihalf.com>
41062 Date: Wed Dec 20 00:29:43 2006 +0100
41063
41064 Fix to make the baudrate changes immediate for the MCF52x2 family.
41065
41066 commit daa6e418bcc0c717752e8de939c213c790286096
41067 Author: Bartlomiej Sieka <tur@semihalf.com>
41068 Date: Wed Dec 20 00:27:32 2006 +0100
41069
41070 Preliminary support for the iDMR board (ColdFire).
41071
41072 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
41073 Author: Andrei Safronov <safronov@pollux.denx.de>
41074 Date: Fri Dec 8 16:23:08 2006 +0100
41075
41076 automatic update mechanism
41077
41078 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
41079 Author: roy zang <tie-fei.zang@freescale.com>
41080 Date: Mon Dec 4 17:56:59 2006 +0800
41081
41082 Slight code clean up.
41083 Add comments, delete duplicate define and remove spaces.
41084 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41085
41086 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
41087 Author: roy zang <tie-fei.zang@freescale.com>
41088 Date: Mon Dec 4 17:54:21 2006 +0800
41089
41090 Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
41091 multiplier table can not refect the real PLL clock behavior of these
41092 processors. Please refer to the hardware specification for detailed
41093 information of the corresponding processors.
41094 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41095
41096 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
41097 Author: roy zang <tie-fei.zang@freescale.com>
41098 Date: Mon Dec 4 14:46:23 2006 +0800
41099
41100 Remove the static MAC address, ip address, server ip, netmask and
41101 gateway ip for network setting.
41102 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41103
41104 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
41105 Author: roy zang <tie-fei.zang@freescale.com>
41106 Date: Mon Dec 4 14:33:08 2006 +0800
41107
41108 Remove the duplicate memory test code for mpc744ihpc2 board.
41109 If a memory test is needed, please use the functions in
41110 post/memory.c or memtest command.
41111 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41112
41113 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
41114 Author: roy zang <tie-fei.zang@freescale.com>
41115 Date: Fri Dec 1 19:01:25 2006 +0800
41116
41117 Fix the exception occuring in RAM table search issue.
41118 The original search_one_table() function code can only processes the search
41119 for the exception occurring in FLASH/ROM, because the exception and fixup
41120 table usually locate in FLASH. If the exception address is also in
41121 FLASH, it will be OK.
41122 If the exception occurs in RAM, after the u-boot relocation, a
41123 relocation offset should be added.
41124
41125 clean up the code in cpu/74xx_7xx/cpu.c
41126
41127 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41128
41129 commit ee311214e0d216f904feea269599d0934bf71f23
41130 Author: roy zang <tie-fei.zang@freescale.com>
41131 Date: Fri Dec 1 11:47:36 2006 +0800
41132
41133 Clean up the code according to codestyle:
41134 (1) remove some C++ comments.
41135 (2) remove trailing white space.
41136 (3) remove trailing empty line.
41137 (4) Indentation by table.
41138 (5) remove {} in one line condition.
41139 (6) add space before '(' in function call.
41140 Remove some weird printf () output.
41141 Add necessary comments.
41142 Modified Makefile to support building in a separate directory.
41143
41144 commit dd520bf314c7add4183c5191692180f576f96b60
41145 Author: Wolfgang Denk <wd@pollux.denx.de>
41146 Date: Thu Nov 30 18:02:20 2006 +0100
41147
41148 Code cleanup.
41149
41150 commit 8d9a8610b8256331132227e9e6585c6bd5742787
41151 Author: Wolfgang Denk <wd@pollux.denx.de>
41152 Date: Thu Nov 30 01:54:07 2006 +0100
41153
41154 Code cleanup. Update CHANGELOG.
41155
41156 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
41157 Author: Grant Likely <grant.likely@secretlab.ca>
41158 Date: Wed Nov 29 16:23:42 2006 +0100
41159
41160 [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
41161
41162 The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
41163 not the XLB frequency.
41164
41165 This patch depends on the previous patches for MPC52xx device tree support
41166
41167 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41168 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
41169
41170 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
41171 Author: Stefan Roese <sr@denx.de>
41172 Date: Wed Nov 29 15:42:37 2006 +0100
41173
41174 [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
41175
41176 This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
41177 and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
41178 quite similar and share the same board directory "prodrive/p3mx"
41179 and the same config file "p3mx.h".
41180
41181 Signed-off-by: Stefan Roese <sr@denx.de>
41182
41183 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
41184 Author: Stefan Roese <sr@denx.de>
41185 Date: Wed Nov 29 12:53:15 2006 +0100
41186
41187 [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
41188
41189 In the bootvx command the load address was only read from the env
41190 variable "loadaddr" and not optionally passed as paramter as described
41191 in the help. This is fixed with this patch. The behaviour is now the
41192 same as in the bootelf command.
41193
41194 Signed-off-by: Stefan Roese <sr@denx.de>
41195
41196 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
41197 Author: Stefan Roese <sr@denx.de>
41198 Date: Wed Nov 29 12:03:57 2006 +0100
41199
41200 [PATCH] include/ppc440.h minor error affecting interrupts
41201
41202 Fixed include/ppc440.c for UIC address Bug
41203
41204 Corrects bug affecting the addresses for the universal interrupt
41205 controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
41206
41207 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
41208 Signed-off-by: Stefan Roese <sr@denx.de>
41209
41210 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
41211 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41212 Date: Tue Nov 28 16:17:27 2006 -0600
41213
41214 Make fsl-i2c not conflict with SOFT I2C
41215
41216 Signed-off-by: Timur Tabi <timur@freescale.com>
41217
41218 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
41219 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41220 Date: Tue Nov 28 16:17:18 2006 -0600
41221
41222 Fix I2C master address initialization.
41223
41224 Signed-off-by: Timur Tabi <timur@freescale.com>
41225
41226 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
41227 Author: Kim Phillips <kim.phillips@freescale.com>
41228 Date: Tue Nov 28 23:31:19 2006 -0600
41229
41230 Assign maintainers for mpc8349emds and mpc8360emds
41231
41232 Dave for mpc8360emds, and me for mpc8349emds.
41233
41234 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
41235 Author: Kim Phillips <kim.phillips@freescale.com>
41236 Date: Tue Nov 28 23:28:33 2006 -0600
41237
41238 Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
41239
41240 give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
41241 since they are passed by reference to ucc_get_cmxucr_reg and assigned.
41242
41243 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
41244 Author: Timur Tabi <timur@freescale.com>
41245 Date: Tue Nov 28 12:09:35 2006 -0600
41246
41247 mpc83xx: Miscellaneous code style fixes
41248
41249 Implement various code style fixes and similar changes.
41250
41251 Signed-off-by: Timur Tabi <timur@freescale.com>
41252
41253 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
41254 Author: Stefan Roese <sr@denx.de>
41255 Date: Tue Nov 28 17:55:49 2006 +0100
41256
41257 [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
41258
41259 This patch adds the code and configuration necessary to boot with an
41260 arch/powerpc Linux kernel.
41261
41262 Signed-off-by: Grant Likely <grant.likely@gmail.com>
41263 Acked-by: Jon Loeliger <jdl@freescale.com>
41264
41265 commit e732faec95a83cb468b4850ae807c8301dde8f6a
41266 Author: Stefan Roese <sr@denx.de>
41267 Date: Tue Nov 28 16:09:24 2006 +0100
41268
41269 [PATCH] PPC4xx: 440SP Rev. C detection added
41270
41271 Signed-off-by: Stefan Roese <sr@denx.de>
41272
41273 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
41274 Author: Stefan Roese <sr@denx.de>
41275 Date: Tue Nov 28 11:04:45 2006 +0100
41276
41277 [PATCH] nand: Fix patch merge problem
41278
41279 Signed-off-by: Stefan Roese <sr@denx.de>
41280
41281 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
41282 Author: Stefan Roese <sr@denx.de>
41283 Date: Tue Nov 28 11:04:45 2006 +0100
41284
41285 [PATCH] nand: Fix patch merge problem
41286
41287 Signed-off-by: Stefan Roese <sr@denx.de>
41288
41289 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
41290 Author: Wolfgang Denk <wd@pollux.denx.de>
41291 Date: Mon Nov 27 22:53:53 2006 +0100
41292
41293 Update CHANGELOG
41294
41295 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
41296 Author: Stefan Roese <sr@denx.de>
41297 Date: Mon Nov 27 17:43:25 2006 +0100
41298
41299 [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
41300
41301 Patch below corrects the setting of the zmiifer register, it was
41302 overwritting the register rather than ORing the settings.
41303
41304 Signed-off-by: Neil Wilson <NWilson@airspan.com>
41305 Signed-off-by: Stefan Roese <sr@denx.de>
41306
41307 commit d1a72545296800b7e219f93104ad5836f0003d66
41308 Author: Stefan Roese <sr@denx.de>
41309 Date: Mon Nov 27 17:34:10 2006 +0100
41310
41311 [PATCH] Select NAND embedded environment from board configuration
41312
41313 The current NAND Bootloader setup forces the environment
41314 variables to be in line with the bootloader. This change
41315 enables the configuration to be made in the board include
41316 file instead so that it can be individually enabled.
41317
41318 Signed-off-by: Nick Spence <nick.spence@freescale.com>
41319 Signed-off-by: Stefan Roese <sr@denx.de>
41320
41321 commit 15784862857c3c2214498defcfed84ff137fb81e
41322 Author: Stefan Roese <sr@denx.de>
41323 Date: Mon Nov 27 17:22:19 2006 +0100
41324
41325 [PATCH] nand_wait() timeout fixes
41326
41327 Two fixes for the nand_wait() function in
41328 drivers/nand/nand_base.c:
41329
41330 1. Use correct timeouts. The original timeouts in Linux
41331 source are 400ms and 20ms not 40s and 20s
41332
41333 2. Return correct error value in case of timeout. 0 is
41334 interpreted as OK.
41335
41336 Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
41337 Signed-off-by: Stefan Roese <sr@denx.de>
41338
41339 commit da5553b095bf04f4f109ad7e565dae3aba47b230
41340 Author: Stefan Roese <sr@denx.de>
41341 Date: Mon Nov 27 17:04:06 2006 +0100
41342
41343 [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
41344
41345 This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
41346 arguments to bootm. It removes the getenv("disable_of") test that used
41347 to be used for this purpose.
41348
41349 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41350 Acked-by: Jon Loeliger <jdl@freescale.com>
41351
41352 commit a9398e018593782c5fa7d0741955fc1256b34c1e
41353 Author: Wolfgang Denk <wd@pollux.denx.de>
41354 Date: Mon Nov 27 15:32:42 2006 +0100
41355
41356 Minor code cleanup. Update CHANGELOG.
41357
41358 commit 1729b92cde575476684bffe819d0b7791b57bff2
41359 Author: Stefan Roese <sr@denx.de>
41360 Date: Mon Nov 27 14:52:04 2006 +0100
41361
41362 [PATCH] 4xx: Fix problem with board specific reset code (now for real)
41363
41364 Signed-off-by: Stefan Roese <sr@denx.de>
41365
41366 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
41367 Author: Stefan Roese <sr@denx.de>
41368 Date: Mon Nov 27 14:49:51 2006 +0100
41369
41370 [PATCH] alpr: remove unused board specific flash driver
41371
41372 Signed-off-by: Stefan Roese <sr@denx.de>
41373
41374 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
41375 Author: Stefan Roese <sr@denx.de>
41376 Date: Mon Nov 27 14:48:41 2006 +0100
41377
41378 [PATCH] 4xx: Fix problem with board specific reset code
41379
41380 Signed-off-by: Stefan Roese <sr@denx.de>
41381
41382 commit ec0c2ec725aec9524a177a77ce75559e644a931a
41383 Author: Stefan Roese <sr@denx.de>
41384 Date: Mon Nov 27 14:46:06 2006 +0100
41385
41386 [PATCH] Remove testing 4xx enet PHY setup
41387
41388 Signed-off-by: Stefan Roese <sr@denx.de>
41389
41390 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
41391 Author: Stefan Roese <sr@denx.de>
41392 Date: Mon Nov 27 14:12:17 2006 +0100
41393
41394 [PATCH] Update Prodrive ALPR board support (440GX)
41395
41396 Signed-off-by: Stefan Roese <sr@denx.de>
41397
41398 commit 58b485776698c3d71ec5a215e392123b4c15afa3
41399 Author: Markus Klotzbuecher <mk@denx.de>
41400 Date: Mon Nov 27 11:51:21 2006 +0100
41401
41402 Add a small README with information on the generic ohci driver.
41403
41404 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
41405 Author: Markus Klotzbuecher <mk@denx.de>
41406 Date: Mon Nov 27 11:46:46 2006 +0100
41407
41408 Fix some endianness issues related to the generic ohci driver
41409
41410 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
41411 Author: Markus Klotzbuecher <mk@denx.de>
41412 Date: Mon Nov 27 11:44:58 2006 +0100
41413
41414 Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
41415 to choose between the old and the generic OHCI drivers.
41416
41417 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
41418 Author: Markus Klotzbuecher <mk@denx.de>
41419 Date: Mon Nov 27 11:43:09 2006 +0100
41420
41421 Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
41422 and adapted board configs TQM5200 and yosemite accordingly. This commit
41423 also makes the maximum number of root hub ports configurable
41424 (CFG_USB_OHCI_MAX_ROOT_PORTS).
41425
41426 commit 78d620ebb5871d252270dedfad60c6568993b780
41427 Author: Wolfgang Denk <wd@atlas.denx.de>
41428 Date: Thu Nov 23 22:58:58 2006 +0100
41429
41430 Updates for TQM5200 modules:
41431 - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
41432 - simplify "udate" definitions
41433
41434 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
41435 Author: Stefan Roese <sr@denx.de>
41436 Date: Wed Nov 22 13:20:50 2006 +0100
41437
41438 [PATCH] PPC4xx start.S: Fix for processor errata
41439
41440 Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
41441 errata 1.12: 440_33 by moving patch up in code.
41442
41443 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
41444 Signed-off-by: Stefan Roese <sr@denx.de>
41445
41446 commit 4ef6251403f637841000e0fef9e832aa01339822
41447 Author: Stefan Roese <sr@denx.de>
41448 Date: Mon Nov 20 20:39:52 2006 +0100
41449
41450 [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
41451
41452 Signed-off-by: Stefan Roese <sr@denx.de>
41453
41454 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
41455 Author: Wolfgang Denk <wd@pollux.denx.de>
41456 Date: Mon Nov 20 10:28:30 2006 +0100
41457
41458 Update CHANGELOG
41459
41460 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
41461 Author: Stefan Roese <sr@denx.de>
41462 Date: Mon Nov 13 13:55:24 2006 +0100
41463
41464 [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
41465
41466 * Adds support for AMD command set Top Boot flash geometry reversal
41467 * Adds support for reading JEDEC Manufacturer ID and Device ID
41468 * Adds support for displaying command set, manufacturer id and
41469 device ids (flinfo)
41470 * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
41471 * Removes outdated change history (refer to git log instead)
41472
41473 Signed-off-by: Tolunay Orkun <listmember@orkun.us>
41474 Signed-off-by: Stefan Roese <sr@denx.de>
41475
41476 commit b21b511d4c50408f4853f46f06b601272196223f
41477 Author: Wolfgang Denk <wd@pollux.denx.de>
41478 Date: Sun Nov 12 21:13:23 2006 +0100
41479
41480 Update CHANGELOG
41481
41482 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
41483 Author: Bartlomiej Sieka <tur@semihalf.com>
41484 Date: Sat Nov 11 22:48:22 2006 +0100
41485
41486 Disable the watchdog in the default config for the V38B board.
41487
41488 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
41489 Author: Bartlomiej Sieka <tur@semihalf.com>
41490 Date: Sat Nov 11 22:43:00 2006 +0100
41491
41492 Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
41493 group is enabled for USB earlier (in cpu_init_f() instead of
41494 usb_lowlevel_init()).
41495
41496 commit 91650b3e4de688038d4f71279c44858e3e2c6870
41497 Author: Wolfgang Denk <wd@pollux.denx.de>
41498 Date: Mon Nov 6 17:06:36 2006 +0100
41499
41500 Sequential accesses to non-existent memory must be synchronized,
41501 at least on G2 cores.
41502
41503 This fixes get_ram_size() problems on MPC5200 Rev. B boards.
41504
41505 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
41506 Author: Timur Tabi <timur@freescale.com>
41507 Date: Fri Nov 3 19:15:00 2006 -0600
41508
41509 mpc83xx: Update 83xx to use fsl_i2c.c
41510
41511 Update the 83xx tree to use I2C support in drivers/fsl_i2c.c. Delete
41512 cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
41513 Added multiple I2C bus support to fsl_i2c.c.
41514
41515 Signed-off-by: Timur Tabi <timur@freescale.com>
41516
41517 commit d239d74b1c937984bc519083a8e7de373a390f06
41518 Author: Timur Tabi <timur@freescale.com>
41519 Date: Fri Nov 3 12:00:28 2006 -0600
41520
41521 mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
41522
41523 Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
41524 tree matches the other 8xxx trees.
41525
41526 Signed-off-by: Timur Tabi <timur@freescale.com>
41527
41528 commit f7fb2e703ec9688541416962724adff70a7322cb
41529 Author: Kim Phillips <kim.phillips@freescale.com>
41530 Date: Thu Nov 2 19:47:11 2006 -0600
41531
41532 mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
41533
41534 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
41535 Author: Dave Liu <daveliu@freescale.com>
41536 Date: Thu Nov 2 18:05:50 2006 -0600
41537
41538 mpc83xx: Fix the incorrect dcbz operation
41539
41540 The 834x rev1.x silicon has one CPU5 errata.
41541
41542 The issue is when the data cache locked with
41543 HID0[DLOCK], the dcbz instruction looks like no-op inst.
41544
41545 The right behavior of the data cache is when the data cache
41546 Locked with HID0[DLOCK], the dcbz instruction allocates
41547 new tags in cache.
41548
41549 The 834x rev3.0 and later and 8360 have not this bug inside.
41550
41551 So, when 834x rev3.0/8360 are working with ECC, the dcbz
41552 instruction will corrupt the stack in cache, the processor will
41553 checkstop reset.
41554
41555 However, the 834x rev1.x can work with ECC with these code,
41556 because the sillicon has this cache bug. The dcbz will not
41557 corrupt the stack in cache.
41558 Really, it is the fault code running on fault sillicon.
41559
41560 This patch fix the incorrect dcbz operation. Instead of
41561 CPU FP writing to initialise the ECC.
41562
41563 CHANGELOG:
41564 * Fix the incorrect dcbz operation instead of CPU FP
41565 writing to initialise the ECC memory. Otherwise, it
41566 will corrupt the stack in cache, The processor will checkstop
41567 reset.
41568
41569 Signed-off-by: Dave Liu <daveliu@freescale.com>
41570
41571 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
41572 Author: Kim Phillips <kim.phillips@freescale.com>
41573 Date: Wed Nov 1 00:10:40 2006 -0600
41574
41575 mpc83xx: add OF_FLAT_TREE bits to 83xx boards
41576
41577 add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
41578 STDOUT_PATH configuration bits to mpc8349emds,
41579 mpc8349itx, and mpc8360emds board code.
41580
41581 redo environment to use bootm with the fdtaddr
41582 for booting ARCH=powerpc kernels by default,
41583 and provide default fdtaddr values.
41584
41585 commit 48041365b3420589ad464ebc7752e0053538b729
41586 Author: Kim Phillips <kim.phillips@freescale.com>
41587 Date: Wed Nov 1 00:07:25 2006 -0600
41588
41589 mpc83xx: change ft code to modify local-mac-address property
41590
41591 Update 83xx OF code to update local-mac-address properties
41592 for ethernet instead of the obsolete 'address' property.
41593
41594 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
41595 Author: Timur Tabi <timur@freescale.com>
41596 Date: Tue Oct 31 21:23:16 2006 -0600
41597
41598 mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
41599
41600 This patch also adds an improved I2C set_speed(), which handles all clock
41601 frequencies.
41602
41603 Signed-off-by: Timur Tabi <timur@freescale.com>
41604
41605 commit ac4b5622ce050b5ee1e154b98df630d778661632
41606 Author: Dave Liu <daveliu@freescale.com>
41607 Date: Tue Oct 31 19:54:59 2006 -0600
41608
41609 mpc83xx: add the README.mpc8360emds
41610
41611 add doc/README.mpc8360emds to accompany the new board support
41612
41613 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
41614 Author: Dave Liu <daveliu@freescale.com>
41615 Date: Fri Nov 3 12:11:15 2006 -0600
41616
41617 mpc83xx: add QE ethernet support
41618
41619 this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
41620
41621 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
41622 Author: Dave Liu <daveliu@freescale.com>
41623 Date: Fri Nov 3 19:33:44 2006 -0600
41624
41625 mpc83xx: Add MPC8360EMDS basic board support
41626
41627 Add support for the Freescale MPC8360EMDS board.
41628 Includes DDR, DUART, Local Bus, PCI.
41629
41630 commit 23892e49352de74f7fac36ff90bb1be143d195e3
41631 Author: Dave Liu <daveliu@freescale.com>
41632 Date: Tue Oct 31 19:30:40 2006 -0600
41633
41634 mpc83xx: add the QUICC Engine (QE) immap file
41635
41636 common QE immap file. Also required for 8360.
41637
41638 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
41639 Author: Dave Liu <daveliu@freescale.com>
41640 Date: Tue Oct 31 19:25:38 2006 -0600
41641
41642 mpc83xx: Add 8360 specifics to 83xx immap
41643
41644 Mainly add QE device dependencies, with appropriate 8360 protection.
41645 Lindent also run.
41646
41647 commit 988833324a7fda482c8ac3ca23eb539f8232e404
41648 Author: Timur Tabi <timur@freescale.com>
41649 Date: Tue Oct 31 19:14:41 2006 -0600
41650
41651 mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
41652
41653 PREREQUISITE PATCHES:
41654
41655 * This patch can only be applied after the following patches have been applied:
41656
41657 1) DNX#2006092142000015 "Add support for the MPC8349E-mITX 1/2"
41658 2) DNX#2006092142000024 "Add support for the MPC8349E-mITX 2/2"
41659
41660 CHANGELOG:
41661
41662 * For the 8349E-mITX, fix some size values in pci_init_board(), enable
41663 the clock for the 2nd USB board (Linux kernel will hang otherwise),
41664 and fix the CONFIG_BOOTARGS macro.
41665
41666 Signed-off-by: Timur Tabi <timur@freescale.com>
41667
41668 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
41669 Author: Timur Tabi <timur@freescale.com>
41670 Date: Tue Oct 31 18:44:42 2006 -0600
41671
41672 mpc83xx: Add support for the MPC8349E-mITX
41673
41674 PREREQUISITE PATCHES:
41675
41676 * This patch can only be applied after the following patches have been applied:
41677
41678 1) DNX#2006090742000024 "Add support for multiple I2C buses"
41679 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
41680 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
41681 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
41682 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
41683
41684 CHANGELOG:
41685
41686 * Add support for the Freescale MPC8349E-mITX reference design platform.
41687 The second TSEC (Vitesse 7385 switch) is not supported at this time.
41688
41689 Signed-off-by: Timur Tabi <timur@freescale.com>
41690
41691 commit 183da6d9b446cc12123455844ad1187e2375626f
41692 Author: Ben Warren <bwarren@qstreams.com>
41693 Date: Tue Sep 12 10:15:53 2006 -0400
41694
41695 Additional MPC8349 support for multibus i2c
41696
41697 Hello,
41698
41699 Here is a patch for a file that was accidentally left out of a previous
41700 attempt.
41701
41702 It accompanies the patch with ticket DNX#2006090742000024
41703
41704 CHANGELOG:
41705 Change PCI initialization to use new multi-bus I2C API.
41706
41707 regards,
41708 Ben
41709
41710 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
41711 Author: Ben Warren <bwarren@qstreams.com>
41712 Date: Thu Sep 7 16:51:04 2006 -0400
41713
41714 Multi-bus I2C implementation of MPC834x
41715
41716 Hello,
41717
41718 Attached is a patch implementing multiple I2C buses on the MPC834x CPU
41719 family and the MPC8349EMDS board in particular.
41720 This patch requires Patch 1 (Add support for multiple I2C buses).
41721 Testing was performed on a 533MHz board.
41722
41723 /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
41724
41725 Signed-off-by: Ben Warren <bwarren@qstreams.com>
41726
41727 CHANGELOG:
41728 Implemented driver-level code to support two I2C buses on the
41729 MPC834x CPU family and the MPC8349EMDS board. Available I2C bus speeds
41730 are 50kHz, 100kHz and 400kHz on each bus.
41731
41732 regards,
41733 Ben
41734
41735 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
41736 Author: Ben Warren <bwarren@qstreams.com>
41737 Date: Thu Sep 7 16:50:54 2006 -0400
41738
41739 Add support for multiple I2C buses
41740
41741 Hello,
41742
41743 Attached is a patch providing support for multiple I2C buses at the
41744 command level. The second part of the patch includes an implementation
41745 for the MPC834x CPU and MPC8349EMDS board.
41746
41747 /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
41748
41749 Signed-off-by: Ben Warren <bwarren@qstreams.com>
41750
41751 Overview:
41752
41753 1. Include new 'i2c' command (based on USB implementation) using
41754 CONFIG_I2C_CMD_TREE.
41755
41756 2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS. Note that
41757 the commands to change bus number and speed are only available under the
41758 new 'i2c' command mentioned in the first bullet.
41759
41760 3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
41761 systems. When CONFIG_I2C_MULTI_BUS is used, this option takes the form
41762 of an array of bus-device pairs. Otherwise, it is an array of uchar.
41763
41764 CHANGELOG:
41765 Added new 'i2c' master command for all I2C interaction. This is
41766 conditionally compiled with CONFIG_I2C_CMD_TREE. New commands added for
41767 setting I2C bus speed as well as changing the active bus if the board
41768 has more than one (conditionally compiled with
41769 CONFIG_I2C_MULTI_BUS). Updated NOPROBE logic to handle multiple buses.
41770 Updated README.
41771
41772 regards,
41773 Ben
41774
41775 commit bed85caf872714ebf53013967a695c9d63acfc68
41776 Author: Timur Tabi <timur@freescale.com>
41777 Date: Tue Oct 31 18:13:36 2006 -0600
41778
41779 mpc83xx: Add support for Errata DDR6 on MPC 834x systems
41780
41781 CHANGELOG:
41782
41783 * Errata DDR6, which affects all current MPC 834x processors, lists changes
41784 required to maintain compatibility with various types of DDR memory. This
41785 patch implements those changes.
41786
41787 Signed-off-by: Timur Tabi <timur@freescale.com>
41788
41789 commit afd6e470f639883002c7c59d562690a5cb0f4865
41790 Author: Timur Tabi <timur@freescale.com>
41791 Date: Wed Oct 25 18:45:23 2006 -0500
41792
41793 mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
41794
41795 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
41796 Author: Timur Tabi <timur@freescale.com>
41797 Date: Tue Aug 22 17:07:00 2006 -0500
41798
41799 mpc83xx: Add support for variable flash memory sizes on 83xx systems
41800
41801 CHANGELOG:
41802
41803 * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
41804 window registers, instead of using a hard-coded value of 8MB.
41805
41806 Signed-off-by: Timur Tabi <timur@freescale.com>
41807
41808 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
41809 Author: Tanya Jiang <tanya.jiang@freescale.com>
41810 Date: Thu Aug 3 18:38:13 2006 +0800
41811
41812 mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
41813
41814 Unified TQM834x variable names with 83xx and consolidated macro
41815 in preparation for the 8360 and other upcoming 83xx devices.
41816
41817 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
41818
41819 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
41820 Author: Dave Liu <daveliu@freescale.com>
41821 Date: Wed Oct 25 14:41:21 2006 -0500
41822
41823 mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
41824
41825 Incorporated the common unified variable names and the changes in preparation
41826 for releasing mpc8360 patches.
41827
41828 Signed-off-by: Dave Liu <daveliu@freescale.com>
41829
41830 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
41831 Author: Tanya Jiang <tanya.jiang@freescale.com>
41832 Date: Thu Aug 3 18:36:02 2006 +0800
41833
41834 mpc83xx: Fix missing build for mpc8349emds pci.c
41835
41836 Make pci build for mpc8349emds
41837
41838 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
41839
41840 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
41841 Author: Tanya Jiang <tanya.jiang@freescale.com>
41842 Date: Thu Aug 3 18:39:49 2006 +0800
41843
41844 mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
41845
41846 Removed unused file resetvec.S for mpc83xx cpu
41847
41848 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
41849
41850 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
41851 Author: Nick Spence <Nick.Spence@freescale.com>
41852 Date: Sat Sep 30 00:32:59 2006 -0700
41853
41854 NAND Flash verify across block boundaries
41855
41856 This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
41857 defined
41858 and the write crosses a block boundary. The pointer to the verification
41859 buffer (bufstart) is not being updated to reflect the starting of the
41860 new
41861 block so the verification of the second block fails.
41862
41863 CHANGELOG:
41864
41865 * Fix NAND FLASH page verification across block boundaries
41866
41867 commit f484dc791a3932537213c43c654cc1295c64b84c
41868 Author: Nick Spence <nick.spence@freescale.com>
41869 Date: Thu Sep 7 07:39:46 2006 -0700
41870
41871 Added RGMII support to the TSECs and Marvell 881111 Phy
41872
41873 Added a phy initialization to adjust the RGMII RX and TX timing
41874 Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
41875
41876 Signed-off-by: Nick Spence <nick.spence@freescale.com>
41877
41878 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
41879 Author: roy zang <tie-fei.zang@freescale.com>
41880 Date: Fri Nov 3 13:10:00 2006 +0800
41881
41882 Remove some unused CFG define.
41883 undef CFG_DRAM_TEST
41884
41885 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
41886 Author: roy zang <tie-fei.zang@freescale.com>
41887 Date: Fri Nov 3 13:07:36 2006 +0800
41888
41889 Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
41890 Both work. 0xFF000000 seems more reasonable.
41891
41892 commit c59200443072353044aa4bf737a5a60f9a9af231
41893 Author: Wolfgang Denk <wd@pollux.denx.de>
41894 Date: Thu Nov 2 15:15:01 2006 +0100
41895
41896 Release U-Boot 1.1.6
41897
41898 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
41899 Author: roy zang <tie-fei.zang@freescale.com>
41900 Date: Thu Nov 2 19:14:48 2006 +0800
41901
41902 This patch comes from Yuli's posted patch on 8/8/2006
41903 titled "CFI Driver Little-Endian write Issue".
41904
41905 http://sourceforge.net/mailarchive/message.php?msg_id=36311999
41906
41907 If that patch applied, please discard this one.
41908 Until now , I do not see his patch is applied. So please apply this one.
41909
41910 Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
41911 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41912
41913 commit b825f158e449e1e9cf74c08e572955e122394c96
41914 Author: roy zang <tie-fei.zang@freescale.com>
41915 Date: Thu Nov 2 19:12:31 2006 +0800
41916
41917 Tsi108 on chip i2c support.
41918
41919 The i2c Interface provides a master-only, serial interface that can be
41920 used for initializing Tsi108/Tsi109 registers from an EEPROM after a
41921 device reset.
41922
41923 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41924 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41925
41926 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
41927 Author: roy zang <tie-fei.zang@freescale.com>
41928 Date: Thu Nov 2 19:11:06 2006 +0800
41929
41930 Tsi108 on chip pci controller support.
41931
41932 If there is no pci card, the tsi108/109 pci configure read will
41933 cause a machine check exception to the processor. PCI error should
41934 also be cleared after the read.
41935
41936 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41937 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41938
41939 commit d1927cee977126e547ceeba23e4f978f377cfb8f
41940 Author: roy zang <tie-fei.zang@freescale.com>
41941 Date: Thu Nov 2 19:08:55 2006 +0800
41942
41943 Tundra tsi108 on chip Ethernet controller support.
41944
41945 The following is a brief description of the Ethernet controller:
41946 The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
41947 Gigabit Ethernet ports,E0 and E1. It uses a single Management interface
41948 to manage the two physical connection devices (PHYs). Each Ethernet port
41949 has its own statistics monitor that tracks and reports key interface
41950 statistics. Each port supports a 256-entry hash table for address
41951 filtering. In addition, each port is bridged to the Switch Fabric
41952 through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
41953
41954 Each Ethernet port also has a pair of internal Ethernet DMA channels to
41955 support the transmit and receive data flows. The Ethernet DMA channels
41956 use descriptors set up in memory, the memory map of the device, and
41957 access via the Switch Fabric. The Ethernet Controller?s DMA arbiter
41958 handles arbitration for the Switch Fabric. The Controller also
41959 has a register businterface for register accesses and status monitor
41960 control.
41961
41962 The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
41963 modes. The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
41964 The GMII and TBI modes are used to connect with Gigabit PMDs. Internal
41965 data flows to and from the Ethernet Controller through the Switch Fabric.
41966
41967 Each Ethernet port uses its transmit and receive DMA channels to manage
41968 data flows through buffer descriptors that are predefined by the
41969 system (the descriptors can exist anywhere in the system memory map).
41970 These descriptors are data structures that point to buffers filled
41971 with data ready to transmit over Ethernet, or they point to empty
41972 buffers ready to receive data from Ethernet.
41973
41974 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41975 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41976
41977 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
41978 Author: roy zang <tie-fei.zang@freescale.com>
41979 Date: Thu Nov 2 19:01:33 2006 +0800
41980
41981 Tundra tsi108 header file.
41982
41983 The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
41984 PowerPC processors that offers numerous system interconnect options for
41985 embedded application designers. The Tsi108 can interconnect 60x or
41986 MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
41987 and Flash. Provided the macro define for tsi108 chip.
41988
41989 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41990 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41991
41992 commit 87c4db09699c6b89176b31004afcb83eb1585d47
41993 Author: roy zang <tie-fei.zang@freescale.com>
41994 Date: Thu Nov 2 18:59:15 2006 +0800
41995
41996 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
41997 mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
41998
41999 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
42000 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
42001
42002 commit 27801b8ab11c61b577e45742a515bb3b23b80241
42003 Author: roy zang <tie-fei.zang@freescale.com>
42004 Date: Thu Nov 2 18:57:21 2006 +0800
42005
42006 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
42007 Make ,config.mk and link file for the mpc7448hpc2 board.
42008
42009 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
42010 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
42011
42012 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
42013 Author: roy zang <tie-fei.zang@freescale.com>
42014 Date: Thu Nov 2 18:55:04 2006 +0800
42015
42016 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
42017 The mpc7448hpc2 board support header file.
42018
42019 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
42020 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
42021
42022 commit 625bb5ddb50b243f931262ca8c46956409471917
42023 Author: roy zang <tie-fei.zang@freescale.com>
42024 Date: Thu Nov 2 18:52:21 2006 +0800
42025
42026 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
42027 The mpc7448hpc2 board support low level assemble language init code.
42028
42029 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
42030 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
42031
42032 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
42033 Author: roy zang <tie-fei.zang@freescale.com>
42034 Date: Thu Nov 2 18:49:51 2006 +0800
42035
42036 General code modification for mpc7448hpc2 board support.
42037 1. Add 7447A and 7448 processor support.
42038 2. Add the following flags.
42039
42040 CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
42041 (such as by switch on board), this flag should be set.
42042
42043 CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
42044 relocates to RAM, this flag should be set.
42045
42046 CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
42047 system hang in exception, this flag should be set.
42048
42049 There is a design issue for tsi108/109 pci configure read. When pci scan
42050 the slots, if there is no pci card, the tsi108/9 will cause a machine
42051 check exception for mpc7448 processor.
42052
42053 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
42054 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
42055
42056 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
42057 Author: roy zang <tie-fei.zang@freescale.com>
42058 Date: Thu Nov 2 18:34:47 2006 +0800
42059
42060 Add README file for mpc7448hpc2 board.
42061 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
42062
42063 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
42064 Author: Bartlomiej Sieka <tur@semihalf.com>
42065 Date: Wed Nov 1 02:04:38 2006 +0100
42066
42067 Finish up support for MarelV38B board
42068 - add watchdog support
42069 - enable GPIO_WKUP_7 pin for input
42070 - code cleanup
42071
42072 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
42073 Author: Bartlomiej Sieka <tur@semihalf.com>
42074 Date: Wed Nov 1 01:45:46 2006 +0100
42075
42076 - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
42077 * remove warnings when compiling ethaddr.c
42078 * adjust linker script (fixes a crash resulting from incorrect
42079 definition of __u_boot_cmd_start)
42080 - Some MarelV38B code cleanup.
42081
42082 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
42083 Author: Bartlomiej Sieka <tur@semihalf.com>
42084 Date: Wed Nov 1 01:38:16 2006 +0100
42085
42086 - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
42087 MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
42088 Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
42089 MPC5XXX_WU_GPIO_DATA_O for affected boards.
42090
42091 - Add defintions for some MPC5XXX GPIO pins.
42092
42093 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
42094 Author: Bartlomiej Sieka <tur@semihalf.com>
42095 Date: Wed Nov 1 01:34:29 2006 +0100
42096
42097 Changed MarelV38B board make target to lowercase. Config file cleanup.
42098
42099 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
42100 Author: Wolfgang Denk <wd@pollux.denx.de>
42101 Date: Sun Oct 29 01:03:51 2006 +0200
42102
42103 Automatically adjust ARFLAGS so "make -s" is really silent.
42104
42105 commit fae684e89844856383bdf101440889557df3e6b1
42106 Author: Stefan Roese <sr@denx.de>
42107 Date: Sat Oct 28 16:45:00 2006 +0200
42108
42109 [PATCH] omap925.c: Remove unused functions
42110
42111 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
42112 Signed-off-by: Stefan Roese <sr@denx.de>
42113
42114 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
42115 Author: Stefan Roese <sr@denx.de>
42116 Date: Sat Oct 28 17:12:58 2006 +0200
42117
42118 [PATCH] Add some missing machtypes for netstar & voiceblue boards
42119
42120 Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
42121 numbers in code.
42122
42123 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
42124 Signed-off-by: Stefan Roese <sr@denx.de>
42125
42126 commit 856f054410cef52d868feb330168b2a4c4091328
42127 Author: Stefan Roese <sr@denx.de>
42128 Date: Sat Oct 28 15:55:52 2006 +0200
42129
42130 [PATCH] NAND: Partition name support added to NAND subsystem
42131
42132 chpart, nboot and NAND subsystem related commands now accept also partition
42133 name to specify offset.
42134
42135 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
42136 Signed-off-by: Stefan Roese <sr@denx.de>
42137
42138 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
42139 Author: Wolfgang Denk <wd@pollux.denx.de>
42140 Date: Sat Oct 28 02:29:44 2006 +0200
42141
42142 Update CHANGELOG.
42143
42144 commit 2751a95abd1b96911081c357e96a12fa97b40dee
42145 Author: Wolfgang Denk <wd@pollux.denx.de>
42146 Date: Sat Oct 28 02:29:14 2006 +0200
42147
42148 Enable commandline editing and hush shell on all TQM boards.
42149
42150 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
42151 Author: Wolfgang Denk <wd@pollux.denx.de>
42152 Date: Sat Oct 28 02:28:02 2006 +0200
42153
42154 README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
42155
42156 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
42157 Author: Wolfgang Denk <wd@denx.de>
42158 Date: Sat Oct 28 01:14:32 2006 +0200
42159
42160 Check for illegal character '=' in environment variable names.
42161
42162 Make sure the string passed as variable name does not contain a '='
42163 character. This not only prevents the common error or typing
42164 "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
42165 also closes a backdoor which allowed to delete write-protected
42166 environment variables, for example by using "setenv ethaddr=".
42167
42168 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
42169 Author: Wolfgang Denk <wd@pollux.denx.de>
42170 Date: Sat Oct 28 00:38:39 2006 +0200
42171
42172 Minor code cleanup.
42173
42174 commit e11887a77d81077416a2d1c5e0354916fee8c034
42175 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
42176 Date: Thu Oct 26 17:55:31 2006 +0200
42177
42178 Don't pass any debug options directly to the assembler
42179
42180 When passing the -g option to gcc, gcc automatically selects a
42181 suitable --g<format> option to pass on to the assembler.
42182 Thus, there's no point in forcing a specific debug option on the
42183 assembler using the -Wa mechanism.
42184
42185 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
42186
42187 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
42188 Author: Jon Loeliger <jdl@freescale.com>
42189 Date: Fri Oct 27 07:47:22 2006 -0500
42190
42191 MPC86xx: Cleaned up unused and conditionally used local variables.
42192
42193 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42194
42195 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
42196 Author: Wolfgang Denk <wd@pollux.denx.de>
42197 Date: Fri Oct 27 11:55:21 2006 +0200
42198
42199 Fix "ar" flags in some Makefiles to allow for silent "make -s"
42200
42201 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
42202 Author: Ben Warren <bwarren@qstreams.com>
42203 Date: Thu Oct 26 14:38:25 2006 -0400
42204
42205 Fix TSEC driver (now for real): avoid crashes if PHY is not attached
42206 to a TSEC (e.g. a switch is connected via RMII) or
42207 if the PHY is defective/incorrectly configured.
42208
42209 Signed-off-by: Ben Warren <bwarren@qstreams.com>
42210
42211 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
42212 Author: Ben Warren <bwarren@qstreams.com>
42213 Date: Thu Oct 26 14:38:25 2006 -0400
42214
42215 Fix TSEC driver: avoid crashes if PHY is not attached
42216 to a TSEC (e.g. a switch is connected via RMII) or
42217 if the PHY is defective/incorrectly configured.
42218
42219 Signed-off-by: Ben Warren <bwarren@qstreams.com>
42220
42221 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
42222 Author: Wolfgang Denk <wd@pollux.denx.de>
42223 Date: Thu Oct 26 16:24:31 2006 +0200
42224
42225 Code cleanup.
42226
42227 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
42228 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
42229 Date: Wed Oct 25 15:48:59 2006 +0200
42230
42231 Finish up support for the ATSTK1000/ATSTK1002 boards
42232
42233 Add atstk1002_config target to Makefile and move the AVR32 section
42234 down below Blackfin so that it doesn't end up in the middle of
42235 MIPS.
42236
42237 Drop the autogenerated linker script thing for now. Will have to
42238 revisit how to handle chips with different flash and RAM layout
42239 later.
42240
42241 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
42242
42243 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
42244 Author: Kumar Gala <galak@kernel.crashing.org>
42245 Date: Tue Oct 24 23:47:37 2006 -0500
42246
42247 Added support for Multi-Image files that contain a device tree
42248
42249 If a Multi-Image file contains a third image we try to use it as a
42250 device tree. The device tree image is assumed to be uncompressed in the
42251 image file. We automatically allocate space for the device tree in memory
42252 and provide an 8k pad to allow more than a reasonable amount of growth.
42253
42254 Additionally, a device tree that was contained in flash will now automatically
42255 get copied to system memory as part of boot. Previously an error was
42256 reported if one tried to boot a device tree that was in flash.
42257
42258 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42259
42260 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
42261 Author: Wolfgang Denk <wd@denx.de>
42262 Date: Tue Oct 24 21:35:55 2006 +0200
42263
42264 Switch to automatically generated CHANGELOG file.
42265 (use "make CHANGELOG" to update it from time to time)
42266
42267 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
42268 Author: Stefan Roese <sr@denx.de>
42269 Date: Tue Oct 24 18:06:48 2006 +0200
42270
42271 Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
42272 Patch by Stefan Roese, 24 Oct 2006
42273
42274 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
42275 Author: Wolfgang Denk <wd@pollux.denx.de>
42276 Date: Tue Oct 24 17:24:55 2006 +0200
42277
42278 Merge with /home/wd/git/u-boot/master
42279
42280 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
42281 Author: Wolfgang Denk <wd@pollux.denx.de>
42282 Date: Tue Oct 24 15:32:57 2006 +0200
42283
42284 Code cleanup
42285
42286 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
42287 Author: Wolfgang Denk <wd@pollux.denx.de>
42288 Date: Tue Oct 24 14:51:36 2006 +0200
42289
42290 Move atstk1000 files into vendor specific directory.
42291 Patch by Haavard Skinnemoen, 12 Sep 2006
42292
42293 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
42294 Author: Wolfgang Denk <wd@pollux.denx.de>
42295 Date: Tue Oct 24 14:42:37 2006 +0200
42296
42297 Add ATSTK1000 and ATSTK1002 board support
42298 Patch by Haavard Skinnemoen, 06 Sep 2006
42299
42300 This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
42301 daughterboard.
42302
42303 ATSTK1000 is a full-featured development board for AT32AP CPUs. It
42304 has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
42305 and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
42306 CompactFlash cards. For more information, please see this page:
42307
42308 http://www.atmel.com/dyn/products/tools.asp?family_id=682
42309
42310 The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
42311 AT32AP7000 chip.
42312
42313 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
42314
42315 commit f93ae788c3640fcde5db383471d45548ff4060d0
42316 Author: Wolfgang Denk <wd@pollux.denx.de>
42317 Date: Tue Oct 24 14:31:24 2006 +0200
42318
42319 Add common serial driver for Atmel AT32 and AT91 chips
42320 Patch by Haavard Skinnemoen, 06 Sep 2006
42321
42322 This is a first attempt at creating a common serial driver for Atmel
42323 chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
42324 be possible to support AT91RM9200 and other ARM-based chips with some
42325 minor modifications.
42326
42327 There's nothing fundamentally AVR32-specific in this driver, but it
42328 does use some features which are currently only defined for the
42329 AT32AP CPU port:
42330 * pm_get_clock_freq: Obtain the clock frequency of a given domain
42331 * gd->console_uart: A "struct device" containing information about
42332 register mappings, gpio resources and clocks associated with the
42333 UART device.
42334
42335 For more information about these features, please see the "AT32AP
42336 CPU" patch.
42337
42338 commit 72a087e04705c26cad982879ebd06b5281bf825a
42339 Author: Wolfgang Denk <wd@pollux.denx.de>
42340 Date: Tue Oct 24 14:27:35 2006 +0200
42341
42342 Add AT32AP CPU and AT32AP7000 SoC support
42343 Patch by Haavard Skinnemoen, 06 Sep 2006
42344
42345 This patch adds support for the AT32AP CPU family and the AT32AP7000
42346 chip, which is the first chip implementing the AVR32 architecture.
42347
42348 The AT32AP CPU core is a high-performance implementation featuring a
42349 7-stage pipeline, separate instruction- and data caches, and a MMU.
42350 For more information, please see the "AVR32 AP Technical Reference":
42351
42352 http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
42353
42354 In addition to this, the AT32AP7000 chip comes with a large set of
42355 integrated peripherals, many of which are shared with the AT91 series
42356 of ARM-based microcontrollers from Atmel. Full data sheet is
42357 available here:
42358
42359 http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
42360
42361 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
42362
42363 commit 7b64fef33c66be648826c0ff9758298ef13d0604
42364 Author: Wolfgang Denk <wd@pollux.denx.de>
42365 Date: Tue Oct 24 14:21:16 2006 +0200
42366
42367 Add AVR32 architecture support
42368 Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
42369
42370 This patch adds common infrastructure code for the Atmel AVR32
42371 architecture. See doc/README.AVR32 for details.
42372
42373 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
42374
42375 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
42376 Author: Wolfgang Denk <wd@pollux.denx.de>
42377 Date: Tue Oct 24 13:57:33 2006 +0200
42378
42379 Use -g instead of -gstabs in AFLAGS_DEBUG
42380 Patch by Haavard Skinnemoen, 30 Aug 2006
42381
42382 In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
42383 matter what the target's preferred debugging format is. This patch
42384 simply replaces -gstabs with -g, so that the default debugging format
42385 for the architecture is used.
42386
42387 commit 965829872169c2996023840d98e1d85ad148d629
42388 Author: Wolfgang Denk <wd@pollux.denx.de>
42389 Date: Tue Oct 24 13:55:18 2006 +0200
42390
42391 Fix/workaround broken dependency handling with make 3.81
42392 Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
42393
42394 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
42395 Author: Marian Balakowicz <m8@semihalf.com>
42396 Date: Mon Oct 23 22:17:05 2006 +0200
42397
42398 Fix sequoia separate object direcory building problems.
42399
42400 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
42401 Author: Jon Loeliger <jdl@freescale.com>
42402 Date: Fri Oct 20 17:16:35 2006 -0500
42403
42404 Use generic I2C register block on 85xx and 86xx.
42405
42406 Replace private IMMAP I2C structures with generic reg block
42407 and allow 86xx to have multiple I2C device busses.
42408
42409 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42410
42411 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
42412 Author: Jon Loeliger <jdl@freescale.com>
42413 Date: Fri Oct 20 15:54:34 2006 -0500
42414
42415 Fix compilation warnings on a few 85xx boards.
42416
42417 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42418
42419 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
42420 Author: Jon Loeliger <jdl@freescale.com>
42421 Date: Fri Oct 20 15:50:15 2006 -0500
42422
42423 Converted all 85xx boards to use a common FSL I2C driver.
42424 Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
42425 And removed hard i2c path from a few u-boot.lds scipts too.
42426 Minor whitespace cleanups along the way.
42427
42428 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42429
42430 commit 4d45f69e362b05892c9e92a7907e5820995612aa
42431 Author: Jon Loeliger <jdl@freescale.com>
42432 Date: Thu Oct 19 12:02:24 2006 -0500
42433
42434 Rewrite a series of goto statements as a sequences of
42435 conditional expressions instead.
42436
42437 Use consistent return code 0/-1 for good/bad indicators.
42438
42439 Include one fewer file if the driver isn't used at all.
42440
42441 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42442
42443 commit 7237c033b02fe295880435f1eb80819a0c987532
42444 Author: Jon Loeliger <jdl@freescale.com>
42445 Date: Thu Oct 19 11:02:16 2006 -0500
42446
42447 Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
42448
42449 in an effort to begin to unify the umpteen FSL I2C drivers that
42450 are all otherwise very similar.
42451
42452 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42453
42454 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
42455 Author: Jon Loeliger <jdl@freescale.com>
42456 Date: Thu Oct 19 11:33:52 2006 -0500
42457
42458 * Fix a bunch of compiler warnings for gcc 4.0
42459
42460 Signed-off-by: Matthew McClintock <msm@freescale.com>
42461
42462 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
42463 Author: Stefan Roese <sr@denx.de>
42464 Date: Tue Oct 17 06:14:31 2006 +0200
42465
42466 Add monitor functions for indirect access to PPC440 DCR's
42467 Patch by Leonid Baryudin, 12 Oct 2006
42468
42469 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
42470 Author: Jon Loeliger <jdl@freescale.com>
42471 Date: Fri Oct 13 16:47:53 2006 -0500
42472
42473 Fixed leading whitespace issues.
42474 Removed spurious LAWAR thing.
42475
42476 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42477
42478 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
42479 Author: Jon Loeliger <jdl@freescale.com>
42480 Date: Thu Oct 12 10:42:36 2006 -0500
42481
42482 Remove unneeded include files and local variable.
42483
42484 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42485
42486 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
42487 Author: Grant Likely <grant.likely@secretlab.ca>
42488 Date: Tue Oct 10 00:23:32 2006 -0600
42489
42490 Fix possible uninitialized variable compiler warning.
42491
42492 When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
42493 do_bootm_linux() may be uninitialized. There is no possibility in the
42494 current code that len will get used uninitialized, but this fix follows
42495 the existing convention of setting both len and data to zero at the same
42496 time.
42497
42498 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42499
42500 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
42501 Author: Matthew McClintock <msm@freescale.com>
42502 Date: Wed Oct 11 15:13:01 2006 -0500
42503
42504 * Fix a bunch of compiler warnings for gcc 4.0
42505
42506 Signed-off-by: Matthew McClintock <msm@freescale.com>
42507
42508 commit bf651baa365e5447246aad6a633ccd667cf24a39
42509 Author: Jon Loeliger <jdl@freescale.com>
42510 Date: Wed Oct 11 10:10:43 2006 -0500
42511
42512 Move "ar" flags to config.mk to allow for silent "make -s"
42513
42514 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
42515 Author: Jon Loeliger <jdl@freescale.com>
42516 Date: Tue Oct 10 17:19:03 2006 -0500
42517
42518 Coding style changes to remove local varible blocks
42519 and reformat a bit nicer.
42520
42521 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
42522 Author: Jon Loeliger <jdl@freescale.com>
42523 Date: Tue Oct 10 17:16:04 2006 -0500
42524
42525 Fix whitespace issues.
42526
42527 commit 7b382b7125f2397cce63253df62f183e3dfa2770
42528 Author: Jon Loeliger <jdl@freescale.com>
42529 Date: Tue Oct 10 17:14:45 2006 -0500
42530
42531 Fix whitespace issues.
42532
42533 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
42534 Author: Jon Loeliger <jdl@freescale.com>
42535 Date: Tue Oct 10 17:06:53 2006 -0500
42536
42537 Fix whitespace issues.
42538
42539 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
42540 Author: Jon Loeliger <jdl@freescale.com>
42541 Date: Tue Oct 10 17:03:43 2006 -0500
42542
42543 Ran lindent and cleaned up whitespace issues.
42544 Format for 80-columns too.
42545
42546 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
42547 Author: Jon Loeliger <jdl@freescale.com>
42548 Date: Tue Oct 10 17:02:22 2006 -0500
42549
42550 Fix whitespace and 80-col issues.
42551
42552 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
42553 Author: Stefan Roese <sr@denx.de>
42554 Date: Sat Oct 7 11:36:51 2006 +0200
42555
42556 CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
42557 Patch by Stefan Roese, 07 Oct 2006
42558
42559 commit 5bc528fa4da751d472397b308137238a6465afd2
42560 Author: Stefan Roese <sr@denx.de>
42561 Date: Sat Oct 7 11:35:25 2006 +0200
42562
42563 Update ALPR code (NAND support working now)
42564 Patch by Stefan Roese, 07 Oct 2006
42565
42566 commit 77d5034847d328753b80c46b83f960a14a26f40e
42567 Author: Stefan Roese <sr@denx.de>
42568 Date: Sat Oct 7 11:33:03 2006 +0200
42569
42570 Remove compile warnings in fpga code
42571 Patch by Stefan Roese, 07 Oct 2006
42572
42573 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
42574 Author: Stefan Roese <sr@denx.de>
42575 Date: Sat Oct 7 11:30:52 2006 +0200
42576
42577 Add CONFIG_BOARD_RESET to configure board specific reset function
42578 Patch by Stefan Roese, 07 Oct 2006
42579
42580 commit f55df18187e7a45cb73fec4370d12135e6691ae1
42581 Author: John Traill <john.traill@freescale.com>
42582 Date: Fri Sep 29 08:23:12 2006 +0100
42583
42584 Fix missing tCycle/modfreq calculation.
42585
42586 Signed-off-by: John Traill <john.traill@freescale.com>
42587
42588 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
42589 Author: Andy Fleming <afleming@freescale.com>
42590 Date: Wed Sep 13 10:33:35 2006 -0500
42591
42592 Updated config headers to add default FDT-based booting
42593
42594 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
42595 Author: Andy Fleming <afleming@freescale.com>
42596 Date: Wed Sep 13 10:34:18 2006 -0500
42597
42598 Add support for eTSEC 3 & 4 on 8548 CDS
42599
42600 * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
42601 This will only work on rev 1.3 boards (but doesn't break older boards)
42602 * Cleaned up some comments to reflect the expanded role of tsec
42603 in other systems
42604
42605 commit 084d648b109c8984f83674043c1a7fa3885ef801
42606 Author: Andy Fleming <afleming@freescale.com>
42607 Date: Wed Sep 13 10:33:56 2006 -0500
42608
42609 Added code to support 2.6.18 PCI changes in u-boot
42610
42611 * Added code to swizzle the IRQ map for the PCI
42612
42613 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
42614 Author: Jon Loeliger <jdl@freescale.com>
42615 Date: Tue Sep 19 09:34:10 2006 -0500
42616
42617 Modified makefile for new build mechanism.
42618
42619 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42620
42621 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
42622 Author: Jon Loeliger <jdl@freescale.com>
42623 Date: Thu Sep 14 08:40:36 2006 -0500
42624
42625 Handle 86xx SVR values according to the new Reference Manual.
42626 Both 8641 and 8641D have SVR == 0x8090, and are distinguished
42627 by the byte in bits 16-23 instead.
42628 Thanks to Jason Jin for noticing.
42629
42630 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42631
42632 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
42633 Author: Zhang Wei <wei.zhang@freescale.com>
42634 Date: Mon Aug 28 14:25:31 2006 +0800
42635
42636 Fixed an OF-tree off-by-one bug when adding a new property name.
42637 This bug will cause the kernel booting to pause a long time.
42638
42639 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
42640 (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
42641
42642 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
42643 Author: Jon Loeliger <jdl@freescale.com>
42644 Date: Tue Aug 29 11:05:09 2006 -0500
42645
42646 Remove trailing empty lines.
42647
42648 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
42649 Author: Jon Loeliger <jdl@freescale.com>
42650 Date: Tue Aug 29 09:48:49 2006 -0500
42651
42652 Remove bogus msync and use volatile asm.
42653
42654 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
42655 Author: Jon Loeliger <jdl@freescale.com>
42656 Date: Tue Aug 29 08:17:14 2006 -0500
42657
42658 Add myself as maintainer for MPC8641HPCN.
42659
42660 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
42661 Author: Zhang Wei <wei.zhang@freescale.com>
42662 Date: Mon Aug 28 14:25:31 2006 +0800
42663
42664 Fixed an OF-tree off-by-one bug when adding a new property name.
42665 This bug will cause the kernel booting to pause a long time.
42666
42667 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
42668
42669 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
42670 Author: Haiying Wang <haiying.wang@freescale.com>
42671 Date: Fri Aug 25 14:38:34 2006 -0400
42672
42673 Change ramdiskaddr and dtbaddr
42674 Remove PEX fluff commands.
42675
42676 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
42677 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42678
42679 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
42680 Author: Matthew McClintock <msm@freescale.com>
42681 Date: Wed Aug 23 13:32:45 2006 -0500
42682
42683 * Another small fix for booting with disable_of
42684
42685 Signed-off-by: Matthew McClintock <msm@freescale.com>
42686
42687 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
42688 Author: Jon Loeliger <jdl@freescale.com>
42689 Date: Wed Aug 23 11:04:43 2006 -0500
42690
42691 Cleanup and lindent new AHCI driver.
42692
42693 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
42694 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
42695 Date: Wed Aug 23 19:15:12 2006 +0800
42696
42697 Add AHCI define and sata support for MPC8641HPCN board.
42698
42699 Signed-off-by:Jason Jin<jason.jin@freescale.com>
42700
42701 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
42702 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
42703 Date: Wed Aug 23 19:10:44 2006 +0800
42704
42705 Add AHCI support to u-boot
42706
42707 Add AHCI support in u-boot, enable the sata disk controllers which
42708 following the AHCI protocol.
42709
42710 Signed-off-by:Jason Jin<jason.jin@freescale.com>
42711
42712 commit d8ea2acf5f137cae99417df4f573d036ee384668
42713 Author: Zhang Wei <wei.zhang@freescale.com>
42714 Date: Wed Aug 23 17:54:32 2006 +0800
42715
42716 Add dtb boot-up parameter to default boot commands.
42717
42718 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
42719
42720 commit b93775c2036b99baa390ea425c4771895bbc63c4
42721 Author: Jon Loeliger <jdl@freescale.com>
42722 Date: Tue Aug 22 18:26:08 2006 -0500
42723
42724 Cleanup even more poorly introduced whitespace.
42725
42726 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
42727 Author: Jon Loeliger <jdl@freescale.com>
42728 Date: Tue Aug 22 18:07:00 2006 -0500
42729
42730 Cleanup more poorly introduced whitespace.
42731
42732 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
42733 Author: Jon Loeliger <jdl@freescale.com>
42734 Date: Tue Aug 22 17:54:05 2006 -0500
42735
42736 Cleanup poorly introduced whitespace.
42737
42738 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
42739 Author: Jon Loeliger <jdl@freescale.com>
42740 Date: Tue Aug 22 12:25:27 2006 -0500
42741
42742 General indent and whitespace cleanups.
42743
42744 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
42745 Author: Jon Loeliger <jdl@freescale.com>
42746 Date: Tue Aug 22 12:06:18 2006 -0500
42747
42748 General indent and whitespace cleanups.
42749
42750 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
42751 Author: Jon Loeliger <jdl@freescale.com>
42752 Date: Tue Aug 22 10:42:21 2006 -0500
42753
42754 Cleanup compiler warnings.
42755
42756 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
42757 Author: Matthew McClintock <msm@freescale.com>
42758 Date: Tue Aug 22 09:31:59 2006 -0500
42759
42760 Fix disable_of booting
42761
42762 Signed-off-by: Matthew McClintock <msm@freescale.com>
42763
42764 commit 87a449c8ac396420cb24260f717ea9e6faa82047
42765 Author: Matthew McClintock <msm@freescale.com>
42766 Date: Tue Aug 22 09:23:55 2006 -0500
42767
42768 Support for FDT in uImage format, error when using FDT from flash
42769
42770 Signed-off-by: Matthew McClintock <msm@freescale.com>
42771
42772 commit 75c299c38369d01addd5e054b8a16217b70f4a86
42773 Author: Haiying Wang <haiying.wang@freescale.com>
42774 Date: Tue Aug 15 15:12:55 2006 -0400
42775
42776 Unlock cache before kernel starts up for MPC86xx
42777
42778 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
42779 Author: Haiying Wang <haiying.wang@freescale.com>
42780 Date: Tue Aug 15 15:13:15 2006 -0400
42781
42782 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
42783
42784 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
42785 Author: Haiying Wang <haiying.wang@freescale.com>
42786 Date: Tue Aug 15 15:12:55 2006 -0400
42787
42788 Unlock cache before kernel starts up for MPC86xx
42789
42790 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
42791 Author: Haiying Wang <haiying.wang@freescale.com>
42792 Date: Tue Aug 15 15:13:15 2006 -0400
42793
42794 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
42795
42796 commit 86c8e17f25e972a7e272950a0735fad84e082b88
42797 Author: Matthew McClintock <msm@freescale.com>
42798 Date: Wed Aug 16 13:59:47 2006 -0500
42799
42800 * Fix disable_of booting
42801
42802 Signed-off-by: Matthew McClintock <msm@freescale.com>
42803
42804 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
42805 Author: Matthew McClintock <msm@freescale.com>
42806 Date: Wed Aug 16 10:54:09 2006 -0500
42807
42808 * Support for FDT in uImage format, error when using FDT from flash
42809
42810 Signed-off-by: Matthew McClintock <msm@freescale.com>
42811
42812 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
42813 Author: Stefan Roese <sr@denx.de>
42814 Date: Tue Aug 15 14:22:35 2006 +0200
42815
42816 Add initial support for the ALPR board from Prodrive
42817 NAND needs some additional testing
42818 Patch by Heiko Schocher, 15 Aug 2006
42819
42820 commit f0ff4692ff3372dec55074a8eb444943ab095abb
42821 Author: Stefan Roese <sr@denx.de>
42822 Date: Tue Aug 15 14:15:51 2006 +0200
42823
42824 Add FPGA Altera Cyclone 2 support
42825 Patch by Heiko Schocher, 15 Aug 2006
42826
42827 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
42828 Author: Jon Loeliger <jdl@freescale.com>
42829 Date: Mon Aug 14 15:33:38 2006 -0500
42830
42831 Fix BAT0 to actually be cacheable, non-guarded as documented.
42832
42833 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42834
42835 commit 40bc83559db5745681909fd7382ae509567e116d
42836 Author: Jon Loeliger <jdl@freescale.com>
42837 Date: Wed Aug 9 15:32:16 2006 -0500
42838
42839 Removed MPC8641HPCN DTS source file from build.
42840 It is no longer linked into U-Boot; its sources are
42841 now located in the kernel tree.
42842
42843 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42844
42845 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
42846 Author: Matthew McClintock <msm@freescale.com>
42847 Date: Wed Jun 28 10:47:03 2006 -0500
42848
42849 * Switched default PCI speed for 8540 ADS back to 33MHz
42850
42851 * Added comments and a printf to warn that PCI-X won't
42852 work at 33MHz
42853 Patch by Andy Fleming 17-Mar-2006
42854
42855 Signed-off-by: Andy Fleming <afleming@freescale.com>
42856
42857 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
42858 Author: Matthew McClintock <msm@freescale.com>
42859 Date: Wed Jun 28 10:46:35 2006 -0500
42860
42861 * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
42862
42863 Signed-off-by: Andy Fleming <afleming@freescale.com>
42864
42865 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
42866 Author: Matthew McClintock <msm@freescale.com>
42867 Date: Wed Jun 28 10:46:13 2006 -0500
42868
42869 * Added VIA configuration table
42870
42871 * Added support for PCI2 on CDS
42872 Patch by Andy Fleming 17-Mar-2006
42873
42874 Signed-off-by: Andy Fleming <afleming@freescale.com>
42875
42876 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
42877 Author: Matthew McClintock <msm@freescale.com>
42878 Date: Wed Jun 28 10:45:41 2006 -0500
42879
42880 * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
42881
42882 Signed-off-by: Andy Fleming <afleming@freescale.com>
42883
42884 commit 97074ed9655309b64231bc2cee69fe85399f8055
42885 Author: Matthew McClintock <msm@freescale.com>
42886 Date: Wed Jun 28 10:45:17 2006 -0500
42887
42888 * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
42889
42890 Signed-off-by: Andy Fleming <afleming@freescale.com>
42891
42892 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
42893 Author: Matthew McClintock <msm@freescale.com>
42894 Date: Wed Jun 28 10:44:49 2006 -0500
42895
42896 * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
42897
42898 Signed-off-by: Andy Fleming <afleming@freescale.com>
42899
42900 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
42901 Author: Matthew McClintock <msm@freescale.com>
42902 Date: Wed Jun 28 10:44:23 2006 -0500
42903
42904 * 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
42905
42906 Signed-off-by: Andy Fleming <afleming@freescale.com>
42907
42908 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
42909 Author: Matthew McClintock <msm@freescale.com>
42910 Date: Wed Jun 28 10:43:36 2006 -0500
42911
42912 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
42913
42914 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42915
42916 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
42917 Author: Matthew McClintock <msm@freescale.com>
42918 Date: Wed Jun 28 10:43:00 2006 -0500
42919
42920 * 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
42921
42922 commit 5498d90312aad9f6bdbf047986027c35b03cd163
42923 Author: Matthew McClintock <msm@freescale.com>
42924 Date: Wed Jun 28 10:42:24 2006 -0500
42925
42926 * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
42927
42928 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
42929 Author: Matthew McClintock <msm@freescale.com>
42930 Date: Wed Jun 28 10:41:37 2006 -0500
42931
42932 * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
42933
42934 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
42935 Author: John Traill <john.traill@freescale.com>
42936 Date: Wed Aug 9 14:33:50 2006 +0100
42937
42938 Add Rapidio support for the MPC8641HPCN
42939
42940 Signed-off-by: John Traill <john.traill@freescale.com>
42941
42942 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
42943 Author: John Traill <john.traill@freescale.com>
42944 Date: Tue Aug 8 11:32:43 2006 +0100
42945
42946 Fix caslat calculation
42947
42948 Signed-off-by: John Traill <john.traill@freescale.com>
42949
42950 commit 709d3073e74153278e7904a70819bbef7df50e1a
42951 Author: Jon Loeliger <jdl@freescale.com>
42952 Date: Thu Aug 3 16:17:56 2006 -0500
42953
42954 Convert to mac-address in ethernet nodes.
42955
42956 commit 71748af833ca1017edf1415be376366ff2937d17
42957 Author: Haiying Wang <haiying.wang@freescale.com>
42958 Date: Fri Jul 28 12:41:35 2006 -0400
42959
42960 Correct the irq value of DUART2
42961
42962 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
42963 Author: Haiying Wang <haiying.wang@freescale.com>
42964 Date: Fri Jul 28 12:41:41 2006 -0400
42965
42966 Change the space size of PEX IO in README
42967
42968 commit 239db37c94f7a92941c4465feceb867c609241c5
42969 Author: Haiying Wang <haiying.wang@freescale.com>
42970 Date: Fri Jul 28 12:41:18 2006 -0400
42971
42972 Move get_board_sys_clk to board directory
42973
42974 commit 492900b985439fbce1a118afde1e35def870db03
42975 Author: John Traill <john.traill@freescale.com>
42976 Date: Fri Jul 28 09:03:54 2006 +0100
42977
42978 Fix 8641HPCN pollution
42979
42980 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
42981 Author: John Traill <john.traill@freescale.com>
42982 Date: Fri Jul 28 08:16:06 2006 +0100
42983
42984 Fix 8641HPCN timebase
42985
42986 commit c86360b830f1eecd7a72208575dde4f57879faea
42987 Author: Zhang Wei <wei.zhang@freescale.com>
42988 Date: Fri Jul 28 00:01:34 2006 +0800
42989
42990 Fixed OF device tree of mpc86xxhpcn board.
42991
42992 The changes works in with kernel irq mapping rework.
42993
42994 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
42995
42996 commit bea3f28d285942bf3f7ab339ce85178ded544225
42997 Author: Haiying Wang <haiying.wang@freescale.com>
42998 Date: Wed Jul 12 10:48:05 2006 -0400
42999
43000 Add support for reading and writing mac addresses to or from ID EEPROM.
43001
43002 Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
43003 With attached patch, we can use command "mac/mac read/mac save/"
43004 to read and write EEPROM under u-boot prompt.
43005
43006 U-boot will calculate the checksum of EEPROM while bootup,
43007 if it is right, then u-boot will check whether the mac address
43008 of eTSEC0/1/2/3 is availalbe (non-zero).
43009
43010 If there is mac address availabe in EEPROM, u-boot will use it,
43011 otherewise, u-boot will use the mac address defined in
43012 MPC8641HPCN.h. This matches the requirement to set unique mac address
43013 for each TSEC port.
43014
43015 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
43016 Signed-off-by: York Sun <yorksun@freescale.com>
43017
43018 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
43019 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
43020 Date: Thu Jul 13 10:35:10 2006 -0500
43021
43022 Fixed initrd issue by define big RAM
43023
43024 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
43025
43026 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
43027 Author: Jason Jin <Jason.jin@freescale.com>
43028 Date: Fri Jul 7 10:01:45 2006 -0500
43029
43030 We made a u-boot patch to fix the hang up issue
43031 when booting filesystem from ramdisk.
43032
43033 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
43034
43035 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
43036 Author: Matthew McClintock <msm@freescale.com>
43037 Date: Wed Jun 28 10:47:03 2006 -0500
43038
43039 * Switched default PCI speed for 8540 ADS back to 33MHz
43040 * Added comments and a printf to warn that PCI-X won't
43041 work at 33MHz
43042 Patch by Andy Fleming 17-Mar-2006
43043
43044 Signed-off-by: Andy Fleming <afleming@freescale.com>
43045
43046 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
43047 Author: Matthew McClintock <msm@freescale.com>
43048 Date: Wed Jun 28 10:46:35 2006 -0500
43049
43050 * Fixed a bug where 8555 PCI code used the old variable and
43051 function names
43052 Patch by Andy Fleming 17-Mar-2006
43053
43054 Signed-off-by: Andy Fleming <afleming@freescale.com>
43055
43056 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
43057 Author: Matthew McClintock <msm@freescale.com>
43058 Date: Wed Jun 28 10:46:13 2006 -0500
43059
43060 * Added VIA configuration table
43061 * Added support for PCI2 on CDS
43062 Patch by Andy Fleming 17-Mar-2006
43063
43064 Signed-off-by: Andy Fleming <afleming@freescale.com>
43065
43066 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
43067 Author: Matthew McClintock <msm@freescale.com>
43068 Date: Wed Jun 28 10:45:41 2006 -0500
43069
43070 * Fixed PCI memory definitions
43071 Patch by Andy Fleming 17-Mar-2006
43072
43073 Signed-off-by: Andy Fleming <afleming@freescale.com>
43074
43075 commit 087454609e47295443af793a282cddcd91a5f49c
43076 Author: Matthew McClintock <msm@freescale.com>
43077 Date: Wed Jun 28 10:45:17 2006 -0500
43078
43079 * Added support for initializing second PCI bus on 85xx
43080 Patch by Andy Fleming 17-Mar-2006
43081
43082 Signed-off-by: Andy Fleming <afleming@freescale.com>
43083
43084 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
43085 Author: Matthew McClintock <msm@freescale.com>
43086 Date: Wed Jun 28 10:44:49 2006 -0500
43087
43088 * Added PCI-X #defines for PCI-X initialization
43089 Patch by Andy Fleming on 17-Mar-2006
43090
43091 Signed-off-by: Andy Fleming <afleming@freescale.com>
43092
43093 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
43094 Author: Matthew McClintock <msm@freescale.com>
43095 Date: Wed Jun 28 10:44:23 2006 -0500
43096
43097 * Made sure the code which disables prefetch for PCI devices
43098 sets the size of the prefetch region to 0
43099 Patch by Andy Fleming on 17-Mar-2006
43100
43101 Signed-off-by: Andy Fleming <afleming@freescale.com>
43102
43103 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
43104 Author: Matthew McClintock <msm@freescale.com>
43105 Date: Wed Jun 28 10:43:36 2006 -0500
43106
43107 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
43108 Patch by Jon Loeliger 17-Jan-2006
43109
43110 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43111
43112 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
43113 Author: Matthew McClintock <msm@freescale.com>
43114 Date: Wed Jun 28 10:43:00 2006 -0500
43115
43116 * Removed the oftree.dts for stxxtx in light of the changes
43117 to the flat device tree handling code
43118 Patch by Matthew McClintock 26-June-2006
43119
43120 commit 1b380ec225665e73959677f3893dc658c5925e05
43121 Author: Matthew McClintock <msm@freescale.com>
43122 Date: Wed Jun 28 10:42:24 2006 -0500
43123
43124 * Patch to modify ft_build.c to update flat device trees in place
43125 Patch by Matthew McClintock 26-June-2006
43126
43127 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
43128 Author: Matthew McClintock <msm@freescale.com>
43129 Date: Wed Jun 28 10:41:37 2006 -0500
43130
43131 * Modify bootm command to support booting with flat device trees
43132 Patch by Matthew McClintock 26-June-2006
43133
43134 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
43135 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
43136 Date: Wed Jun 28 08:43:56 2006 -0500
43137
43138 Change Id to symbolic name for RTL8139
43139
43140 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
43141
43142 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
43143 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
43144 Date: Tue Jun 27 18:12:10 2006 +0800
43145
43146 Fix RTL8139 in big endian
43147
43148 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
43149 signed-off-by: Wei Zhang <wei.zhang@freescale.com>
43150
43151 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
43152 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
43153 Date: Tue Jun 27 18:12:23 2006 +0800
43154
43155 Fix Tsec bug when no link
43156
43157 When tftp a non-exist file from the tftp server, u-boot will check
43158 the link of all eth port. The original file will return wrong link
43159 state on the no link ports.
43160
43161 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
43162
43163 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
43164 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
43165 Date: Tue Jun 27 18:12:02 2006 +0800
43166
43167 Fix bug for io_bar size during pci scan
43168
43169 During the pci scan process, Some devices return bar_reponse with the
43170 highest bytes 0, such as the pci bridge in uli1575 return bar_response
43171 with 0xffffff, So the bar_size should be manually set under 64K.
43172
43173 Signed-off-by: Jason Jin <jason.jin@freescale.com>
43174
43175 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
43176 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
43177 Date: Tue Jun 27 18:11:54 2006 +0800
43178
43179 Enable PCIE1 for MPC8641HPCN board
43180
43181 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
43182
43183 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
43184 Author: Wolfgang Denk <wd@pollux.denx.de>
43185 Date: Mon Jun 26 11:06:00 2006 +0200
43186
43187 More code cleanup
43188
43189 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
43190 Author: Jon Loeliger <jdl@freescale.com>
43191 Date: Thu Jun 22 08:51:46 2006 -0500
43192
43193 Fix bug in 8641hpcn reset command with no args.
43194
43195 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
43196 Acked-by: Jon Loeliger <jdl@freescale.com>
43197
43198 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
43199 Author: Zhang Wei <wei.zhang@freescale.com>
43200 Date: Tue Jun 20 17:47:15 2006 +0800
43201
43202 Reworked IRQ mapping in OF-tree.
43203
43204 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
43205 Author: Jon Loeliger <jdl@freescale.com>
43206 Date: Thu Jun 15 21:33:37 2006 -0500
43207
43208 Do not enable address translation on secondary CPUs.
43209 Do not set up BATs on secondary CPUs. Let Linux do the nasty.
43210
43211 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43212
43213 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
43214 Author: Wolfgang Denk <wd@pollux.denx.de>
43215 Date: Wed Jun 14 18:14:56 2006 +0200
43216
43217 Code cleanup
43218
43219 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
43220 Author: Wolfgang Denk <wd@pollux.denx.de>
43221 Date: Wed Jun 14 17:45:53 2006 +0200
43222
43223 Various USB related patches
43224 - Add support for mpc8xx USB device.
43225 - Add support for Common Device Class - Abstract Control Model USB console.
43226 - Add support for flow control in USB slave devices.
43227 - Add support for switching between gserial and cdc_acm using environment.
43228 - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
43229 - Update usbcore slightly to ease host enumeration.
43230 - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
43231 - Add AdderUSB_config as a defconfig to enable usage of the USB console
43232 by default with the Adder87x U-Boot port.
43233 Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
43234
43235 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
43236 Author: Jon Loeliger <jdl@jdl.com>
43237 Date: Wed Jun 7 10:53:55 2006 -0500
43238
43239 Fix a get_board_sys_clk() use-before-def warning.
43240
43241 Signed-off-by: Jon Loeliger <jdl@jdl.com>
43242
43243 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
43244 Author: Jon Loeliger <jdl@jdl.com>
43245 Date: Wed Jun 7 10:52:49 2006 -0500
43246
43247 Allow DTC path to be passed in.
43248
43249 Signed-off-by: Jon Loeliger <jdl@jdl.com>
43250
43251 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
43252 Author: Haiying Wang <haiying.wang@freescale.com>
43253 Date: Tue Jun 6 16:54:29 2006 -0400
43254
43255 Modify the IRQ of DUART2
43256
43257 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
43258 Author: Jon Loeliger <jdl@jdl.com>
43259 Date: Wed May 31 13:55:35 2006 -0500
43260
43261 Review cleanups.
43262
43263 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43264
43265 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
43266 Author: Jon Loeliger <jdl@jdl.com>
43267 Date: Wed May 31 12:44:44 2006 -0500
43268
43269 White space cleanup.
43270 Some 80-column cleanups.
43271 Convert printf() to puts() where possible.
43272 Use #include "spd_sdram.h" as needed.
43273 Enhanced reset command usage message a bit.
43274
43275 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43276
43277 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
43278 Author: Jon Loeliger <jdl@jdl.com>
43279 Date: Wed May 31 11:39:34 2006 -0500
43280
43281 Removed unneeded local_bus_init() from 8641HPCN board.
43282
43283 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43284
43285 commit 4d3d729c16c392d2982d3266b659d333c927697d
43286 Author: Jon Loeliger <jdl@jdl.com>
43287 Date: Wed May 31 11:24:28 2006 -0500
43288
43289 Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
43290
43291 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43292
43293 commit b2a941de060350ad15878d8219825f4950e9bb8e
43294 Author: Jon Loeliger <jdl@jdl.com>
43295 Date: Wed May 31 10:07:28 2006 -0500
43296
43297 Remove dead debug code.
43298
43299 Signed-off-by: Jon Loeliger <jdl@jdl.com>
43300
43301 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
43302 Author: Jon Loeliger <jdl@freescale.com>
43303 Date: Tue May 30 17:47:00 2006 -0500
43304
43305 Move mpc86xx PIXIS code to board directory
43306
43307 First cut at moving the PIXIS platform code out of
43308 the 86xx cpu directory and into board/mpc8641hpcn
43309 where it belongs.
43310
43311 Signed-off-by: Jon Loeliger <jdl@freescale.com>
43312
43313 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
43314 Author: Markus Klotzbuecher <mk@denx.de>
43315 Date: Tue May 30 16:56:14 2006 +0200
43316
43317 Support generic OHCI support for the s3c24x0 cpu.
43318
43319 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
43320 Author: Haiying Wang <Haiying.Wang@freescale.com>
43321 Date: Tue May 30 09:10:32 2006 -0500
43322
43323 Improve "reset" command's interaction with watchdog.
43324
43325 "reset altbank" will reset another bank WITHOUT watch dog timer enabled
43326 "reset altbank wd" will reset another bank WITH watch dog enabled
43327 "diswd" will disable watch dog after u-boot boots up successfully
43328
43329 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
43330
43331 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
43332 Author: Haiying Wang <Haiying.Wang@freescale.com>
43333 Date: Tue May 30 08:51:19 2006 -0500
43334
43335 Fix two SDRAM setup bugs.
43336
43337 Fix ECC setup bug.
43338 Enable 1T/2T based on number of DIMMs present.
43339
43340 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
43341
43342 commit d11fec5015334deb2010e36ce00bb118cc5429a5
43343 Author: Haiying Wang <Haiying.Wang@freescale.com>
43344 Date: Fri May 26 10:24:48 2006 -0500
43345
43346 Add first draft of the MPC8641HPCN doc/README.
43347
43348 Signed-off-by: Jon Loeliger <jdl@jdl.com>
43349
43350 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
43351 Author: Haiying Wang <Haiying.Wang@freescale.com>
43352 Date: Fri May 26 10:13:04 2006 -0500
43353
43354 Added pci@8000 block.
43355 Updated ethernet interrupt mappings (moved up 48).
43356 Cleaned up a few comments.
43357
43358 Signed-off-by: Jon Loeliger <jdl@jdl.com>
43359
43360 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
43361 Author: Haiying Wang <Haiying.Wang@freescale.com>
43362 Date: Fri May 26 10:01:16 2006 -0500
43363
43364 Allow args on reset command.
43365
43366 Signed-off-by: Jon Loeliger <jdl@jdl.com>
43367
43368 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
43369 Author: Markus Klotzbuecher <mk@denx.de>
43370 Date: Tue May 23 13:38:35 2006 +0200
43371
43372 Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
43373 fixes to the latter.
43374
43375 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
43376 Author: Markus Klotzbuecher <mk@denx.de>
43377 Date: Tue May 23 10:33:11 2006 +0200
43378
43379 More cleanup for the delta board and the generic usb_ohci driver. Added
43380 CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
43381 initialization and cleanup hooks respectively.
43382
43383 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
43384 Author: Markus Klotzbuecher <mk@denx.de>
43385 Date: Mon May 22 16:33:54 2006 +0200
43386
43387 This patch adds USB storage support for the delta board. This is the first
43388 board to make use of a generic OHCI driver, that calls hooks for board
43389 dependant initialization.
43390
43391 commit 14e37081ff3cac7ebe6e93836523429853b6b292
43392 Author: Jon Loeliger <jdl@jdl.com>
43393 Date: Fri May 19 13:28:39 2006 -0500
43394
43395 Change arbitration to round-robin for SMP linux.
43396
43397 commit 9a655876e5995be80f49054e2509500e871e4d3a
43398 Author: Jon Loeliger <jdl@jdl.com>
43399 Date: Fri May 19 13:26:34 2006 -0500
43400
43401 Enable dual DDR controllers and interleaving.
43402
43403 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
43404 Author: Jon Loeliger <jdl@jdl.com>
43405 Date: Fri May 19 13:22:44 2006 -0500
43406
43407 Update 86xx address map and LAWBARs.
43408
43409 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
43410 Author: Jon Loeliger <jdl@jdl.com>
43411 Date: Fri May 19 13:14:15 2006 -0500
43412
43413 Remove L2 Cache invalidate polling.
43414
43415 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
43416 Author: Jon Loeliger <jdl@jdl.com>
43417 Date: Fri May 19 12:33:09 2006 -0500
43418
43419 Enable 2nd CPU and I2C.
43420
43421 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
43422 Author: Jon Loeliger <jdl@freescale.com>
43423 Date: Mon May 15 07:26:56 2006 -0500
43424
43425 Update interrupt mapping.
43426
43427 commit 6cfea33477b04b63ed47386ed1629529484c33ba
43428 Author: Haiying Wang <Haiying.Wang@freescale.com>
43429 Date: Wed May 10 09:38:06 2006 -0500
43430
43431 Remove unneeded INIT_RAM_LOCK cache twiddling.
43432 Correctly tracks r29 as global data pointer now.
43433
43434 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
43435
43436 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
43437 Author: Jon Loeliger <jdl@freescale.com>
43438 Date: Wed May 10 09:33:07 2006 -0500
43439
43440 Remove unnecessary flash.c file.
43441
43442 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
43443 Author: Jon Loeliger <jdl@freescale.com>
43444 Date: Tue May 9 08:23:49 2006 -0500
43445
43446 Get MPC8641HPCN flash images working.
43447
43448 Enable the CFI driver.
43449 Remove bogus LAWBAR7 cruft.
43450 Use correct TEXT_BASE, Fixup load script.
43451 Enable SPD EEPROM during DDR setup.
43452 Use generic RFC 1918 IP addresses by default.
43453
43454 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
43455 Author: Jon Loeliger <jdl@freescale.com>
43456 Date: Thu Apr 27 10:15:16 2006 -0500
43457
43458 Cleanup whitespaces and style issues.
43459 Removed //-style comments.
43460 Use 80-column lines.
43461 Remove trailing whitespace.
43462 Remove dead code and debug cruft.
43463
43464 commit a2320a6bf8113a09544c42d160d10ac69d049a03
43465 Author: Jon Loeliger <jdl@freescale.com>
43466 Date: Thu Apr 27 08:22:39 2006 -0500
43467
43468 Revert bad PCI prefetch limit change.
43469
43470 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
43471 Author: Jon Loeliger <jdl@freescale.com>
43472 Date: Wed Apr 26 17:58:56 2006 -0500
43473
43474 Initial support for MPC8641 HPCN board.